updated dungeon cyclops loot table

This commit is contained in:
Maxicarlos08 2023-09-08 00:08:39 +02:00
parent 22a8f3ca89
commit e1da740394
No known key found for this signature in database
5 changed files with 22 additions and 21 deletions

View File

@ -3,7 +3,10 @@
name: Automatic,
body: RandomWith("cyclops"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.myrmidon.miniboss"),
loot: All([
LootTable("common.loot_tables.dungeon.myrmidon.miniboss"),
LootTable("common.loot_tables.dungeon.myrmidon.miniboss_extra"),
]),
inventory: (
loadout: FromBody,
),

View File

@ -1,9 +1,9 @@
[
(1.5, All([
(1.2, All([
MultiDrop(Item("common.items.food.meat.bird_large_raw"), 3, 4),
MultiDrop(Item("common.items.crafting_ing.animal_misc.phoenix_feather"), 1, 3),
],
)),
(0.1, Item("common.items.glider.monarch")),
(0.4, Item("common.items.glider.monarch")),
(0.4, Item("common.items.weapons.bow.sagitta")),
]

View File

@ -1,13 +1,8 @@
[
(1.9, All([
(1.0, All([
Item("common.items.keys.quarry_keys.cyclops_eye"),
MultiDrop(Item("common.items.utility.coins"), 200, 500),
MultiDrop(Item("common.items.mineral.ingot.iron"), 5, 10),
],
)),
(0.1, All([
Item("common.items.keys.quarry_keys.cyclops_eye"),
Item("common.items.weapons.hammer.mjolnir"),
],
)),
]

View File

@ -1,14 +1,9 @@
[
// Armor
(2.0, LootTable("common.loot_tables.weapons.tier-5")),
(2.0, LootTable("common.loot_tables.armor.tier-5")),
// Consumables
(5.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
// lantern
(1.0, Item("common.items.lantern.blue_0")),
// Gear
(2.0, Item("common.items.armor.misc.head.mitre")),
// Crafting material
// Allow for Eldwood to drop till entity droppers are implemented
(1.0, MultiDrop(Item("common.items.log.eldwood"), 2, 4)),
(1.05, Nothing),
// Lantern drop
(0.15, Item("common.items.lantern.blue_0")),
// Hat drop
(0.3, Item("common.items.armor.misc.head.mitre")),
// Allow for Eldwood to drop until entity droppers are implemented
(0.5, MultiDrop(Item("common.items.log.eldwood"), 1, 3)),
]

View File

@ -0,0 +1,8 @@
[
// Mats, always dropped
(1.0, All([
MultiDrop(Item("common.items.utility.coins"), 200, 500),
MultiDrop(Item("common.items.mineral.ingot.iron"), 5, 10),
MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8),
])),
]