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,21 @@
ItemDef(
legacy_name: "Blazing Charm",
legacy_description: "Flame is your ally, harness its power to burn your foes.",
kind: Consumable(
kind: Charm,
effects: All([
Buff((
kind: Flame,
data: (
strength: 0.4,
duration: Some(20),
secondary_duration: Some(5),
),
cat_ids: [RemoveOnAttack],
)),
])
),
quality: Legendary,
tags: [],
)

View File

@@ -0,0 +1,21 @@
ItemDef(
legacy_name: "Freezing Charm",
legacy_description: "Let your enemies feel the sting of cold as you freeze them in their tracks.",
kind: Consumable(
kind: Charm,
effects: All([
Buff((
kind: Frigid,
data: (
strength: 0.4,
duration: Some(20),
secondary_duration: Some(5),
),
cat_ids: [RemoveOnAttack],
)),
])
),
quality: Legendary,
tags: [],
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Siphon Charm",
legacy_description: "Siphon your target life and use it for your own.",
kind: Consumable(
kind: Charm,
effects: All([
Buff((
kind: Lifesteal,
data: (
strength: 0.4,
duration: Some(20),
),
cat_ids: [RemoveOnAttack],
)),
])
),
quality: Legendary,
tags: [],
)