mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
065da20812
+ Villagers only wear christmas hat + Guards wear boreal_warhelm + Gave guards christmas color lanterns + Grave_robbers now wear hood and hood_dark too while also dropping them at a higher rate than previously. + Christmas event now starts at 20th and goes till 30th of december + item_image_manifest.ron manifest fix + Created a potential boss loot table which allows the player to get the winter_cap, the boreal_warhelm, polaris lantern, and more blue cheese. + Updated hood_dark with another index 17 layer to prevent hair clip.
20 lines
819 B
Rust
20 lines
819 B
Rust
({
|
|
Armor(Chest): Item("common.items.armor.hide.rawhide.chest"),
|
|
Armor(Shoulders): Item("common.items.armor.hide.rawhide.shoulder"),
|
|
Armor(Belt): Item("common.items.armor.hide.rawhide.belt"),
|
|
Armor(Hands): Item("common.items.armor.hide.rawhide.hand"),
|
|
Armor(Legs): Item("common.items.armor.hide.rawhide.pants"),
|
|
Armor(Feet): Item("common.items.armor.hide.rawhide.foot"),
|
|
Armor(Head): Choice([
|
|
(1.0, Some(Item("common.items.armor.misc.head.bandana.thief"))),
|
|
(1.0, Some(Item("common.items.armor.misc.head.bandana.red"))),
|
|
(1.0, Some(Item("common.items.armor.misc.head.hood"))),
|
|
(1.0, Some(Item("common.items.armor.misc.head.hood_dark"))),
|
|
|
|
]),
|
|
Lantern: Choice([
|
|
(1.0, Some(Item("common.items.lantern.black_0"))),
|
|
(2.0, None),
|
|
]),
|
|
})
|