From 7e909be2b528b92c45f63c09f7ba154aaa209eec Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Sun, 23 May 2021 01:00:08 +0300 Subject: [PATCH] Move fireworks into own table --- assets/common/loot_tables/dungeon/tier-5/enemy.ron | 7 +------ assets/common/loot_tables/fireworks.ron | 8 ++++++++ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 assets/common/loot_tables/fireworks.ron diff --git a/assets/common/loot_tables/dungeon/tier-5/enemy.ron b/assets/common/loot_tables/dungeon/tier-5/enemy.ron index 3e7b6ee929..3654da6f6e 100644 --- a/assets/common/loot_tables/dungeon/tier-5/enemy.ron +++ b/assets/common/loot_tables/dungeon/tier-5/enemy.ron @@ -14,11 +14,6 @@ (0.1, Item("common.items.glider.glider_blue")), (0.001, Item("common.items.armor.misc.back.backpack")), (0.1, Item("common.items.armor.misc.bag.heavy_seabag")), - (0.1, Item("common.items.utility.firework_blue")), - (0.1, Item("common.items.utility.firework_green")), - (0.1, Item("common.items.utility.firework_purple")), - (0.1, Item("common.items.utility.firework_red")), - (0.1, Item("common.items.utility.firework_white")), - (0.1, Item("common.items.utility.firework_yellow")), + (0.5, LootTable("common.loot_tables.fireworks")), (0.5, Item("common.items.utility.bomb")), ] diff --git a/assets/common/loot_tables/fireworks.ron b/assets/common/loot_tables/fireworks.ron new file mode 100644 index 0000000000..cbc01fc4b5 --- /dev/null +++ b/assets/common/loot_tables/fireworks.ron @@ -0,0 +1,8 @@ +[ + (0.1, Item("common.items.utility.firework_blue")), + (0.1, Item("common.items.utility.firework_green")), + (0.1, Item("common.items.utility.firework_purple")), + (0.1, Item("common.items.utility.firework_red")), + (0.1, Item("common.items.utility.firework_white")), + (0.1, Item("common.items.utility.firework_yellow")), +]