Chuck more ruined spell books into the ocean, and fish all the master spells back out

This commit is contained in:
Electroblob77
2020-09-09 22:40:55 +01:00
parent 7ae041595a
commit 70a55d1175
2 changed files with 6 additions and 2 deletions
@@ -107,7 +107,7 @@ public final class WizardryLoot {
// This is because you are supposed to only catch one item at a time! // This is because you are supposed to only catch one item at a time!
if(event.getName().toString().matches("minecraft:gameplay/fishing/junk")){ if(event.getName().toString().matches("minecraft:gameplay/fishing/junk")){
// The first (and in this case, only) vanilla loot pool is named "main" // The first (and in this case, only) vanilla loot pool is named "main"
event.getTable().getPool("main").addEntry(getAdditiveEntry(Wizardry.MODID + ":gameplay/fishing/junk_additions", 2)); event.getTable().getPool("main").addEntry(getAdditiveEntry(Wizardry.MODID + ":gameplay/fishing/junk_additions", 3));
}else if(event.getName().toString().matches("minecraft:gameplay/fishing/treasure")){ }else if(event.getName().toString().matches("minecraft:gameplay/fishing/treasure")){
event.getTable().getPool("main").addEntry(getAdditiveEntry(Wizardry.MODID + ":gameplay/fishing/treasure_additions", 1)); event.getTable().getPool("main").addEntry(getAdditiveEntry(Wizardry.MODID + ":gameplay/fishing/treasure_additions", 1));
} }
@@ -11,7 +11,11 @@
"functions": [ "functions": [
{ {
"function": "ebwizardry:random_spell", "function": "ebwizardry:random_spell",
"undiscovered_bias": 0.3 "tiers": [
"novice",
"apprentice",
"advanced"
]
} }
] ]
} }