Difference between revisions of "Module:Card type/data"

From Yugipedia
Jump to: navigation, search
(+ Skill Card)
(Restoring revision 4640627 by User:TheycallmeBrick on 2021-02-08 05:39:55. "Maximum Monster")
 
Line 5: Line 5:
 
--  --  For monster card types;
 
--  --  For monster card types;
 
local FAQtypes = {
 
local FAQtypes = {
 +
    ['character']  = 'Character Card',
 +
    ['command']    = 'Command Card',
 
     ['counter']    = 'Counter',    --  Not really an FAQ card type, but works here.
 
     ['counter']    = 'Counter',    --  Not really an FAQ card type, but works here.
    ['character']  = 'Character Card',
 
 
     ['non-game']    = 'Non-game card',
 
     ['non-game']    = 'Non-game card',
 
     ['skill']      = 'Skill Card',
 
     ['skill']      = 'Skill Card',
 
     ['strategy']    = 'Strategy Card',
 
     ['strategy']    = 'Strategy Card',
 +
    ['ticket']      = 'Ticket Card',
 
     ['tip']        = 'Tip Card'
 
     ['tip']        = 'Tip Card'
 
};
 
};
Line 22: Line 24:
  
 
local monsterCardTypes = {
 
local monsterCardTypes = {
     ['fusion'] = 'Fusion',
+
     ['fusion']     = 'Fusion',
     ['link']   = 'Link',
+
     ['link']       = 'Link',
     ['ritual'] = 'Ritual',
+
     ['ritual']     = 'Ritual',
     ['synchro'] = 'Synchro',
+
     ['synchro']     = 'Synchro',
     ['xyz']    = 'Xyz'
+
     ['xyz']        = 'Xyz',
 +
    ['maximum']    = 'Maximum'
 
};
 
};
  

Latest revision as of 10:14, 16 March 2023

--  Data for [[Module:Card type]].
--  Contains three tables:
--  --  For FAQ card types;
--  --  For abilities;
--  --  For monster card types;
local FAQtypes = {
    ['character']   = 'Character Card',
    ['command']     = 'Command Card',
    ['counter']     = 'Counter',    --  Not really an FAQ card type, but works here.
    ['non-game']    = 'Non-game card',
    ['skill']       = 'Skill Card',
    ['strategy']    = 'Strategy Card',
    ['ticket']      = 'Ticket Card',
    ['tip']         = 'Tip Card'
};

local abilities = {
    ['flip']    = 'Flip',
    ['gemini']  = 'Gemini',
    ['spirit']  = 'Spirit',
    ['toon']    = 'Toon',
    ['union']   = 'Union' 
};

local monsterCardTypes = {
    ['fusion']      = 'Fusion',
    ['link']        = 'Link',
    ['ritual']      = 'Ritual',
    ['synchro']     = 'Synchro',
    ['xyz']         = 'Xyz',
    ['maximum']     = 'Maximum'
};

return {
    ['FAQtypes']         = FAQtypes,
    ['abilities']        = abilities,
    ['monsterCardTypes'] = monsterCardTypes
}