mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
843 B
Rust
22 lines
843 B
Rust
[
|
|
// Crafting Ingredients
|
|
(5.0, LootTable("common.loot_tables.materials.common")),
|
|
// Consumables
|
|
(0.2, Item("common.items.consumable.potion_minor")),
|
|
// Armor
|
|
(1.0, LootTable("common.loot_tables.armor.cloth")),
|
|
// Ring
|
|
(0.02, Item("common.items.armor.misc.ring.gold")),
|
|
// Necklace
|
|
(0.02, Item("common.items.armor.misc.neck.gold")),
|
|
// Utility
|
|
(0.05, Item("common.items.utility.collar")),
|
|
// Food
|
|
(1.0, LootTable("common.loot_tables.food.wild_ingredients")),
|
|
(0.25, LootTable("common.loot_tables.food.prepared")),
|
|
// Weapons
|
|
(0.5, LootTable("common.loot_tables.weapons.sword.wood")),
|
|
(0.5, LootTable("common.loot_tables.weapons.hammer.stone")),
|
|
(0.5, LootTable("common.loot_tables.weapons.bow.rawwood")),
|
|
(0.5, LootTable("common.loot_tables.weapons.starter")),
|
|
] |