Module:Data/Skill/p5t

Revision as of 01:30, 31 May 2024 by RustyVanBurace (talk | contribs) (Created page with "local skill = { ['slam'] = { attribute = 'physical', cost = '?', costtype = '?', description = 'Deals damage to surrounding area. Knocks back targets.', name = 'Slam', power = 40, range = 1, }, ['agi'] = { attribute = 'burn', cost = '?', costtype = '?', description = "Deals light damage in a small area. Inflicts Burn.", name = 'Agi', power = 34, range = 4, }, ['heavy counter'] = { attribute = 'passive', description = "Performs counter attack once per...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Data/Skill/p5t/doc

local skill = {
['slam'] = {
	attribute = 'physical',
	cost = '?',
	costtype = '?',
	description = 'Deals damage to surrounding area. Knocks back targets.',
	name = 'Slam',
	power = 40,
	range = 1,
},
['agi'] = {
	attribute = 'burn',
	cost = '?',
	costtype = '?',
	description = "Deals light damage in a small area. Inflicts [[Burn]].",
	name = 'Agi',
	power = 34,
	range = 4,
},
['heavy counter'] = {
	attribute = 'passive',
	description = "Performs counter attack once per turn. Inflicts [[Down]] if attacked again.",
	name = 'Heavy Counter',
},
['lady marie\'s grace'] = {
	attribute = 'passive',
	description = "Always has [[Resist]] status, and will not go [[down]] when attacked.",
	name = 'Lady Marie\'s Grace',
},
['merciless deliverance'] = {
	attribute = 'passive',
	description = 'Greatly increases damage dealt to Downed targets.',
	name = 'Merciless Deliverance',
},
['goddess\'s embrace'] = {
	attribute = 'passive',
	description = 'Greatly restores HP and SP at the end of each turn.',
	name = 'Goddess\'s Embrace',
}
}

return {
	skill = skill,
}