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,17 @@
ItemDef(
legacy_name: "Admin's Tabard",
legacy_description: "With great power comes\ngreat responsibility.",
kind: Armor((
kind: Tabard,
stats: Direct((
protection: Some(Invincible),
poise_resilience: Some(Invincible),
energy_max: Some(900.0),
energy_reward: Some(9.0),
precision_power: Some(1.0),
stealth: Some(1000.0),
)),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Admin's Cape",
legacy_description: "With great power comes\ngreat responsibility.",
kind: Armor((
kind: Back,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,13 @@
ItemDef(
legacy_name: "Admin's Black Hole",
legacy_description: "It just works.",
kind: Armor(
(
kind: Bag,
stats: Direct(()),
)
),
quality: Debug,
tags: [],
slots: 900,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Belzeshrub the Broom-God",
legacy_description: "You can hear him giggle whenever\nyou hit the ground a bit too hard...",
kind: Tool((
kind: Debug,
hands: Two,
stats: (
equip_time_secs: 0.0,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Debug,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Admin Greatsword",
legacy_description: "Shouldn't this be a hammer?",
kind: Tool((
kind: Sword,
hands: Two,
stats: (
equip_time_secs: 0.0,
power: 999.9,
effect_power: 999.9,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Debug,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Belt",
legacy_description: "",
kind: Armor((
kind: Belt,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Boots",
legacy_description: "",
kind: Armor((
kind: Foot,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Chest",
legacy_description: "",
kind: Armor((
kind: Chest,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Gloves",
legacy_description: "",
kind: Armor((
kind: Hand,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Skirt",
legacy_description: "",
kind: Armor((
kind: Pants,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Mantle",
legacy_description: "",
kind: Armor((
kind: Shoulder,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,10 @@
ItemDef(
legacy_name: "Velorite Admin Cape",
legacy_description: "Where did I put my banhammer again?",
kind: Armor((
kind: Back,
stats: Direct(()),
)),
quality: Debug,
tags: [],
)

View File

@@ -0,0 +1,8 @@
ItemDef(
legacy_name: "Vroom Glider",
legacy_description: "goes brrr.",
kind: Glider,
quality: Debug,
tags: [],
ability_spec: Some(Custom("Admin's Eagle")),
)

View File

@@ -0,0 +1,43 @@
ItemDef(
legacy_name: "Golden Cheese",
legacy_description: "They say gods eat it to get eternal youth.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Regeneration,
data: (
strength: 1000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: EnergyRegen,
data: (
strength: 1000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxHealth,
data: (
strength: 50000,
duration: Some(999),
),
cat_ids: [Natural],
)),
Buff((
kind: IncreaseMaxEnergy,
data: (
strength: 50000,
duration: Some(999),
),
cat_ids: [Natural],
)),
])
),
quality: Debug,
tags: [Food],
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Admin Velorite Bow",
legacy_description: "Infused with Velorite power.",
kind: Tool((
kind: Bow,
hands: Two,
stats: (
equip_time_secs: 0.0,
power: 999.9,
effect_power: 999.9,
speed: 100.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Debug,
tags: [],
ability_spec: None,
)