2021-04-18 17:11:00 +00:00
|
|
|
// Loot table that exists purely for price rationalisation
|
2021-06-17 18:50:31 +00:00
|
|
|
// Please keep it sorting by rarity so it's easier to reason about things
|
2021-04-18 17:11:00 +00:00
|
|
|
[
|
2021-06-17 18:50:31 +00:00
|
|
|
// Ores
|
2021-06-17 21:03:51 +00:00
|
|
|
// Uncomment when bug with crafting doesn't propagating can_sell will be fixed
|
|
|
|
// (0.03, Item("common.items.mineral.ore.gold")),
|
|
|
|
// (0.045, Item("common.items.mineral.ore.silver")),
|
|
|
|
// (0.1, Item("common.items.mineral.ore.bloodstone")),
|
|
|
|
// (0.2, Item("common.items.mineral.ore.cobalt")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(0.25, Item("common.items.mineral.ore.coal")),
|
|
|
|
(0.3, Item("common.items.mineral.ore.iron")),
|
|
|
|
(0.5, Item("common.items.mineral.ore.velorite")),
|
|
|
|
(0.6, Item("common.items.mineral.ore.veloritefrag")),
|
|
|
|
(1.5, Item("common.items.mineral.ore.copper")),
|
|
|
|
(1.5, Item("common.items.mineral.ore.tin")),
|
|
|
|
// Animal Hide
|
|
|
|
(0.1, Item("common.items.crafting_ing.leather.rigid_leather")),
|
2021-06-17 21:13:42 +00:00
|
|
|
(0.2, Item("common.items.crafting_ing.hide.scales")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(0.7, Item("common.items.crafting_ing.hide.tough_hide")),
|
2021-06-09 02:13:18 +00:00
|
|
|
(1.0, Item("common.items.crafting_ing.hide.animal_hide")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(1.5, Item("common.items.crafting_ing.leather.leather_strips")),
|
|
|
|
// Mob Drops
|
|
|
|
(0.01, Item("common.items.crafting_ing.animal_misc.phoenix_feather")),
|
2021-06-09 02:13:18 +00:00
|
|
|
(0.08, Item("common.items.crafting_ing.animal_misc.large_horn")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(0.1, Item("common.items.crafting_ing.animal_misc.icy_fang")),
|
|
|
|
(0.15, Item("common.items.crafting_ing.animal_misc.grim_eyeball")),
|
2021-06-15 05:43:49 +00:00
|
|
|
(0.15, Item("common.items.crafting_ing.animal_misc.lively_vine")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(1.2, Item("common.items.crafting_ing.animal_misc.fur")),
|
|
|
|
// Meats
|
2021-06-15 05:43:49 +00:00
|
|
|
(0.6, Item("common.items.food.meat.beast_large_raw")),
|
|
|
|
(0.8, Item("common.items.food.meat.tough_raw")),
|
2021-06-17 18:50:31 +00:00
|
|
|
(1.0, Item("common.items.food.meat.beast_small_raw")),
|
|
|
|
(1.2, Item("common.items.food.meat.fish_raw")),
|
|
|
|
(1.3, Item("common.items.food.meat.bird_raw")),
|
|
|
|
// Others
|
|
|
|
(1.0, Item("common.items.crafting_ing.honey")),
|
2021-04-18 17:11:00 +00:00
|
|
|
]
|