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,10 @@
ItemDef(
legacy_name: "Cloth Strips",
legacy_description: "Small and soft, yet useful",
kind: Ingredient(
// Descriptor not needed
descriptor: "",
),
quality: Common,
tags: [BaseMaterial],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Cotton",
legacy_description: "Easy to work with and multi-functional.",
kind: Ingredient(
descriptor: "Cotton",
),
quality: Low,
tags: [MaterialKind(Cloth)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Lifecloth",
legacy_description: "A fabric imbued with the gentleness that nature has to offer.",
kind: Ingredient(
descriptor: "Lifecloth",
),
quality: High,
tags: [MaterialKind(Cloth), Material(Lifecloth)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Linen",
legacy_description: "A textile made from flax fibers.",
kind: Ingredient(
descriptor: "Linen",
),
quality: Low,
tags: [MaterialKind(Cloth), Material(Linen)],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Red Linen",
legacy_description: "A flax fiber textile, dyed to stand out.",
kind: Ingredient(
// Descriptor not needed
descriptor: "",
),
quality: Low,
tags: [MaterialKind(Cloth)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Moonweave",
legacy_description: "A light yet very sturdy textile.",
kind: Ingredient(
descriptor: "Moonwoven",
),
quality: Epic,
tags: [MaterialKind(Cloth), Material(Moonweave)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Silk",
legacy_description: "A fine and strong fibre produced by spiders.",
kind: Ingredient(
descriptor: "Silken",
),
quality: Moderate,
tags: [MaterialKind(Cloth), Material(Silk)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Sunsilk",
legacy_description: "A supernaturally strong textile.",
kind: Ingredient(
descriptor: "Sunsilken",
),
quality: Legendary,
tags: [MaterialKind(Cloth), Material(Sunsilk)],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Soft Wool",
legacy_description: "Soft wool from an animal.",
kind: Ingredient(
descriptor: "Woolen",
),
quality: Common,
tags: [MaterialKind(Cloth), Material(Wool)],
)