Paste #43181: Untitled Paste

Date: 2017/07/24 16:16:27 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001


Clicker_Data:
    type: yaml data
    config:
        worth:
            GOLDEN_APPLE: "442"
            IRON_BOOTS: "60"
            SPRUCE_DOOR_ITEM: "9"
            HOPPER_MINECART: "66"
            SADDLE: "40"
            FLOWER_POT_ITEM: "4"
            CROPS: "2"
            TRAPPED_CHEST: "36"
            IRON_HOE: "20"
            MELON_STEM: "2"
            WATER: "1"
            RABBIT_STEW: "6"
            FIREBALL: "120"
            CAKE_BLOCK: "160"
            SPRUCE_DOOR: "9"
            PISTON_BASE: "108"
            WOOD_DOOR: "9"
            IRON_CHESTPLATE: "70"
            FLINT_AND_STEEL: "55"
            GOLD_SPADE: "132"
            PRISMARINE_SHARD: "66"
            LAPIS_BLOCK: "550"
            SPRUCE_WOOD_STAIRS: "6"
            REDSTONE_COMPARATOR_ON: "200"
            EXPLOSIVE_MINECART: "66"
            STAINED_GLASS: "28"
            DIAMOND: "116"
            FENCE_GATE: "10"
            COBBLESTONE: "2"
            WATCH: "70"
            IRON_FENCE: "20"
            POTATO_ITEM: "7"
            ARROW: "10"
            SOIL: "114"
            COMMAND: "400"
            CAULDRON: "126"
            PORK: "26"
            PISTON_MOVING_PIECE: "108"
            EMERALD_BLOCK: "850"
            BED: "99"
            GOLD_BOOTS: "110"
            STONE_SLAB2: "38"
            GOLD_LEGGINGS: "130"
            STANDING_BANNER: "25"
            ACACIA_DOOR_ITEM: "9"
            BIRCH_WOOD_STAIRS: "6"
            WOOD_SPADE: "7"
            JUKEBOX: "350"
            GRILLED_PORK: "8"
            APPLE: "14"
            GREEN_RECORD: "7"
            BUCKET: "10"
            JUNGLE_DOOR_ITEM: "9"
            GOLD_BLOCK: "300"
            DARK_OAK_FENCE_GATE: "10"
            MINECART: "66"
            POTION: "33"
            IRON_SPADE: "46"
            SAND: "3"
            SAPLING: "6"
            REDSTONE_TORCH_OFF: "11"
            MELON_BLOCK: "58"
            SEEDS: "1"
            NOTE_BLOCK: "210"
            COOKIE: "90"
            HAY_BLOCK: "287"
            IRON_LEGGINGS: "65"
            LAVA_BUCKET: "23"
            COBBLESTONE_STAIRS: "6"
            DIAMOND_AXE: "274"
            PUMPKIN_PIE: "6"
            DETECTOR_RAIL: "34"
            RECORD_4: "22"
            REDSTONE_TORCH_ON: "12"
            RECORD_5: "22"
            WOOD_HOE: "22"
            RECORD_3: "22"
            STICK: "8"
            RECORD_8: "22"
            RECORD_9: "22"
            RECORD_6: "22"
            WATER_BUCKET: "11"
            RECORD_7: "22"
            BEACON: "1100"
            REDSTONE_WIRE: "3"
            STONE_PLATE: "7"
            NETHER_BRICK_STAIRS: "60"
            GLOWSTONE: "333"
            THIN_GLASS: "10"
            DIAMOND_ORE: "155"
            FEATHER: "14"
            REDSTONE_LAMP_ON: "62"
            SPONGE: "99"
            DIAMOND_CHESTPLATE: "312"
            STONE: "9"
            GOLD_NUGGET: "14"
            LEAVES: "17"
            NETHER_BRICK: "100"
            STONE_HOE: "25"
            WOOD_AXE: "20"
            TNT: "119"
            STAINED_GLASS_PANE: "28"
            POTATO: "15"
            GHAST_TEAR: "510"
            AIR: "0"
            CHEST: "36"
            WOOD_BUTTON: "5"
            NETHER_WARTS: "133"
            REDSTONE_LAMP_OFF: "54"
            BIRCH_FENCE: "10"
            WOOD_STAIRS: "32"
            MAP: "26"
            BAKED_POTATO: "8"
            WOOD_SWORD: "16"
            LADDER: "16"
            GLOWSTONE_DUST: "37"
            DEAD_BUSH: "3"
            DIODE_BLOCK_ON: "31"
            PISTON_STICKY_BASE: "108"
            POWERED_MINECART: "1"
            WRITTEN_BOOK: "71"
            BOAT: "5"
            DIAMOND_PICKAXE: "320"
            CLAY_BRICK: "90"
            ENCHANTED_BOOK: "950"
            BARRIER: "0"
            TRAP_DOOR: "13"
            GOLD_SWORD: "153"
            GLOWING_REDSTONE_ORE: "125"
            CARROT_STICK: "27"
            CLAY_BALL: "90"
            MILK_BUCKET: "16"
            PORTAL: "750"
            LEATHER_BOOTS: "50"
            COOKED_BEEF: "6"
            COAL_BLOCK: "35"
            WATER_LILY: "11"
            LEATHER_LEGGINGS: "50"
            ENCHANTMENT_TABLE: "550"
            LOG_2: "17"
            FISHING_ROD: "7"
            COAL: "32"
            ENDER_PEARL: "83"
            DIODE: "31"
            FURNACE: "13"
            JACK_O_LANTERN: "44"
            REDSTONE_BLOCK: "450"
            GRASS: "2"
            ENDER_STONE: "248"
            SIGN: "55"
            RECORD_10: "22"
            COMMAND_MINECART: "500"
            QUARTZ: "13"
            LONG_GRASS: "4"
            RECORD_11: "22"
            RECORD_12: "22"
            QUARTZ_BLOCK: "230"
            SNOW: "13"
            SUGAR_CANE: "86"
            MAGMA_CREAM: "138"
            DIRT: "1"
            ACACIA_FENCE: "10"
            MONSTER_EGG: "1"
            ARMOR_STAND: "298"
            DARK_OAK_FENCE: "10"
            BOW: "66"
            SUGAR: "43"
            MOSSY_COBBLESTONE: "29"
            DAYLIGHT_DETECTOR: "67"
            RABBIT_HIDE: "7"
            NETHER_STALK: "125"
            POWERED_RAIL: "7"
            PISTON_EXTENSION: "108"
            RED_ROSE: "6"
            OBSIDIAN: "187"
            WALL_SIGN: "8"
            NETHER_FENCE: "10"
            LEATHER: "26"
            CHAINMAIL_LEGGINGS: "170"
            FLOWER_POT: "3"
            LEAVES_2: "17"
            SMOOTH_BRICK: "25"
            IRON_PICKAXE: "46"
            PAPER: "65"
            RED_SANDSTONE: "100"
            LEATHER_CHESTPLATE: "50"
            IRON_SWORD: "46"
            WOOD_DOUBLE_STEP: "8"
            SNOW_BLOCK: "118"
            BROWN_MUSHROOM: "80"
            SANDSTONE_STAIRS: "60"
            CARROT_ITEM: "2"
            EXP_BOTTLE: "10"
            SHEARS: "1"
            WALL_BANNER: "20"
            COBBLE_WALL: "5"
            FIRE: "100"
            QUARTZ_STAIRS: "65"
            BREWING_STAND: "1050"
            STONE_PICKAXE: "25"
            CACTUS: "80"
            CAKE: "80"
            CHAINMAIL_BOOTS: "155"
            PUMPKIN: "30"
            WOOD_PICKAXE: "8"
            WHEAT: "7"
            SLIME_BLOCK: "306"
            SMOOTH_STAIRS: "60"
            RED_MUSHROOM: "38"
            DROPPER: "46"
            MUTTON: "14"
            IRON_TRAPDOOR: "23"
            REDSTONE_ORE: "125"
            RAW_FISH: "3"
            SPIDER_EYE: "50"
            STONE_SPADE: "20"
            CHAINMAIL_CHESTPLATE: "165"
            SIGN_POST: "21"
            EMERALD_ORE: "185"
            COAL_ORE: "35"
            MOB_SPAWNER: "400"
            PRISMARINE_CRYSTALS: "66"
            STATIONARY_WATER: "17"
            DIAMOND_SPADE: "220"
            ICE: "40"
            HUGE_MUSHROOM_1: "20"
            HUGE_MUSHROOM_2: "20"
            LEASH: "19"
            GOLD_PLATE: "130"
            STRING: "35"
            GOLD_ORE: "130"
            BLAZE_POWDER: "150"
            CLAY: "90"
            RABBIT_FOOT: "12"
            RED_SANDSTONE_STAIRS: "60"
            REDSTONE: "6"
            STORAGE_MINECART: "8"
            WOOD: "4"
            GOLD_RECORD: "110"
            GOLD_AXE: "110"
            SLIME_BALL: "34"
            MYCEL: "277"
            ACACIA_FENCE_GATE: "10"
            BRICK_STAIRS: "60"
            IRON_PLATE: "69"
            SNOW_BALL: "3"
            BIRCH_FENCE_GATE: "10"
            WOOL: "37"
            DIAMOND_LEGGINGS: "311"
            DIODE_BLOCK_OFF: "123"
            EMPTY_MAP: "358"
            CAULDRON_ITEM: "185"
            WORKBENCH: "25"
            RAW_CHICKEN: "4"
            LEATHER_HELMET: "50"
            PUMPKIN_SEEDS: "29"
            ACACIA_DOOR: "9"
            IRON_DOOR_BLOCK: "18"
            DARK_OAK_STAIRS: "60"
            FLINT: "48"
            INK_SACK: "61"
            PRISMARINE: "66"
            MONSTER_EGGS: "67"
            WOOD_PLATE: "24"
            COCOA: "24"
            DIAMOND_BLOCK: "1050"
            LAVA: "17"
            CARPET: "51"
            SPRUCE_FENCE_GATE: "10"
            GRAVEL: "20"
            IRON_AXE: "88"
            MELON: "35"
            SEA_LANTERN: "200"
            BIRCH_DOOR_ITEM: "9"
            LAPIS_ORE: "95"
            BONE: "58"
            POISONOUS_POTATO: "5"
            GOLD_BARDING: "64"
            STAINED_CLAY: "90"
            DISPENSER: "145"
            TRIPWIRE: "55"
            STEP: "24"
            IRON_ORE: "65"
            DAYLIGHT_DETECTOR_INVERTED: "13"
            BIRCH_DOOR: "9"
            SPECKLED_MELON: "35"
            NETHERRACK: "225"
            COOKED_RABBIT: "15"
            ENDER_PORTAL: "799"
            BLAZE_ROD: "170"
            BOOK: "40"
            MELON_SEEDS: "29"
            DRAGON_EGG: "2500"
            SANDSTONE: "105"
            DOUBLE_PLANT: "30"
            DARK_OAK_DOOR_ITEM: "9"
            BOOK_AND_QUILL: "140"
            REDSTONE_COMPARATOR_OFF: "200"
            CHAINMAIL_HELMET: "160"
            BREAD: "3 
            MUSHROOM_SOUP: "16"
            PAINTING: "15"
            ANVIL: "241"
            TORCH: "19"
            ENDER_CHEST: "1500"
            GOLD_CHESTPLATE: "111"
            IRON_BARDING: "32"
            BOOKSHELF: "231"
            LEVER: "28"
            COOKED_CHICKEN: "47"
            LOG: "17"
            WOOD_STEP: "19"
            BREWING_STAND_ITEM: "600"
            IRON_INGOT: "27"
            WEB: "196"
            SPRUCE_FENCE: "10"
            DIAMOND_SWORD: "315"
            QUARTZ_ORE: "173"
            DARK_OAK_DOOR: "9"
            DOUBLE_STONE_SLAB2: "38"
            GOLD_INGOT: "33"
            DIAMOND_HOE: "212"
            BED_BLOCK: "98"
            GLASS: "25 
            ITEM_FRAME: "130"
            IRON_BLOCK: "250"
            GOLD_HELMET: "260"
            FIREWORK: "126"
            SOUL_SAND: "100"
            EMERALD: "94"
            DIAMOND_HELMET: "310"
            GOLDEN_CARROT: "44"
            PUMPKIN_STEM: "35"
            HOPPER: "162"
            IRON_HELMET: "50"
            BANNER: "50"
            TRIPWIRE_HOOK: "75"
            NETHER_STAR: "350"
            PACKED_ICE: "177"
            YELLOW_FLOWER: "13"
            REDSTONE_COMPARATOR: "200"
            COOKED_MUTTON: "45"
            ACACIA_STAIRS: "60"
            COMPASS: "40"
            VINE: "33"
            SKULL: "500"
            NETHER_BRICK_ITEM: "120"
            CARROT: "63"
            JUNGLE_WOOD_STAIRS: "60"
            GLASS_BOTTLE: "22"
            BURNING_FURNACE: "41"
            FIREWORK_CHARGE: "144"
            RAW_BEEF: "12"
            RAILS: "77 
            GOLD_HOE: "50"
            ENDER_PORTAL_FRAME: "1000"
            NAME_TAG: "150"
            JUNGLE_FENCE: "66"
            DIAMOND_BARDING: "128"
            DIAMOND_BOOTS: "313"
            BEDROCK: "400"
            RABBIT: "36"
            SULPHUR: "43"
            HARD_CLAY: "18"
            EYE_OF_ENDER: "100"
            COOKED_FISH: "31"
            STONE_SWORD: "80"
            ROTTEN_FLESH: "27"
            STONE_AXE: "40"
            JUNGLE_DOOR: "9"
            STONE_BUTTON: "11"
            SKULL_ITEM: "39"
            DOUBLE_STEP: "12"
            STATIONARY_LAVA: "5"
            SUGAR_CANE_BLOCK: "30"
            IRON_DOOR: "23"
            EGG: "4"
            WOODEN_DOOR: "9"
            BRICK: "25"
            FENCE: "10"
            FERMENTED_SPIDER_EYE: "29"
            JUNGLE_FENCE_GATE: "18"
            GOLD_PICKAXE: "11"
            ACTIVATOR_RAIL: "8"
            BOWL: "6"
        boss_bar_whole: 200
        blacklist_use:
            blocks:
            - "CHEST"
            - "TRAPPED_CHEST"
            - "ENDER_CHEST"
            - "HOPPER"
            - "FURNACE"
            - "WORKBENCH"
            - "NOTE_BLOCK"
            - "JUKEBOX"
            - "DROPPER"
            - "DISPENSER"
            - "ANVIL"
            - "BED"
            - "BEACON"
            - "BREWING_STAND"
            - "ENDER_PORTAL_FRAME"
            - "DAYLIGHT_DETECTOR"
            - "DIODE"
            - "REDSTONE_COMPARATOR"
        mining_ores:
            1:
                gold_ore:
                - "18,-6,-22"
                - "17,-6,-22"
                - "17,-6,-21"
                - "17,-6,-20"
                - "18,-6,-19"
                - "26,-4,-20"
                - "26,-3,-20"
                - "25,-4,-20"
                - "28,-4,-28"
                - "28,-5,-28"
                - "23,-4,-31"
                - "22,-5,-31"
                - "22,-6,-31"
                - "21,-6,-31"
                - "20,-8,-34"
                - "20,-9,-34"
                - "20,-10,-34"
                - "20,-10,-33"
                - "17,-9,-35"
                - "16,-9,-34"
                - "16,-10,-34"
                - "16,-10,-33"
                - "16,-9,-24"
                - "16,-10,-23"
                - "16,-9,-22"
                - "16,-8,-22"
                - "16,-8,-21"
                - "20,-10,-18"
                - "20,-9,-18"
                - "20,-8,-17"
                - "21,-9,-17"
                - "22,-9,-17"
                - "22,-10,-17"
                - "25,-11,-14"
                - "26,-11,-15"
                - "36,-7,-19"
                - "36,-8,-19"
                - "35,-8,-19"
                - "35,-9,-19"
                - "34,-9,-19"
                - "34,-8,-19"
                - "26,-14,-16"
                - "26,-15,-16"
                - "26,-15,-15"
                - "26,-14,-15"
                - "27,-16,-15"
                - "28,-16,-14"
                - "31,-13,-20"
                - "31,-13,-21"
                - "31,-14,-21"
                - "37,-13,-12"
                - "38,-13,-12"
                - "38,-15,-12"
                - "40,-15,-15"
                - "40,-15,-16"
                - "40,-14,-16"
        plots:
            area: 256
            space_between: 50
            y_level: 21
        upgrades:
            grass:
                type: grass
                sign_pos:
                    1: 5,2,1
                    5: 7,3,20
                needs:
                    4:
                        island: 1
                upgrade_price: 1000
                position:
                    1: -3,1,-3|-7,1,3
            lucky_grass:
                type: luck
                upgrade_price: 9001
                multiplier: 100
                sign_pos:
                    1: 7,3,21
                needs:
                    4:
                        island: 1
            island:
                type: island
                sign_pos:
                    1: 5,2,2
                    5: 7,3,19
                multiplier: 30
                upgrade_price: 2500
                full_at_lvl: 10
                needs:
                    4:
                        skib: 1
                        hus: 1
                    11:
                        island: 11
                1:
                    schematic: island_lvl1
                    center: 0,0,0
                    total_change: false
                2:
                    schematic: island_lvl2
                    center: 0,0,0
                    total_change: false
                3:
                    schematic: island_lvl3
                    center: 0,0,0
                    total_change: false
                4:
                    schematic: island_lvl4
                    center: 0,0,0
                    total_change: false
                5:
                    schematic: island_lvl5
                    center: 0,0,0
                    total_change: true
                6:
                    schematic: island_lvl6
                    center: 0,0,0
                    total_change: false
                7:
                    schematic: island_lvl7
                    center: 0,0,0
                    total_change: false
                8:
                    schematic: island_lvl8
                    center: 0,0,0
                    total_change: false
                9:
                    schematic: island_lvl9
                    center: 0,0,0
                    total_change: false
                10:
                    schematic: island_lvl10
                    center: 0,0,0
                    total_change: false
            # Ekstern (Lab Person)
            # lulz (Black Man)
            Hints-1:
                type: hint
                needs:
                    1:
                        island: 1
            Hints-2:
                type: hint
                needs:
                    1:
                        island: 2
            Hints-3:
                type: hint
                needs:
                    1:
                        island: 3
            Hints-4:
                type: hint
                needs:
                    1:
                        island: 4
            Hints-5:
                type: hint
                needs:
                    1:
                        island: 5
            Hints-6:
                type: hint
                needs:
                    1:
                        island: 6
            Hints-7:
                type: hint
                needs:
                    1:
                        island: 7
            Hints-8:
                type: hint
                needs:
                    1:
                        island: 8
            Hints-9:
                type: hint
                needs:
                    1:
                        island: 9
            Gold_Ore:
                type: ore
                multiplier: 3
                upgrade_price: 800000000
                worth: 5000000
                sign_pos:
                    1: 7,3,18
                needs:
                    1:
                        mine: 1

            WorkBoost:
                type: booster
                income_boost: 3000
                additional_boost: 100
                description:
                - "&7Hold din assistant aktivt i arbejde."
                - "&7Dette hjælper din indkomst hvis det"
                - "&7vedligeholdes gennem dagene."
                - "&7Giver dig &b_AMOUNT_% &7af din indkomst."
                needs:
                    1:
                        island: 6
            GrassBoost:
                type: booster
                income_boost: 150
                description:
                - "&7Booster dit græs  du"
                - "&7får din egen indkomst i boost"
                - "&7for hvert græs du plukker."
                - "&b_AMOUNT_% &7af din indkomst for hvert græs."
                needs:
                    1:
                        island: 8
            DailyBoost:
                type: booster
                income_boost: 90000
                additional_boost: 2000
                description:
                - "&7Dette er den daglige"
                - "&7indsamling fra din assistant."
                - "&7Giver bonus hvis taget fortløbende."
                - "&7Giver dig &b_AMOUNT_% &7af din indkomst."
                needs:
                    1:
                        island: 10
            LetterBoost:
                type: booster
                income_boost: 18000
            plot:
                type: area
                position:
                    5: -7,0,24|-15,5,32
                needs:
                    1:
                        island: 5

            skib:
                type: building
                full_at_lvl: 1
                description:
                - "&7Bygger et skib."
                - "&7Giver adgang til at besøge andres ø"
                - "&7og adgang til andre kan besøge din"
                - "&7En Kaptajn vil også join din ø."
                upgrade_price: 20000
                needs:
                    1:
                        island: 2
                position:
                    2: -8,-2,-26
                1:
                    schematic: ship1
                2:
                    schematic: ship2
            hus:
                type: building
                full_at_lvl: 1
                description:
                - "&7Bygger et større hus."
                - "&7Viser statistikker  din ø."
                - "&7Giver adgang til at andre kan"
                - "&7se ydligere stats  din ø."
                upgrade_price: 35000
                needs:
                    1:
                        island: 3
                position:
                    3: 8,0,18
                1:
                    schematic: hus1
                    signs_to_clear:
                    - "7,4,21"
                    - "7,4,20"
                    - "7,4,19"
                    - "7,4,18"
                    - "7,4,17"
                    - "7,3,21"
                    - "7,3,20"
                    - "7,3,19"
                    - "7,3,18"
                    - "7,3,17"
            stald:
                type: building
                full_at_lvl: 1
                description:
                - "&7Bygger en stald."
                - "&7Giver adgang til at købe dyr."
                - "&7Dyr giver mere indkomst end planter."
                - "&7En assistant vil også join din ø."
                upgrade_price: 15000000
                needs:
                    1:
                        island: 5
                position:
                    1: 25,0,1
                1:
                    schematic: stald1
                    signs_to_clear:
                    - "16,3,5"
                    - "16,3,6"
                    - "16,3,7"
                    - "16,2,5"
                    - "16,2,6"
                    - "16,2,7"
            vindmolle:
                type: building
                full_at_lvl: 1
                description:
                - "&7Bygger en stald."
                - "&7Giver adgang til at andre kan"
                - "&7boost din ø og du kan gøre det samme."
                - "&7En overseer vil også join din ø."
                upgrade_price: 150000000
                needs:
                    1:
                        stald: 1
                        island: 7
                position:
                    1: 37,0,2
                1:
                    schematic: vindmolle1
            mine:
                type: building
                full_at_lvl: 1
                description:
                - "&7Bygger en indgang til minen."
                - "&7Men åbner også op for zombier"
                - "&7men Bot vil beskytte dig mod med."
                - "&7En miner vil også join din ø."
                upgrade_price: 15000000000
                needs:
                    1:
                        stald: 1
                        island: 8
                position:
                    1: 34,-1,-16
                1:
                    schematic: mine1
            house_manager:
                type: npc
                name: "&6Arkitekt"
                skin: Krel
                needs:
                    1:
                        island: 2
                position:
                    1: -1,1,-11
            plot_manager:
                type: npc
                name: "&6Sælger"
                skin: Ass
                needs:
                    1:
                        island: 5
                position:
                    1: 5,1,13
            ship_manager:
                type: npc
                name: "&6Kaptajn"
                skin: Pir
                needs:
                    1:
                        skib: 1
                position:
                    1: -8,1,-24
            Stald_manager:
                type: npc
                name: "&6Assistant"
                skin: Explorer
                needs:
                    1:
                        Stald: 1
                position:
                    1: 17,1,-2
            windmill_manager:
                type: npc
                name: "&6Overseer"
                skin: Soar
                needs:
                    1:
                        vindmolle: 1
                position:
                    1: 37,7.5,2
            mine_manager:
                type: npc
                name: "&6Samler"
                skin: Samler
                needs:
                    1:
                        mine: 1
                position:
                    1: 31,1,-13
            guide_manager:
                type: npc
                name: "&6Guide"
                skin: Jacki
                needs:
                    1:
                        island: 1
                position:
                    1: 2,1,2
            fish_manager:
                type: npc
                name: "&6Fiskeren"
                skin: Dude
                needs:
                    1:
                        island: 4
                position:
                    1: -5,2,-19
            mine_guard:
                type: turret
                needs:
                    1:
                        mine: 1
                position:
                    1: 34,-6,-23
            wheat:
                type: farm
                sign_pos:
                    1: 5,3,0
                    5: 7,4,21
                upgrade_price: 500
                needs:
                    1:
                        island: 1
                price_per_unit: 15
                income: 0.4
                farm_blocks:
                - soil,7
                - crops,7
                position:
                    1: 2,1,8|-3,1,13
                    5: 2,1,5|-3,1,10
            carrot:
                type: farm
                sign_pos:
                    2: 5,3,1
                    5: 7,4,20
                upgrade_price: 25000
                needs:
                    1:
                        island: 2
                price_per_unit: 1100
                income: 3
                farm_blocks:
                - soil,7
                - carrot,7
                position:
                    2: 6,1,-17|13,1,-22
            potato:
                type: farm
                sign_pos:
                    3: 5,3,2
                    5: 7,4,19
                upgrade_price: 190000
                needs:
                    1:
                        island: 3
                price_per_unit: 15000
                income: 70
                farm_blocks:
                - soil,7
                - potato,7
                position:
                    3: 13,1,11|17,1,19
                    4: 12,1,11|17,1,19
            melon:
                type: farm
                sign_pos:
                    4: 5,3,3
                    5: 7,4,18
                upgrade_price: 770000
                needs:
                    1:
                        island: 4
                price_per_unit: 390000
                income: 400
                farm_blocks:
                - dirt
                - melon_block
                position:
                    1: 0,0,0|0,0,0
                    4: 15,1,-13|21,1,-24
            pumpkin:
                type: farm
                sign_pos:
                    4: 7,4,17
                upgrade_price: 15000000
                needs:
                    1:
                        island: 5
                price_per_unit: 2300000
                income: 2500
                farm_blocks:
                - dirt
                - pumpkin
                position:
                    4: 19,1,9|26,1,18
            chicken:
                type: animal
                sign_pos:
                    1: 16,2,5
                upgrade_price: 6400000
                needs:
                    1:
                        island: 6
                        Stald: 1
                price_per_unit: 29000000
                income: 14000
                position:
                    1: 21.5,1,-2.5
            sheep:
                type: animal
                sign_pos:
                    1: 16,2,6
                upgrade_price: 880000000
                needs:
                    1:
                        island: 7
                        Stald: 1
                price_per_unit: 310000000
                income: 200000
                position:
                    1: 25.5,1,-2.5
            horse:
                type: animal
                sign_pos:
                    1: 16,2,7
                upgrade_price: 980000000000
                needs:
                    1:
                        island: 7
                        Stald: 1
                price_per_unit: 310000000000
                income: 2200000
                position:
                    1: 29.5,1,-2.5
            pig:
                type: animal
                sign_pos:
                    1: 16,3,5
                upgrade_price: 3200000000000000
                needs:
                    1:
                        island: 7
                        Stald: 1
                price_per_unit: 27000000000000
                income: 55000000
                position:
                    1: 21.5,1,5.5
            cow:
                type: animal
                sign_pos:
                    1: 16,3,6
                upgrade_price: 1300000000000000000000
                needs:
                    1:
                        island: 7
                        Stald: 1
                price_per_unit: 3400000000000000
                income: 68000000000
                position:
                    1: 25.5,1,5.5
            Mushroom_Cow:
                type: animal
                sign_pos:
                    1: 16,3,7
                upgrade_price: 28000000000000000000000
                needs:
                    1:
                        island: 7
                        Stald: 1
                price_per_unit: 2800000000000000000
                income: 110000000000000
                position:
                    1: 29.5,1,5.5
        # farm:
            # 5:
                # title: "Sugar Cane"
                # price: 750000000000
                # income: 5200000000
                # farm_position:
                    # 1: 15,0,0|19,0,10
                    # 2: 15,0,0|19,0,10