sonic-radiance/sonic-radiance.love/datas/gamedata/items/powerups/goldshield.lua

17 lines
354 B
Lua
Raw Normal View History

2020-09-13 09:59:14 +02:00
return {
name = "fireshield",
fullname = "Fire Shield",
description = "A special shield to protect a hero and give him back some pp",
conditions = {
{"status", "ko", false}
},
effects= {
{"setStatus", "fortified", true},
{"regen", "pp", 6}
},
usableInBattle=true,
usableOnMap=false,
2020-09-13 09:59:14 +02:00
affectEverybody=false,
duration=3,
}