mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Makes consumables heal faster
This commit is contained in:
parent
6d1bae67d0
commit
ecdbd1c5d6
@ -5,7 +5,7 @@ ItemDef(
|
||||
kind: "Potion",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
kind: Potion,
|
||||
data: (
|
||||
strength: 1000.0,
|
||||
duration: Some((
|
||||
|
@ -1,13 +1,13 @@
|
||||
ItemDef(
|
||||
name: "Large Potion",
|
||||
description: "Restores 100 Health",
|
||||
description: "Restores 200 Health",
|
||||
kind: Consumable(
|
||||
kind: "PotionLarge",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Potion,
|
||||
data: (
|
||||
strength: 1000.0,
|
||||
strength: 2000.0,
|
||||
duration: Some((
|
||||
secs: 1,
|
||||
nanos: 0,
|
||||
|
@ -1,13 +1,13 @@
|
||||
ItemDef(
|
||||
name: "Medium Potion",
|
||||
description: "Restores 70 Health",
|
||||
description: "Restores 100 Health",
|
||||
kind: Consumable(
|
||||
kind: "PotionMed",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Potion,
|
||||
data: (
|
||||
strength: 700.0,
|
||||
strength: 1000.0,
|
||||
duration: Some((
|
||||
secs: 1,
|
||||
nanos: 0,
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Apple",
|
||||
description: "Restores 10 Health over 20 seconds\n\nRed and juicy",
|
||||
description: "Restores 10 Health over 10 seconds\n\nRed and juicy",
|
||||
kind: Consumable(
|
||||
kind: "Apple",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 5.0,
|
||||
strength: 10.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Mushroom Curry",
|
||||
description: "Restores 120 Health over 20 seconds\n\nWho could say no to that?",
|
||||
description: "Restores 120 Health over 10 seconds\n\nWho could say no to that?",
|
||||
kind: Consumable(
|
||||
kind: "AppleShroomCurry",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 60.0,
|
||||
strength: 120.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Apple Stick",
|
||||
description: "Restores 25 Health over 20 seconds\n\nThe stick makes it easier to carry!",
|
||||
description: "Restores 25 Health over 10 seconds\n\nThe stick makes it easier to carry!",
|
||||
kind: Consumable(
|
||||
kind: "AppleStick",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 12.5,
|
||||
strength: 25.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Dwarven Cheese",
|
||||
description: "Restores 15 Health over 20 seconds\n\nAromatic and nutritious",
|
||||
description: "Restores 15 Health over 10 seconds\n\nAromatic and nutritious",
|
||||
kind: Consumable(
|
||||
kind: "Cheese",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 7.5,
|
||||
strength: 15.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Coconut",
|
||||
description: "Restores 20 health over 20 seconds\n\nReliable source of water and fat",
|
||||
description: "Restores 20 health over 10 seconds\n\nReliable source of water and fat",
|
||||
kind: Consumable(
|
||||
kind: "Coconut",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 10.0,
|
||||
strength: 20.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Mushroom Stick",
|
||||
description: "Restores 20 Health over 20 seconds\n\nRoasted mushrooms on a stick for easy carrying",
|
||||
description: "Restores 20 Health over 10 seconds\n\nRoasted mushrooms on a stick for easy carrying",
|
||||
kind: Consumable(
|
||||
kind: "MushroomStick",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 10.0,
|
||||
strength: 20.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
@ -1,15 +1,15 @@
|
||||
ItemDef(
|
||||
name: "Sunflower Ice Tea",
|
||||
description: "Restores 50 Health over 20 seconds\n\nBrewed from freshly shelled sunflower seeds",
|
||||
description: "Restores 50 Health over 10 seconds\n\nBrewed from freshly shelled sunflower seeds",
|
||||
kind: Consumable(
|
||||
kind: "SunflowerTea",
|
||||
effect: [
|
||||
Buff((
|
||||
kind: Saturation,
|
||||
data: (
|
||||
strength: 25.0,
|
||||
strength: 50.0,
|
||||
duration: Some((
|
||||
secs: 20,
|
||||
secs: 10,
|
||||
nanos: 0,
|
||||
)),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user