mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'pyrotechnics' into 'master'
add fireworks and bombs back to chests, sahagin tier and above See merge request veloren/veloren!4413
This commit is contained in:
commit
e6e8b246b0
@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
### Changed
|
||||
|
||||
- Fireworks and bombs are (again) available from chests (Sahagin and above).
|
||||
|
||||
### Removed
|
||||
|
||||
### Fixed
|
||||
|
9
assets/common/loot_tables/consumables/pyrotechnics.ron
Normal file
9
assets/common/loot_tables/consumables/pyrotechnics.ron
Normal file
@ -0,0 +1,9 @@
|
||||
[
|
||||
(0.4, Item("common.items.utility.bomb")),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_yellow"), 1, 3)),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_red"), 1, 3)),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_green"), 1, 3)),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_blue"), 1, 3)),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_purple"), 1, 3)),
|
||||
(0.1, MultiDrop(Item("common.items.utility.firework_white"), 1, 3)),
|
||||
]
|
@ -1,12 +1,20 @@
|
||||
[
|
||||
// Gear
|
||||
(0.25, LootTable("common.loot_tables.weapons.cultist")),
|
||||
(0.25, LootTable("common.loot_tables.armor.cultist")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 1000, 2000)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
|
||||
(0.1, MultiDrop(Item("common.items.food.spore_corruption"), 1, 3)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 3, 6)),
|
||||
(1.0, All([
|
||||
Lottery([
|
||||
// Gear
|
||||
(0.25, LootTable("common.loot_tables.weapons.cultist")),
|
||||
(0.25, LootTable("common.loot_tables.armor.cultist")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 1000, 2000)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
|
||||
(0.1, MultiDrop(Item("common.items.food.spore_corruption"), 1, 3)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 3, 6)),
|
||||
]),
|
||||
Lottery([
|
||||
(0.6, Nothing),
|
||||
(0.4, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
])
|
||||
])),
|
||||
]
|
||||
|
@ -1,12 +1,20 @@
|
||||
[
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-3")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-3")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-3")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 250, 500)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 2, 5)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 2, 4)),
|
||||
(1.0, All([
|
||||
Lottery([
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-3")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-3")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-3")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 250, 500)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 2, 5)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 2, 4)),
|
||||
]),
|
||||
Lottery([
|
||||
(0.7, Nothing),
|
||||
(0.3, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
])
|
||||
])),
|
||||
]
|
||||
|
@ -1,13 +1,21 @@
|
||||
[
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-4")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-4")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-4")),
|
||||
(0.1, Item("common.items.armor.misc.head.spikeguard")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 500, 1000)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 2, 5)),
|
||||
(1.0, All([
|
||||
Lottery([
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-4")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-4")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-4")),
|
||||
(0.1, Item("common.items.armor.misc.head.spikeguard")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 500, 1000)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 2, 5)),
|
||||
]),
|
||||
Lottery([
|
||||
(0.6, Nothing),
|
||||
(0.4, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
])
|
||||
])),
|
||||
]
|
||||
|
@ -1,12 +1,20 @@
|
||||
[
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-2")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-2")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-2")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 100, 250)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 2, 5)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 1, 4)),
|
||||
(1.0, All([
|
||||
Lottery([
|
||||
// Gear
|
||||
(0.5, LootTable("common.loot_tables.weapons.components.tier-2")),
|
||||
(0.25, LootTable("common.loot_tables.weapons.tier-2")),
|
||||
(0.25, LootTable("common.loot_tables.armor.tier-2")),
|
||||
// Currency
|
||||
(3.0, MultiDrop(Item("common.items.utility.coins"), 100, 250)),
|
||||
// Consumables
|
||||
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 2, 5)),
|
||||
// Food
|
||||
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 1, 4)),
|
||||
]),
|
||||
Lottery([
|
||||
(0.8, Nothing),
|
||||
(0.2, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
])
|
||||
])),
|
||||
]
|
||||
|
@ -1,5 +1,13 @@
|
||||
[
|
||||
// Ingredients
|
||||
(2.0, Item("common.items.crafting_ing.coral_branch")),
|
||||
(0.5, Item("common.items.crafting_ing.pearl")),
|
||||
]
|
||||
(1.0, All([
|
||||
Lottery([
|
||||
// Ingredients
|
||||
(2.0, Item("common.items.crafting_ing.coral_branch")),
|
||||
(0.5, Item("common.items.crafting_ing.pearl")),
|
||||
]),
|
||||
Lottery([
|
||||
(0.6, Nothing),
|
||||
(0.4, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
])
|
||||
])),
|
||||
]
|
||||
|
@ -1,4 +1,10 @@
|
||||
[
|
||||
// Key
|
||||
(1.0, Item("common.items.keys.terracotta_key_door")),
|
||||
]
|
||||
(1.0, All([
|
||||
// Key
|
||||
Item("common.items.keys.terracotta_key_door"),
|
||||
Lottery([
|
||||
(0.4, Nothing),
|
||||
(0.6, LootTable("common.loot_tables.consumables.pyrotechnics")),
|
||||
]),
|
||||
])),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user