(module for game specific info, which will be used by Move7, Move and other related templates) Â |
(Tekken 8 migration) Â |
||
Line 13: | Line 13: | ||
}, | }, | ||
getComboLink = function(character, section, damage) | getComboLink = function(character, section, damage) | ||
return '[['..character..' combos#'..section..'|'..damage..']]' | return '[['..character..' combos (Tekken 7)#'..section..'|'..damage..']]' | ||
end, | end, | ||
getPunishersPage = function(character) | getPunishersPage = function(character) | ||
return character..' punishers' | return character..' punishers (Tekken 7)' | ||
end | end | ||
} | } | ||
Line 32: | Line 32: | ||
}, | }, | ||
getComboLink = function(character, section, damage) | getComboLink = function(character, section, damage) | ||
return '[['..character..' combos | return '[['..character..' combos#'..section..'|'..damage..']]' | ||
end, | end, | ||
getPunishersPage = function(character) | getPunishersPage = function(character) | ||
return character..' punishers | return character..' punishers' | ||
end | end | ||
} | } | ||
return p | return p |
Latest revision as of 14:50, 29 January 2024
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