feat: add basic items
This commit is contained in:
parent
19432b3663
commit
4ba49a5534
3 changed files with 48 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
||||||
|
return {
|
||||||
|
name = "simplehammer",
|
||||||
|
fullname = "Simple Hammer",
|
||||||
|
description = "A basic hammer",
|
||||||
|
conditions = {},
|
||||||
|
effects = {},
|
||||||
|
statsBoost = {
|
||||||
|
attack = 3
|
||||||
|
},
|
||||||
|
isEquipement = true,
|
||||||
|
usableInBattle = false,
|
||||||
|
usableOnMap = false,
|
||||||
|
affectEverybody = false,
|
||||||
|
duration = 0
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
return {
|
||||||
|
name = "basicgloves",
|
||||||
|
fullname = "Basic Gloves",
|
||||||
|
description = "Basic gloves that help fighting",
|
||||||
|
conditions = {},
|
||||||
|
effects = {},
|
||||||
|
statsBoost = {
|
||||||
|
attack = 2,
|
||||||
|
defense = 1
|
||||||
|
},
|
||||||
|
isEquipement = true,
|
||||||
|
usableInBattle = false,
|
||||||
|
usableOnMap = false,
|
||||||
|
affectEverybody = false,
|
||||||
|
duration = 0
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
return {
|
||||||
|
name = "lightsneakers",
|
||||||
|
fullname = "Light Sneakers",
|
||||||
|
description = "Simple sneakers that protect a little",
|
||||||
|
conditions = {},
|
||||||
|
effects= {},
|
||||||
|
statsBoost = {
|
||||||
|
speed = 2,
|
||||||
|
defense = 1
|
||||||
|
},
|
||||||
|
isEquipement = true,
|
||||||
|
usableInBattle=false,
|
||||||
|
usableOnMap=false,
|
||||||
|
affectEverybody=false,
|
||||||
|
duration=0,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue