primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#![enable(implicit_some)]
(
shoulders: Item("common.items.armor.mail.bronze.shoulder"),
chest: Item("common.items.armor.mail.bronze.chest"),
gloves: Item("common.items.armor.mail.bronze.hand"),
back: Choice([
(1, Item("common.items.armor.mail.bronze.back")),
(1, None),
]),
belt: Item("common.items.armor.mail.bronze.belt"),
legs: Item("common.items.armor.mail.bronze.pants"),
feet: Item("common.items.armor.mail.bronze.foot"),
lantern: Choice([
(1, Item("common.items.lantern.black_0")),
]),
)

View File

@@ -0,0 +1,16 @@
#![enable(implicit_some)]
(
shoulders: Item("common.items.armor.cloth.linen.shoulder"),
chest: Item("common.items.armor.cloth.linen.chest"),
gloves: Item("common.items.armor.cloth.linen.hand"),
back: Choice([
(1, Item("common.items.armor.cloth.linen.back")),
(1, None),
]),
belt: Item("common.items.armor.cloth.linen.belt"),
legs: Item("common.items.armor.cloth.linen.pants"),
feet: Item("common.items.armor.cloth.linen.foot"),
lantern: Choice([
(1, Item("common.items.lantern.black_0")),
]),
)

View File

@@ -0,0 +1,16 @@
#![enable(implicit_some)]
(
shoulders: Item("common.items.armor.hide.rawhide.shoulder"),
chest: Item("common.items.armor.hide.rawhide.chest"),
gloves: Item("common.items.armor.hide.rawhide.hand"),
back: Choice([
(1, Item("common.items.armor.hide.rawhide.back")),
(1, None),
]),
belt: Item("common.items.armor.hide.rawhide.belt"),
legs: Item("common.items.armor.hide.rawhide.pants"),
feet: Item("common.items.armor.hide.rawhide.foot"),
lantern: Choice([
(1, Item("common.items.lantern.black_0")),
]),
)