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,9 @@
ItemDef(
legacy_name: "Bamboo",
legacy_description: "A giant woody grass.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Bamboo",
),
quality: Common,
tags: [MaterialKind(Wood), Material(Bamboo)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Eldwood Logs",
legacy_description: "Old logs that emanate magic.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Eldwood",
),
quality: Legendary,
tags: [MaterialKind(Wood), Material(Eldwood)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Frostwood Logs",
legacy_description: "Chilly wood that comes from cold biomes. Cold to the touch.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Frostwood",
),
quality: Epic,
tags: [MaterialKind(Wood), Material(Frostwood)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Hardwood Logs",
legacy_description: "Extra thick and sturdy logs.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Hardwood",
),
quality: Moderate,
tags: [MaterialKind(Wood), Material(Hardwood)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Ironwood Logs",
legacy_description: "A particularly sturdy wood.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Ironwood",
),
quality: High,
tags: [MaterialKind(Wood), Material(Ironwood)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Wood Logs",
legacy_description: "Regular, sturdy wooden logs.\n\nThis can be used when crafting wooden weapons.",
kind: Ingredient(
descriptor: "Wooden",
),
quality: Low,
tags: [MaterialKind(Wood), Material(Wood)],
)