mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
529 B
Rust
20 lines
529 B
Rust
ItemDef(
|
|
name: Direct("Admin's Tabard"),
|
|
description: "With great power comes\ngreat responsibility.",
|
|
kind: Armor(
|
|
(
|
|
kind: Tabard("Admin"),
|
|
stats: (
|
|
protection: Some(Invincible),
|
|
poise_resilience: Some(Invincible),
|
|
energy_max: Some(900.0),
|
|
energy_reward: Some(9.0),
|
|
crit_power: Some(1.0),
|
|
stealth: Some(1000.0),
|
|
),
|
|
)
|
|
),
|
|
quality: Direct(Debug),
|
|
tags: [],
|
|
)
|