From b82a0271085b74cbf4abd25bb2f8f335bed9601b Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 23 Jan 2023 20:53:09 +0700 Subject: [PATCH] even lesser chance for android pills in dungeons Fixes #160 --- .../dbotthepony/mc/otm/datagen/loot/LootModifiersData.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootModifiersData.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootModifiersData.kt index 4d9d3b332..61e301237 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootModifiersData.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootModifiersData.kt @@ -71,14 +71,14 @@ fun addLootModifiers(it: LootModifiers) { it.add("dungeon_pill", PlainLootAppender( arrayOf(LootTableIdCondition(BuiltInLootTables.SIMPLE_DUNGEON)), - ItemStack(MItems.PILL_ANDROID, 1) to 0.4, + ItemStack(MItems.PILL_ANDROID, 1) to 0.1, ItemStack(MItems.PILL_HEAL, 2) to 0.5, ItemStack(MItems.PILL_HEAL, 1) to 0.75, )) it.add("mineshaft_pill", PlainLootAppender( arrayOf(LootTableIdCondition(BuiltInLootTables.ABANDONED_MINESHAFT)), - ItemStack(MItems.PILL_ANDROID, 1) to 0.075, + ItemStack(MItems.PILL_ANDROID, 1) to 0.04, ItemStack(MItems.PILL_HEAL, 2) to 0.1, ItemStack(MItems.PILL_HEAL, 1) to 0.4, )) @@ -92,7 +92,7 @@ fun addLootModifiers(it: LootModifiers) { it.add("desert_pyramid_pill", PlainLootAppender( arrayOf(LootTableIdCondition(BuiltInLootTables.DESERT_PYRAMID)), - ItemStack(MItems.PILL_ANDROID, 1) to 0.05, + ItemStack(MItems.PILL_ANDROID, 1) to 0.15, ItemStack(MItems.PILL_HEAL, 1) to 0.3, )) @@ -103,7 +103,7 @@ fun addLootModifiers(it: LootModifiers) { it.add("end_city_modifications", PlainLootAppender( arrayOf(LootTableIdCondition(BuiltInLootTables.END_CITY_TREASURE)), - ItemStack(MItems.PILL_ANDROID, 1) to 0.1, + ItemStack(MItems.PILL_ANDROID, 1) to 0.15, ItemStack(MItems.PILL_HUMANE, 1) to 0.3, ItemStack(MItems.PILL_OBLIVION, 1) to 0.5, ItemStack(MItems.ZPM_BATTERY, 1) to 0.005,