Various small fixes for 1.12

This commit is contained in:
Philipp Rustemeier
2018-03-14 22:37:46 +01:00
parent 489fb82fbd
commit 62c2a9e9b8
604 changed files with 299 additions and 130 deletions
@@ -0,0 +1,92 @@
{
"pools": [
{
"name": "wizardry",
"rolls": {
"min": 3,
"max": 7
},
"entries": [
{
"type": "loot_table",
"name": "wizardry:subsets/novice_wands",
"weight": 3
},
{
"type": "loot_table",
"name": "wizardry:subsets/wizard_armour",
"weight": 6
},
{
"type": "loot_table",
"name": "wizardry:subsets/arcane_tomes",
"weight": 6
},
{
"type": "loot_table",
"name": "wizardry:subsets/wand_upgrades",
"weight": 2
},
{
"type": "item",
"name": "wizardry:magic_crystal",
"weight": 5,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 4
}
}
]
},
{
"type": "item",
"name": "wizardry:spell_book",
"weight": 20,
"functions": [
{
"function": "wizardry:random_spell"
}
]
},
{
"type": "item",
"name": "wizardry:scroll",
"weight": 10,
"functions": [
{
"function": "wizardry:random_spell"
}
]
},
{
"type": "item",
"name": "wizardry:armour_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:identification_scroll",
"weight": 3
},
{
"type": "item",
"name": "wizardry:firebomb",
"weight": 4
},
{
"type": "item",
"name": "wizardry:poison_bomb",
"weight": 4
},
{
"type": "item",
"name": "wizardry:smoke_bomb",
"weight": 4
}
]
}
]
}
@@ -0,0 +1,77 @@
{
"pools": [
{
"name": "wizardry",
"rolls": {
"min": 3,
"max": 7
},
"entries": [
{
"type": "loot_table",
"name": "wizardry:subsets/novice_wands",
"weight": 3
},
{
"type": "loot_table",
"name": "wizardry:subsets/wizard_armour",
"weight": 6
},
{
"type": "loot_table",
"name": "wizardry:subsets/arcane_tomes",
"weight": 6
},
{
"type": "loot_table",
"name": "wizardry:subsets/wand_upgrades",
"weight": 2
},
{
"type": "item",
"name": "wizardry:magic_crystal",
"weight": 5,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 4
}
}
]
},
{
"type": "item",
"name": "wizardry:spell_book",
"weight": 20,
"functions": [
{
"function": "wizardry:random_spell"
}
]
},
{
"type": "item",
"name": "wizardry:scroll",
"weight": 10,
"functions": [
{
"function": "wizardry:random_spell"
}
]
},
{
"type": "item",
"name": "wizardry:armour_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:identification_scroll",
"weight": 3
}
]
}
]
}
@@ -0,0 +1,55 @@
{
"pools": [
{
"name": "common",
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:magic_crystal",
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 3,
"max": 5
},
"function": "looting_enchant",
"count": {
"min": 0,
"max": 1
}
}
]
}
]
},
{
"name": "rare",
"conditions": [
{
"condition": "killed_by_player"
},
{
"condition": "random_chance_with_looting",
"chance": 0.05,
"looting_multiplier": 0.01
}
],
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:spell_book",
"weight": 1,
"functions": [
{
"function": "wizardry:wizard_spell"
}
]
}
]
}
]
}
@@ -0,0 +1,29 @@
{
"pools": [
{
"conditions": [
{
"condition": "killed_by_player"
},
{
"condition": "random_chance_with_looting",
"chance": 0.02,
"looting_multiplier": 0.01
}
],
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:spell_book",
"weight": 1,
"functions": [
{
"function": "wizardry:random_spell"
}
]
}
]
}
]
}
@@ -0,0 +1,46 @@
{
"pools": [
{
"name": "tomes",
"rolls": 1,
"entries": [
{
"type": "item",
"entryName": "apprentice_tome",
"name": "wizardry:arcane_tome",
"weight": 3,
"functions": [
{
"function": "set_data",
"data": 1
}
]
},
{
"type": "item",
"entryName": "advanced_tome",
"name": "wizardry:arcane_tome",
"weight": 2,
"functions": [
{
"function": "set_data",
"data": 2
}
]
},
{
"type": "item",
"entryName": "master_tome",
"name": "wizardry:arcane_tome",
"weight": 1,
"functions": [
{
"function": "set_data",
"data": 3
}
]
}
]
}
]
}
@@ -0,0 +1,50 @@
{
"pools": [
{
"name": "wands",
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:magic_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_fire_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_ice_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_lightning_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_necromancy_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_earth_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_sorcery_wand",
"weight": 1
},
{
"type": "item",
"name": "wizardry:basic_healing_wand",
"weight": 1
}
]
}
]
}
@@ -0,0 +1,50 @@
{
"pools": [
{
"name": "upgrades",
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:condenser_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:siphon_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:storage_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:range_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:duration_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:cooldown_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:blast_upgrade",
"weight": 1
},
{
"type": "item",
"name": "wizardry:attunement_upgrade",
"weight": 1
}
]
}
]
}
@@ -0,0 +1,170 @@
{
"pools": [
{
"name": "armour",
"rolls": 1,
"entries": [
{
"type": "item",
"name": "wizardry:wizard_hat",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_fire",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_ice",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_lightning",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_necromancy",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_earth",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_sorcery",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_hat_healing",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_fire",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_ice",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_lightning",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_necromancy",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_earth",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_sorcery",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_robe_healing",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_fire",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_ice",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_lightning",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_necromancy",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_earth",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_sorcery",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_leggings_healing",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_fire",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_ice",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_lightning",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_necromancy",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_earth",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_sorcery",
"weight": 1
},
{
"type": "item",
"name": "wizardry:wizard_boots_healing",
"weight": 1
}
]
}
]
}