Module:Move/game

From Wavu Wiki, the 🌊 wavy Tekken wiki

Documentation for this module may be created at Module:Move/game/doc

local p = {}

p.Tekken7 = {
	tables = {
		Move = 'Move7',
		Punisher = 'Punisher7',
	},
	templates = {
		MoveDisplay = 'MoveDisplay7',
		MoveImpl = 'MoveImpl7',
		PunisherTableDisplay = 'PunisherTableDisplay7',
		WhiffPunisherTableDisplay = 'WhiffPunisherTableDisplay7'
	},
	getComboLink = function(character, section, damage)
		return '[['..character..' combos (Tekken 7)#'..section..'|'..damage..']]'
	end,
	getPunishersPage = function(character)
		return character..' punishers (Tekken 7)'
	end
}

p.Tekken8 = {
	tables = {
		Move = 'Move',
		Punisher = 'Punisher',
	},
	templates = {
		MoveDisplay = 'MoveDisplay',
		MoveImpl = 'MoveImpl',
		PunisherTableDisplay = 'PunisherTableDisplay',
		WhiffPunisherTableDisplay = 'WhiffPunisherTableDisplay'
	},
	getComboLink = function(character, section, damage)
		return '[['..character..' combos#'..section..'|'..damage..']]'
	end,
	getPunishersPage = function(character)
		return character..' punishers'
	end
}

return p