36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
|
#![enable(implicit_some)]
|
||
|
(
|
||
|
head: Seasonal([
|
||
|
(Some(Christmas), Choice([
|
||
|
(15, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||
|
(6, None),
|
||
|
(2, Item("common.items.armor.misc.head.straw")),
|
||
|
(3, Item("common.items.armor.misc.head.hood")),
|
||
|
(3, Item("common.items.armor.misc.head.hood_dark")),
|
||
|
])),
|
||
|
(None, Choice([
|
||
|
(6, None),
|
||
|
(2, Item("common.items.armor.misc.head.straw")),
|
||
|
(3, Item("common.items.armor.misc.head.hood")),
|
||
|
(3, Item("common.items.armor.misc.head.hood_dark")),
|
||
|
])),
|
||
|
]),
|
||
|
chest: Choice([
|
||
|
(1, Item("common.items.armor.hide.leather.chest")),
|
||
|
(1, Item("common.items.armor.hide.rawhide.chest")),
|
||
|
(1, Item("common.items.armor.hide.primal.chest")),
|
||
|
]),
|
||
|
legs: Choice([
|
||
|
(1, Item("common.items.armor.hide.leather.pants")),
|
||
|
(1, Item("common.items.armor.hide.rawhide.pants")),
|
||
|
(1, Item("common.items.armor.hide.primal.pants")),
|
||
|
]),
|
||
|
feet: Choice([
|
||
|
(1, None),
|
||
|
(2, Item("common.items.armor.misc.foot.sandals")),
|
||
|
(4, Item("common.items.armor.hide.leather.foot")),
|
||
|
(4, Item("common.items.armor.hide.rawhide.foot")),
|
||
|
(4, Item("common.items.armor.hide.primal.foot")),
|
||
|
]),
|
||
|
)
|