FILES ----- biomes\distributions.config [NEW] interface\scripted\techupgrade\suits\novakid-male-head.png items\buildscripts\buildbow.lua items\buildscripts\buildfist.lua items\buildscripts\buildfood.lua items\buildscripts\buildshield.lua items\buildscripts\buildunrandshield.lua items\buildscripts\buildunrandweapon.lua items\buildscripts\buildweapon.lua items\buildscripts\buildwhip.lua monsters\mission\minidrone\minidrone.monstertype treasure\biome.treasurepools treasure\monster.treasurepools treasure\missions\apexmission1.treasurepools DIFFS ----- biomes\distributions.config 343c343 < --- > 436c436 < --- > items\buildscripts\buildbow.lua 5c5 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) items\buildscripts\buildfist.lua 3c3 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) items\buildscripts\buildfood.lua 1c1 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) items\buildscripts\buildshield.lua 4c4 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) 20,22c20 < local seed = configParameter("seed") < if not seed then < seed = math.random(1, 4294967295) --- > if seed then 23a22,28 > else > seed = configParameter("seed") > if not seed then > math.randomseed(util.seedTime()) > seed = math.random(1, 4294967295) > parameters.seed = seed > end items\buildscripts\buildunrandshield.lua 3c3 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) items\buildscripts\buildunrandweapon.lua 6c6 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) items\buildscripts\buildweapon.lua 7c7 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) 23,26c23 < local seed = configParameter("seed") < if not seed then < math.randomseed(util.seedTime()) < seed = math.random(1, 4294967295) --- > if seed then 27a25,31 > else > seed = configParameter("seed") > if not seed then > math.randomseed(util.seedTime()) > seed = math.random(1, 4294967295) > parameters.seed = seed > end items\buildscripts\buildwhip.lua 4c4 < function build(directory, config, parameters, level) --- > function build(directory, config, parameters, level, seed) monsters\mission\minidrone\minidrone.monstertype 13c13 < "dropPools" : [ { "default" : "minidroneTreasure" } ], --- > "dropPools" : [ { "default" : "smallRobotTreasure" } ], treasure\biome.treasurepools 212,213c212,213 < {"weight" : 0.3, "pool" : "basicTreasure"}, < {"weight" : 0.7, "pool" : "oceanTreasure"} --- > {"weight" : 0.5, "pool" : "basicTreasure"}, > {"weight" : 0.5, "pool" : "oceanTreasure"} 256,257c256,257 < {"weight" : 0.3, "pool" : "basicTreasure"}, < {"weight" : 0.7, "pool" : "oceanFloorTreasure"} --- > {"weight" : 0.5, "pool" : "basicTreasure"}, > {"weight" : 0.5, "pool" : "oceanFloorTreasure"} 334,369d333 < // Midnight < // ================================ < < "shadowChestTreasure" : [ < [1, { < "fill" : [ < {"pool" : "valuableTreasure"} < ], < "pool" : [ < {"weight" : 0.5, "pool" : "basicTreasure"}, < {"weight" : 0.5, "pool" : "shadowTreasure"} < ], < "poolRounds" : [ < [0.05, 1], < [0.40, 2], < [0.30, 3], < [0.15, 4], < [0.10, 5] < ], < "allowDuplication" : false < }] < ], < < "shadowTreasure" : [ < [1, { < "pool" : [ < {"weight" : 0.3, "item" : "medkit"}, < {"weight" : 0.1, "item" : "darkcapeback"}, < {"weight" : 0.1, "item" : "darkdisguisehead"}, < {"weight" : 0.1, "item" : "darkdisguisechest"}, < {"weight" : 0.1, "item" : "darkdisguiselegs"} < ] < }] < ], < < // ================================ 468a433,469 > > // ================================ > // Midnight > // ================================ > > "shadowChestTreasure" : [ > [1, { > "fill" : [ > {"pool" : "valuableTreasure"} > ], > "pool" : [ > {"weight" : 0.5, "pool" : "basicTreasure"}, > {"weight" : 0.5, "pool" : "shadowTreasure"} > ], > "poolRounds" : [ > [0.05, 1], > [0.40, 2], > [0.30, 3], > [0.15, 4], > [0.10, 5] > ], > "allowDuplication" : false > }] > ], > > "shadowTreasure" : [ > [1, { > "pool" : [ > {"weight" : 0.3, "item" : "medkit"}, > {"weight" : 0.1, "item" : "darkcapeback"}, > {"weight" : 0.1, "item" : "darkdisguisehead"}, > {"weight" : 0.1, "item" : "darkdisguisechest"}, > {"weight" : 0.1, "item" : "darkdisguiselegs"} > ] > }] > ], > 504a506,558 > // ================================ > // Scorched City > // ================================ > > "scorchedcityChestTreasure" : [ > [1, { > "fill" : [ > {"pool" : "valuableTreasure"} > ], > "pool" : [ > {"weight" : 0.5, "pool" : "basicTreasure"}, > {"weight" : 0.5, "pool" : "scorchedcityTreasure"} > ], > "poolRounds" : [ > [0.05, 1], > [0.40, 2], > [0.30, 3], > [0.15, 4], > [0.10, 5] > ], > "allowDuplication" : false > }] > ], > > "scorchedcityTreasure" : [ > [1, { > "pool" : [ > {"weight" : 0.3, "item" : "scorchedcitybed-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitychair-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitychestdrawerlarge-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitychestdrawersmall-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitytable-recipe"}, > {"weight" : 0.3, "item" : "scorchedcityfridge-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitytv-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitycounter-recipe"}, > {"weight" : 0.3, "item" : "scorchedcityregister-recipe"}, > {"weight" : 0.3, "item" : "scorchedcitystoreshelf-recipe"}, > {"weight" : 0.1, "item" : "deadbeathelmhead"}, > {"weight" : 0.1, "item" : "deadbeathornhelmhead"}, > {"weight" : 0.1, "item" : "deadbeathornmaskhead"}, > {"weight" : 0.1, "item" : "deadbeathornshead"}, > {"weight" : 0.1, "item" : "deadbeatleatherchest"}, > {"weight" : 0.1, "item" : "deadbeatleatherlegs"}, > {"weight" : 0.1, "item" : "deadbeatmaskhead"}, > {"weight" : 0.1, "item" : "deadbeatnerdhead"}, > {"weight" : 0.1, "item" : "deadbeatspandexchest"}, > {"weight" : 0.1, "item" : "deadbeatspandexlegs"}, > {"weight" : 0.1, "item" : "deadbeatstrapschest"}, > {"weight" : 0.1, "item" : "deadbeatstrapslegs"} > ] > }] > ], > 514a569,571 > "fill" : [ > {"pool" : "mushroomTreasure"} > ], 516,517c573,574 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "mushroomTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "mushroomTreasure"} 520d576 < [0.05, 1], 522,524c578,579 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 554a610,612 > "fill" : [ > {"pool" : "springTreasure"} > ], 556,557c614,615 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "springTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "springTreasure"} 560d617 < [0.05, 1], 562,564c619,620 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 594a651,653 > "fill" : [ > {"pool" : "oasisTreasure"} > ], 596,597c655,656 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "oasisTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "oasisTreasure"} 600d658 < [0.05, 1], 602,604c660,661 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 634a692,694 > "fill" : [ > {"pool" : "tarTreasure"} > ], 636,637c696,697 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "tarTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "tarTreasure"} 640d699 < [0.05, 1], 642,644c701,702 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 676a735,737 > "fill" : [ > {"pool" : "rainbowTreasure"} > ], 678,679c739,740 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "rainbowTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "rainbowTreasure"} 682d742 < [0.05, 1], 684,686c744,745 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 734a794,796 > "fill" : [ > {"pool" : "boneTreasure"} > ], 736,737c798,799 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "boneTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "boneTreasure"} 740d801 < [0.05, 1], 742,744c803,804 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 776a837,839 > "fill" : [ > {"pool" : "alpineTreasure"} > ], 778,779c841,842 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "alpineTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "alpineTreasure"} 782d844 < [0.05, 1], 784,786c846,847 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 813a875,877 > "fill" : [ > {"pool" : "bioluminescenceTreasure"} > ], 815,816c879,880 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "bioluminescenceTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "bioluminescenceTreasure"} 819d882 < [0.05, 1], 821,823c884,885 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 854a917,919 > "fill" : [ > {"pool" : "giantflowerTreasure"} > ], 856,857c921,922 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "giantflowerTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "giantflowerTreasure"} 860d924 < [0.05, 1], 862,864c926,927 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 899c962 < {"pool" : "valuableTreasure"} --- > {"pool" : "swampTreasure"} 902,903c965,966 < {"weight" : 0.5, "pool" : "basicTreasure"}, < {"weight" : 0.5, "pool" : "swampTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "swampTreasure"} 906d968 < [0.05, 1], 908,910c970,971 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 940a1002,1004 > "fill" : [ > {"pool" : "eyeTreasure"} > ], 942,943c1006,1007 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "eyeTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "eyeTreasure"} 946d1009 < [0.05, 1], 948,950c1011,1012 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 996a1059,1061 > "fill" : [ > {"pool" : "iceTreasure"} > ], 998,999c1063,1064 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "iceTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "iceTreasure"} 1002d1066 < [0.05, 1], 1004,1006c1068,1069 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1043c1106 < {"pool" : "valuableTreasure"} --- > {"pool" : "steamspringTreasure"} 1046,1047c1109,1110 < {"weight" : 0.5, "pool" : "basicTreasure"}, < {"weight" : 0.5, "pool" : "steamspringTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "steamspringTreasure"} 1050d1112 < [0.05, 1], 1052,1054c1114,1115 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1084c1145 < {"pool" : "valuableTreasure"} --- > {"pool" : "prismTreasure"} 1087,1088c1148,1149 < {"weight" : 0.5, "pool" : "basicTreasure"}, < {"weight" : 0.5, "pool" : "prismTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "prismTreasure"} 1091d1151 < [0.05, 1], 1093,1095c1153,1154 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1124a1184,1186 > "fill" : [ > {"pool" : "hiveTreasure"} > ], 1126,1127c1188,1189 < {"weight" : 0.5, "pool" : "basicTreasure"}, < {"weight" : 0.5, "pool" : "hiveTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "hiveTreasure"} 1130d1191 < [0.05, 1], 1132,1134c1193,1194 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1157c1217 < // Rust --- > // Foundry 1161a1222,1224 > "fill" : [ > {"pool" : "foundryTreasure"} > ], 1163,1164c1226,1227 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "foundryTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "foundryTreasure"} 1167d1229 < [0.05, 1], 1169,1171c1231,1232 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1195a1257,1259 > "fill" : [ > {"pool" : "geodeTreasure"} > ], 1197,1198c1261,1262 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "geodeTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "geodeTreasure"} 1201d1264 < [0.05, 1], 1203,1205c1266,1267 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1239a1302,1304 > "fill" : [ > {"pool" : "crystalTreasure"} > ], 1241,1242c1306,1307 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "crystalTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "crystalTreasure"} 1245d1309 < [0.05, 1], 1247,1249c1311,1312 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1268,1317d1330 < // ================================ < // Scorched City < // ================================ < < "scorchedcityChestTreasure" : [ < [1, { < "pool" : [ < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "scorchedcityTreasure"} < ], < "poolRounds" : [ < [0.05, 1], < [0.40, 2], < [0.30, 3], < [0.15, 4], < [0.10, 5] < ], < "allowDuplication" : false < }] < ], < < "scorchedcityTreasure" : [ < [1, { < "pool" : [ < {"weight" : 0.3, "item" : "scorchedcitybed-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitychair-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitychestdrawerlarge-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitychestdrawersmall-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitytable-recipe"}, < {"weight" : 0.3, "item" : "scorchedcityfridge-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitytv-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitycounter-recipe"}, < {"weight" : 0.3, "item" : "scorchedcityregister-recipe"}, < {"weight" : 0.3, "item" : "scorchedcitystoreshelf-recipe"}, < {"weight" : 0.1, "item" : "deadbeathelmhead"}, < {"weight" : 0.1, "item" : "deadbeathornhelmhead"}, < {"weight" : 0.1, "item" : "deadbeathornmaskhead"}, < {"weight" : 0.1, "item" : "deadbeathornshead"}, < {"weight" : 0.1, "item" : "deadbeatleatherchest"}, < {"weight" : 0.1, "item" : "deadbeatleatherlegs"}, < {"weight" : 0.1, "item" : "deadbeatmaskhead"}, < {"weight" : 0.1, "item" : "deadbeatnerdhead"}, < {"weight" : 0.1, "item" : "deadbeatspandexchest"}, < {"weight" : 0.1, "item" : "deadbeatspandexlegs"}, < {"weight" : 0.1, "item" : "deadbeatstrapschest"}, < {"weight" : 0.1, "item" : "deadbeatstrapslegs"} < ] < }] < ], < 1327a1341,1343 > "fill" : [ > {"pool" : "mushroomUndergroundTreasure"} > ], 1329,1330c1345,1346 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "mushroomUndergroundTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "mushroomUndergroundTreasure"} 1333d1348 < [0.05, 1], 1335,1337c1350,1351 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1366a1381,1383 > "fill" : [ > {"pool" : "wildernessTreasure"} > ], 1368,1369c1385,1386 < {"weight" : 0.4, "pool" : "basicTreasure"}, < {"weight" : 0.6, "pool" : "wildernessTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "wildernessTreasure"} 1372d1388 < [0.05, 1], 1374,1376c1390,1391 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1419a1435,1437 > "fill" : [ > {"pool" : "tarUndergroundTreasure"} > ], 1421,1422c1439,1440 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "tarUndergroundTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "tarUndergroundTreasure"} 1425d1442 < [0.05, 1], 1427,1429c1444,1445 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1462a1479,1481 > "fill" : [ > {"pool" : "boneCaveTreasure"} > ], 1464,1465c1483,1484 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "boneCaveTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "boneCaveTreasure"} 1468d1486 < [0.05, 1], 1470,1472c1488,1489 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1501a1519,1521 > "fill" : [ > {"pool" : "iceCaveTreasure"} > ], 1503,1504c1523,1524 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "iceCaveTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "iceCaveTreasure"} 1507d1526 < [0.05, 1], 1509,1511c1528,1529 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1536a1555,1557 > "fill" : [ > {"pool" : "stoneCaveTreasure"} > ], 1538,1539c1559,1560 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "stoneCaveTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "stoneCaveTreasure"} 1542d1562 < [0.05, 1], 1544,1546c1564,1565 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1573a1593,1595 > "fill" : [ > {"pool" : "luminousCaveTreasure"} > ], 1575,1576c1597,1598 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "luminousCaveTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "luminousCaveTreasure"} 1579d1600 < [0.05, 1], 1581,1583c1602,1603 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1608a1629,1631 > "fill" : [ > {"pool" : "fleshTreasure"} > ], 1610,1611c1633,1634 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "fleshTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "fleshTreasure"} 1614d1636 < [0.05, 1], 1616,1618c1638,1639 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1648a1670,1672 > "fill" : [ > {"pool" : "cellTreasure"} > ], 1650,1651c1674,1675 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "cellTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "cellTreasure"} 1654d1677 < [0.05, 1], 1656,1658c1679,1680 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] 1682a1705,1707 > "fill" : [ > {"pool" : "slimeTreasure"} > ], 1684,1685c1709,1710 < {"weight" : 0.2, "pool" : "basicTreasure"}, < {"weight" : 0.8, "pool" : "slimeTreasure"} --- > {"weight" : 0.7, "pool" : "basicTreasure"}, > {"weight" : 0.3, "pool" : "slimeTreasure"} 1688d1712 < [0.05, 1], 1690,1692c1714,1715 < [0.30, 3], < [0.15, 4], < [0.10, 5] --- > [0.40, 3], > [0.20, 4] treasure\monster.treasurepools 1125,1126c1125,1126 < [0.5, 0], < [0.5, 1] --- > [0.6, 0], > [0.4, 1] treasure\missions\apexmission1.treasurepools 69,83d68 < "minidroneTreasure" : [ < [1, { < "pool" : [ < {"weight" : 0.98, "pool" : "money"}, < {"weight" : 0.01, "item" : "manipulatormodule"}, < {"weight" : 0.01, "item" : ["techchip", 1]} < ], < "poolRounds" : [ < [0.5, 0], < [0.5, 1] < ], < "allowDuplication" : false < }] < ], <