mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
5362000de4
fixed incorrect translation used on axe double strike regen skill Changed migration so that skills and skill groups foreign key to entity_id instead of character_id
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
ItemDef(
|
|
name: "Medium Potion",
|
|
description: "Restores 100 Health",
|
|
kind: Consumable(
|
|
kind: "PotionMed",
|
|
effect: [
|
|
Buff((
|
|
kind: Potion,
|
|
data: (
|
|
strength: 750.0,
|
|
duration: Some((
|
|
secs: 1,
|
|
nanos: 0,
|
|
)),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
]
|
|
),
|
|
quality: Common,
|
|
)
|