Module:Data/Skill/p5t: Difference between revisions

Jump to navigation Jump to search
(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...")
 
m (Text replacement - " attribute = 'passive'," to " attribute = 'passive', cost = '—', range = '—',")
 
Line 20: Line 20:
['heavy counter'] = {
['heavy counter'] = {
attribute = 'passive',
attribute = 'passive',
cost = '—',
range = '—',
description = "Performs counter attack once per turn. Inflicts [[Down]] if attacked again.",
description = "Performs counter attack once per turn. Inflicts [[Down]] if attacked again.",
name = 'Heavy Counter',
name = 'Heavy Counter',
Line 25: Line 27:
['lady marie\'s grace'] = {
['lady marie\'s grace'] = {
attribute = 'passive',
attribute = 'passive',
cost = '—',
range = '—',
description = "Always has [[Resist]] status, and will not go [[down]] when attacked.",
description = "Always has [[Resist]] status, and will not go [[down]] when attacked.",
name = 'Lady Marie\'s Grace',
name = 'Lady Marie\'s Grace',
Line 30: Line 34:
['merciless deliverance'] = {
['merciless deliverance'] = {
attribute = 'passive',
attribute = 'passive',
cost = '—',
range = '—',
description = 'Greatly increases damage dealt to Downed targets.',
description = 'Greatly increases damage dealt to Downed targets.',
name = 'Merciless Deliverance',
name = 'Merciless Deliverance',
Line 35: Line 41:
['goddess\'s embrace'] = {
['goddess\'s embrace'] = {
attribute = 'passive',
attribute = 'passive',
cost = '—',
range = '—',
description = 'Greatly restores HP and SP at the end of each turn.',
description = 'Greatly restores HP and SP at the end of each turn.',
name = 'Goddess\'s Embrace',
name = 'Goddess\'s Embrace',

Latest revision as of 02:39, 31 May 2024

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',
	cost = '—',
	range = '—',
	description = "Performs counter attack once per turn. Inflicts [[Down]] if attacked again.",
	name = 'Heavy Counter',
},
['lady marie\'s grace'] = {
	attribute = 'passive',
	cost = '—',
	range = '—',
	description = "Always has [[Resist]] status, and will not go [[down]] when attacked.",
	name = 'Lady Marie\'s Grace',
},
['merciless deliverance'] = {
	attribute = 'passive',
	cost = '—',
	range = '—',
	description = 'Greatly increases damage dealt to Downed targets.',
	name = 'Merciless Deliverance',
},
['goddess\'s embrace'] = {
	attribute = 'passive',
	cost = '—',
	range = '—',
	description = 'Greatly restores HP and SP at the end of each turn.',
	name = 'Goddess\'s Embrace',
}
}

return {
	skill = skill,
}