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

32 lines
1.3 KiB
Rust
Raw Normal View History

2021-06-16 19:27:31 +00:00
({
Armor(Shoulders): Item("common.items.armor.cultist.shoulder"),
Armor(Chest): Item("common.items.armor.cultist.chest"),
Armor(Belt): Item("common.items.armor.cultist.belt"),
Armor(Hands): Item("common.items.armor.cultist.hand"),
Armor(Legs): Item("common.items.armor.cultist.pants"),
Armor(Feet): Item("common.items.armor.cultist.foot"),
Armor(Back): Item("common.items.armor.misc.back.dungeon_purple"),
2021-11-03 21:27:47 +00:00
//Little easter egg, lost their mask in a chest
Armor(Head): Choice([
(1.0, Some(Item("common.items.armor.cultist.bandana"))),
(0.009, None),
]),
2021-10-27 06:42:12 +00:00
2021-06-16 19:27:31 +00:00
Lantern: Choice([
(1.0, Some(Item("common.items.lantern.black_0"))),
(2.0, None),
]),
Glider: Item("common.items.glider.skullgrin"),
ActiveMainhand: Choice([
(2.0, Some(Item("common.items.weapons.axe_1h.orichalcum-0"))),
(4.0, Some(Item("common.items.weapons.sword.cultist"))),
(2.0, Some(Item("common.items.weapons.staff.cultist_staff"))),
(2.0, Some(Item("common.items.weapons.hammer.cultist_purp_2h-0"))),
(2.0, Some(Item("common.items.weapons.hammer_1h.orichalcum-0"))),
(2.0, Some(Item("common.items.weapons.bow.velorite"))),
(1.0, Some(Item("common.items.weapons.sceptre.sceptre_velorite_0"))),
]),
2021-06-16 19:27:31 +00:00
})