mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Added some more dungeon loot
This commit is contained in:
parent
581c9819e4
commit
0481a56794
1 changed files with 12 additions and 0 deletions
|
@ -81,6 +81,18 @@ public class DungeonLoot{
|
||||||
addDrillCore = true;
|
addDrillCore = true;
|
||||||
addBatWings = true;
|
addBatWings = true;
|
||||||
}
|
}
|
||||||
|
else if(LootTableList.CHESTS_NETHER_BRIDGE.equals(event.getName())){
|
||||||
|
addBatWings = true;
|
||||||
|
addCrystals = true;
|
||||||
|
addDrillCore = true;
|
||||||
|
addBook = true;
|
||||||
|
}
|
||||||
|
else if(LootTableList.CHESTS_END_CITY_TREASURE.equals(event.getName())){
|
||||||
|
addBatWings = true;
|
||||||
|
addCrystals = true;
|
||||||
|
addDrillCore = true;
|
||||||
|
addQuartz = true;
|
||||||
|
}
|
||||||
else if(JAM_HOUSE.equals(event.getName())){
|
else if(JAM_HOUSE.equals(event.getName())){
|
||||||
LootFunction jamDamage = new SetMetadata(noCondition, new RandomValueRange(0, TheJams.values().length-1));
|
LootFunction jamDamage = new SetMetadata(noCondition, new RandomValueRange(0, TheJams.values().length-1));
|
||||||
LootFunction jamAmount = new SetCount(noCondition, new RandomValueRange(3, 5));
|
LootFunction jamAmount = new SetCount(noCondition, new RandomValueRange(3, 5));
|
||||||
|
|
Loading…
Reference in a new issue