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: "Flask of Velorite Dust",
legacy_description: "Take with plenty of water",
kind: Ingredient(
// Descriptor not needed
descriptor: "",
),
quality: High,
tags: [Potion],
)

View File

@@ -0,0 +1,13 @@
ItemDef(
legacy_name: "Magic Lantern",
legacy_description: "Illuminates even the darkest dungeon\nA great monster was slain for this item",
kind: Lantern(
(
color: (r: 128, g: 26, b: 255),
strength_thousandths: 8500,
flicker_thousandths: 300,
),
),
quality: Epic,
tags: [Utility],
)

View File

@@ -0,0 +1,28 @@
ItemDef(
legacy_name: "Potent Potion",
legacy_description: "A potent healing potion.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 100.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
delay: Some(1)
),
cat_ids: [Natural],
)),
])
),
quality: High,
tags: [Potion],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Potion of Skill",
legacy_description: "It doesn't seem to be doing anything...",
kind: Ingredient(
// Descriptor not needed
descriptor: "",
),
quality: High,
tags: [Potion],
)