2022-04-08 15:37:50 +00:00
|
|
|
// Christmas event
|
|
|
|
//(1.0, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
|
|
|
#![enable(implicit_some)]
|
|
|
|
(
|
|
|
|
head: [
|
|
|
|
(1, "common.items.armor.misc.head.headband"),
|
|
|
|
(2, None),
|
|
|
|
],
|
|
|
|
shoulders: [
|
|
|
|
(1, "common.items.armor.cloth_blue.shoulder_0"),
|
|
|
|
(1, "common.items.armor.cloth_blue.shoulder_1"),
|
|
|
|
(1, "common.items.armor.cloth_green.shoulder"),
|
|
|
|
(1, "common.items.armor.cloth_purple.shoulder"),
|
|
|
|
],
|
|
|
|
chest: [
|
|
|
|
(1, "common.items.armor.cloth_blue.chest"),
|
|
|
|
(1, "common.items.armor.cloth_green.chest"),
|
|
|
|
(1, "common.items.armor.cloth_purple.chest"),
|
|
|
|
],
|
|
|
|
gloves: [
|
|
|
|
(1, "common.items.armor.cloth_blue.hand"),
|
|
|
|
(1, "common.items.armor.cloth_green.hand"),
|
|
|
|
(1, "common.items.armor.cloth_purple.hand"),
|
|
|
|
],
|
|
|
|
belt: [
|
|
|
|
(1, "common.items.armor.cloth_blue.belt"),
|
|
|
|
(1, "common.items.armor.cloth_green.belt"),
|
|
|
|
(1, "common.items.armor.cloth_purple.belt"),
|
|
|
|
],
|
|
|
|
legs: [
|
|
|
|
(1, "common.items.armor.cloth_blue.pants"),
|
|
|
|
(1, "common.items.armor.cloth_green.pants"),
|
|
|
|
(1, "common.items.armor.cloth_purple.pants"),
|
|
|
|
],
|
|
|
|
feet: [
|
|
|
|
(1, "common.items.armor.cloth_blue.foot"),
|
|
|
|
(1, "common.items.armor.cloth_green.foot"),
|
|
|
|
(1, "common.items.armor.cloth_purple.foot"),
|
|
|
|
],
|
|
|
|
)
|