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: "Bomb",
legacy_description: "A highly explosive device, demolitionists adore them!",
kind: Throwable(
kind: Bomb,
),
quality: Common,
tags: [Utility],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Coins",
legacy_description: "Precious coins, can be exchanged for goods and services.",
kind: Utility(
kind: Coins,
),
quality: Common,
tags: [],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Collar",
legacy_description: "Tames neutral wild animals within 5 blocks",
kind: Utility(
kind: Collar,
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework Blue",
legacy_description: "Recommended clearance: 42 chonks",
kind: Throwable(
kind: Firework(Blue),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework Green",
legacy_description: "Watch out for trees.",
kind: Throwable(
kind: Firework(Green),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework Purple",
legacy_description: "Cult favourite.",
kind: Throwable(
kind: Firework(Purple),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework Red",
legacy_description: "Humans sometimes use these\nas a flare in a pinch.",
kind: Throwable(
kind: Firework(Red),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework White",
legacy_description: "Twinkles like the stars",
kind: Throwable(
kind: Firework(White),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Firework Yellow",
legacy_description: "The Great Doctor passed away after\ntesting this contraption indoors.",
kind: Throwable(
kind: Firework(Yellow),
),
quality: Moderate,
tags: [Utility],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Common Lockpick",
legacy_description: "Used to open common locks. Will break after use.",
kind: Utility(
kind: Key,
),
quality: Common,
tags: [Utility],
)

View File

@@ -0,0 +1,9 @@
ItemDef(
legacy_name: "Training Dummy",
legacy_description: "His name is William. Fire at will.",
kind: Throwable(
kind: TrainingDummy,
),
quality: Moderate,
tags: [Utility],
)