veloren/assets/common/loadout/dungeon/tier-5/cultist.ron

30 lines
1.2 KiB
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
//Little easter egg, lost their mask in a chest
#![enable(implicit_some)]
(
2022-05-06 19:58:52 +00:00
head: Choice([
(111, Item("common.items.armor.cultist.bandana")),
2022-04-08 15:37:50 +00:00
(1, None),
2022-05-06 19:58:52 +00:00
]),
shoulders: Item("common.items.armor.cultist.shoulder"),
chest: Item("common.items.armor.cultist.chest"),
gloves: Item("common.items.armor.cultist.hand"),
back: Item("common.items.armor.misc.back.dungeon_purple"),
belt: Item("common.items.armor.cultist.belt"),
legs: Item("common.items.armor.cultist.pants"),
feet: Item("common.items.armor.cultist.foot"),
lantern: Choice([
(1, Item("common.items.lantern.black_0")),
2022-04-08 15:37:50 +00:00
(2, None),
2022-05-06 19:58:52 +00:00
]),
glider: Item("common.items.glider.skullgrin"),
active_hands: InHands((Choice([
(2, ModularWeapon(tool: Axe, material: Orichalcum, hands: None)),
(4, Item("common.items.weapons.sword.cultist")),
(2, Item("common.items.weapons.staff.cultist_staff")),
(2, Item("common.items.weapons.hammer.cultist_purp_2h-0")),
(2, ModularWeapon(tool: Hammer, material: Orichalcum, hands: None)),
(2, Item("common.items.weapons.bow.velorite")),
2022-05-19 19:35:31 +00:00
(1, Item("common.items.weapons.sceptre.root_evil")),
2022-05-06 19:58:52 +00:00
]), None)),
)