Module:Appearance type: Difference between revisions
Appearance
Content deleted Content added
Created page with "local p = {} local types = { -- Main character main = "Main character of ", ["main character"] = "Main character of ", m = "Main character of ", ma = "Main character of ", -- Supporting character supporting = "Supporting character of ", ["supporting character"] = "Supporting character of ", s = "Supporting character of ", su = "Supporting character of ", -- Reccuring character recurring = "Recurring character of ", ["recur..." |
No edit summary |
||
| Line 55: | Line 55: | ||
-- Vocal presence only |
-- Vocal presence only |
||
voice = "Voice only in ", |
voice = "Voice only in ", |
||
-- Corpse |
|||
body = "Corpse visible in", |
|||
corpse = "Corpse visible in", |
|||
-- Deleted scenes only |
-- Deleted scenes only |
||
Latest revision as of 21:10, 18 April 2026
local p = {}
local types = {
-- Main character
main = "Main character of ",
["main character"] = "Main character of ",
m = "Main character of ",
ma = "Main character of ",
-- Supporting character
supporting = "Supporting character of ",
["supporting character"] = "Supporting character of ",
s = "Supporting character of ",
su = "Supporting character of ",
-- Reccuring character
recurring = "Recurring character of ",
["recurring character"] = "Recurring character of ",
re = "Recurring character of ",
-- One shot character
["one shot"] = "One shot character of ",
["one-shot"] = "One shot character of ",
["one shot character"] = "One shot character of ",
guest = "One shot character of ",
os = "One shot character of ",
g = "One shot character of ",
-- Minor character
minor = "Minor character of ",
["minor character"] = "Minor character of ",
mi = "Minor character of ",
-- Présence générique
yes = "Appears in ",
['true'] = "Appears in ",
["#default"] = "Appears in ",
y = "Appears in ",
t = "Appears in ",
o = "Appears in ",
oui = "Appears in ",
v = "Appears in ",
vrai = "Appears in ",
-- Mention
mention = "Mentioned in ",
mentioned = "Mentioned in ",
me = "Mentioned in ",
men = "Mentioned in ",
-- Visual presence only
picture = "Picture only in ",
photo = "Picture only in ",
-- Vocal presence only
voice = "Voice only in ",
-- Corpse
body = "Corpse visible in",
corpse = "Corpse visible in",
-- Deleted scenes only
["deleted scenes"] = "Appears in deleted scenes of ",
del = "Appears in deleted scenes of ",
sup = "Appears in deleted scenes of ",
supp = "Appears in deleted scenes of ",
["scène supprimée"] = "Appears in deleted scenes of ",
["scènes supprimées"] = "Appears in deleted scenes of ",
-- Flashback only
flash = "Flashback only in ",
flashback = "Flashback only in ",
flashbacks = "Flashback only in ",
-- Name visible only
name = "Name only in ",
}
function p.render(frame)
local param = mw.ustring.lower(frame.args[1] or "yes")
return types[param] or types["#default"]
end
return p