primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
This commit is contained in:
10
veloren/assets/common/loadout/village/alchemist.ron
Normal file
10
veloren/assets/common/loadout/village/alchemist.ron
Normal file
@@ -0,0 +1,10 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Item("common.items.armor.alchemist.hat"),
|
||||
chest: Item("common.items.armor.alchemist.chest"),
|
||||
gloves: Item("common.items.armor.cloth.druid.hand"),
|
||||
belt: Item("common.items.armor.alchemist.belt"),
|
||||
legs: Item("common.items.armor.alchemist.pants"),
|
||||
feet: Item("common.items.armor.ferocious.foot"),
|
||||
lantern: Item("common.items.lantern.black_0"),
|
||||
)
|
||||
10
veloren/assets/common/loadout/village/blacksmith.ron
Normal file
10
veloren/assets/common/loadout/village/blacksmith.ron
Normal file
@@ -0,0 +1,10 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Item("common.items.armor.blacksmith.hat"),
|
||||
chest: Item("common.items.armor.blacksmith.chest"),
|
||||
gloves: Item("common.items.armor.blacksmith.hand"),
|
||||
belt: Item("common.items.armor.blacksmith.belt"),
|
||||
legs: Item("common.items.armor.blacksmith.pants"),
|
||||
feet: Item("common.items.armor.mail.iron.foot"),
|
||||
lantern: Item("common.items.lantern.black_0"),
|
||||
)
|
||||
32
veloren/assets/common/loadout/village/captain.ron
Normal file
32
veloren/assets/common/loadout/village/captain.ron
Normal file
@@ -0,0 +1,32 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(1, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
(1, Some(Item("common.items.armor.pirate.hat")))
|
||||
])),
|
||||
(None, Item("common.items.armor.pirate.hat")),
|
||||
]),
|
||||
shoulders: Item("common.items.armor.mail.orichalcum.shoulder"),
|
||||
chest: Item("common.items.armor.mail.orichalcum.chest"),
|
||||
gloves: Item("common.items.armor.mail.orichalcum.hand"),
|
||||
back: Choice([
|
||||
(1, Item("common.items.armor.misc.back.backpack")),
|
||||
(1, Item("common.items.npc_armor.back.backpack_blue")),
|
||||
(1, Item("common.items.armor.mail.orichalcum.back")),
|
||||
(1, None),
|
||||
]),
|
||||
belt: Item("common.items.armor.mail.orichalcum.belt"),
|
||||
legs: Item("common.items.armor.mail.orichalcum.pants"),
|
||||
feet: Item("common.items.armor.mail.orichalcum.foot"),
|
||||
lantern: Choice([
|
||||
(1, Item("common.items.lantern.black_0")),
|
||||
(1, Item("common.items.lantern.blue_0")),
|
||||
(1, Item("common.items.lantern.green_0")),
|
||||
(1, Item("common.items.lantern.red_0")),
|
||||
(1, Item("common.items.lantern.geode_purp")),
|
||||
(1, Item("common.items.boss_drops.lantern")),
|
||||
]),
|
||||
// TODO: Figure out what to do when airship captains die instead of this
|
||||
tabard: Item("common.items.debug.admin"),
|
||||
)
|
||||
9
veloren/assets/common/loadout/village/chef.ron
Normal file
9
veloren/assets/common/loadout/village/chef.ron
Normal file
@@ -0,0 +1,9 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Item("common.items.armor.chef.hat"),
|
||||
chest: Item("common.items.armor.chef.chest"),
|
||||
gloves: Item("common.items.armor.cloth.linen.hand"),
|
||||
belt: Item("common.items.armor.chef.belt"),
|
||||
legs: Item("common.items.armor.chef.pants"),
|
||||
feet: Item("common.items.armor.cloth.linen.foot"),
|
||||
)
|
||||
36
veloren/assets/common/loadout/village/farmer.ron
Normal file
36
veloren/assets/common/loadout/village/farmer.ron
Normal file
@@ -0,0 +1,36 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(9, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
(3, Item("common.items.armor.misc.head.straw")),
|
||||
(3, Item("common.items.armor.misc.head.bamboo_twig")),
|
||||
(2, None),
|
||||
])),
|
||||
(None, Choice([
|
||||
(3, Item("common.items.armor.misc.head.straw")),
|
||||
(3, Item("common.items.armor.misc.head.bamboo_twig")),
|
||||
(2, None),
|
||||
])),
|
||||
]),
|
||||
chest: Choice([
|
||||
(1, Item("common.items.armor.misc.chest.worker_green_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_green_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_red_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_red_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_purple_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_purple_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_yellow_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_yellow_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_orange_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_orange_1")),
|
||||
]),
|
||||
legs: Choice([
|
||||
(1, Item("common.items.armor.misc.pants.worker_blue")),
|
||||
(1, Item("common.items.armor.misc.pants.worker_brown")),
|
||||
]),
|
||||
feet: Choice([
|
||||
(1, Item("common.items.armor.misc.foot.sandals")),
|
||||
(1, Item("common.items.armor.cloth_blue.foot")),
|
||||
]),
|
||||
)
|
||||
30
veloren/assets/common/loadout/village/guard.ron
Normal file
30
veloren/assets/common/loadout/village/guard.ron
Normal file
@@ -0,0 +1,30 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(1, Some(Item("common.items.armor.misc.head.helmet"))),
|
||||
(1, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
])),
|
||||
(None, Item("common.items.armor.misc.head.helmet")),
|
||||
]),
|
||||
shoulders: Item("common.items.armor.leather_plate.shoulder"),
|
||||
chest: Item("common.items.armor.leather_plate.chest"),
|
||||
gloves: Item("common.items.armor.leather_plate.hand"),
|
||||
belt: Item("common.items.armor.leather_plate.belt"),
|
||||
legs: Item("common.items.armor.leather_plate.pants"),
|
||||
feet: Item("common.items.armor.leather_plate.foot"),
|
||||
lantern: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(1, Some(Item("common.items.lantern.blue_0"))),
|
||||
(1, Some(Item("common.items.lantern.polaris"))),
|
||||
(2, Some(Item("common.items.lantern.red_0"))),
|
||||
(2, Some(Item("common.items.lantern.green_0"))),
|
||||
(1, Item("common.items.lantern.black_0")),
|
||||
(2, None),
|
||||
])),
|
||||
(None, Choice([
|
||||
(1, Item("common.items.lantern.black_0")),
|
||||
(2, None),
|
||||
])),
|
||||
])
|
||||
)
|
||||
32
veloren/assets/common/loadout/village/herbalist.ron
Normal file
32
veloren/assets/common/loadout/village/herbalist.ron
Normal file
@@ -0,0 +1,32 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(9, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
(3, Item("common.items.armor.misc.head.straw")),
|
||||
(3, Item("common.items.armor.misc.head.hood")),
|
||||
(2, None),
|
||||
])),
|
||||
(None, Choice([
|
||||
(3, Item("common.items.armor.misc.head.straw")),
|
||||
(3, Item("common.items.armor.misc.head.hood")),
|
||||
(2, None),
|
||||
])),
|
||||
]),
|
||||
chest: Choice([
|
||||
(1, Item("common.items.armor.twigs.chest")),
|
||||
(1, Item("common.items.armor.twigsflowers.chest")),
|
||||
(1, Item("common.items.armor.twigsleaves.chest")),
|
||||
]),
|
||||
legs: Choice([
|
||||
(1, Item("common.items.armor.twigs.pants")),
|
||||
(1, Item("common.items.armor.twigsflowers.pants")),
|
||||
(1, Item("common.items.armor.twigsleaves.pants")),
|
||||
]),
|
||||
feet: Choice([
|
||||
(1, Item("common.items.armor.twigs.foot")),
|
||||
(1, Item("common.items.armor.twigsflowers.foot")),
|
||||
(1, Item("common.items.armor.twigsleaves.foot")),
|
||||
(1, Item("common.items.armor.misc.foot.sandals")),
|
||||
]),
|
||||
)
|
||||
35
veloren/assets/common/loadout/village/hunter.ron
Normal file
35
veloren/assets/common/loadout/village/hunter.ron
Normal file
@@ -0,0 +1,35 @@
|
||||
#![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")),
|
||||
]),
|
||||
)
|
||||
14
veloren/assets/common/loadout/village/merchant.ron
Normal file
14
veloren/assets/common/loadout/village/merchant.ron
Normal file
@@ -0,0 +1,14 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Item("common.items.armor.merchant.turban"),
|
||||
neck: Item("common.items.armor.misc.neck.gem_of_resilience"),
|
||||
shoulders: Item("common.items.armor.merchant.shoulder"),
|
||||
chest: Item("common.items.armor.merchant.chest"),
|
||||
gloves: Item("common.items.armor.merchant.hand"),
|
||||
ring1: Item("common.items.armor.misc.ring.gold"),
|
||||
ring2: Item("common.items.armor.misc.ring.gold"),
|
||||
belt: Item("common.items.armor.merchant.belt"),
|
||||
legs: Item("common.items.armor.merchant.pants"),
|
||||
feet: Item("common.items.armor.merchant.foot"),
|
||||
lantern: Item("common.items.lantern.black_0"),
|
||||
)
|
||||
45
veloren/assets/common/loadout/village/mountaineer.ron
Normal file
45
veloren/assets/common/loadout/village/mountaineer.ron
Normal file
@@ -0,0 +1,45 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(3, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
(2, None),
|
||||
(1, Item("common.items.armor.misc.head.headband")),
|
||||
])),
|
||||
(None, Choice([
|
||||
(2, None),
|
||||
(1, Item("common.items.armor.misc.head.headband")),
|
||||
])),
|
||||
]),
|
||||
shoulders: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.shoulder_0")),
|
||||
(1, Item("common.items.armor.cloth_blue.shoulder_1")),
|
||||
(1, Item("common.items.armor.cloth_green.shoulder")),
|
||||
(1, Item("common.items.armor.cloth_purple.shoulder")),
|
||||
]),
|
||||
chest: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.chest")),
|
||||
(1, Item("common.items.armor.cloth_green.chest")),
|
||||
(1, Item("common.items.armor.cloth_purple.chest")),
|
||||
]),
|
||||
gloves: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.hand")),
|
||||
(1, Item("common.items.armor.cloth_green.hand")),
|
||||
(1, Item("common.items.armor.cloth_purple.hand")),
|
||||
]),
|
||||
belt: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.belt")),
|
||||
(1, Item("common.items.armor.cloth_green.belt")),
|
||||
(1, Item("common.items.armor.cloth_purple.belt")),
|
||||
]),
|
||||
legs: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.pants")),
|
||||
(1, Item("common.items.armor.cloth_green.pants")),
|
||||
(1, Item("common.items.armor.cloth_purple.pants")),
|
||||
]),
|
||||
feet: Choice([
|
||||
(1, Item("common.items.armor.cloth_blue.foot")),
|
||||
(1, Item("common.items.armor.cloth_green.foot")),
|
||||
(1, Item("common.items.armor.cloth_purple.foot")),
|
||||
]),
|
||||
)
|
||||
34
veloren/assets/common/loadout/village/villager.ron
Normal file
34
veloren/assets/common/loadout/village/villager.ron
Normal file
@@ -0,0 +1,34 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
head: Seasonal([
|
||||
(Some(Christmas), Choice([
|
||||
(3, Some(Item("common.items.calendar.christmas.armor.misc.head.woolly_wintercap"))),
|
||||
(1, Item("common.items.armor.misc.head.straw")),
|
||||
(2, None),
|
||||
])),
|
||||
(None, Choice([
|
||||
(1, Item("common.items.armor.misc.head.straw")),
|
||||
(2, None),
|
||||
])),
|
||||
]),
|
||||
chest: Choice([
|
||||
(1, Item("common.items.armor.misc.chest.worker_green_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_green_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_red_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_red_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_purple_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_purple_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_yellow_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_yellow_1")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_orange_0")),
|
||||
(1, Item("common.items.armor.misc.chest.worker_orange_1")),
|
||||
]),
|
||||
legs: Choice([
|
||||
(1, Item("common.items.armor.misc.pants.worker_blue")),
|
||||
(1, Item("common.items.armor.misc.pants.worker_brown")),
|
||||
]),
|
||||
feet: Choice([
|
||||
(1, Item("common.items.armor.misc.foot.sandals")),
|
||||
(1, Item("common.items.armor.cloth_blue.foot")),
|
||||
]),
|
||||
)
|
||||
Reference in New Issue
Block a user