522006.txt 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/EX1-001.png"alt="EX1-001Agumon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">EX1-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digimon</li>
  11. <liclass="cardlv">Lv.3</li>
  12. </ul>
  13. <divclass="card_name">Agumon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/EX1-001.png"alt="EX1-001Agumon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Form</dt>
  20. <dd>Rookie</dd>
  21. </dl>
  22. <dl>
  23. <dt>Attribute</dt>
  24. <dd>Vaccine</dd>
  25. </dl>
  26. <dl>
  27. <dt>Type</dt>
  28. <dd>Reptile</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>2000</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>3</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>0fromLv.2</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[When Attacking][Once Per Turn] Reveal the top 3 cards of your deck. Add 1 Tamer card or 1 Digimon card with [Agumon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  55. </dl>
  56. <dl>
  57. <dt>Securityeffect</dt>
  58. <dd>-</dd>
  59. </dl>
  60. <dl>
  61. <dt>Notes</dt>
  62. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  63. </div>
  64. </div>
  65. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  66. </div>
  67. </div>
  68. </li>
  69. <liclass="image_lists_itemdatapage-1">
  70. <aclass="card_img">
  71. <imgsrc="../images/cardlist/card/EX1-001_P1.png"alt="EX1-001Agumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  72. </a>
  73. <divclass="popup">
  74. <divclass="card_detailcard_detail_red">
  75. <divclass="card_detail_inner">
  76. <ulclass="cardinfo_head">
  77. <liclass="cardno">EX1-001</li>
  78. <li>U</li>
  79. <liclass="cardtype">Digimon</li>
  80. <liclass="cardlv">Lv.3</li>
  81. <liclass="cardtypecardParallel">AlternativeArt</li>
  82. </ul>
  83. <divclass="card_name">Agumon</div>
  84. <divclass="cardinfo_top">
  85. <divclass="card_img">
  86. <imgsrc="../images/cardlist/card/EX1-001_P1.png"alt="EX1-001Agumon"></div>
  87. <divclass="cardinfo_top_body">
  88. <dl>
  89. <dt>Form</dt>
  90. <dd>Rookie</dd>
  91. </dl>
  92. <dl>
  93. <dt>Attribute</dt>
  94. <dd>Vaccine</dd>
  95. </dl>
  96. <dl>
  97. <dt>Type</dt>
  98. <dd>Reptile</dd>
  99. </dl>
  100. <dl>
  101. <dt>DP</dt>
  102. <dd>2000</dl>
  103. <dl>
  104. <dt>PlayCost</dt>
  105. <dd>3</dd>
  106. </dl>
  107. <dl>
  108. <dt>DigivolveCost1</dt>
  109. <dd>0fromLv.2</dd>
  110. </dl>
  111. <dl>
  112. <dt>DigivolveCost2</dt>
  113. <dd>-</dd>
  114. </dl>
  115. </div>
  116. </div>
  117. <divclass="cardinfo_bottom">
  118. <dl>
  119. <dt>Effect</dt>
  120. <dd>-</dd>
  121. </dl>
  122. <dl>
  123. <dt>Digivolveeffect</dt>
  124. <dd>[When Attacking][Once Per Turn] Reveal the top 3 cards of your deck. Add 1 Tamer card or 1 Digimon card with [Agumon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  125. </dl>
  126. <dl>
  127. <dt>Securityeffect</dt>
  128. <dd>-</dd>
  129. </dl>
  130. <dl>
  131. <dt>Notes</dt>
  132. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  133. </div>
  134. </div>
  135. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  136. </div>
  137. </div>
  138. </li>
  139. <liclass="image_lists_itemdatapage-1">
  140. <aclass="card_img">
  141. <imgsrc="../images/cardlist/card/EX1-002.png"alt="EX1-002Biyomon"></a>
  142. <divclass="popup">
  143. <divclass="card_detailcard_detail_red">
  144. <divclass="card_detail_inner">
  145. <ulclass="cardinfo_head">
  146. <liclass="cardno">EX1-002</li>
  147. <li>C</li>
  148. <liclass="cardtype">Digimon</li>
  149. <liclass="cardlv">Lv.3</li>
  150. </ul>
  151. <divclass="card_name">Biyomon</div>
  152. <divclass="cardinfo_top">
  153. <divclass="card_img">
  154. <imgsrc="../images/cardlist/card/EX1-002.png"alt="EX1-002Biyomon"></div>
  155. <divclass="cardinfo_top_body">
  156. <dl>
  157. <dt>Form</dt>
  158. <dd>Rookie</dd>
  159. </dl>
  160. <dl>
  161. <dt>Attribute</dt>
  162. <dd>Vaccine</dd>
  163. </dl>
  164. <dl>
  165. <dt>Type</dt>
  166. <dd>Bird</dd>
  167. </dl>
  168. <dl>
  169. <dt>DP</dt>
  170. <dd>2000</dl>
  171. <dl>
  172. <dt>PlayCost</dt>
  173. <dd>3</dd>
  174. </dl>
  175. <dl>
  176. <dt>DigivolveCost1</dt>
  177. <dd>0fromLv.2</dd>
  178. </dl>
  179. <dl>
  180. <dt>DigivolveCost2</dt>
  181. <dd>-</dd>
  182. </dl>
  183. </div>
  184. </div>
  185. <divclass="cardinfo_bottom">
  186. <dl>
  187. <dt>Effect</dt>
  188. <dd>-</dd>
  189. </dl>
  190. <dl>
  191. <dt>Digivolveeffect</dt>
  192. <dd>[When Attacking][Once Per Turn] When this Digimon attacks a player, <Draw 1>. (Draw 1 card from your deck.)</dd>
  193. </dl>
  194. <dl>
  195. <dt>Securityeffect</dt>
  196. <dd>-</dd>
  197. </dl>
  198. <dl>
  199. <dt>Notes</dt>
  200. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  201. </div>
  202. </div>
  203. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  204. </div>
  205. </div>
  206. </li>
  207. <liclass="image_lists_itemdatapage-1">
  208. <aclass="card_img">
  209. <imgsrc="../images/cardlist/card/EX1-002_P1.png"alt="EX1-002Biyomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  210. </a>
  211. <divclass="popup">
  212. <divclass="card_detailcard_detail_red">
  213. <divclass="card_detail_inner">
  214. <ulclass="cardinfo_head">
  215. <liclass="cardno">EX1-002</li>
  216. <li>C</li>
  217. <liclass="cardtype">Digimon</li>
  218. <liclass="cardlv">Lv.3</li>
  219. <liclass="cardtypecardParallel">AlternativeArt</li>
  220. </ul>
  221. <divclass="card_name">Biyomon</div>
  222. <divclass="cardinfo_top">
  223. <divclass="card_img">
  224. <imgsrc="../images/cardlist/card/EX1-002_P1.png"alt="EX1-002Biyomon"></div>
  225. <divclass="cardinfo_top_body">
  226. <dl>
  227. <dt>Form</dt>
  228. <dd>Rookie</dd>
  229. </dl>
  230. <dl>
  231. <dt>Attribute</dt>
  232. <dd>Vaccine</dd>
  233. </dl>
  234. <dl>
  235. <dt>Type</dt>
  236. <dd>Bird</dd>
  237. </dl>
  238. <dl>
  239. <dt>DP</dt>
  240. <dd>2000</dl>
  241. <dl>
  242. <dt>PlayCost</dt>
  243. <dd>3</dd>
  244. </dl>
  245. <dl>
  246. <dt>DigivolveCost1</dt>
  247. <dd>0fromLv.2</dd>
  248. </dl>
  249. <dl>
  250. <dt>DigivolveCost2</dt>
  251. <dd>-</dd>
  252. </dl>
  253. </div>
  254. </div>
  255. <divclass="cardinfo_bottom">
  256. <dl>
  257. <dt>Effect</dt>
  258. <dd>-</dd>
  259. </dl>
  260. <dl>
  261. <dt>Digivolveeffect</dt>
  262. <dd>[When Attacking][Once Per Turn] When this Digimon attacks a player, <Draw 1>. (Draw 1 card from your deck.)</dd>
  263. </dl>
  264. <dl>
  265. <dt>Securityeffect</dt>
  266. <dd>-</dd>
  267. </dl>
  268. <dl>
  269. <dt>Notes</dt>
  270. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  271. </div>
  272. </div>
  273. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  274. </div>
  275. </div>
  276. </li>
  277. <liclass="image_lists_itemdatapage-1">
  278. <aclass="card_img">
  279. <imgsrc="../images/cardlist/card/EX1-003.png"alt="EX1-003Birdramon"></a>
  280. <divclass="popup">
  281. <divclass="card_detailcard_detail_red">
  282. <divclass="card_detail_inner">
  283. <ulclass="cardinfo_head">
  284. <liclass="cardno">EX1-003</li>
  285. <li>U</li>
  286. <liclass="cardtype">Digimon</li>
  287. <liclass="cardlv">Lv.4</li>
  288. </ul>
  289. <divclass="card_name">Birdramon</div>
  290. <divclass="cardinfo_top">
  291. <divclass="card_img">
  292. <imgsrc="../images/cardlist/card/EX1-003.png"alt="EX1-003Birdramon"></div>
  293. <divclass="cardinfo_top_body">
  294. <dl>
  295. <dt>Form</dt>
  296. <dd>Champion</dd>
  297. </dl>
  298. <dl>
  299. <dt>Attribute</dt>
  300. <dd>Vaccine</dd>
  301. </dl>
  302. <dl>
  303. <dt>Type</dt>
  304. <dd>GiantBird</dd>
  305. </dl>
  306. <dl>
  307. <dt>DP</dt>
  308. <dd>5000</dl>
  309. <dl>
  310. <dt>PlayCost</dt>
  311. <dd>5</dd>
  312. </dl>
  313. <dl>
  314. <dt>DigivolveCost1</dt>
  315. <dd>2fromLv.3</dd>
  316. </dl>
  317. <dl>
  318. <dt>DigivolveCost2</dt>
  319. <dd>-</dd>
  320. </dl>
  321. </div>
  322. </div>
  323. <divclass="cardinfo_bottom">
  324. <dl>
  325. <dt>Effect</dt>
  326. <dd>-</dd>
  327. </dl>
  328. <dl>
  329. <dt>Digivolveeffect</dt>
  330. <dd>[When Attacking] When this Digimon attacks a player, delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  331. </dl>
  332. <dl>
  333. <dt>Securityeffect</dt>
  334. <dd>-</dd>
  335. </dl>
  336. <dl>
  337. <dt>Notes</dt>
  338. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  339. </div>
  340. </div>
  341. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  342. </div>
  343. </div>
  344. </li>
  345. <liclass="image_lists_itemdatapage-1">
  346. <aclass="card_img">
  347. <imgsrc="../images/cardlist/card/EX1-004.png"alt="EX1-004Greymon"></a>
  348. <divclass="popup">
  349. <divclass="card_detailcard_detail_red">
  350. <divclass="card_detail_inner">
  351. <ulclass="cardinfo_head">
  352. <liclass="cardno">EX1-004</li>
  353. <li>U</li>
  354. <liclass="cardtype">Digimon</li>
  355. <liclass="cardlv">Lv.4</li>
  356. </ul>
  357. <divclass="card_name">Greymon</div>
  358. <divclass="cardinfo_top">
  359. <divclass="card_img">
  360. <imgsrc="../images/cardlist/card/EX1-004.png"alt="EX1-004Greymon"></div>
  361. <divclass="cardinfo_top_body">
  362. <dl>
  363. <dt>Form</dt>
  364. <dd>Champion</dd>
  365. </dl>
  366. <dl>
  367. <dt>Attribute</dt>
  368. <dd>Vaccine</dd>
  369. </dl>
  370. <dl>
  371. <dt>Type</dt>
  372. <dd>Dinosaur</dd>
  373. </dl>
  374. <dl>
  375. <dt>DP</dt>
  376. <dd>5000</dl>
  377. <dl>
  378. <dt>PlayCost</dt>
  379. <dd>5</dd>
  380. </dl>
  381. <dl>
  382. <dt>DigivolveCost1</dt>
  383. <dd>2fromLv.3</dd>
  384. </dl>
  385. <dl>
  386. <dt>DigivolveCost2</dt>
  387. <dd>-</dd>
  388. </dl>
  389. </div>
  390. </div>
  391. <divclass="cardinfo_bottom">
  392. <dl>
  393. <dt>Effect</dt>
  394. <dd>-</dd>
  395. </dl>
  396. <dl>
  397. <dt>Digivolveeffect</dt>
  398. <dd>[When Attacking][Once Per Turn] You may play 1 [Tai Kamiya] with a play cost of 3 or less from your hand without paying its memory cost.</dd>
  399. </dl>
  400. <dl>
  401. <dt>Securityeffect</dt>
  402. <dd>-</dd>
  403. </dl>
  404. <dl>
  405. <dt>Notes</dt>
  406. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  407. </div>
  408. </div>
  409. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  410. </div>
  411. </div>
  412. </li>
  413. <liclass="image_lists_itemdatapage-1">
  414. <aclass="card_img">
  415. <imgsrc="../images/cardlist/card/EX1-004_P1.png"alt="EX1-004Greymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  416. </a>
  417. <divclass="popup">
  418. <divclass="card_detailcard_detail_red">
  419. <divclass="card_detail_inner">
  420. <ulclass="cardinfo_head">
  421. <liclass="cardno">EX1-004</li>
  422. <li>U</li>
  423. <liclass="cardtype">Digimon</li>
  424. <liclass="cardlv">Lv.4</li>
  425. <liclass="cardtypecardParallel">AlternativeArt</li>
  426. </ul>
  427. <divclass="card_name">Greymon</div>
  428. <divclass="cardinfo_top">
  429. <divclass="card_img">
  430. <imgsrc="../images/cardlist/card/EX1-004_P1.png"alt="EX1-004Greymon"></div>
  431. <divclass="cardinfo_top_body">
  432. <dl>
  433. <dt>Form</dt>
  434. <dd>Champion</dd>
  435. </dl>
  436. <dl>
  437. <dt>Attribute</dt>
  438. <dd>Vaccine</dd>
  439. </dl>
  440. <dl>
  441. <dt>Type</dt>
  442. <dd>Dinosaur</dd>
  443. </dl>
  444. <dl>
  445. <dt>DP</dt>
  446. <dd>5000</dl>
  447. <dl>
  448. <dt>PlayCost</dt>
  449. <dd>5</dd>
  450. </dl>
  451. <dl>
  452. <dt>DigivolveCost1</dt>
  453. <dd>2fromLv.3</dd>
  454. </dl>
  455. <dl>
  456. <dt>DigivolveCost2</dt>
  457. <dd>-</dd>
  458. </dl>
  459. </div>
  460. </div>
  461. <divclass="cardinfo_bottom">
  462. <dl>
  463. <dt>Effect</dt>
  464. <dd>-</dd>
  465. </dl>
  466. <dl>
  467. <dt>Digivolveeffect</dt>
  468. <dd>[When Attacking][Once Per Turn] You may play 1 [Tai Kamiya] with a play cost of 3 or less from your hand without paying its memory cost.</dd>
  469. </dl>
  470. <dl>
  471. <dt>Securityeffect</dt>
  472. <dd>-</dd>
  473. </dl>
  474. <dl>
  475. <dt>Notes</dt>
  476. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  477. </div>
  478. </div>
  479. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  480. </div>
  481. </div>
  482. </li>
  483. <liclass="image_lists_itemdatapage-1">
  484. <aclass="card_img">
  485. <imgsrc="../images/cardlist/card/EX1-005.png"alt="EX1-005Tyrannomon"></a>
  486. <divclass="popup">
  487. <divclass="card_detailcard_detail_red">
  488. <divclass="card_detail_inner">
  489. <ulclass="cardinfo_head">
  490. <liclass="cardno">EX1-005</li>
  491. <li>R</li>
  492. <liclass="cardtype">Digimon</li>
  493. <liclass="cardlv">Lv.4</li>
  494. </ul>
  495. <divclass="card_name">Tyrannomon</div>
  496. <divclass="cardinfo_top">
  497. <divclass="card_img">
  498. <imgsrc="../images/cardlist/card/EX1-005.png"alt="EX1-005Tyrannomon"></div>
  499. <divclass="cardinfo_top_body">
  500. <dl>
  501. <dt>Form</dt>
  502. <dd>Champion</dd>
  503. </dl>
  504. <dl>
  505. <dt>Attribute</dt>
  506. <dd>Data</dd>
  507. </dl>
  508. <dl>
  509. <dt>Type</dt>
  510. <dd>Dinosaur</dd>
  511. </dl>
  512. <dl>
  513. <dt>DP</dt>
  514. <dd>4000</dl>
  515. <dl>
  516. <dt>PlayCost</dt>
  517. <dd>5</dd>
  518. </dl>
  519. <dl>
  520. <dt>DigivolveCost1</dt>
  521. <dd>2fromLv.3</dd>
  522. </dl>
  523. <dl>
  524. <dt>DigivolveCost2</dt>
  525. <dd>2fromLv.3</dd>
  526. </dl>
  527. </div>
  528. </div>
  529. <divclass="cardinfo_bottom">
  530. <dl>
  531. <dt>Effect</dt>
  532. <dd>[When Digivolving] If you don't have a [Taiga] in play, you may play one from your hand without paying its memory cost. [Your Turn] This Digimon is also treated as green.</dd>
  533. </dl>
  534. <dl>
  535. <dt>Digivolveeffect</dt>
  536. <dd>[Your Turn] While this Digimon has [Tyrannomon] in its name, it gets +2000 DP.</dd>
  537. </dl>
  538. <dl>
  539. <dt>Securityeffect</dt>
  540. <dd>-</dd>
  541. </dl>
  542. <dl>
  543. <dt>Notes</dt>
  544. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  545. </div>
  546. </div>
  547. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  548. </div>
  549. </div>
  550. </li>
  551. <liclass="image_lists_itemdatapage-1">
  552. <aclass="card_img">
  553. <imgsrc="../images/cardlist/card/EX1-005_P1.png"alt="EX1-005Tyrannomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  554. </a>
  555. <divclass="popup">
  556. <divclass="card_detailcard_detail_red">
  557. <divclass="card_detail_inner">
  558. <ulclass="cardinfo_head">
  559. <liclass="cardno">EX1-005</li>
  560. <li>R</li>
  561. <liclass="cardtype">Digimon</li>
  562. <liclass="cardlv">Lv.4</li>
  563. <liclass="cardtypecardParallel">AlternativeArt</li>
  564. </ul>
  565. <divclass="card_name">Tyrannomon</div>
  566. <divclass="cardinfo_top">
  567. <divclass="card_img">
  568. <imgsrc="../images/cardlist/card/EX1-005_P1.png"alt="EX1-005Tyrannomon"></div>
  569. <divclass="cardinfo_top_body">
  570. <dl>
  571. <dt>Form</dt>
  572. <dd>Champion</dd>
  573. </dl>
  574. <dl>
  575. <dt>Attribute</dt>
  576. <dd>Data</dd>
  577. </dl>
  578. <dl>
  579. <dt>Type</dt>
  580. <dd>Dinosaur</dd>
  581. </dl>
  582. <dl>
  583. <dt>DP</dt>
  584. <dd>4000</dl>
  585. <dl>
  586. <dt>PlayCost</dt>
  587. <dd>5</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost1</dt>
  591. <dd>2fromLv.3</dd>
  592. </dl>
  593. <dl>
  594. <dt>DigivolveCost2</dt>
  595. <dd>2fromLv.3</dd>
  596. </dl>
  597. </div>
  598. </div>
  599. <divclass="cardinfo_bottom">
  600. <dl>
  601. <dt>Effect</dt>
  602. <dd>[When Digivolving] If you don't have a [Taiga] in play, you may play one from your hand without paying its memory cost. [Your Turn] This Digimon is also treated as green.</dd>
  603. </dl>
  604. <dl>
  605. <dt>Digivolveeffect</dt>
  606. <dd>[Your Turn] While this Digimon has [Tyrannomon] in its name, it gets +2000 DP.</dd>
  607. </dl>
  608. <dl>
  609. <dt>Securityeffect</dt>
  610. <dd>-</dd>
  611. </dl>
  612. <dl>
  613. <dt>Notes</dt>
  614. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  615. </div>
  616. </div>
  617. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  618. </div>
  619. </div>
  620. </li>
  621. <liclass="image_lists_itemdatapage-1">
  622. <aclass="card_img">
  623. <imgsrc="../images/cardlist/card/EX1-006.png"alt="EX1-006Garudamon"></a>
  624. <divclass="popup">
  625. <divclass="card_detailcard_detail_red">
  626. <divclass="card_detail_inner">
  627. <ulclass="cardinfo_head">
  628. <liclass="cardno">EX1-006</li>
  629. <li>C</li>
  630. <liclass="cardtype">Digimon</li>
  631. <liclass="cardlv">Lv.5</li>
  632. </ul>
  633. <divclass="card_name">Garudamon</div>
  634. <divclass="cardinfo_top">
  635. <divclass="card_img">
  636. <imgsrc="../images/cardlist/card/EX1-006.png"alt="EX1-006Garudamon"></div>
  637. <divclass="cardinfo_top_body">
  638. <dl>
  639. <dt>Form</dt>
  640. <dd>Ultimate</dd>
  641. </dl>
  642. <dl>
  643. <dt>Attribute</dt>
  644. <dd>Vaccine</dd>
  645. </dl>
  646. <dl>
  647. <dt>Type</dt>
  648. <dd>Birdkin</dd>
  649. </dl>
  650. <dl>
  651. <dt>DP</dt>
  652. <dd>7000</dl>
  653. <dl>
  654. <dt>PlayCost</dt>
  655. <dd>6</dd>
  656. </dl>
  657. <dl>
  658. <dt>DigivolveCost1</dt>
  659. <dd>3fromLv.4</dd>
  660. </dl>
  661. <dl>
  662. <dt>DigivolveCost2</dt>
  663. <dd>-</dd>
  664. </dl>
  665. </div>
  666. </div>
  667. <divclass="cardinfo_bottom">
  668. <dl>
  669. <dt>Effect</dt>
  670. <dd>-</dd>
  671. </dl>
  672. <dl>
  673. <dt>Digivolveeffect</dt>
  674. <dd>[When Attacking][Once Per Turn] When this Digimon attacks a player, gain 1 memory.</dd>
  675. </dl>
  676. <dl>
  677. <dt>Securityeffect</dt>
  678. <dd>-</dd>
  679. </dl>
  680. <dl>
  681. <dt>Notes</dt>
  682. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  683. </div>
  684. </div>
  685. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  686. </div>
  687. </div>
  688. </li>
  689. <liclass="image_lists_itemdatapage-1">
  690. <aclass="card_img">
  691. <imgsrc="../images/cardlist/card/EX1-006_P1.png"alt="EX1-006Garudamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  692. </a>
  693. <divclass="popup">
  694. <divclass="card_detailcard_detail_red">
  695. <divclass="card_detail_inner">
  696. <ulclass="cardinfo_head">
  697. <liclass="cardno">EX1-006</li>
  698. <li>C</li>
  699. <liclass="cardtype">Digimon</li>
  700. <liclass="cardlv">Lv.5</li>
  701. <liclass="cardtypecardParallel">AlternativeArt</li>
  702. </ul>
  703. <divclass="card_name">Garudamon</div>
  704. <divclass="cardinfo_top">
  705. <divclass="card_img">
  706. <imgsrc="../images/cardlist/card/EX1-006_P1.png"alt="EX1-006Garudamon"></div>
  707. <divclass="cardinfo_top_body">
  708. <dl>
  709. <dt>Form</dt>
  710. <dd>Ultimate</dd>
  711. </dl>
  712. <dl>
  713. <dt>Attribute</dt>
  714. <dd>Vaccine</dd>
  715. </dl>
  716. <dl>
  717. <dt>Type</dt>
  718. <dd>Birdkin</dd>
  719. </dl>
  720. <dl>
  721. <dt>DP</dt>
  722. <dd>7000</dl>
  723. <dl>
  724. <dt>PlayCost</dt>
  725. <dd>6</dd>
  726. </dl>
  727. <dl>
  728. <dt>DigivolveCost1</dt>
  729. <dd>3fromLv.4</dd>
  730. </dl>
  731. <dl>
  732. <dt>DigivolveCost2</dt>
  733. <dd>-</dd>
  734. </dl>
  735. </div>
  736. </div>
  737. <divclass="cardinfo_bottom">
  738. <dl>
  739. <dt>Effect</dt>
  740. <dd>-</dd>
  741. </dl>
  742. <dl>
  743. <dt>Digivolveeffect</dt>
  744. <dd>[When Attacking][Once Per Turn] When this Digimon attacks a player, gain 1 memory.</dd>
  745. </dl>
  746. <dl>
  747. <dt>Securityeffect</dt>
  748. <dd>-</dd>
  749. </dl>
  750. <dl>
  751. <dt>Notes</dt>
  752. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  753. </div>
  754. </div>
  755. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  756. </div>
  757. </div>
  758. </li>
  759. <liclass="image_lists_itemdatapage-1">
  760. <aclass="card_img">
  761. <imgsrc="../images/cardlist/card/EX1-007.png"alt="EX1-007Megadramon"></a>
  762. <divclass="popup">
  763. <divclass="card_detailcard_detail_red">
  764. <divclass="card_detail_inner">
  765. <ulclass="cardinfo_head">
  766. <liclass="cardno">EX1-007</li>
  767. <li>C</li>
  768. <liclass="cardtype">Digimon</li>
  769. <liclass="cardlv">Lv.5</li>
  770. </ul>
  771. <divclass="card_name">Megadramon</div>
  772. <divclass="cardinfo_top">
  773. <divclass="card_img">
  774. <imgsrc="../images/cardlist/card/EX1-007.png"alt="EX1-007Megadramon"></div>
  775. <divclass="cardinfo_top_body">
  776. <dl>
  777. <dt>Form</dt>
  778. <dd>Ultimate</dd>
  779. </dl>
  780. <dl>
  781. <dt>Attribute</dt>
  782. <dd>Virus</dd>
  783. </dl>
  784. <dl>
  785. <dt>Type</dt>
  786. <dd>Cyborg</dd>
  787. </dl>
  788. <dl>
  789. <dt>DP</dt>
  790. <dd>7000</dl>
  791. <dl>
  792. <dt>PlayCost</dt>
  793. <dd>7</dd>
  794. </dl>
  795. <dl>
  796. <dt>DigivolveCost1</dt>
  797. <dd>3fromLv.4</dd>
  798. </dl>
  799. <dl>
  800. <dt>DigivolveCost2</dt>
  801. <dd>3fromLv.4</dd>
  802. </dl>
  803. </div>
  804. </div>
  805. <divclass="cardinfo_bottom">
  806. <dl>
  807. <dt>Effect</dt>
  808. <dd>[On Play] Delete up to 2 of your opponent's Digimon with 3000 DP or less.</dd>
  809. </dl>
  810. <dl>
  811. <dt>Digivolveeffect</dt>
  812. <dd>[Your Turn] While this Digimon has [Machine] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  813. </dl>
  814. <dl>
  815. <dt>Securityeffect</dt>
  816. <dd>-</dd>
  817. </dl>
  818. <dl>
  819. <dt>Notes</dt>
  820. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  821. </div>
  822. </div>
  823. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  824. </div>
  825. </div>
  826. </li>
  827. <liclass="image_lists_itemdatapage-1">
  828. <aclass="card_img">
  829. <imgsrc="../images/cardlist/card/EX1-007_P1.png"alt="EX1-007Megadramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  830. </a>
  831. <divclass="popup">
  832. <divclass="card_detailcard_detail_red">
  833. <divclass="card_detail_inner">
  834. <ulclass="cardinfo_head">
  835. <liclass="cardno">EX1-007</li>
  836. <li>C</li>
  837. <liclass="cardtype">Digimon</li>
  838. <liclass="cardlv">Lv.5</li>
  839. <liclass="cardtypecardParallel">AlternativeArt</li>
  840. </ul>
  841. <divclass="card_name">Megadramon</div>
  842. <divclass="cardinfo_top">
  843. <divclass="card_img">
  844. <imgsrc="../images/cardlist/card/EX1-007_P1.png"alt="EX1-007Megadramon"></div>
  845. <divclass="cardinfo_top_body">
  846. <dl>
  847. <dt>Form</dt>
  848. <dd>Ultimate</dd>
  849. </dl>
  850. <dl>
  851. <dt>Attribute</dt>
  852. <dd>Virus</dd>
  853. </dl>
  854. <dl>
  855. <dt>Type</dt>
  856. <dd>Cyborg</dd>
  857. </dl>
  858. <dl>
  859. <dt>DP</dt>
  860. <dd>7000</dl>
  861. <dl>
  862. <dt>PlayCost</dt>
  863. <dd>7</dd>
  864. </dl>
  865. <dl>
  866. <dt>DigivolveCost1</dt>
  867. <dd>3fromLv.4</dd>
  868. </dl>
  869. <dl>
  870. <dt>DigivolveCost2</dt>
  871. <dd>3fromLv.4</dd>
  872. </dl>
  873. </div>
  874. </div>
  875. <divclass="cardinfo_bottom">
  876. <dl>
  877. <dt>Effect</dt>
  878. <dd>[On Play] Delete up to 2 of your opponent's Digimon with 3000 DP or less.</dd>
  879. </dl>
  880. <dl>
  881. <dt>Digivolveeffect</dt>
  882. <dd>[Your Turn] While this Digimon has [Machine] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  883. </dl>
  884. <dl>
  885. <dt>Securityeffect</dt>
  886. <dd>-</dd>
  887. </dl>
  888. <dl>
  889. <dt>Notes</dt>
  890. <dd>2022RegionalsParticipationCardSet</dd></dl>
  891. </div>
  892. </div>
  893. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  894. </div>
  895. </div>
  896. </li>
  897. <liclass="image_lists_itemdatapage-1">
  898. <aclass="card_img">
  899. <imgsrc="../images/cardlist/card/EX1-007_P2.png"alt="EX1-007Megadramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  900. </a>
  901. <divclass="popup">
  902. <divclass="card_detailcard_detail_red">
  903. <divclass="card_detail_inner">
  904. <ulclass="cardinfo_head">
  905. <liclass="cardno">EX1-007</li>
  906. <li>C</li>
  907. <liclass="cardtype">Digimon</li>
  908. <liclass="cardlv">Lv.5</li>
  909. <liclass="cardtypecardParallel">AlternativeArt</li>
  910. </ul>
  911. <divclass="card_name">Megadramon</div>
  912. <divclass="cardinfo_top">
  913. <divclass="card_img">
  914. <imgsrc="../images/cardlist/card/EX1-007_P2.png"alt="EX1-007Megadramon"></div>
  915. <divclass="cardinfo_top_body">
  916. <dl>
  917. <dt>Form</dt>
  918. <dd>Ultimate</dd>
  919. </dl>
  920. <dl>
  921. <dt>Attribute</dt>
  922. <dd>Virus</dd>
  923. </dl>
  924. <dl>
  925. <dt>Type</dt>
  926. <dd>Cyborg</dd>
  927. </dl>
  928. <dl>
  929. <dt>DP</dt>
  930. <dd>7000</dl>
  931. <dl>
  932. <dt>PlayCost</dt>
  933. <dd>7</dd>
  934. </dl>
  935. <dl>
  936. <dt>DigivolveCost1</dt>
  937. <dd>3fromLv.4</dd>
  938. </dl>
  939. <dl>
  940. <dt>DigivolveCost2</dt>
  941. <dd>3fromLv.4</dd>
  942. </dl>
  943. </div>
  944. </div>
  945. <divclass="cardinfo_bottom">
  946. <dl>
  947. <dt>Effect</dt>
  948. <dd>[On Play] Delete up to 2 of your opponent's Digimon with 3000 DP or less.</dd>
  949. </dl>
  950. <dl>
  951. <dt>Digivolveeffect</dt>
  952. <dd>[Your Turn] While this Digimon has [Machine] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  953. </dl>
  954. <dl>
  955. <dt>Securityeffect</dt>
  956. <dd>-</dd>
  957. </dl>
  958. <dl>
  959. <dt>Notes</dt>
  960. <dd>2022RegionalsFinalistSet</dd></dl>
  961. </div>
  962. </div>
  963. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  964. </div>
  965. </div>
  966. </li>
  967. <liclass="image_lists_itemdatapage-1">
  968. <aclass="card_img">
  969. <imgsrc="../images/cardlist/card/EX1-007_P3.png"alt="EX1-007Megadramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  970. </a>
  971. <divclass="popup">
  972. <divclass="card_detailcard_detail_red">
  973. <divclass="card_detail_inner">
  974. <ulclass="cardinfo_head">
  975. <liclass="cardno">EX1-007</li>
  976. <li>C</li>
  977. <liclass="cardtype">Digimon</li>
  978. <liclass="cardlv">Lv.5</li>
  979. <liclass="cardtypecardParallel">AlternativeArt</li>
  980. </ul>
  981. <divclass="card_name">Megadramon</div>
  982. <divclass="cardinfo_top">
  983. <divclass="card_img">
  984. <imgsrc="../images/cardlist/card/EX1-007_P3.png"alt="EX1-007Megadramon"></div>
  985. <divclass="cardinfo_top_body">
  986. <dl>
  987. <dt>Form</dt>
  988. <dd>Ultimate</dd>
  989. </dl>
  990. <dl>
  991. <dt>Attribute</dt>
  992. <dd>Virus</dd>
  993. </dl>
  994. <dl>
  995. <dt>Type</dt>
  996. <dd>Cyborg</dd>
  997. </dl>
  998. <dl>
  999. <dt>DP</dt>
  1000. <dd>7000</dl>
  1001. <dl>
  1002. <dt>PlayCost</dt>
  1003. <dd>7</dd>
  1004. </dl>
  1005. <dl>
  1006. <dt>DigivolveCost1</dt>
  1007. <dd>3fromLv.4</dd>
  1008. </dl>
  1009. <dl>
  1010. <dt>DigivolveCost2</dt>
  1011. <dd>3fromLv.4</dd>
  1012. </dl>
  1013. </div>
  1014. </div>
  1015. <divclass="cardinfo_bottom">
  1016. <dl>
  1017. <dt>Effect</dt>
  1018. <dd>[On Play] Delete up to 2 of your opponent's Digimon with 3000 DP or less.</dd>
  1019. </dl>
  1020. <dl>
  1021. <dt>Digivolveeffect</dt>
  1022. <dd>[Your Turn] While this Digimon has [Machine] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  1023. </dl>
  1024. <dl>
  1025. <dt>Securityeffect</dt>
  1026. <dd>-</dd>
  1027. </dl>
  1028. <dl>
  1029. <dt>Notes</dt>
  1030. <dd>2022RegionalsChampionCardSet</dd></dl>
  1031. </div>
  1032. </div>
  1033. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1034. </div>
  1035. </div>
  1036. </li>
  1037. <liclass="image_lists_itemdatapage-1">
  1038. <aclass="card_img">
  1039. <imgsrc="../images/cardlist/card/EX1-008.png"alt="EX1-008MetalGreymon"></a>
  1040. <divclass="popup">
  1041. <divclass="card_detailcard_detail_red">
  1042. <divclass="card_detail_inner">
  1043. <ulclass="cardinfo_head">
  1044. <liclass="cardno">EX1-008</li>
  1045. <li>R</li>
  1046. <liclass="cardtype">Digimon</li>
  1047. <liclass="cardlv">Lv.5</li>
  1048. </ul>
  1049. <divclass="card_name">MetalGreymon</div>
  1050. <divclass="cardinfo_top">
  1051. <divclass="card_img">
  1052. <imgsrc="../images/cardlist/card/EX1-008.png"alt="EX1-008MetalGreymon"></div>
  1053. <divclass="cardinfo_top_body">
  1054. <dl>
  1055. <dt>Form</dt>
  1056. <dd>Ultimate</dd>
  1057. </dl>
  1058. <dl>
  1059. <dt>Attribute</dt>
  1060. <dd>Vaccine</dd>
  1061. </dl>
  1062. <dl>
  1063. <dt>Type</dt>
  1064. <dd>Cyborg</dd>
  1065. </dl>
  1066. <dl>
  1067. <dt>DP</dt>
  1068. <dd>7000</dl>
  1069. <dl>
  1070. <dt>PlayCost</dt>
  1071. <dd>7</dd>
  1072. </dl>
  1073. <dl>
  1074. <dt>DigivolveCost1</dt>
  1075. <dd>3fromLv.4</dd>
  1076. </dl>
  1077. <dl>
  1078. <dt>DigivolveCost2</dt>
  1079. <dd>3fromLv.4</dd>
  1080. </dl>
  1081. </div>
  1082. </div>
  1083. <divclass="cardinfo_bottom">
  1084. <dl>
  1085. <dt>Effect</dt>
  1086. <dd>[When Attacking] When this Digimon attacks a player, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1087. </dl>
  1088. <dl>
  1089. <dt>Digivolveeffect</dt>
  1090. <dd>[Your Turn] While this Digimon has [Machine] or [Dragonkin] in its traits, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  1091. </dl>
  1092. <dl>
  1093. <dt>Securityeffect</dt>
  1094. <dd>-</dd>
  1095. </dl>
  1096. <dl>
  1097. <dt>Notes</dt>
  1098. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1099. </div>
  1100. </div>
  1101. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1102. </div>
  1103. </div>
  1104. </li>
  1105. <liclass="image_lists_itemdatapage-1">
  1106. <aclass="card_img">
  1107. <imgsrc="../images/cardlist/card/EX1-008_P1.png"alt="EX1-008MetalGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1108. </a>
  1109. <divclass="popup">
  1110. <divclass="card_detailcard_detail_red">
  1111. <divclass="card_detail_inner">
  1112. <ulclass="cardinfo_head">
  1113. <liclass="cardno">EX1-008</li>
  1114. <li>R</li>
  1115. <liclass="cardtype">Digimon</li>
  1116. <liclass="cardlv">Lv.5</li>
  1117. <liclass="cardtypecardParallel">AlternativeArt</li>
  1118. </ul>
  1119. <divclass="card_name">MetalGreymon</div>
  1120. <divclass="cardinfo_top">
  1121. <divclass="card_img">
  1122. <imgsrc="../images/cardlist/card/EX1-008_P1.png"alt="EX1-008MetalGreymon"></div>
  1123. <divclass="cardinfo_top_body">
  1124. <dl>
  1125. <dt>Form</dt>
  1126. <dd>Ultimate</dd>
  1127. </dl>
  1128. <dl>
  1129. <dt>Attribute</dt>
  1130. <dd>Vaccine</dd>
  1131. </dl>
  1132. <dl>
  1133. <dt>Type</dt>
  1134. <dd>Cyborg</dd>
  1135. </dl>
  1136. <dl>
  1137. <dt>DP</dt>
  1138. <dd>7000</dl>
  1139. <dl>
  1140. <dt>PlayCost</dt>
  1141. <dd>7</dd>
  1142. </dl>
  1143. <dl>
  1144. <dt>DigivolveCost1</dt>
  1145. <dd>3fromLv.4</dd>
  1146. </dl>
  1147. <dl>
  1148. <dt>DigivolveCost2</dt>
  1149. <dd>3fromLv.4</dd>
  1150. </dl>
  1151. </div>
  1152. </div>
  1153. <divclass="cardinfo_bottom">
  1154. <dl>
  1155. <dt>Effect</dt>
  1156. <dd>[When Attacking] When this Digimon attacks a player, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1157. </dl>
  1158. <dl>
  1159. <dt>Digivolveeffect</dt>
  1160. <dd>[Your Turn] While this Digimon has [Machine] or [Dragonkin] in its traits, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  1161. </dl>
  1162. <dl>
  1163. <dt>Securityeffect</dt>
  1164. <dd>-</dd>
  1165. </dl>
  1166. <dl>
  1167. <dt>Notes</dt>
  1168. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1169. </div>
  1170. </div>
  1171. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1172. </div>
  1173. </div>
  1174. </li>
  1175. <liclass="image_lists_itemdatapage-1">
  1176. <aclass="card_img">
  1177. <imgsrc="../images/cardlist/card/EX1-008_P2.png"alt="EX1-008MetalGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1178. </a>
  1179. <divclass="popup">
  1180. <divclass="card_detailcard_detail_red">
  1181. <divclass="card_detail_inner">
  1182. <ulclass="cardinfo_head">
  1183. <liclass="cardno">EX1-008</li>
  1184. <li>R</li>
  1185. <liclass="cardtype">Digimon</li>
  1186. <liclass="cardlv">Lv.5</li>
  1187. <liclass="cardtypecardParallel">AlternativeArt</li>
  1188. </ul>
  1189. <divclass="card_name">MetalGreymon</div>
  1190. <divclass="cardinfo_top">
  1191. <divclass="card_img">
  1192. <imgsrc="../images/cardlist/card/EX1-008_P2.png"alt="EX1-008MetalGreymon"></div>
  1193. <divclass="cardinfo_top_body">
  1194. <dl>
  1195. <dt>Form</dt>
  1196. <dd>Ultimate</dd>
  1197. </dl>
  1198. <dl>
  1199. <dt>Attribute</dt>
  1200. <dd>Vaccine</dd>
  1201. </dl>
  1202. <dl>
  1203. <dt>Type</dt>
  1204. <dd>Cyborg</dd>
  1205. </dl>
  1206. <dl>
  1207. <dt>DP</dt>
  1208. <dd>7000</dl>
  1209. <dl>
  1210. <dt>PlayCost</dt>
  1211. <dd>7</dd>
  1212. </dl>
  1213. <dl>
  1214. <dt>DigivolveCost1</dt>
  1215. <dd>3fromLv.4</dd>
  1216. </dl>
  1217. <dl>
  1218. <dt>DigivolveCost2</dt>
  1219. <dd>3fromLv.4</dd>
  1220. </dl>
  1221. </div>
  1222. </div>
  1223. <divclass="cardinfo_bottom">
  1224. <dl>
  1225. <dt>Effect</dt>
  1226. <dd>[When Attacking] When this Digimon attacks a player, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1227. </dl>
  1228. <dl>
  1229. <dt>Digivolveeffect</dt>
  1230. <dd>[Your Turn] While this Digimon has [Machine] or [Dragonkin] in its traits, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  1231. </dl>
  1232. <dl>
  1233. <dt>Securityeffect</dt>
  1234. <dd>-</dd>
  1235. </dl>
  1236. <dl>
  1237. <dt>Notes</dt>
  1238. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  1239. </div>
  1240. </div>
  1241. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1242. </div>
  1243. </div>
  1244. </li>
  1245. <liclass="image_lists_itemdatapage-1">
  1246. <aclass="card_img">
  1247. <imgsrc="../images/cardlist/card/EX1-009.png"alt="EX1-009WarGreymon"></a>
  1248. <divclass="popup">
  1249. <divclass="card_detailcard_detail_red">
  1250. <divclass="card_detail_inner">
  1251. <ulclass="cardinfo_head">
  1252. <liclass="cardno">EX1-009</li>
  1253. <li>SR</li>
  1254. <liclass="cardtype">Digimon</li>
  1255. <liclass="cardlv">Lv.6</li>
  1256. </ul>
  1257. <divclass="card_name">WarGreymon</div>
  1258. <divclass="cardinfo_top">
  1259. <divclass="card_img">
  1260. <imgsrc="../images/cardlist/card/EX1-009.png"alt="EX1-009WarGreymon"></div>
  1261. <divclass="cardinfo_top_body">
  1262. <dl>
  1263. <dt>Form</dt>
  1264. <dd>Mega</dd>
  1265. </dl>
  1266. <dl>
  1267. <dt>Attribute</dt>
  1268. <dd>Vaccine</dd>
  1269. </dl>
  1270. <dl>
  1271. <dt>Type</dt>
  1272. <dd>Dragonkin</dd>
  1273. </dl>
  1274. <dl>
  1275. <dt>DP</dt>
  1276. <dd>12000</dl>
  1277. <dl>
  1278. <dt>PlayCost</dt>
  1279. <dd>12</dd>
  1280. </dl>
  1281. <dl>
  1282. <dt>DigivolveCost1</dt>
  1283. <dd>4fromLv.5</dd>
  1284. </dl>
  1285. <dl>
  1286. <dt>DigivolveCost2</dt>
  1287. <dd>-</dd>
  1288. </dl>
  1289. </div>
  1290. </div>
  1291. <divclass="cardinfo_bottom">
  1292. <dl>
  1293. <dt>Effect</dt>
  1294. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[When Attacking] When this Digimon attacks a player, if you have a Tamer in play, delete 1 of your opponent's Digimon with <Blocker>.</dd>
  1295. </dl>
  1296. <dl>
  1297. <dt>Digivolveeffect</dt>
  1298. <dd>-</dd>
  1299. </dl>
  1300. <dl>
  1301. <dt>Securityeffect</dt>
  1302. <dd>-</dd>
  1303. </dl>
  1304. <dl>
  1305. <dt>Notes</dt>
  1306. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1307. </div>
  1308. </div>
  1309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1310. </div>
  1311. </div>
  1312. </li>
  1313. <liclass="image_lists_itemdatapage-1">
  1314. <aclass="card_img">
  1315. <imgsrc="../images/cardlist/card/EX1-009_P1.png"alt="EX1-009WarGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1316. </a>
  1317. <divclass="popup">
  1318. <divclass="card_detailcard_detail_red">
  1319. <divclass="card_detail_inner">
  1320. <ulclass="cardinfo_head">
  1321. <liclass="cardno">EX1-009</li>
  1322. <li>SR</li>
  1323. <liclass="cardtype">Digimon</li>
  1324. <liclass="cardlv">Lv.6</li>
  1325. <liclass="cardtypecardParallel">AlternativeArt</li>
  1326. </ul>
  1327. <divclass="card_name">WarGreymon</div>
  1328. <divclass="cardinfo_top">
  1329. <divclass="card_img">
  1330. <imgsrc="../images/cardlist/card/EX1-009_P1.png"alt="EX1-009WarGreymon"></div>
  1331. <divclass="cardinfo_top_body">
  1332. <dl>
  1333. <dt>Form</dt>
  1334. <dd>Mega</dd>
  1335. </dl>
  1336. <dl>
  1337. <dt>Attribute</dt>
  1338. <dd>Vaccine</dd>
  1339. </dl>
  1340. <dl>
  1341. <dt>Type</dt>
  1342. <dd>Dragonkin</dd>
  1343. </dl>
  1344. <dl>
  1345. <dt>DP</dt>
  1346. <dd>12000</dl>
  1347. <dl>
  1348. <dt>PlayCost</dt>
  1349. <dd>12</dd>
  1350. </dl>
  1351. <dl>
  1352. <dt>DigivolveCost1</dt>
  1353. <dd>4fromLv.5</dd>
  1354. </dl>
  1355. <dl>
  1356. <dt>DigivolveCost2</dt>
  1357. <dd>-</dd>
  1358. </dl>
  1359. </div>
  1360. </div>
  1361. <divclass="cardinfo_bottom">
  1362. <dl>
  1363. <dt>Effect</dt>
  1364. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[When Attacking] When this Digimon attacks a player, if you have a Tamer in play, delete 1 of your opponent's Digimon with <Blocker>.</dd>
  1365. </dl>
  1366. <dl>
  1367. <dt>Digivolveeffect</dt>
  1368. <dd>-</dd>
  1369. </dl>
  1370. <dl>
  1371. <dt>Securityeffect</dt>
  1372. <dd>-</dd>
  1373. </dl>
  1374. <dl>
  1375. <dt>Notes</dt>
  1376. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1377. </div>
  1378. </div>
  1379. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1380. </div>
  1381. </div>
  1382. </li>
  1383. <liclass="image_lists_itemdatapage-1">
  1384. <aclass="card_img">
  1385. <imgsrc="../images/cardlist/card/EX1-010.png"alt="EX1-010Phoenixmon"></a>
  1386. <divclass="popup">
  1387. <divclass="card_detailcard_detail_red">
  1388. <divclass="card_detail_inner">
  1389. <ulclass="cardinfo_head">
  1390. <liclass="cardno">EX1-010</li>
  1391. <li>U</li>
  1392. <liclass="cardtype">Digimon</li>
  1393. <liclass="cardlv">Lv.6</li>
  1394. </ul>
  1395. <divclass="card_name">Phoenixmon</div>
  1396. <divclass="cardinfo_top">
  1397. <divclass="card_img">
  1398. <imgsrc="../images/cardlist/card/EX1-010.png"alt="EX1-010Phoenixmon"></div>
  1399. <divclass="cardinfo_top_body">
  1400. <dl>
  1401. <dt>Form</dt>
  1402. <dd>Mega</dd>
  1403. </dl>
  1404. <dl>
  1405. <dt>Attribute</dt>
  1406. <dd>Vaccine</dd>
  1407. </dl>
  1408. <dl>
  1409. <dt>Type</dt>
  1410. <dd>HolyBeast</dd>
  1411. </dl>
  1412. <dl>
  1413. <dt>DP</dt>
  1414. <dd>11000</dl>
  1415. <dl>
  1416. <dt>PlayCost</dt>
  1417. <dd>12</dd>
  1418. </dl>
  1419. <dl>
  1420. <dt>DigivolveCost1</dt>
  1421. <dd>3fromLv.5</dd>
  1422. </dl>
  1423. <dl>
  1424. <dt>DigivolveCost2</dt>
  1425. <dd>-</dd>
  1426. </dl>
  1427. </div>
  1428. </div>
  1429. <divclass="cardinfo_bottom">
  1430. <dl>
  1431. <dt>Effect</dt>
  1432. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[When Attacking] When this Digimon attacks a player, <Draw 2>. (Draw 2 cards from your deck.)</dd>
  1433. </dl>
  1434. <dl>
  1435. <dt>Digivolveeffect</dt>
  1436. <dd>-</dd>
  1437. </dl>
  1438. <dl>
  1439. <dt>Securityeffect</dt>
  1440. <dd>-</dd>
  1441. </dl>
  1442. <dl>
  1443. <dt>Notes</dt>
  1444. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1445. </div>
  1446. </div>
  1447. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1448. </div>
  1449. </div>
  1450. </li>
  1451. <liclass="image_lists_itemdatapage-1">
  1452. <aclass="card_img">
  1453. <imgsrc="../images/cardlist/card/EX1-011.png"alt="EX1-011Gabumon"></a>
  1454. <divclass="popup">
  1455. <divclass="card_detailcard_detail_blue">
  1456. <divclass="card_detail_inner">
  1457. <ulclass="cardinfo_head">
  1458. <liclass="cardno">EX1-011</li>
  1459. <li>U</li>
  1460. <liclass="cardtype">Digimon</li>
  1461. <liclass="cardlv">Lv.3</li>
  1462. </ul>
  1463. <divclass="card_name">Gabumon</div>
  1464. <divclass="cardinfo_top">
  1465. <divclass="card_img">
  1466. <imgsrc="../images/cardlist/card/EX1-011.png"alt="EX1-011Gabumon"></div>
  1467. <divclass="cardinfo_top_body">
  1468. <dl>
  1469. <dt>Form</dt>
  1470. <dd>Rookie</dd>
  1471. </dl>
  1472. <dl>
  1473. <dt>Attribute</dt>
  1474. <dd>Data</dd>
  1475. </dl>
  1476. <dl>
  1477. <dt>Type</dt>
  1478. <dd>Reptile</dd>
  1479. </dl>
  1480. <dl>
  1481. <dt>DP</dt>
  1482. <dd>2000</dl>
  1483. <dl>
  1484. <dt>PlayCost</dt>
  1485. <dd>3</dd>
  1486. </dl>
  1487. <dl>
  1488. <dt>DigivolveCost1</dt>
  1489. <dd>0fromLv.2</dd>
  1490. </dl>
  1491. <dl>
  1492. <dt>DigivolveCost2</dt>
  1493. <dd>-</dd>
  1494. </dl>
  1495. </div>
  1496. </div>
  1497. <divclass="cardinfo_bottom">
  1498. <dl>
  1499. <dt>Effect</dt>
  1500. <dd>-</dd>
  1501. </dl>
  1502. <dl>
  1503. <dt>Digivolveeffect</dt>
  1504. <dd>[When Attacking][Once Per Turn] Reveal the top 3 cards of your deck. Add 1 Tamer card or 1 Digimon card with [Gabumon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1505. </dl>
  1506. <dl>
  1507. <dt>Securityeffect</dt>
  1508. <dd>-</dd>
  1509. </dl>
  1510. <dl>
  1511. <dt>Notes</dt>
  1512. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1513. </div>
  1514. </div>
  1515. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1516. </div>
  1517. </div>
  1518. </li>
  1519. <liclass="image_lists_itemdatapage-1">
  1520. <aclass="card_img">
  1521. <imgsrc="../images/cardlist/card/EX1-011_P1.png"alt="EX1-011Gabumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1522. </a>
  1523. <divclass="popup">
  1524. <divclass="card_detailcard_detail_blue">
  1525. <divclass="card_detail_inner">
  1526. <ulclass="cardinfo_head">
  1527. <liclass="cardno">EX1-011</li>
  1528. <li>U</li>
  1529. <liclass="cardtype">Digimon</li>
  1530. <liclass="cardlv">Lv.3</li>
  1531. <liclass="cardtypecardParallel">AlternativeArt</li>
  1532. </ul>
  1533. <divclass="card_name">Gabumon</div>
  1534. <divclass="cardinfo_top">
  1535. <divclass="card_img">
  1536. <imgsrc="../images/cardlist/card/EX1-011_P1.png"alt="EX1-011Gabumon"></div>
  1537. <divclass="cardinfo_top_body">
  1538. <dl>
  1539. <dt>Form</dt>
  1540. <dd>Rookie</dd>
  1541. </dl>
  1542. <dl>
  1543. <dt>Attribute</dt>
  1544. <dd>Data</dd>
  1545. </dl>
  1546. <dl>
  1547. <dt>Type</dt>
  1548. <dd>Reptile</dd>
  1549. </dl>
  1550. <dl>
  1551. <dt>DP</dt>
  1552. <dd>2000</dl>
  1553. <dl>
  1554. <dt>PlayCost</dt>
  1555. <dd>3</dd>
  1556. </dl>
  1557. <dl>
  1558. <dt>DigivolveCost1</dt>
  1559. <dd>0fromLv.2</dd>
  1560. </dl>
  1561. <dl>
  1562. <dt>DigivolveCost2</dt>
  1563. <dd>-</dd>
  1564. </dl>
  1565. </div>
  1566. </div>
  1567. <divclass="cardinfo_bottom">
  1568. <dl>
  1569. <dt>Effect</dt>
  1570. <dd>-</dd>
  1571. </dl>
  1572. <dl>
  1573. <dt>Digivolveeffect</dt>
  1574. <dd>[When Attacking][Once Per Turn] Reveal the top 3 cards of your deck. Add 1 Tamer card or 1 Digimon card with [Gabumon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1575. </dl>
  1576. <dl>
  1577. <dt>Securityeffect</dt>
  1578. <dd>-</dd>
  1579. </dl>
  1580. <dl>
  1581. <dt>Notes</dt>
  1582. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1583. </div>
  1584. </div>
  1585. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1586. </div>
  1587. </div>
  1588. </li>
  1589. <liclass="image_lists_itemdatapage-1">
  1590. <aclass="card_img">
  1591. <imgsrc="../images/cardlist/card/EX1-012.png"alt="EX1-012Gomamon"></a>
  1592. <divclass="popup">
  1593. <divclass="card_detailcard_detail_blue">
  1594. <divclass="card_detail_inner">
  1595. <ulclass="cardinfo_head">
  1596. <liclass="cardno">EX1-012</li>
  1597. <li>C</li>
  1598. <liclass="cardtype">Digimon</li>
  1599. <liclass="cardlv">Lv.3</li>
  1600. </ul>
  1601. <divclass="card_name">Gomamon</div>
  1602. <divclass="cardinfo_top">
  1603. <divclass="card_img">
  1604. <imgsrc="../images/cardlist/card/EX1-012.png"alt="EX1-012Gomamon"></div>
  1605. <divclass="cardinfo_top_body">
  1606. <dl>
  1607. <dt>Form</dt>
  1608. <dd>Rookie</dd>
  1609. </dl>
  1610. <dl>
  1611. <dt>Attribute</dt>
  1612. <dd>Vaccine</dd>
  1613. </dl>
  1614. <dl>
  1615. <dt>Type</dt>
  1616. <dd>SeaBeast</dd>
  1617. </dl>
  1618. <dl>
  1619. <dt>DP</dt>
  1620. <dd>2000</dl>
  1621. <dl>
  1622. <dt>PlayCost</dt>
  1623. <dd>3</dd>
  1624. </dl>
  1625. <dl>
  1626. <dt>DigivolveCost1</dt>
  1627. <dd>0fromLv.2</dd>
  1628. </dl>
  1629. <dl>
  1630. <dt>DigivolveCost2</dt>
  1631. <dd>-</dd>
  1632. </dl>
  1633. </div>
  1634. </div>
  1635. <divclass="cardinfo_bottom">
  1636. <dl>
  1637. <dt>Effect</dt>
  1638. <dd>[On Play] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</dd>
  1639. </dl>
  1640. <dl>
  1641. <dt>Digivolveeffect</dt>
  1642. <dd>-</dd>
  1643. </dl>
  1644. <dl>
  1645. <dt>Securityeffect</dt>
  1646. <dd>-</dd>
  1647. </dl>
  1648. <dl>
  1649. <dt>Notes</dt>
  1650. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1651. </div>
  1652. </div>
  1653. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1654. </div>
  1655. </div>
  1656. </li>
  1657. <liclass="image_lists_itemdatapage-1">
  1658. <aclass="card_img">
  1659. <imgsrc="../images/cardlist/card/EX1-012_P1.png"alt="EX1-012Gomamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1660. </a>
  1661. <divclass="popup">
  1662. <divclass="card_detailcard_detail_blue">
  1663. <divclass="card_detail_inner">
  1664. <ulclass="cardinfo_head">
  1665. <liclass="cardno">EX1-012</li>
  1666. <li>C</li>
  1667. <liclass="cardtype">Digimon</li>
  1668. <liclass="cardlv">Lv.3</li>
  1669. <liclass="cardtypecardParallel">AlternativeArt</li>
  1670. </ul>
  1671. <divclass="card_name">Gomamon</div>
  1672. <divclass="cardinfo_top">
  1673. <divclass="card_img">
  1674. <imgsrc="../images/cardlist/card/EX1-012_P1.png"alt="EX1-012Gomamon"></div>
  1675. <divclass="cardinfo_top_body">
  1676. <dl>
  1677. <dt>Form</dt>
  1678. <dd>Rookie</dd>
  1679. </dl>
  1680. <dl>
  1681. <dt>Attribute</dt>
  1682. <dd>Vaccine</dd>
  1683. </dl>
  1684. <dl>
  1685. <dt>Type</dt>
  1686. <dd>SeaBeast</dd>
  1687. </dl>
  1688. <dl>
  1689. <dt>DP</dt>
  1690. <dd>2000</dl>
  1691. <dl>
  1692. <dt>PlayCost</dt>
  1693. <dd>3</dd>
  1694. </dl>
  1695. <dl>
  1696. <dt>DigivolveCost1</dt>
  1697. <dd>0fromLv.2</dd>
  1698. </dl>
  1699. <dl>
  1700. <dt>DigivolveCost2</dt>
  1701. <dd>-</dd>
  1702. </dl>
  1703. </div>
  1704. </div>
  1705. <divclass="cardinfo_bottom">
  1706. <dl>
  1707. <dt>Effect</dt>
  1708. <dd>[On Play] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</dd>
  1709. </dl>
  1710. <dl>
  1711. <dt>Digivolveeffect</dt>
  1712. <dd>-</dd>
  1713. </dl>
  1714. <dl>
  1715. <dt>Securityeffect</dt>
  1716. <dd>-</dd>
  1717. </dl>
  1718. <dl>
  1719. <dt>Notes</dt>
  1720. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1721. </div>
  1722. </div>
  1723. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1724. </div>
  1725. </div>
  1726. </li>
  1727. <liclass="image_lists_itemdatapage-1">
  1728. <aclass="card_img">
  1729. <imgsrc="../images/cardlist/card/EX1-013.png"alt="EX1-013Veemon"></a>
  1730. <divclass="popup">
  1731. <divclass="card_detailcard_detail_blue">
  1732. <divclass="card_detail_inner">
  1733. <ulclass="cardinfo_head">
  1734. <liclass="cardno">EX1-013</li>
  1735. <li>R</li>
  1736. <liclass="cardtype">Digimon</li>
  1737. <liclass="cardlv">Lv.3</li>
  1738. </ul>
  1739. <divclass="card_name">Veemon</div>
  1740. <divclass="cardinfo_top">
  1741. <divclass="card_img">
  1742. <imgsrc="../images/cardlist/card/EX1-013.png"alt="EX1-013Veemon"></div>
  1743. <divclass="cardinfo_top_body">
  1744. <dl>
  1745. <dt>Form</dt>
  1746. <dd>Rookie</dd>
  1747. </dl>
  1748. <dl>
  1749. <dt>Attribute</dt>
  1750. <dd>Free</dd>
  1751. </dl>
  1752. <dl>
  1753. <dt>Type</dt>
  1754. <dd>MiniDragon</dd>
  1755. </dl>
  1756. <dl>
  1757. <dt>DP</dt>
  1758. <dd>2000</dl>
  1759. <dl>
  1760. <dt>PlayCost</dt>
  1761. <dd>3</dd>
  1762. </dl>
  1763. <dl>
  1764. <dt>DigivolveCost1</dt>
  1765. <dd>0fromLv.2</dd>
  1766. </dl>
  1767. <dl>
  1768. <dt>DigivolveCost2</dt>
  1769. <dd>-</dd>
  1770. </dl>
  1771. </div>
  1772. </div>
  1773. <divclass="cardinfo_bottom">
  1774. <dl>
  1775. <dt>Effect</dt>
  1776. <dd>-</dd>
  1777. </dl>
  1778. <dl>
  1779. <dt>Digivolveeffect</dt>
  1780. <dd>[Your Turn][Once Per Turn] When this Digimon becomes unsuspended during your main phase, gain 1 memory.</dd>
  1781. </dl>
  1782. <dl>
  1783. <dt>Securityeffect</dt>
  1784. <dd>-</dd>
  1785. </dl>
  1786. <dl>
  1787. <dt>Notes</dt>
  1788. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1789. </div>
  1790. </div>
  1791. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1792. </div>
  1793. </div>
  1794. </li>
  1795. <liclass="image_lists_itemdatapage-1">
  1796. <aclass="card_img">
  1797. <imgsrc="../images/cardlist/card/EX1-013_P1.png"alt="EX1-013Veemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1798. </a>
  1799. <divclass="popup">
  1800. <divclass="card_detailcard_detail_blue">
  1801. <divclass="card_detail_inner">
  1802. <ulclass="cardinfo_head">
  1803. <liclass="cardno">EX1-013</li>
  1804. <li>R</li>
  1805. <liclass="cardtype">Digimon</li>
  1806. <liclass="cardlv">Lv.3</li>
  1807. <liclass="cardtypecardParallel">AlternativeArt</li>
  1808. </ul>
  1809. <divclass="card_name">Veemon</div>
  1810. <divclass="cardinfo_top">
  1811. <divclass="card_img">
  1812. <imgsrc="../images/cardlist/card/EX1-013_P1.png"alt="EX1-013Veemon"></div>
  1813. <divclass="cardinfo_top_body">
  1814. <dl>
  1815. <dt>Form</dt>
  1816. <dd>Rookie</dd>
  1817. </dl>
  1818. <dl>
  1819. <dt>Attribute</dt>
  1820. <dd>Free</dd>
  1821. </dl>
  1822. <dl>
  1823. <dt>Type</dt>
  1824. <dd>MiniDragon</dd>
  1825. </dl>
  1826. <dl>
  1827. <dt>DP</dt>
  1828. <dd>2000</dl>
  1829. <dl>
  1830. <dt>PlayCost</dt>
  1831. <dd>3</dd>
  1832. </dl>
  1833. <dl>
  1834. <dt>DigivolveCost1</dt>
  1835. <dd>0fromLv.2</dd>
  1836. </dl>
  1837. <dl>
  1838. <dt>DigivolveCost2</dt>
  1839. <dd>-</dd>
  1840. </dl>
  1841. </div>
  1842. </div>
  1843. <divclass="cardinfo_bottom">
  1844. <dl>
  1845. <dt>Effect</dt>
  1846. <dd>-</dd>
  1847. </dl>
  1848. <dl>
  1849. <dt>Digivolveeffect</dt>
  1850. <dd>[Your Turn][Once Per Turn] When this Digimon becomes unsuspended during your main phase, gain 1 memory.</dd>
  1851. </dl>
  1852. <dl>
  1853. <dt>Securityeffect</dt>
  1854. <dd>-</dd>
  1855. </dl>
  1856. <dl>
  1857. <dt>Notes</dt>
  1858. <dd>TAMER’SEVOLUTIONBOX2[PB-06]</dd></dl>
  1859. </div>
  1860. </div>
  1861. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1862. </div>
  1863. </div>
  1864. </li>
  1865. <liclass="image_lists_itemdatapage-1">
  1866. <aclass="card_img">
  1867. <imgsrc="../images/cardlist/card/EX1-014.png"alt="EX1-014ExVeemon"></a>
  1868. <divclass="popup">
  1869. <divclass="card_detailcard_detail_blue">
  1870. <divclass="card_detail_inner">
  1871. <ulclass="cardinfo_head">
  1872. <liclass="cardno">EX1-014</li>
  1873. <li>C</li>
  1874. <liclass="cardtype">Digimon</li>
  1875. <liclass="cardlv">Lv.4</li>
  1876. </ul>
  1877. <divclass="card_name">ExVeemon</div>
  1878. <divclass="cardinfo_top">
  1879. <divclass="card_img">
  1880. <imgsrc="../images/cardlist/card/EX1-014.png"alt="EX1-014ExVeemon"></div>
  1881. <divclass="cardinfo_top_body">
  1882. <dl>
  1883. <dt>Form</dt>
  1884. <dd>Champion</dd>
  1885. </dl>
  1886. <dl>
  1887. <dt>Attribute</dt>
  1888. <dd>Free</dd>
  1889. </dl>
  1890. <dl>
  1891. <dt>Type</dt>
  1892. <dd>MythicalDragon</dd>
  1893. </dl>
  1894. <dl>
  1895. <dt>DP</dt>
  1896. <dd>4000</dl>
  1897. <dl>
  1898. <dt>PlayCost</dt>
  1899. <dd>5</dd>
  1900. </dl>
  1901. <dl>
  1902. <dt>DigivolveCost1</dt>
  1903. <dd>2fromLv.3</dd>
  1904. </dl>
  1905. <dl>
  1906. <dt>DigivolveCost2</dt>
  1907. <dd>2fromLv.3</dd>
  1908. </dl>
  1909. </div>
  1910. </div>
  1911. <divclass="cardinfo_bottom">
  1912. <dl>
  1913. <dt>Effect</dt>
  1914. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  1915. </dl>
  1916. <dl>
  1917. <dt>Digivolveeffect</dt>
  1918. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name or [Free] in its traits, it gains <Jamming>.</dd>
  1919. </dl>
  1920. <dl>
  1921. <dt>Securityeffect</dt>
  1922. <dd>-</dd>
  1923. </dl>
  1924. <dl>
  1925. <dt>Notes</dt>
  1926. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  1927. </div>
  1928. </div>
  1929. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1930. </div>
  1931. </div>
  1932. </li>
  1933. <liclass="image_lists_itemdatapage-1">
  1934. <aclass="card_img">
  1935. <imgsrc="../images/cardlist/card/EX1-014_P1.png"alt="EX1-014ExVeemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1936. </a>
  1937. <divclass="popup">
  1938. <divclass="card_detailcard_detail_blue">
  1939. <divclass="card_detail_inner">
  1940. <ulclass="cardinfo_head">
  1941. <liclass="cardno">EX1-014</li>
  1942. <li>C</li>
  1943. <liclass="cardtype">Digimon</li>
  1944. <liclass="cardlv">Lv.4</li>
  1945. <liclass="cardtypecardParallel">AlternativeArt</li>
  1946. </ul>
  1947. <divclass="card_name">ExVeemon</div>
  1948. <divclass="cardinfo_top">
  1949. <divclass="card_img">
  1950. <imgsrc="../images/cardlist/card/EX1-014_P1.png"alt="EX1-014ExVeemon"></div>
  1951. <divclass="cardinfo_top_body">
  1952. <dl>
  1953. <dt>Form</dt>
  1954. <dd>Champion</dd>
  1955. </dl>
  1956. <dl>
  1957. <dt>Attribute</dt>
  1958. <dd>Free</dd>
  1959. </dl>
  1960. <dl>
  1961. <dt>Type</dt>
  1962. <dd>MythicalDragon</dd>
  1963. </dl>
  1964. <dl>
  1965. <dt>DP</dt>
  1966. <dd>4000</dl>
  1967. <dl>
  1968. <dt>PlayCost</dt>
  1969. <dd>5</dd>
  1970. </dl>
  1971. <dl>
  1972. <dt>DigivolveCost1</dt>
  1973. <dd>2fromLv.3</dd>
  1974. </dl>
  1975. <dl>
  1976. <dt>DigivolveCost2</dt>
  1977. <dd>2fromLv.3</dd>
  1978. </dl>
  1979. </div>
  1980. </div>
  1981. <divclass="cardinfo_bottom">
  1982. <dl>
  1983. <dt>Effect</dt>
  1984. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  1985. </dl>
  1986. <dl>
  1987. <dt>Digivolveeffect</dt>
  1988. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name or [Free] in its traits, it gains <Jamming>.</dd>
  1989. </dl>
  1990. <dl>
  1991. <dt>Securityeffect</dt>
  1992. <dd>-</dd>
  1993. </dl>
  1994. <dl>
  1995. <dt>Notes</dt>
  1996. <dd>UltimateCupTop64</dd></dl>
  1997. </div>
  1998. </div>
  1999. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2000. </div>
  2001. </div>
  2002. </li>
  2003. <liclass="image_lists_itemdatapage-1">
  2004. <aclass="card_img">
  2005. <imgsrc="../images/cardlist/card/EX1-015.png"alt="EX1-015Garurumon"></a>
  2006. <divclass="popup">
  2007. <divclass="card_detailcard_detail_blue">
  2008. <divclass="card_detail_inner">
  2009. <ulclass="cardinfo_head">
  2010. <liclass="cardno">EX1-015</li>
  2011. <li>U</li>
  2012. <liclass="cardtype">Digimon</li>
  2013. <liclass="cardlv">Lv.4</li>
  2014. </ul>
  2015. <divclass="card_name">Garurumon</div>
  2016. <divclass="cardinfo_top">
  2017. <divclass="card_img">
  2018. <imgsrc="../images/cardlist/card/EX1-015.png"alt="EX1-015Garurumon"></div>
  2019. <divclass="cardinfo_top_body">
  2020. <dl>
  2021. <dt>Form</dt>
  2022. <dd>Champion</dd>
  2023. </dl>
  2024. <dl>
  2025. <dt>Attribute</dt>
  2026. <dd>Vaccine</dd>
  2027. </dl>
  2028. <dl>
  2029. <dt>Type</dt>
  2030. <dd>Beast</dd>
  2031. </dl>
  2032. <dl>
  2033. <dt>DP</dt>
  2034. <dd>5000</dl>
  2035. <dl>
  2036. <dt>PlayCost</dt>
  2037. <dd>5</dd>
  2038. </dl>
  2039. <dl>
  2040. <dt>DigivolveCost1</dt>
  2041. <dd>2fromLv.3</dd>
  2042. </dl>
  2043. <dl>
  2044. <dt>DigivolveCost2</dt>
  2045. <dd>-</dd>
  2046. </dl>
  2047. </div>
  2048. </div>
  2049. <divclass="cardinfo_bottom">
  2050. <dl>
  2051. <dt>Effect</dt>
  2052. <dd>-</dd>
  2053. </dl>
  2054. <dl>
  2055. <dt>Digivolveeffect</dt>
  2056. <dd>[When Attacking][Once Per Turn] You may play 1 [Matt Ishida] with a play cost of 3 or less from your hand without paying its memory cost.</dd>
  2057. </dl>
  2058. <dl>
  2059. <dt>Securityeffect</dt>
  2060. <dd>-</dd>
  2061. </dl>
  2062. <dl>
  2063. <dt>Notes</dt>
  2064. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2065. </div>
  2066. </div>
  2067. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2068. </div>
  2069. </div>
  2070. </li>
  2071. <liclass="image_lists_itemdatapage-1">
  2072. <aclass="card_img">
  2073. <imgsrc="../images/cardlist/card/EX1-015_P1.png"alt="EX1-015Garurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2074. </a>
  2075. <divclass="popup">
  2076. <divclass="card_detailcard_detail_blue">
  2077. <divclass="card_detail_inner">
  2078. <ulclass="cardinfo_head">
  2079. <liclass="cardno">EX1-015</li>
  2080. <li>U</li>
  2081. <liclass="cardtype">Digimon</li>
  2082. <liclass="cardlv">Lv.4</li>
  2083. <liclass="cardtypecardParallel">AlternativeArt</li>
  2084. </ul>
  2085. <divclass="card_name">Garurumon</div>
  2086. <divclass="cardinfo_top">
  2087. <divclass="card_img">
  2088. <imgsrc="../images/cardlist/card/EX1-015_P1.png"alt="EX1-015Garurumon"></div>
  2089. <divclass="cardinfo_top_body">
  2090. <dl>
  2091. <dt>Form</dt>
  2092. <dd>Champion</dd>
  2093. </dl>
  2094. <dl>
  2095. <dt>Attribute</dt>
  2096. <dd>Vaccine</dd>
  2097. </dl>
  2098. <dl>
  2099. <dt>Type</dt>
  2100. <dd>Beast</dd>
  2101. </dl>
  2102. <dl>
  2103. <dt>DP</dt>
  2104. <dd>5000</dl>
  2105. <dl>
  2106. <dt>PlayCost</dt>
  2107. <dd>5</dd>
  2108. </dl>
  2109. <dl>
  2110. <dt>DigivolveCost1</dt>
  2111. <dd>2fromLv.3</dd>
  2112. </dl>
  2113. <dl>
  2114. <dt>DigivolveCost2</dt>
  2115. <dd>-</dd>
  2116. </dl>
  2117. </div>
  2118. </div>
  2119. <divclass="cardinfo_bottom">
  2120. <dl>
  2121. <dt>Effect</dt>
  2122. <dd>-</dd>
  2123. </dl>
  2124. <dl>
  2125. <dt>Digivolveeffect</dt>
  2126. <dd>[When Attacking][Once Per Turn] You may play 1 [Matt Ishida] with a play cost of 3 or less from your hand without paying its memory cost.</dd>
  2127. </dl>
  2128. <dl>
  2129. <dt>Securityeffect</dt>
  2130. <dd>-</dd>
  2131. </dl>
  2132. <dl>
  2133. <dt>Notes</dt>
  2134. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2135. </div>
  2136. </div>
  2137. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2138. </div>
  2139. </div>
  2140. </li>
  2141. <liclass="image_lists_itemdatapage-1">
  2142. <aclass="card_img">
  2143. <imgsrc="../images/cardlist/card/EX1-016.png"alt="EX1-016Ikkakumon"></a>
  2144. <divclass="popup">
  2145. <divclass="card_detailcard_detail_blue">
  2146. <divclass="card_detail_inner">
  2147. <ulclass="cardinfo_head">
  2148. <liclass="cardno">EX1-016</li>
  2149. <li>C</li>
  2150. <liclass="cardtype">Digimon</li>
  2151. <liclass="cardlv">Lv.4</li>
  2152. </ul>
  2153. <divclass="card_name">Ikkakumon</div>
  2154. <divclass="cardinfo_top">
  2155. <divclass="card_img">
  2156. <imgsrc="../images/cardlist/card/EX1-016.png"alt="EX1-016Ikkakumon"></div>
  2157. <divclass="cardinfo_top_body">
  2158. <dl>
  2159. <dt>Form</dt>
  2160. <dd>Champion</dd>
  2161. </dl>
  2162. <dl>
  2163. <dt>Attribute</dt>
  2164. <dd>Vaccine</dd>
  2165. </dl>
  2166. <dl>
  2167. <dt>Type</dt>
  2168. <dd>SeaBeast</dd>
  2169. </dl>
  2170. <dl>
  2171. <dt>DP</dt>
  2172. <dd>6000</dl>
  2173. <dl>
  2174. <dt>PlayCost</dt>
  2175. <dd>6</dd>
  2176. </dl>
  2177. <dl>
  2178. <dt>DigivolveCost1</dt>
  2179. <dd>2fromLv.3</dd>
  2180. </dl>
  2181. <dl>
  2182. <dt>DigivolveCost2</dt>
  2183. <dd>-</dd>
  2184. </dl>
  2185. </div>
  2186. </div>
  2187. <divclass="cardinfo_bottom">
  2188. <dl>
  2189. <dt>Effect</dt>
  2190. <dd>[Your Turn] This Digimon can also attack your opponent's unsuspended Digimon with no digivolution cards.</dd>
  2191. </dl>
  2192. <dl>
  2193. <dt>Digivolveeffect</dt>
  2194. <dd>-</dd>
  2195. </dl>
  2196. <dl>
  2197. <dt>Securityeffect</dt>
  2198. <dd>-</dd>
  2199. </dl>
  2200. <dl>
  2201. <dt>Notes</dt>
  2202. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2203. </div>
  2204. </div>
  2205. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2206. </div>
  2207. </div>
  2208. </li>
  2209. <liclass="image_lists_itemdatapage-1">
  2210. <aclass="card_img">
  2211. <imgsrc="../images/cardlist/card/EX1-017.png"alt="EX1-017WereGarurumon"></a>
  2212. <divclass="popup">
  2213. <divclass="card_detailcard_detail_blue">
  2214. <divclass="card_detail_inner">
  2215. <ulclass="cardinfo_head">
  2216. <liclass="cardno">EX1-017</li>
  2217. <li>C</li>
  2218. <liclass="cardtype">Digimon</li>
  2219. <liclass="cardlv">Lv.5</li>
  2220. </ul>
  2221. <divclass="card_name">WereGarurumon</div>
  2222. <divclass="cardinfo_top">
  2223. <divclass="card_img">
  2224. <imgsrc="../images/cardlist/card/EX1-017.png"alt="EX1-017WereGarurumon"></div>
  2225. <divclass="cardinfo_top_body">
  2226. <dl>
  2227. <dt>Form</dt>
  2228. <dd>Ultimate</dd>
  2229. </dl>
  2230. <dl>
  2231. <dt>Attribute</dt>
  2232. <dd>Vaccine</dd>
  2233. </dl>
  2234. <dl>
  2235. <dt>Type</dt>
  2236. <dd>Beastkin</dd>
  2237. </dl>
  2238. <dl>
  2239. <dt>DP</dt>
  2240. <dd>7000</dl>
  2241. <dl>
  2242. <dt>PlayCost</dt>
  2243. <dd>7</dd>
  2244. </dl>
  2245. <dl>
  2246. <dt>DigivolveCost1</dt>
  2247. <dd>3fromLv.4</dd>
  2248. </dl>
  2249. <dl>
  2250. <dt>DigivolveCost2</dt>
  2251. <dd>-</dd>
  2252. </dl>
  2253. </div>
  2254. </div>
  2255. <divclass="cardinfo_bottom">
  2256. <dl>
  2257. <dt>Effect</dt>
  2258. <dd>[When Digivolving] <Draw 1>. (Draw 1 card from your deck.)</dd>
  2259. </dl>
  2260. <dl>
  2261. <dt>Digivolveeffect</dt>
  2262. <dd>[When Attacking][Once Per Turn] If you have 8 or more cards in your hand, gain 1 memory.</dd>
  2263. </dl>
  2264. <dl>
  2265. <dt>Securityeffect</dt>
  2266. <dd>-</dd>
  2267. </dl>
  2268. <dl>
  2269. <dt>Notes</dt>
  2270. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2271. </div>
  2272. </div>
  2273. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2274. </div>
  2275. </div>
  2276. </li>
  2277. <liclass="image_lists_itemdatapage-1">
  2278. <aclass="card_img">
  2279. <imgsrc="../images/cardlist/card/EX1-017_P1.png"alt="EX1-017WereGarurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2280. </a>
  2281. <divclass="popup">
  2282. <divclass="card_detailcard_detail_blue">
  2283. <divclass="card_detail_inner">
  2284. <ulclass="cardinfo_head">
  2285. <liclass="cardno">EX1-017</li>
  2286. <li>C</li>
  2287. <liclass="cardtype">Digimon</li>
  2288. <liclass="cardlv">Lv.5</li>
  2289. <liclass="cardtypecardParallel">AlternativeArt</li>
  2290. </ul>
  2291. <divclass="card_name">WereGarurumon</div>
  2292. <divclass="cardinfo_top">
  2293. <divclass="card_img">
  2294. <imgsrc="../images/cardlist/card/EX1-017_P1.png"alt="EX1-017WereGarurumon"></div>
  2295. <divclass="cardinfo_top_body">
  2296. <dl>
  2297. <dt>Form</dt>
  2298. <dd>Ultimate</dd>
  2299. </dl>
  2300. <dl>
  2301. <dt>Attribute</dt>
  2302. <dd>Vaccine</dd>
  2303. </dl>
  2304. <dl>
  2305. <dt>Type</dt>
  2306. <dd>Beastkin</dd>
  2307. </dl>
  2308. <dl>
  2309. <dt>DP</dt>
  2310. <dd>7000</dl>
  2311. <dl>
  2312. <dt>PlayCost</dt>
  2313. <dd>7</dd>
  2314. </dl>
  2315. <dl>
  2316. <dt>DigivolveCost1</dt>
  2317. <dd>3fromLv.4</dd>
  2318. </dl>
  2319. <dl>
  2320. <dt>DigivolveCost2</dt>
  2321. <dd>-</dd>
  2322. </dl>
  2323. </div>
  2324. </div>
  2325. <divclass="cardinfo_bottom">
  2326. <dl>
  2327. <dt>Effect</dt>
  2328. <dd>[When Digivolving] <Draw 1>. (Draw 1 card from your deck.)</dd>
  2329. </dl>
  2330. <dl>
  2331. <dt>Digivolveeffect</dt>
  2332. <dd>[When Attacking][Once Per Turn] If you have 8 or more cards in your hand, gain 1 memory.</dd>
  2333. </dl>
  2334. <dl>
  2335. <dt>Securityeffect</dt>
  2336. <dd>-</dd>
  2337. </dl>
  2338. <dl>
  2339. <dt>Notes</dt>
  2340. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2341. </div>
  2342. </div>
  2343. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2344. </div>
  2345. </div>
  2346. </li>
  2347. <liclass="image_lists_itemdatapage-1">
  2348. <aclass="card_img">
  2349. <imgsrc="../images/cardlist/card/EX1-018.png"alt="EX1-018Zudomon"></a>
  2350. <divclass="popup">
  2351. <divclass="card_detailcard_detail_blue">
  2352. <divclass="card_detail_inner">
  2353. <ulclass="cardinfo_head">
  2354. <liclass="cardno">EX1-018</li>
  2355. <li>C</li>
  2356. <liclass="cardtype">Digimon</li>
  2357. <liclass="cardlv">Lv.5</li>
  2358. </ul>
  2359. <divclass="card_name">Zudomon</div>
  2360. <divclass="cardinfo_top">
  2361. <divclass="card_img">
  2362. <imgsrc="../images/cardlist/card/EX1-018.png"alt="EX1-018Zudomon"></div>
  2363. <divclass="cardinfo_top_body">
  2364. <dl>
  2365. <dt>Form</dt>
  2366. <dd>Ultimate</dd>
  2367. </dl>
  2368. <dl>
  2369. <dt>Attribute</dt>
  2370. <dd>Vaccine</dd>
  2371. </dl>
  2372. <dl>
  2373. <dt>Type</dt>
  2374. <dd>SeaBeast</dd>
  2375. </dl>
  2376. <dl>
  2377. <dt>DP</dt>
  2378. <dd>8000</dl>
  2379. <dl>
  2380. <dt>PlayCost</dt>
  2381. <dd>8</dd>
  2382. </dl>
  2383. <dl>
  2384. <dt>DigivolveCost1</dt>
  2385. <dd>3fromLv.4</dd>
  2386. </dl>
  2387. <dl>
  2388. <dt>DigivolveCost2</dt>
  2389. <dd>-</dd>
  2390. </dl>
  2391. </div>
  2392. </div>
  2393. <divclass="cardinfo_bottom">
  2394. <dl>
  2395. <dt>Effect</dt>
  2396. <dd>[When Digivolving] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon. [Your Turn] This Digimon can also attack your opponent's unsuspended Digimon with no digivolution cards.</dd>
  2397. </dl>
  2398. <dl>
  2399. <dt>Digivolveeffect</dt>
  2400. <dd>-</dd>
  2401. </dl>
  2402. <dl>
  2403. <dt>Securityeffect</dt>
  2404. <dd>-</dd>
  2405. </dl>
  2406. <dl>
  2407. <dt>Notes</dt>
  2408. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2409. </div>
  2410. </div>
  2411. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2412. </div>
  2413. </div>
  2414. </li>
  2415. <liclass="image_lists_itemdatapage-1">
  2416. <aclass="card_img">
  2417. <imgsrc="../images/cardlist/card/EX1-018_P1.png"alt="EX1-018Zudomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2418. </a>
  2419. <divclass="popup">
  2420. <divclass="card_detailcard_detail_blue">
  2421. <divclass="card_detail_inner">
  2422. <ulclass="cardinfo_head">
  2423. <liclass="cardno">EX1-018</li>
  2424. <li>C</li>
  2425. <liclass="cardtype">Digimon</li>
  2426. <liclass="cardlv">Lv.5</li>
  2427. <liclass="cardtypecardParallel">AlternativeArt</li>
  2428. </ul>
  2429. <divclass="card_name">Zudomon</div>
  2430. <divclass="cardinfo_top">
  2431. <divclass="card_img">
  2432. <imgsrc="../images/cardlist/card/EX1-018_P1.png"alt="EX1-018Zudomon"></div>
  2433. <divclass="cardinfo_top_body">
  2434. <dl>
  2435. <dt>Form</dt>
  2436. <dd>Ultimate</dd>
  2437. </dl>
  2438. <dl>
  2439. <dt>Attribute</dt>
  2440. <dd>Vaccine</dd>
  2441. </dl>
  2442. <dl>
  2443. <dt>Type</dt>
  2444. <dd>SeaBeast</dd>
  2445. </dl>
  2446. <dl>
  2447. <dt>DP</dt>
  2448. <dd>8000</dl>
  2449. <dl>
  2450. <dt>PlayCost</dt>
  2451. <dd>8</dd>
  2452. </dl>
  2453. <dl>
  2454. <dt>DigivolveCost1</dt>
  2455. <dd>3fromLv.4</dd>
  2456. </dl>
  2457. <dl>
  2458. <dt>DigivolveCost2</dt>
  2459. <dd>-</dd>
  2460. </dl>
  2461. </div>
  2462. </div>
  2463. <divclass="cardinfo_bottom">
  2464. <dl>
  2465. <dt>Effect</dt>
  2466. <dd>[When Digivolving] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon. [Your Turn] This Digimon can also attack your opponent's unsuspended Digimon with no digivolution cards.</dd>
  2467. </dl>
  2468. <dl>
  2469. <dt>Digivolveeffect</dt>
  2470. <dd>-</dd>
  2471. </dl>
  2472. <dl>
  2473. <dt>Securityeffect</dt>
  2474. <dd>-</dd>
  2475. </dl>
  2476. <dl>
  2477. <dt>Notes</dt>
  2478. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2479. </div>
  2480. </div>
  2481. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2482. </div>
  2483. </div>
  2484. </li>
  2485. <liclass="image_lists_itemdatapage-1">
  2486. <aclass="card_img">
  2487. <imgsrc="../images/cardlist/card/EX1-019.png"alt="EX1-019Paildramon"></a>
  2488. <divclass="popup">
  2489. <divclass="card_detailcard_detail_blue">
  2490. <divclass="card_detail_inner">
  2491. <ulclass="cardinfo_head">
  2492. <liclass="cardno">EX1-019</li>
  2493. <li>R</li>
  2494. <liclass="cardtype">Digimon</li>
  2495. <liclass="cardlv">Lv.5</li>
  2496. </ul>
  2497. <divclass="card_name">Paildramon</div>
  2498. <divclass="cardinfo_top">
  2499. <divclass="card_img">
  2500. <imgsrc="../images/cardlist/card/EX1-019.png"alt="EX1-019Paildramon"></div>
  2501. <divclass="cardinfo_top_body">
  2502. <dl>
  2503. <dt>Form</dt>
  2504. <dd>Ultimate</dd>
  2505. </dl>
  2506. <dl>
  2507. <dt>Attribute</dt>
  2508. <dd>Free</dd>
  2509. </dl>
  2510. <dl>
  2511. <dt>Type</dt>
  2512. <dd>Dragonkin</dd>
  2513. </dl>
  2514. <dl>
  2515. <dt>DP</dt>
  2516. <dd>7000</dl>
  2517. <dl>
  2518. <dt>PlayCost</dt>
  2519. <dd>8</dd>
  2520. </dl>
  2521. <dl>
  2522. <dt>DigivolveCost1</dt>
  2523. <dd>3fromLv.4</dd>
  2524. </dl>
  2525. <dl>
  2526. <dt>DigivolveCost2</dt>
  2527. <dd>3fromLv.4</dd>
  2528. </dl>
  2529. </div>
  2530. </div>
  2531. <divclass="cardinfo_bottom">
  2532. <dl>
  2533. <dt>Effect</dt>
  2534. <dd>[When Digivolving] If a Digimon card with [Free] in its traits is in this Digimon's digivolution cards, unsuspend this Digimon.</dd>
  2535. </dl>
  2536. <dl>
  2537. <dt>Digivolveeffect</dt>
  2538. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name, it can't be blocked.</dd>
  2539. </dl>
  2540. <dl>
  2541. <dt>Securityeffect</dt>
  2542. <dd>-</dd>
  2543. </dl>
  2544. <dl>
  2545. <dt>Notes</dt>
  2546. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2547. </div>
  2548. </div>
  2549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2550. </div>
  2551. </div>
  2552. </li>
  2553. <liclass="image_lists_itemdatapage-1">
  2554. <aclass="card_img">
  2555. <imgsrc="../images/cardlist/card/EX1-019_P1.png"alt="EX1-019Paildramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2556. </a>
  2557. <divclass="popup">
  2558. <divclass="card_detailcard_detail_blue">
  2559. <divclass="card_detail_inner">
  2560. <ulclass="cardinfo_head">
  2561. <liclass="cardno">EX1-019</li>
  2562. <li>R</li>
  2563. <liclass="cardtype">Digimon</li>
  2564. <liclass="cardlv">Lv.5</li>
  2565. <liclass="cardtypecardParallel">AlternativeArt</li>
  2566. </ul>
  2567. <divclass="card_name">Paildramon</div>
  2568. <divclass="cardinfo_top">
  2569. <divclass="card_img">
  2570. <imgsrc="../images/cardlist/card/EX1-019_P1.png"alt="EX1-019Paildramon"></div>
  2571. <divclass="cardinfo_top_body">
  2572. <dl>
  2573. <dt>Form</dt>
  2574. <dd>Ultimate</dd>
  2575. </dl>
  2576. <dl>
  2577. <dt>Attribute</dt>
  2578. <dd>Free</dd>
  2579. </dl>
  2580. <dl>
  2581. <dt>Type</dt>
  2582. <dd>Dragonkin</dd>
  2583. </dl>
  2584. <dl>
  2585. <dt>DP</dt>
  2586. <dd>7000</dl>
  2587. <dl>
  2588. <dt>PlayCost</dt>
  2589. <dd>8</dd>
  2590. </dl>
  2591. <dl>
  2592. <dt>DigivolveCost1</dt>
  2593. <dd>3fromLv.4</dd>
  2594. </dl>
  2595. <dl>
  2596. <dt>DigivolveCost2</dt>
  2597. <dd>3fromLv.4</dd>
  2598. </dl>
  2599. </div>
  2600. </div>
  2601. <divclass="cardinfo_bottom">
  2602. <dl>
  2603. <dt>Effect</dt>
  2604. <dd>[When Digivolving] If a Digimon card with [Free] in its traits is in this Digimon's digivolution cards, unsuspend this Digimon.</dd>
  2605. </dl>
  2606. <dl>
  2607. <dt>Digivolveeffect</dt>
  2608. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name, it can't be blocked.</dd>
  2609. </dl>
  2610. <dl>
  2611. <dt>Securityeffect</dt>
  2612. <dd>-</dd>
  2613. </dl>
  2614. <dl>
  2615. <dt>Notes</dt>
  2616. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2617. </div>
  2618. </div>
  2619. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2620. </div>
  2621. </div>
  2622. </li>
  2623. <liclass="image_lists_itemdatapage-1">
  2624. <aclass="card_img">
  2625. <imgsrc="../images/cardlist/card/EX1-020.png"alt="EX1-020Plesiomon"></a>
  2626. <divclass="popup">
  2627. <divclass="card_detailcard_detail_blue">
  2628. <divclass="card_detail_inner">
  2629. <ulclass="cardinfo_head">
  2630. <liclass="cardno">EX1-020</li>
  2631. <li>U</li>
  2632. <liclass="cardtype">Digimon</li>
  2633. <liclass="cardlv">Lv.6</li>
  2634. </ul>
  2635. <divclass="card_name">Plesiomon</div>
  2636. <divclass="cardinfo_top">
  2637. <divclass="card_img">
  2638. <imgsrc="../images/cardlist/card/EX1-020.png"alt="EX1-020Plesiomon"></div>
  2639. <divclass="cardinfo_top_body">
  2640. <dl>
  2641. <dt>Form</dt>
  2642. <dd>Mega</dd>
  2643. </dl>
  2644. <dl>
  2645. <dt>Attribute</dt>
  2646. <dd>Data</dd>
  2647. </dl>
  2648. <dl>
  2649. <dt>Type</dt>
  2650. <dd>Plesiosaur</dd>
  2651. </dl>
  2652. <dl>
  2653. <dt>DP</dt>
  2654. <dd>11000</dl>
  2655. <dl>
  2656. <dt>PlayCost</dt>
  2657. <dd>11</dd>
  2658. </dl>
  2659. <dl>
  2660. <dt>DigivolveCost1</dt>
  2661. <dd>3fromLv.5</dd>
  2662. </dl>
  2663. <dl>
  2664. <dt>DigivolveCost2</dt>
  2665. <dd>-</dd>
  2666. </dl>
  2667. </div>
  2668. </div>
  2669. <divclass="cardinfo_bottom">
  2670. <dl>
  2671. <dt>Effect</dt>
  2672. <dd>[Your Turn][Once Per Turn] When one of your opponent's digivolution cards is trashed, <Draw 2>. (Draw 2 cards from your deck.) [Your Turn] This Digimon can also attack your opponent's unsuspended Digimon with no digivolution cards.</dd>
  2673. </dl>
  2674. <dl>
  2675. <dt>Digivolveeffect</dt>
  2676. <dd>-</dd>
  2677. </dl>
  2678. <dl>
  2679. <dt>Securityeffect</dt>
  2680. <dd>-</dd>
  2681. </dl>
  2682. <dl>
  2683. <dt>Notes</dt>
  2684. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2685. </div>
  2686. </div>
  2687. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2688. </div>
  2689. </div>
  2690. </li>
  2691. <liclass="image_lists_itemdatapage-1">
  2692. <aclass="card_img">
  2693. <imgsrc="../images/cardlist/card/EX1-021.png"alt="EX1-021MetalGarurumon"></a>
  2694. <divclass="popup">
  2695. <divclass="card_detailcard_detail_blue">
  2696. <divclass="card_detail_inner">
  2697. <ulclass="cardinfo_head">
  2698. <liclass="cardno">EX1-021</li>
  2699. <li>SR</li>
  2700. <liclass="cardtype">Digimon</li>
  2701. <liclass="cardlv">Lv.6</li>
  2702. </ul>
  2703. <divclass="card_name">MetalGarurumon</div>
  2704. <divclass="cardinfo_top">
  2705. <divclass="card_img">
  2706. <imgsrc="../images/cardlist/card/EX1-021.png"alt="EX1-021MetalGarurumon"></div>
  2707. <divclass="cardinfo_top_body">
  2708. <dl>
  2709. <dt>Form</dt>
  2710. <dd>Mega</dd>
  2711. </dl>
  2712. <dl>
  2713. <dt>Attribute</dt>
  2714. <dd>Data</dd>
  2715. </dl>
  2716. <dl>
  2717. <dt>Type</dt>
  2718. <dd>Cyborg</dd>
  2719. </dl>
  2720. <dl>
  2721. <dt>DP</dt>
  2722. <dd>12000</dl>
  2723. <dl>
  2724. <dt>PlayCost</dt>
  2725. <dd>11</dd>
  2726. </dl>
  2727. <dl>
  2728. <dt>DigivolveCost1</dt>
  2729. <dd>4fromLv.5</dd>
  2730. </dl>
  2731. <dl>
  2732. <dt>DigivolveCost2</dt>
  2733. <dd>-</dd>
  2734. </dl>
  2735. </div>
  2736. </div>
  2737. <divclass="cardinfo_bottom">
  2738. <dl>
  2739. <dt>Effect</dt>
  2740. <dd>[When Digivolving] Gain 1 memory for every 4 cards in your hand. [When Attacking] If you have 8 or more cards in your hand and a Tamer in play, return 1 of your opponent's Digimon with an [On Deletion] effect to the bottom of its owner's deck. Trash all of the digivolution cards of that Digimon.</dd>
  2741. </dl>
  2742. <dl>
  2743. <dt>Digivolveeffect</dt>
  2744. <dd>-</dd>
  2745. </dl>
  2746. <dl>
  2747. <dt>Securityeffect</dt>
  2748. <dd>-</dd>
  2749. </dl>
  2750. <dl>
  2751. <dt>Notes</dt>
  2752. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2753. </div>
  2754. </div>
  2755. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2756. </div>
  2757. </div>
  2758. </li>
  2759. <liclass="image_lists_itemdatapage-2">
  2760. <aclass="card_img">
  2761. <imgsrc="../images/cardlist/card/EX1-021_P1.png"alt="EX1-021MetalGarurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2762. </a>
  2763. <divclass="popup">
  2764. <divclass="card_detailcard_detail_blue">
  2765. <divclass="card_detail_inner">
  2766. <ulclass="cardinfo_head">
  2767. <liclass="cardno">EX1-021</li>
  2768. <li>SR</li>
  2769. <liclass="cardtype">Digimon</li>
  2770. <liclass="cardlv">Lv.6</li>
  2771. <liclass="cardtypecardParallel">AlternativeArt</li>
  2772. </ul>
  2773. <divclass="card_name">MetalGarurumon</div>
  2774. <divclass="cardinfo_top">
  2775. <divclass="card_img">
  2776. <imgsrc="../images/cardlist/card/EX1-021_P1.png"alt="EX1-021MetalGarurumon"></div>
  2777. <divclass="cardinfo_top_body">
  2778. <dl>
  2779. <dt>Form</dt>
  2780. <dd>Mega</dd>
  2781. </dl>
  2782. <dl>
  2783. <dt>Attribute</dt>
  2784. <dd>Data</dd>
  2785. </dl>
  2786. <dl>
  2787. <dt>Type</dt>
  2788. <dd>Cyborg</dd>
  2789. </dl>
  2790. <dl>
  2791. <dt>DP</dt>
  2792. <dd>12000</dl>
  2793. <dl>
  2794. <dt>PlayCost</dt>
  2795. <dd>11</dd>
  2796. </dl>
  2797. <dl>
  2798. <dt>DigivolveCost1</dt>
  2799. <dd>4fromLv.5</dd>
  2800. </dl>
  2801. <dl>
  2802. <dt>DigivolveCost2</dt>
  2803. <dd>-</dd>
  2804. </dl>
  2805. </div>
  2806. </div>
  2807. <divclass="cardinfo_bottom">
  2808. <dl>
  2809. <dt>Effect</dt>
  2810. <dd>[When Digivolving] Gain 1 memory for every 4 cards in your hand. [When Attacking] If you have 8 or more cards in your hand and a Tamer in play, return 1 of your opponent's Digimon with an [On Deletion] effect to the bottom of its owner's deck. Trash all of the digivolution cards of that Digimon.</dd>
  2811. </dl>
  2812. <dl>
  2813. <dt>Digivolveeffect</dt>
  2814. <dd>-</dd>
  2815. </dl>
  2816. <dl>
  2817. <dt>Securityeffect</dt>
  2818. <dd>-</dd>
  2819. </dl>
  2820. <dl>
  2821. <dt>Notes</dt>
  2822. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2823. </div>
  2824. </div>
  2825. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2826. </div>
  2827. </div>
  2828. </li>
  2829. <liclass="image_lists_itemdatapage-2">
  2830. <aclass="card_img">
  2831. <imgsrc="../images/cardlist/card/EX1-022.png"alt="EX1-022ImperialdramonDragonMode"></a>
  2832. <divclass="popup">
  2833. <divclass="card_detailcard_detail_blue">
  2834. <divclass="card_detail_inner">
  2835. <ulclass="cardinfo_head">
  2836. <liclass="cardno">EX1-022</li>
  2837. <li>SR</li>
  2838. <liclass="cardtype">Digimon</li>
  2839. <liclass="cardlv">Lv.6</li>
  2840. </ul>
  2841. <divclass="card_name">ImperialdramonDragonMode</div>
  2842. <divclass="cardinfo_top">
  2843. <divclass="card_img">
  2844. <imgsrc="../images/cardlist/card/EX1-022.png"alt="EX1-022ImperialdramonDragonMode"></div>
  2845. <divclass="cardinfo_top_body">
  2846. <dl>
  2847. <dt>Form</dt>
  2848. <dd>Mega</dd>
  2849. </dl>
  2850. <dl>
  2851. <dt>Attribute</dt>
  2852. <dd>Free</dd>
  2853. </dl>
  2854. <dl>
  2855. <dt>Type</dt>
  2856. <dd>AncientDragon</dd>
  2857. </dl>
  2858. <dl>
  2859. <dt>DP</dt>
  2860. <dd>11000</dl>
  2861. <dl>
  2862. <dt>PlayCost</dt>
  2863. <dd>12</dd>
  2864. </dl>
  2865. <dl>
  2866. <dt>DigivolveCost1</dt>
  2867. <dd>3fromLv.5</dd>
  2868. </dl>
  2869. <dl>
  2870. <dt>DigivolveCost2</dt>
  2871. <dd>3fromLv.5</dd>
  2872. </dl>
  2873. </div>
  2874. </div>
  2875. <divclass="cardinfo_bottom">
  2876. <dl>
  2877. <dt>Effect</dt>
  2878. <dd>[When Digivolving] If a Digimon card with [Free] in its traits is in this Digimon's digivolution cards, unsuspend this Digimon and suspend 1 of your opponent's Digimon. [Your Turn] For each color in this Digimon's digivolution cards, it gets +1000 DP.</dd>
  2879. </dl>
  2880. <dl>
  2881. <dt>Digivolveeffect</dt>
  2882. <dd>-</dd>
  2883. </dl>
  2884. <dl>
  2885. <dt>Securityeffect</dt>
  2886. <dd>-</dd>
  2887. </dl>
  2888. <dl>
  2889. <dt>Notes</dt>
  2890. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2891. </div>
  2892. </div>
  2893. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2894. </div>
  2895. </div>
  2896. </li>
  2897. <liclass="image_lists_itemdatapage-2">
  2898. <aclass="card_img">
  2899. <imgsrc="../images/cardlist/card/EX1-022_P1.png"alt="EX1-022ImperialdramonDragonMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2900. </a>
  2901. <divclass="popup">
  2902. <divclass="card_detailcard_detail_blue">
  2903. <divclass="card_detail_inner">
  2904. <ulclass="cardinfo_head">
  2905. <liclass="cardno">EX1-022</li>
  2906. <li>SR</li>
  2907. <liclass="cardtype">Digimon</li>
  2908. <liclass="cardlv">Lv.6</li>
  2909. <liclass="cardtypecardParallel">AlternativeArt</li>
  2910. </ul>
  2911. <divclass="card_name">ImperialdramonDragonMode</div>
  2912. <divclass="cardinfo_top">
  2913. <divclass="card_img">
  2914. <imgsrc="../images/cardlist/card/EX1-022_P1.png"alt="EX1-022ImperialdramonDragonMode"></div>
  2915. <divclass="cardinfo_top_body">
  2916. <dl>
  2917. <dt>Form</dt>
  2918. <dd>Mega</dd>
  2919. </dl>
  2920. <dl>
  2921. <dt>Attribute</dt>
  2922. <dd>Free</dd>
  2923. </dl>
  2924. <dl>
  2925. <dt>Type</dt>
  2926. <dd>AncientDragon</dd>
  2927. </dl>
  2928. <dl>
  2929. <dt>DP</dt>
  2930. <dd>11000</dl>
  2931. <dl>
  2932. <dt>PlayCost</dt>
  2933. <dd>12</dd>
  2934. </dl>
  2935. <dl>
  2936. <dt>DigivolveCost1</dt>
  2937. <dd>3fromLv.5</dd>
  2938. </dl>
  2939. <dl>
  2940. <dt>DigivolveCost2</dt>
  2941. <dd>3fromLv.5</dd>
  2942. </dl>
  2943. </div>
  2944. </div>
  2945. <divclass="cardinfo_bottom">
  2946. <dl>
  2947. <dt>Effect</dt>
  2948. <dd>[When Digivolving] If a Digimon card with [Free] in its traits is in this Digimon's digivolution cards, unsuspend this Digimon and suspend 1 of your opponent's Digimon. [Your Turn] For each color in this Digimon's digivolution cards, it gets +1000 DP.</dd>
  2949. </dl>
  2950. <dl>
  2951. <dt>Digivolveeffect</dt>
  2952. <dd>-</dd>
  2953. </dl>
  2954. <dl>
  2955. <dt>Securityeffect</dt>
  2956. <dd>-</dd>
  2957. </dl>
  2958. <dl>
  2959. <dt>Notes</dt>
  2960. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  2961. </div>
  2962. </div>
  2963. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2964. </div>
  2965. </div>
  2966. </li>
  2967. <liclass="image_lists_itemdatapage-2">
  2968. <aclass="card_img">
  2969. <imgsrc="../images/cardlist/card/EX1-023.png"alt="EX1-023Elecmon"></a>
  2970. <divclass="popup">
  2971. <divclass="card_detailcard_detail_yellow">
  2972. <divclass="card_detail_inner">
  2973. <ulclass="cardinfo_head">
  2974. <liclass="cardno">EX1-023</li>
  2975. <li>C</li>
  2976. <liclass="cardtype">Digimon</li>
  2977. <liclass="cardlv">Lv.3</li>
  2978. </ul>
  2979. <divclass="card_name">Elecmon</div>
  2980. <divclass="cardinfo_top">
  2981. <divclass="card_img">
  2982. <imgsrc="../images/cardlist/card/EX1-023.png"alt="EX1-023Elecmon"></div>
  2983. <divclass="cardinfo_top_body">
  2984. <dl>
  2985. <dt>Form</dt>
  2986. <dd>Rookie</dd>
  2987. </dl>
  2988. <dl>
  2989. <dt>Attribute</dt>
  2990. <dd>Data</dd>
  2991. </dl>
  2992. <dl>
  2993. <dt>Type</dt>
  2994. <dd>Mammal</dd>
  2995. </dl>
  2996. <dl>
  2997. <dt>DP</dt>
  2998. <dd>2000</dl>
  2999. <dl>
  3000. <dt>PlayCost</dt>
  3001. <dd>3</dd>
  3002. </dl>
  3003. <dl>
  3004. <dt>DigivolveCost1</dt>
  3005. <dd>0fromLv.2</dd>
  3006. </dl>
  3007. <dl>
  3008. <dt>DigivolveCost2</dt>
  3009. <dd>-</dd>
  3010. </dl>
  3011. </div>
  3012. </div>
  3013. <divclass="cardinfo_bottom">
  3014. <dl>
  3015. <dt>Effect</dt>
  3016. <dd>-</dd>
  3017. </dl>
  3018. <dl>
  3019. <dt>Digivolveeffect</dt>
  3020. <dd>[On Deletion] 1 of your opponent's Digimon gains <Security Attack -1> for the turn. (This Digimon checks 1 fewer security cards.)</dd>
  3021. </dl>
  3022. <dl>
  3023. <dt>Securityeffect</dt>
  3024. <dd>-</dd>
  3025. </dl>
  3026. <dl>
  3027. <dt>Notes</dt>
  3028. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3029. </div>
  3030. </div>
  3031. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3032. </div>
  3033. </div>
  3034. </li>
  3035. <liclass="image_lists_itemdatapage-2">
  3036. <aclass="card_img">
  3037. <imgsrc="../images/cardlist/card/EX1-024.png"alt="EX1-024Patamon"></a>
  3038. <divclass="popup">
  3039. <divclass="card_detailcard_detail_yellow">
  3040. <divclass="card_detail_inner">
  3041. <ulclass="cardinfo_head">
  3042. <liclass="cardno">EX1-024</li>
  3043. <li>U</li>
  3044. <liclass="cardtype">Digimon</li>
  3045. <liclass="cardlv">Lv.3</li>
  3046. </ul>
  3047. <divclass="card_name">Patamon</div>
  3048. <divclass="cardinfo_top">
  3049. <divclass="card_img">
  3050. <imgsrc="../images/cardlist/card/EX1-024.png"alt="EX1-024Patamon"></div>
  3051. <divclass="cardinfo_top_body">
  3052. <dl>
  3053. <dt>Form</dt>
  3054. <dd>Rookie</dd>
  3055. </dl>
  3056. <dl>
  3057. <dt>Attribute</dt>
  3058. <dd>Data</dd>
  3059. </dl>
  3060. <dl>
  3061. <dt>Type</dt>
  3062. <dd>Mammal</dd>
  3063. </dl>
  3064. <dl>
  3065. <dt>DP</dt>
  3066. <dd>2000</dl>
  3067. <dl>
  3068. <dt>PlayCost</dt>
  3069. <dd>3</dd>
  3070. </dl>
  3071. <dl>
  3072. <dt>DigivolveCost1</dt>
  3073. <dd>0fromLv.2</dd>
  3074. </dl>
  3075. <dl>
  3076. <dt>DigivolveCost2</dt>
  3077. <dd>-</dd>
  3078. </dl>
  3079. </div>
  3080. </div>
  3081. <divclass="cardinfo_bottom">
  3082. <dl>
  3083. <dt>Effect</dt>
  3084. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Angel], [Archangel], or [Three Great Angels] in its traits among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3085. </dl>
  3086. <dl>
  3087. <dt>Digivolveeffect</dt>
  3088. <dd>-</dd>
  3089. </dl>
  3090. <dl>
  3091. <dt>Securityeffect</dt>
  3092. <dd>-</dd>
  3093. </dl>
  3094. <dl>
  3095. <dt>Notes</dt>
  3096. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3097. </div>
  3098. </div>
  3099. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3100. </div>
  3101. </div>
  3102. </li>
  3103. <liclass="image_lists_itemdatapage-2">
  3104. <aclass="card_img">
  3105. <imgsrc="../images/cardlist/card/EX1-024_P1.png"alt="EX1-024Patamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3106. </a>
  3107. <divclass="popup">
  3108. <divclass="card_detailcard_detail_yellow">
  3109. <divclass="card_detail_inner">
  3110. <ulclass="cardinfo_head">
  3111. <liclass="cardno">EX1-024</li>
  3112. <li>U</li>
  3113. <liclass="cardtype">Digimon</li>
  3114. <liclass="cardlv">Lv.3</li>
  3115. <liclass="cardtypecardParallel">AlternativeArt</li>
  3116. </ul>
  3117. <divclass="card_name">Patamon</div>
  3118. <divclass="cardinfo_top">
  3119. <divclass="card_img">
  3120. <imgsrc="../images/cardlist/card/EX1-024_P1.png"alt="EX1-024Patamon"></div>
  3121. <divclass="cardinfo_top_body">
  3122. <dl>
  3123. <dt>Form</dt>
  3124. <dd>Rookie</dd>
  3125. </dl>
  3126. <dl>
  3127. <dt>Attribute</dt>
  3128. <dd>Data</dd>
  3129. </dl>
  3130. <dl>
  3131. <dt>Type</dt>
  3132. <dd>Mammal</dd>
  3133. </dl>
  3134. <dl>
  3135. <dt>DP</dt>
  3136. <dd>2000</dl>
  3137. <dl>
  3138. <dt>PlayCost</dt>
  3139. <dd>3</dd>
  3140. </dl>
  3141. <dl>
  3142. <dt>DigivolveCost1</dt>
  3143. <dd>0fromLv.2</dd>
  3144. </dl>
  3145. <dl>
  3146. <dt>DigivolveCost2</dt>
  3147. <dd>-</dd>
  3148. </dl>
  3149. </div>
  3150. </div>
  3151. <divclass="cardinfo_bottom">
  3152. <dl>
  3153. <dt>Effect</dt>
  3154. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Angel], [Archangel], or [Three Great Angels] in its traits among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3155. </dl>
  3156. <dl>
  3157. <dt>Digivolveeffect</dt>
  3158. <dd>-</dd>
  3159. </dl>
  3160. <dl>
  3161. <dt>Securityeffect</dt>
  3162. <dd>-</dd>
  3163. </dl>
  3164. <dl>
  3165. <dt>Notes</dt>
  3166. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3167. </div>
  3168. </div>
  3169. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3170. </div>
  3171. </div>
  3172. </li>
  3173. <liclass="image_lists_itemdatapage-2">
  3174. <aclass="card_img">
  3175. <imgsrc="../images/cardlist/card/EX1-024_P2.png"alt="EX1-024Patamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3176. </a>
  3177. <divclass="popup">
  3178. <divclass="card_detailcard_detail_yellow">
  3179. <divclass="card_detail_inner">
  3180. <ulclass="cardinfo_head">
  3181. <liclass="cardno">EX1-024</li>
  3182. <li>U</li>
  3183. <liclass="cardtype">Digimon</li>
  3184. <liclass="cardlv">Lv.3</li>
  3185. <liclass="cardtypecardParallel">AlternativeArt</li>
  3186. </ul>
  3187. <divclass="card_name">Patamon</div>
  3188. <divclass="cardinfo_top">
  3189. <divclass="card_img">
  3190. <imgsrc="../images/cardlist/card/EX1-024_P2.png"alt="EX1-024Patamon"></div>
  3191. <divclass="cardinfo_top_body">
  3192. <dl>
  3193. <dt>Form</dt>
  3194. <dd>Rookie</dd>
  3195. </dl>
  3196. <dl>
  3197. <dt>Attribute</dt>
  3198. <dd>Data</dd>
  3199. </dl>
  3200. <dl>
  3201. <dt>Type</dt>
  3202. <dd>Mammal</dd>
  3203. </dl>
  3204. <dl>
  3205. <dt>DP</dt>
  3206. <dd>2000</dl>
  3207. <dl>
  3208. <dt>PlayCost</dt>
  3209. <dd>3</dd>
  3210. </dl>
  3211. <dl>
  3212. <dt>DigivolveCost1</dt>
  3213. <dd>0fromLv.2</dd>
  3214. </dl>
  3215. <dl>
  3216. <dt>DigivolveCost2</dt>
  3217. <dd>-</dd>
  3218. </dl>
  3219. </div>
  3220. </div>
  3221. <divclass="cardinfo_bottom">
  3222. <dl>
  3223. <dt>Effect</dt>
  3224. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Angel], [Archangel], or [Three Great Angels] in its traits among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3225. </dl>
  3226. <dl>
  3227. <dt>Digivolveeffect</dt>
  3228. <dd>-</dd>
  3229. </dl>
  3230. <dl>
  3231. <dt>Securityeffect</dt>
  3232. <dd>-</dd>
  3233. </dl>
  3234. <dl>
  3235. <dt>Notes</dt>
  3236. <dd>TournamentPackVol.8</dd></dl>
  3237. </div>
  3238. </div>
  3239. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3240. </div>
  3241. </div>
  3242. </li>
  3243. <liclass="image_lists_itemdatapage-2">
  3244. <aclass="card_img">
  3245. <imgsrc="../images/cardlist/card/EX1-025.png"alt="EX1-025Salamon"></a>
  3246. <divclass="popup">
  3247. <divclass="card_detailcard_detail_yellow">
  3248. <divclass="card_detail_inner">
  3249. <ulclass="cardinfo_head">
  3250. <liclass="cardno">EX1-025</li>
  3251. <li>C</li>
  3252. <liclass="cardtype">Digimon</li>
  3253. <liclass="cardlv">Lv.3</li>
  3254. </ul>
  3255. <divclass="card_name">Salamon</div>
  3256. <divclass="cardinfo_top">
  3257. <divclass="card_img">
  3258. <imgsrc="../images/cardlist/card/EX1-025.png"alt="EX1-025Salamon"></div>
  3259. <divclass="cardinfo_top_body">
  3260. <dl>
  3261. <dt>Form</dt>
  3262. <dd>Rookie</dd>
  3263. </dl>
  3264. <dl>
  3265. <dt>Attribute</dt>
  3266. <dd>Vaccine</dd>
  3267. </dl>
  3268. <dl>
  3269. <dt>Type</dt>
  3270. <dd>Mammal</dd>
  3271. </dl>
  3272. <dl>
  3273. <dt>DP</dt>
  3274. <dd>2000</dl>
  3275. <dl>
  3276. <dt>PlayCost</dt>
  3277. <dd>3</dd>
  3278. </dl>
  3279. <dl>
  3280. <dt>DigivolveCost1</dt>
  3281. <dd>0fromLv.2</dd>
  3282. </dl>
  3283. <dl>
  3284. <dt>DigivolveCost2</dt>
  3285. <dd>-</dd>
  3286. </dl>
  3287. </div>
  3288. </div>
  3289. <divclass="cardinfo_bottom">
  3290. <dl>
  3291. <dt>Effect</dt>
  3292. <dd>-</dd>
  3293. </dl>
  3294. <dl>
  3295. <dt>Digivolveeffect</dt>
  3296. <dd>[When Attacking][Once Per Turn] If you have 3 or more security cards, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3297. </dl>
  3298. <dl>
  3299. <dt>Securityeffect</dt>
  3300. <dd>-</dd>
  3301. </dl>
  3302. <dl>
  3303. <dt>Notes</dt>
  3304. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3305. </div>
  3306. </div>
  3307. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3308. </div>
  3309. </div>
  3310. </li>
  3311. <liclass="image_lists_itemdatapage-2">
  3312. <aclass="card_img">
  3313. <imgsrc="../images/cardlist/card/EX1-025_P1.png"alt="EX1-025Salamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3314. </a>
  3315. <divclass="popup">
  3316. <divclass="card_detailcard_detail_yellow">
  3317. <divclass="card_detail_inner">
  3318. <ulclass="cardinfo_head">
  3319. <liclass="cardno">EX1-025</li>
  3320. <li>C</li>
  3321. <liclass="cardtype">Digimon</li>
  3322. <liclass="cardlv">Lv.3</li>
  3323. <liclass="cardtypecardParallel">AlternativeArt</li>
  3324. </ul>
  3325. <divclass="card_name">Salamon</div>
  3326. <divclass="cardinfo_top">
  3327. <divclass="card_img">
  3328. <imgsrc="../images/cardlist/card/EX1-025_P1.png"alt="EX1-025Salamon"></div>
  3329. <divclass="cardinfo_top_body">
  3330. <dl>
  3331. <dt>Form</dt>
  3332. <dd>Rookie</dd>
  3333. </dl>
  3334. <dl>
  3335. <dt>Attribute</dt>
  3336. <dd>Vaccine</dd>
  3337. </dl>
  3338. <dl>
  3339. <dt>Type</dt>
  3340. <dd>Mammal</dd>
  3341. </dl>
  3342. <dl>
  3343. <dt>DP</dt>
  3344. <dd>2000</dl>
  3345. <dl>
  3346. <dt>PlayCost</dt>
  3347. <dd>3</dd>
  3348. </dl>
  3349. <dl>
  3350. <dt>DigivolveCost1</dt>
  3351. <dd>0fromLv.2</dd>
  3352. </dl>
  3353. <dl>
  3354. <dt>DigivolveCost2</dt>
  3355. <dd>-</dd>
  3356. </dl>
  3357. </div>
  3358. </div>
  3359. <divclass="cardinfo_bottom">
  3360. <dl>
  3361. <dt>Effect</dt>
  3362. <dd>-</dd>
  3363. </dl>
  3364. <dl>
  3365. <dt>Digivolveeffect</dt>
  3366. <dd>[When Attacking][Once Per Turn] If you have 3 or more security cards, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3367. </dl>
  3368. <dl>
  3369. <dt>Securityeffect</dt>
  3370. <dd>-</dd>
  3371. </dl>
  3372. <dl>
  3373. <dt>Notes</dt>
  3374. <dd>TournamentPackVol.7</dd></dl>
  3375. </div>
  3376. </div>
  3377. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3378. </div>
  3379. </div>
  3380. </li>
  3381. <liclass="image_lists_itemdatapage-2">
  3382. <aclass="card_img">
  3383. <imgsrc="../images/cardlist/card/EX1-026.png"alt="EX1-026Gatomon"></a>
  3384. <divclass="popup">
  3385. <divclass="card_detailcard_detail_yellow">
  3386. <divclass="card_detail_inner">
  3387. <ulclass="cardinfo_head">
  3388. <liclass="cardno">EX1-026</li>
  3389. <li>U</li>
  3390. <liclass="cardtype">Digimon</li>
  3391. <liclass="cardlv">Lv.4</li>
  3392. </ul>
  3393. <divclass="card_name">Gatomon</div>
  3394. <divclass="cardinfo_top">
  3395. <divclass="card_img">
  3396. <imgsrc="../images/cardlist/card/EX1-026.png"alt="EX1-026Gatomon"></div>
  3397. <divclass="cardinfo_top_body">
  3398. <dl>
  3399. <dt>Form</dt>
  3400. <dd>Champion</dd>
  3401. </dl>
  3402. <dl>
  3403. <dt>Attribute</dt>
  3404. <dd>Vaccine</dd>
  3405. </dl>
  3406. <dl>
  3407. <dt>Type</dt>
  3408. <dd>HolyBeast</dd>
  3409. </dl>
  3410. <dl>
  3411. <dt>DP</dt>
  3412. <dd>4000</dl>
  3413. <dl>
  3414. <dt>PlayCost</dt>
  3415. <dd>4</dd>
  3416. </dl>
  3417. <dl>
  3418. <dt>DigivolveCost1</dt>
  3419. <dd>2fromLv.3</dd>
  3420. </dl>
  3421. <dl>
  3422. <dt>DigivolveCost2</dt>
  3423. <dd>-</dd>
  3424. </dl>
  3425. </div>
  3426. </div>
  3427. <divclass="cardinfo_bottom">
  3428. <dl>
  3429. <dt>Effect</dt>
  3430. <dd>-</dd>
  3431. </dl>
  3432. <dl>
  3433. <dt>Digivolveeffect</dt>
  3434. <dd>[When Attacking][Once Per Turn] If you have 3 or more security cards, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3435. </dl>
  3436. <dl>
  3437. <dt>Securityeffect</dt>
  3438. <dd>-</dd>
  3439. </dl>
  3440. <dl>
  3441. <dt>Notes</dt>
  3442. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3443. </div>
  3444. </div>
  3445. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3446. </div>
  3447. </div>
  3448. </li>
  3449. <liclass="image_lists_itemdatapage-2">
  3450. <aclass="card_img">
  3451. <imgsrc="../images/cardlist/card/EX1-026_P1.png"alt="EX1-026Gatomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3452. </a>
  3453. <divclass="popup">
  3454. <divclass="card_detailcard_detail_yellow">
  3455. <divclass="card_detail_inner">
  3456. <ulclass="cardinfo_head">
  3457. <liclass="cardno">EX1-026</li>
  3458. <li>U</li>
  3459. <liclass="cardtype">Digimon</li>
  3460. <liclass="cardlv">Lv.4</li>
  3461. <liclass="cardtypecardParallel">AlternativeArt</li>
  3462. </ul>
  3463. <divclass="card_name">Gatomon</div>
  3464. <divclass="cardinfo_top">
  3465. <divclass="card_img">
  3466. <imgsrc="../images/cardlist/card/EX1-026_P1.png"alt="EX1-026Gatomon"></div>
  3467. <divclass="cardinfo_top_body">
  3468. <dl>
  3469. <dt>Form</dt>
  3470. <dd>Champion</dd>
  3471. </dl>
  3472. <dl>
  3473. <dt>Attribute</dt>
  3474. <dd>Vaccine</dd>
  3475. </dl>
  3476. <dl>
  3477. <dt>Type</dt>
  3478. <dd>HolyBeast</dd>
  3479. </dl>
  3480. <dl>
  3481. <dt>DP</dt>
  3482. <dd>4000</dl>
  3483. <dl>
  3484. <dt>PlayCost</dt>
  3485. <dd>4</dd>
  3486. </dl>
  3487. <dl>
  3488. <dt>DigivolveCost1</dt>
  3489. <dd>2fromLv.3</dd>
  3490. </dl>
  3491. <dl>
  3492. <dt>DigivolveCost2</dt>
  3493. <dd>-</dd>
  3494. </dl>
  3495. </div>
  3496. </div>
  3497. <divclass="cardinfo_bottom">
  3498. <dl>
  3499. <dt>Effect</dt>
  3500. <dd>-</dd>
  3501. </dl>
  3502. <dl>
  3503. <dt>Digivolveeffect</dt>
  3504. <dd>[When Attacking][Once Per Turn] If you have 3 or more security cards, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3505. </dl>
  3506. <dl>
  3507. <dt>Securityeffect</dt>
  3508. <dd>-</dd>
  3509. </dl>
  3510. <dl>
  3511. <dt>Notes</dt>
  3512. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3513. </div>
  3514. </div>
  3515. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3516. </div>
  3517. </div>
  3518. </li>
  3519. <liclass="image_lists_itemdatapage-2">
  3520. <aclass="card_img">
  3521. <imgsrc="../images/cardlist/card/EX1-027.png"alt="EX1-027Leomon"></a>
  3522. <divclass="popup">
  3523. <divclass="card_detailcard_detail_yellow">
  3524. <divclass="card_detail_inner">
  3525. <ulclass="cardinfo_head">
  3526. <liclass="cardno">EX1-027</li>
  3527. <li>R</li>
  3528. <liclass="cardtype">Digimon</li>
  3529. <liclass="cardlv">Lv.4</li>
  3530. </ul>
  3531. <divclass="card_name">Leomon</div>
  3532. <divclass="cardinfo_top">
  3533. <divclass="card_img">
  3534. <imgsrc="../images/cardlist/card/EX1-027.png"alt="EX1-027Leomon"></div>
  3535. <divclass="cardinfo_top_body">
  3536. <dl>
  3537. <dt>Form</dt>
  3538. <dd>Champion</dd>
  3539. </dl>
  3540. <dl>
  3541. <dt>Attribute</dt>
  3542. <dd>Vaccine</dd>
  3543. </dl>
  3544. <dl>
  3545. <dt>Type</dt>
  3546. <dd>Beastkin</dd>
  3547. </dl>
  3548. <dl>
  3549. <dt>DP</dt>
  3550. <dd>5000</dl>
  3551. <dl>
  3552. <dt>PlayCost</dt>
  3553. <dd>5</dd>
  3554. </dl>
  3555. <dl>
  3556. <dt>DigivolveCost1</dt>
  3557. <dd>2fromLv.3</dd>
  3558. </dl>
  3559. <dl>
  3560. <dt>DigivolveCost2</dt>
  3561. <dd>-</dd>
  3562. </dl>
  3563. </div>
  3564. </div>
  3565. <divclass="cardinfo_bottom">
  3566. <dl>
  3567. <dt>Effect</dt>
  3568. <dd>[Security] At the end of the battle, if you have 3 or fewer security cards, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  3569. </dl>
  3570. <dl>
  3571. <dt>Digivolveeffect</dt>
  3572. <dd>-</dd>
  3573. </dl>
  3574. <dl>
  3575. <dt>Securityeffect</dt>
  3576. <dd>-</dd>
  3577. </dl>
  3578. <dl>
  3579. <dt>Notes</dt>
  3580. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3581. </div>
  3582. </div>
  3583. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3584. </div>
  3585. </div>
  3586. </li>
  3587. <liclass="image_lists_itemdatapage-2">
  3588. <aclass="card_img">
  3589. <imgsrc="../images/cardlist/card/EX1-028.png"alt="EX1-028Angemon"></a>
  3590. <divclass="popup">
  3591. <divclass="card_detailcard_detail_yellow">
  3592. <divclass="card_detail_inner">
  3593. <ulclass="cardinfo_head">
  3594. <liclass="cardno">EX1-028</li>
  3595. <li>C</li>
  3596. <liclass="cardtype">Digimon</li>
  3597. <liclass="cardlv">Lv.4</li>
  3598. </ul>
  3599. <divclass="card_name">Angemon</div>
  3600. <divclass="cardinfo_top">
  3601. <divclass="card_img">
  3602. <imgsrc="../images/cardlist/card/EX1-028.png"alt="EX1-028Angemon"></div>
  3603. <divclass="cardinfo_top_body">
  3604. <dl>
  3605. <dt>Form</dt>
  3606. <dd>Champion</dd>
  3607. </dl>
  3608. <dl>
  3609. <dt>Attribute</dt>
  3610. <dd>Vaccine</dd>
  3611. </dl>
  3612. <dl>
  3613. <dt>Type</dt>
  3614. <dd>Angel</dd>
  3615. </dl>
  3616. <dl>
  3617. <dt>DP</dt>
  3618. <dd>6000</dl>
  3619. <dl>
  3620. <dt>PlayCost</dt>
  3621. <dd>6</dd>
  3622. </dl>
  3623. <dl>
  3624. <dt>DigivolveCost1</dt>
  3625. <dd>2fromLv.3</dd>
  3626. </dl>
  3627. <dl>
  3628. <dt>DigivolveCost2</dt>
  3629. <dd>-</dd>
  3630. </dl>
  3631. </div>
  3632. </div>
  3633. <divclass="cardinfo_bottom">
  3634. <dl>
  3635. <dt>Effect</dt>
  3636. <dd>-</dd>
  3637. </dl>
  3638. <dl>
  3639. <dt>Digivolveeffect</dt>
  3640. <dd>[When Attacking][Once Per Turn] If you have 3 or more security cards, this Digimon gets +1000 DP until the end of your opponent's next turn.</dd>
  3641. </dl>
  3642. <dl>
  3643. <dt>Securityeffect</dt>
  3644. <dd>-</dd>
  3645. </dl>
  3646. <dl>
  3647. <dt>Notes</dt>
  3648. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3649. </div>
  3650. </div>
  3651. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3652. </div>
  3653. </div>
  3654. </li>
  3655. <liclass="image_lists_itemdatapage-2">
  3656. <aclass="card_img">
  3657. <imgsrc="../images/cardlist/card/EX1-029.png"alt="EX1-029MagnaAngemon"></a>
  3658. <divclass="popup">
  3659. <divclass="card_detailcard_detail_yellow">
  3660. <divclass="card_detail_inner">
  3661. <ulclass="cardinfo_head">
  3662. <liclass="cardno">EX1-029</li>
  3663. <li>SR</li>
  3664. <liclass="cardtype">Digimon</li>
  3665. <liclass="cardlv">Lv.5</li>
  3666. </ul>
  3667. <divclass="card_name">MagnaAngemon</div>
  3668. <divclass="cardinfo_top">
  3669. <divclass="card_img">
  3670. <imgsrc="../images/cardlist/card/EX1-029.png"alt="EX1-029MagnaAngemon"></div>
  3671. <divclass="cardinfo_top_body">
  3672. <dl>
  3673. <dt>Form</dt>
  3674. <dd>Ultimate</dd>
  3675. </dl>
  3676. <dl>
  3677. <dt>Attribute</dt>
  3678. <dd>Vaccine</dd>
  3679. </dl>
  3680. <dl>
  3681. <dt>Type</dt>
  3682. <dd>Archangel</dd>
  3683. </dl>
  3684. <dl>
  3685. <dt>DP</dt>
  3686. <dd>7000</dl>
  3687. <dl>
  3688. <dt>PlayCost</dt>
  3689. <dd>8</dd>
  3690. </dl>
  3691. <dl>
  3692. <dt>DigivolveCost1</dt>
  3693. <dd>3fromLv.4</dd>
  3694. </dl>
  3695. <dl>
  3696. <dt>DigivolveCost2</dt>
  3697. <dd>-</dd>
  3698. </dl>
  3699. </div>
  3700. </div>
  3701. <divclass="cardinfo_bottom">
  3702. <dl>
  3703. <dt>Effect</dt>
  3704. <dd>[When Attacking] If you have 3 or more security cards, this Digimon gets +4000 DP until the end of your opponent's next turn.</dd>
  3705. </dl>
  3706. <dl>
  3707. <dt>Digivolveeffect</dt>
  3708. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, gain 1 memory.</dd>
  3709. </dl>
  3710. <dl>
  3711. <dt>Securityeffect</dt>
  3712. <dd>-</dd>
  3713. </dl>
  3714. <dl>
  3715. <dt>Notes</dt>
  3716. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3717. </div>
  3718. </div>
  3719. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3720. </div>
  3721. </div>
  3722. </li>
  3723. <liclass="image_lists_itemdatapage-2">
  3724. <aclass="card_img">
  3725. <imgsrc="../images/cardlist/card/EX1-029_P1.png"alt="EX1-029MagnaAngemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3726. </a>
  3727. <divclass="popup">
  3728. <divclass="card_detailcard_detail_yellow">
  3729. <divclass="card_detail_inner">
  3730. <ulclass="cardinfo_head">
  3731. <liclass="cardno">EX1-029</li>
  3732. <li>SR</li>
  3733. <liclass="cardtype">Digimon</li>
  3734. <liclass="cardlv">Lv.5</li>
  3735. <liclass="cardtypecardParallel">AlternativeArt</li>
  3736. </ul>
  3737. <divclass="card_name">MagnaAngemon</div>
  3738. <divclass="cardinfo_top">
  3739. <divclass="card_img">
  3740. <imgsrc="../images/cardlist/card/EX1-029_P1.png"alt="EX1-029MagnaAngemon"></div>
  3741. <divclass="cardinfo_top_body">
  3742. <dl>
  3743. <dt>Form</dt>
  3744. <dd>Ultimate</dd>
  3745. </dl>
  3746. <dl>
  3747. <dt>Attribute</dt>
  3748. <dd>Vaccine</dd>
  3749. </dl>
  3750. <dl>
  3751. <dt>Type</dt>
  3752. <dd>Archangel</dd>
  3753. </dl>
  3754. <dl>
  3755. <dt>DP</dt>
  3756. <dd>7000</dl>
  3757. <dl>
  3758. <dt>PlayCost</dt>
  3759. <dd>8</dd>
  3760. </dl>
  3761. <dl>
  3762. <dt>DigivolveCost1</dt>
  3763. <dd>3fromLv.4</dd>
  3764. </dl>
  3765. <dl>
  3766. <dt>DigivolveCost2</dt>
  3767. <dd>-</dd>
  3768. </dl>
  3769. </div>
  3770. </div>
  3771. <divclass="cardinfo_bottom">
  3772. <dl>
  3773. <dt>Effect</dt>
  3774. <dd>[When Attacking] If you have 3 or more security cards, this Digimon gets +4000 DP until the end of your opponent's next turn.</dd>
  3775. </dl>
  3776. <dl>
  3777. <dt>Digivolveeffect</dt>
  3778. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, gain 1 memory.</dd>
  3779. </dl>
  3780. <dl>
  3781. <dt>Securityeffect</dt>
  3782. <dd>-</dd>
  3783. </dl>
  3784. <dl>
  3785. <dt>Notes</dt>
  3786. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3787. </div>
  3788. </div>
  3789. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3790. </div>
  3791. </div>
  3792. </li>
  3793. <liclass="image_lists_itemdatapage-2">
  3794. <aclass="card_img">
  3795. <imgsrc="../images/cardlist/card/EX1-030.png"alt="EX1-030Angewomon"></a>
  3796. <divclass="popup">
  3797. <divclass="card_detailcard_detail_yellow">
  3798. <divclass="card_detail_inner">
  3799. <ulclass="cardinfo_head">
  3800. <liclass="cardno">EX1-030</li>
  3801. <li>SR</li>
  3802. <liclass="cardtype">Digimon</li>
  3803. <liclass="cardlv">Lv.5</li>
  3804. </ul>
  3805. <divclass="card_name">Angewomon</div>
  3806. <divclass="cardinfo_top">
  3807. <divclass="card_img">
  3808. <imgsrc="../images/cardlist/card/EX1-030.png"alt="EX1-030Angewomon"></div>
  3809. <divclass="cardinfo_top_body">
  3810. <dl>
  3811. <dt>Form</dt>
  3812. <dd>Ultimate</dd>
  3813. </dl>
  3814. <dl>
  3815. <dt>Attribute</dt>
  3816. <dd>Vaccine</dd>
  3817. </dl>
  3818. <dl>
  3819. <dt>Type</dt>
  3820. <dd>Archangel</dd>
  3821. </dl>
  3822. <dl>
  3823. <dt>DP</dt>
  3824. <dd>7000</dl>
  3825. <dl>
  3826. <dt>PlayCost</dt>
  3827. <dd>8</dd>
  3828. </dl>
  3829. <dl>
  3830. <dt>DigivolveCost1</dt>
  3831. <dd>3fromLv.4</dd>
  3832. </dl>
  3833. <dl>
  3834. <dt>DigivolveCost2</dt>
  3835. <dd>-</dd>
  3836. </dl>
  3837. </div>
  3838. </div>
  3839. <divclass="cardinfo_bottom">
  3840. <dl>
  3841. <dt>Effect</dt>
  3842. <dd>[When Attacking] If you have 3 or more security cards, 1 of your opponent's Digimon and all of your opponent's Security Digimon get -3000 DP for the turn.</dd>
  3843. </dl>
  3844. <dl>
  3845. <dt>Digivolveeffect</dt>
  3846. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3847. </dl>
  3848. <dl>
  3849. <dt>Securityeffect</dt>
  3850. <dd>-</dd>
  3851. </dl>
  3852. <dl>
  3853. <dt>Notes</dt>
  3854. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3855. </div>
  3856. </div>
  3857. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3858. </div>
  3859. </div>
  3860. </li>
  3861. <liclass="image_lists_itemdatapage-2">
  3862. <aclass="card_img">
  3863. <imgsrc="../images/cardlist/card/EX1-030_P1.png"alt="EX1-030Angewomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3864. </a>
  3865. <divclass="popup">
  3866. <divclass="card_detailcard_detail_yellow">
  3867. <divclass="card_detail_inner">
  3868. <ulclass="cardinfo_head">
  3869. <liclass="cardno">EX1-030</li>
  3870. <li>SR</li>
  3871. <liclass="cardtype">Digimon</li>
  3872. <liclass="cardlv">Lv.5</li>
  3873. <liclass="cardtypecardParallel">AlternativeArt</li>
  3874. </ul>
  3875. <divclass="card_name">Angewomon</div>
  3876. <divclass="cardinfo_top">
  3877. <divclass="card_img">
  3878. <imgsrc="../images/cardlist/card/EX1-030_P1.png"alt="EX1-030Angewomon"></div>
  3879. <divclass="cardinfo_top_body">
  3880. <dl>
  3881. <dt>Form</dt>
  3882. <dd>Ultimate</dd>
  3883. </dl>
  3884. <dl>
  3885. <dt>Attribute</dt>
  3886. <dd>Vaccine</dd>
  3887. </dl>
  3888. <dl>
  3889. <dt>Type</dt>
  3890. <dd>Archangel</dd>
  3891. </dl>
  3892. <dl>
  3893. <dt>DP</dt>
  3894. <dd>7000</dl>
  3895. <dl>
  3896. <dt>PlayCost</dt>
  3897. <dd>8</dd>
  3898. </dl>
  3899. <dl>
  3900. <dt>DigivolveCost1</dt>
  3901. <dd>3fromLv.4</dd>
  3902. </dl>
  3903. <dl>
  3904. <dt>DigivolveCost2</dt>
  3905. <dd>-</dd>
  3906. </dl>
  3907. </div>
  3908. </div>
  3909. <divclass="cardinfo_bottom">
  3910. <dl>
  3911. <dt>Effect</dt>
  3912. <dd>[When Attacking] If you have 3 or more security cards, 1 of your opponent's Digimon and all of your opponent's Security Digimon get -3000 DP for the turn.</dd>
  3913. </dl>
  3914. <dl>
  3915. <dt>Digivolveeffect</dt>
  3916. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3917. </dl>
  3918. <dl>
  3919. <dt>Securityeffect</dt>
  3920. <dd>-</dd>
  3921. </dl>
  3922. <dl>
  3923. <dt>Notes</dt>
  3924. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3925. </div>
  3926. </div>
  3927. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3928. </div>
  3929. </div>
  3930. </li>
  3931. <liclass="image_lists_itemdatapage-2">
  3932. <aclass="card_img">
  3933. <imgsrc="../images/cardlist/card/EX1-031.png"alt="EX1-031Seraphimon"></a>
  3934. <divclass="popup">
  3935. <divclass="card_detailcard_detail_yellow">
  3936. <divclass="card_detail_inner">
  3937. <ulclass="cardinfo_head">
  3938. <liclass="cardno">EX1-031</li>
  3939. <li>R</li>
  3940. <liclass="cardtype">Digimon</li>
  3941. <liclass="cardlv">Lv.6</li>
  3942. </ul>
  3943. <divclass="card_name">Seraphimon</div>
  3944. <divclass="cardinfo_top">
  3945. <divclass="card_img">
  3946. <imgsrc="../images/cardlist/card/EX1-031.png"alt="EX1-031Seraphimon"></div>
  3947. <divclass="cardinfo_top_body">
  3948. <dl>
  3949. <dt>Form</dt>
  3950. <dd>Mega</dd>
  3951. </dl>
  3952. <dl>
  3953. <dt>Attribute</dt>
  3954. <dd>Vaccine</dd>
  3955. </dl>
  3956. <dl>
  3957. <dt>Type</dt>
  3958. <dd>Seraph/ThreeGreatAngels</dd>
  3959. </dl>
  3960. <dl>
  3961. <dt>DP</dt>
  3962. <dd>12000</dl>
  3963. <dl>
  3964. <dt>PlayCost</dt>
  3965. <dd>12</dd>
  3966. </dl>
  3967. <dl>
  3968. <dt>DigivolveCost1</dt>
  3969. <dd>4fromLv.5</dd>
  3970. </dl>
  3971. <dl>
  3972. <dt>DigivolveCost2</dt>
  3973. <dd>-</dd>
  3974. </dl>
  3975. </div>
  3976. </div>
  3977. <divclass="cardinfo_bottom">
  3978. <dl>
  3979. <dt>Effect</dt>
  3980. <dd>[When Digivolving] <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)[Opponent's Turn] While this Digimon is suspended, all of your Security Digimon get +5000 DP.</dd>
  3981. </dl>
  3982. <dl>
  3983. <dt>Digivolveeffect</dt>
  3984. <dd>-</dd>
  3985. </dl>
  3986. <dl>
  3987. <dt>Securityeffect</dt>
  3988. <dd>-</dd>
  3989. </dl>
  3990. <dl>
  3991. <dt>Notes</dt>
  3992. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  3993. </div>
  3994. </div>
  3995. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3996. </div>
  3997. </div>
  3998. </li>
  3999. <liclass="image_lists_itemdatapage-2">
  4000. <aclass="card_img">
  4001. <imgsrc="../images/cardlist/card/EX1-032.png"alt="EX1-032Magnadramon"></a>
  4002. <divclass="popup">
  4003. <divclass="card_detailcard_detail_yellow">
  4004. <divclass="card_detail_inner">
  4005. <ulclass="cardinfo_head">
  4006. <liclass="cardno">EX1-032</li>
  4007. <li>U</li>
  4008. <liclass="cardtype">Digimon</li>
  4009. <liclass="cardlv">Lv.6</li>
  4010. </ul>
  4011. <divclass="card_name">Magnadramon</div>
  4012. <divclass="cardinfo_top">
  4013. <divclass="card_img">
  4014. <imgsrc="../images/cardlist/card/EX1-032.png"alt="EX1-032Magnadramon"></div>
  4015. <divclass="cardinfo_top_body">
  4016. <dl>
  4017. <dt>Form</dt>
  4018. <dd>Mega</dd>
  4019. </dl>
  4020. <dl>
  4021. <dt>Attribute</dt>
  4022. <dd>Vaccine</dd>
  4023. </dl>
  4024. <dl>
  4025. <dt>Type</dt>
  4026. <dd>HolyDragon/FourGreatDragons</dd>
  4027. </dl>
  4028. <dl>
  4029. <dt>DP</dt>
  4030. <dd>11000</dl>
  4031. <dl>
  4032. <dt>PlayCost</dt>
  4033. <dd>12</dd>
  4034. </dl>
  4035. <dl>
  4036. <dt>DigivolveCost1</dt>
  4037. <dd>3fromLv.5</dd>
  4038. </dl>
  4039. <dl>
  4040. <dt>DigivolveCost2</dt>
  4041. <dd>-</dd>
  4042. </dl>
  4043. </div>
  4044. </div>
  4045. <divclass="cardinfo_bottom">
  4046. <dl>
  4047. <dt>Effect</dt>
  4048. <dd>[When Digivolving] You may trash the top card of your security stack to unsuspend this Digimon. [When Attacking][Once Per Turn] If you have 3 or fewer security cards, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  4049. </dl>
  4050. <dl>
  4051. <dt>Digivolveeffect</dt>
  4052. <dd>-</dd>
  4053. </dl>
  4054. <dl>
  4055. <dt>Securityeffect</dt>
  4056. <dd>-</dd>
  4057. </dl>
  4058. <dl>
  4059. <dt>Notes</dt>
  4060. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4061. </div>
  4062. </div>
  4063. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4064. </div>
  4065. </div>
  4066. </li>
  4067. <liclass="image_lists_itemdatapage-2">
  4068. <aclass="card_img">
  4069. <imgsrc="../images/cardlist/card/EX1-033.png"alt="EX1-033Tentomon"></a>
  4070. <divclass="popup">
  4071. <divclass="card_detailcard_detail_green">
  4072. <divclass="card_detail_inner">
  4073. <ulclass="cardinfo_head">
  4074. <liclass="cardno">EX1-033</li>
  4075. <li>C</li>
  4076. <liclass="cardtype">Digimon</li>
  4077. <liclass="cardlv">Lv.3</li>
  4078. </ul>
  4079. <divclass="card_name">Tentomon</div>
  4080. <divclass="cardinfo_top">
  4081. <divclass="card_img">
  4082. <imgsrc="../images/cardlist/card/EX1-033.png"alt="EX1-033Tentomon"></div>
  4083. <divclass="cardinfo_top_body">
  4084. <dl>
  4085. <dt>Form</dt>
  4086. <dd>Rookie</dd>
  4087. </dl>
  4088. <dl>
  4089. <dt>Attribute</dt>
  4090. <dd>Vaccine</dd>
  4091. </dl>
  4092. <dl>
  4093. <dt>Type</dt>
  4094. <dd>Insectoid</dd>
  4095. </dl>
  4096. <dl>
  4097. <dt>DP</dt>
  4098. <dd>2000</dl>
  4099. <dl>
  4100. <dt>PlayCost</dt>
  4101. <dd>3</dd>
  4102. </dl>
  4103. <dl>
  4104. <dt>DigivolveCost1</dt>
  4105. <dd>0fromLv.2</dd>
  4106. </dl>
  4107. <dl>
  4108. <dt>DigivolveCost2</dt>
  4109. <dd>-</dd>
  4110. </dl>
  4111. </div>
  4112. </div>
  4113. <divclass="cardinfo_bottom">
  4114. <dl>
  4115. <dt>Effect</dt>
  4116. <dd>-</dd>
  4117. </dl>
  4118. <dl>
  4119. <dt>Digivolveeffect</dt>
  4120. <dd>[When Attacking] The next time one of your Digimon digivolves into a Digimon card with [Insectoid] or [Ancient Insect] in its traits this turn, reduce the memory cost of the digivolution by 1.</dd>
  4121. </dl>
  4122. <dl>
  4123. <dt>Securityeffect</dt>
  4124. <dd>-</dd>
  4125. </dl>
  4126. <dl>
  4127. <dt>Notes</dt>
  4128. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4129. </div>
  4130. </div>
  4131. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4132. </div>
  4133. </div>
  4134. </li>
  4135. <liclass="image_lists_itemdatapage-2">
  4136. <aclass="card_img">
  4137. <imgsrc="../images/cardlist/card/EX1-033_P1.png"alt="EX1-033Tentomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4138. </a>
  4139. <divclass="popup">
  4140. <divclass="card_detailcard_detail_green">
  4141. <divclass="card_detail_inner">
  4142. <ulclass="cardinfo_head">
  4143. <liclass="cardno">EX1-033</li>
  4144. <li>C</li>
  4145. <liclass="cardtype">Digimon</li>
  4146. <liclass="cardlv">Lv.3</li>
  4147. <liclass="cardtypecardParallel">AlternativeArt</li>
  4148. </ul>
  4149. <divclass="card_name">Tentomon</div>
  4150. <divclass="cardinfo_top">
  4151. <divclass="card_img">
  4152. <imgsrc="../images/cardlist/card/EX1-033_P1.png"alt="EX1-033Tentomon"></div>
  4153. <divclass="cardinfo_top_body">
  4154. <dl>
  4155. <dt>Form</dt>
  4156. <dd>Rookie</dd>
  4157. </dl>
  4158. <dl>
  4159. <dt>Attribute</dt>
  4160. <dd>Vaccine</dd>
  4161. </dl>
  4162. <dl>
  4163. <dt>Type</dt>
  4164. <dd>Insectoid</dd>
  4165. </dl>
  4166. <dl>
  4167. <dt>DP</dt>
  4168. <dd>2000</dl>
  4169. <dl>
  4170. <dt>PlayCost</dt>
  4171. <dd>3</dd>
  4172. </dl>
  4173. <dl>
  4174. <dt>DigivolveCost1</dt>
  4175. <dd>0fromLv.2</dd>
  4176. </dl>
  4177. <dl>
  4178. <dt>DigivolveCost2</dt>
  4179. <dd>-</dd>
  4180. </dl>
  4181. </div>
  4182. </div>
  4183. <divclass="cardinfo_bottom">
  4184. <dl>
  4185. <dt>Effect</dt>
  4186. <dd>-</dd>
  4187. </dl>
  4188. <dl>
  4189. <dt>Digivolveeffect</dt>
  4190. <dd>[When Attacking] The next time one of your Digimon digivolves into a Digimon card with [Insectoid] or [Ancient Insect] in its traits this turn, reduce the memory cost of the digivolution by 1.</dd>
  4191. </dl>
  4192. <dl>
  4193. <dt>Securityeffect</dt>
  4194. <dd>-</dd>
  4195. </dl>
  4196. <dl>
  4197. <dt>Notes</dt>
  4198. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4199. </div>
  4200. </div>
  4201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4202. </div>
  4203. </div>
  4204. </li>
  4205. <liclass="image_lists_itemdatapage-2">
  4206. <aclass="card_img">
  4207. <imgsrc="../images/cardlist/card/EX1-034.png"alt="EX1-034Palmon"></a>
  4208. <divclass="popup">
  4209. <divclass="card_detailcard_detail_green">
  4210. <divclass="card_detail_inner">
  4211. <ulclass="cardinfo_head">
  4212. <liclass="cardno">EX1-034</li>
  4213. <li>C</li>
  4214. <liclass="cardtype">Digimon</li>
  4215. <liclass="cardlv">Lv.3</li>
  4216. </ul>
  4217. <divclass="card_name">Palmon</div>
  4218. <divclass="cardinfo_top">
  4219. <divclass="card_img">
  4220. <imgsrc="../images/cardlist/card/EX1-034.png"alt="EX1-034Palmon"></div>
  4221. <divclass="cardinfo_top_body">
  4222. <dl>
  4223. <dt>Form</dt>
  4224. <dd>Rookie</dd>
  4225. </dl>
  4226. <dl>
  4227. <dt>Attribute</dt>
  4228. <dd>Data</dd>
  4229. </dl>
  4230. <dl>
  4231. <dt>Type</dt>
  4232. <dd>Vegetation</dd>
  4233. </dl>
  4234. <dl>
  4235. <dt>DP</dt>
  4236. <dd>1000</dl>
  4237. <dl>
  4238. <dt>PlayCost</dt>
  4239. <dd>3</dd>
  4240. </dl>
  4241. <dl>
  4242. <dt>DigivolveCost1</dt>
  4243. <dd>0fromLv.2</dd>
  4244. </dl>
  4245. <dl>
  4246. <dt>DigivolveCost2</dt>
  4247. <dd>-</dd>
  4248. </dl>
  4249. </div>
  4250. </div>
  4251. <divclass="cardinfo_bottom">
  4252. <dl>
  4253. <dt>Effect</dt>
  4254. <dd>[On Deletion] Suspend 1 of your opponent's Digimon with 5000 DP or less.</dd>
  4255. </dl>
  4256. <dl>
  4257. <dt>Digivolveeffect</dt>
  4258. <dd>-</dd>
  4259. </dl>
  4260. <dl>
  4261. <dt>Securityeffect</dt>
  4262. <dd>-</dd>
  4263. </dl>
  4264. <dl>
  4265. <dt>Notes</dt>
  4266. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4267. </div>
  4268. </div>
  4269. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4270. </div>
  4271. </div>
  4272. </li>
  4273. <liclass="image_lists_itemdatapage-2">
  4274. <aclass="card_img">
  4275. <imgsrc="../images/cardlist/card/EX1-034_P1.png"alt="EX1-034Palmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4276. </a>
  4277. <divclass="popup">
  4278. <divclass="card_detailcard_detail_green">
  4279. <divclass="card_detail_inner">
  4280. <ulclass="cardinfo_head">
  4281. <liclass="cardno">EX1-034</li>
  4282. <li>C</li>
  4283. <liclass="cardtype">Digimon</li>
  4284. <liclass="cardlv">Lv.3</li>
  4285. <liclass="cardtypecardParallel">AlternativeArt</li>
  4286. </ul>
  4287. <divclass="card_name">Palmon</div>
  4288. <divclass="cardinfo_top">
  4289. <divclass="card_img">
  4290. <imgsrc="../images/cardlist/card/EX1-034_P1.png"alt="EX1-034Palmon"></div>
  4291. <divclass="cardinfo_top_body">
  4292. <dl>
  4293. <dt>Form</dt>
  4294. <dd>Rookie</dd>
  4295. </dl>
  4296. <dl>
  4297. <dt>Attribute</dt>
  4298. <dd>Data</dd>
  4299. </dl>
  4300. <dl>
  4301. <dt>Type</dt>
  4302. <dd>Vegetation</dd>
  4303. </dl>
  4304. <dl>
  4305. <dt>DP</dt>
  4306. <dd>1000</dl>
  4307. <dl>
  4308. <dt>PlayCost</dt>
  4309. <dd>3</dd>
  4310. </dl>
  4311. <dl>
  4312. <dt>DigivolveCost1</dt>
  4313. <dd>0fromLv.2</dd>
  4314. </dl>
  4315. <dl>
  4316. <dt>DigivolveCost2</dt>
  4317. <dd>-</dd>
  4318. </dl>
  4319. </div>
  4320. </div>
  4321. <divclass="cardinfo_bottom">
  4322. <dl>
  4323. <dt>Effect</dt>
  4324. <dd>[On Deletion] Suspend 1 of your opponent's Digimon with 5000 DP or less.</dd>
  4325. </dl>
  4326. <dl>
  4327. <dt>Digivolveeffect</dt>
  4328. <dd>-</dd>
  4329. </dl>
  4330. <dl>
  4331. <dt>Securityeffect</dt>
  4332. <dd>-</dd>
  4333. </dl>
  4334. <dl>
  4335. <dt>Notes</dt>
  4336. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4337. </div>
  4338. </div>
  4339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4340. </div>
  4341. </div>
  4342. </li>
  4343. <liclass="image_lists_itemdatapage-2">
  4344. <aclass="card_img">
  4345. <imgsrc="../images/cardlist/card/EX1-035.png"alt="EX1-035Kabuterimon"></a>
  4346. <divclass="popup">
  4347. <divclass="card_detailcard_detail_green">
  4348. <divclass="card_detail_inner">
  4349. <ulclass="cardinfo_head">
  4350. <liclass="cardno">EX1-035</li>
  4351. <li>U</li>
  4352. <liclass="cardtype">Digimon</li>
  4353. <liclass="cardlv">Lv.4</li>
  4354. </ul>
  4355. <divclass="card_name">Kabuterimon</div>
  4356. <divclass="cardinfo_top">
  4357. <divclass="card_img">
  4358. <imgsrc="../images/cardlist/card/EX1-035.png"alt="EX1-035Kabuterimon"></div>
  4359. <divclass="cardinfo_top_body">
  4360. <dl>
  4361. <dt>Form</dt>
  4362. <dd>Champion</dd>
  4363. </dl>
  4364. <dl>
  4365. <dt>Attribute</dt>
  4366. <dd>Vaccine</dd>
  4367. </dl>
  4368. <dl>
  4369. <dt>Type</dt>
  4370. <dd>Insectoid</dd>
  4371. </dl>
  4372. <dl>
  4373. <dt>DP</dt>
  4374. <dd>5000</dl>
  4375. <dl>
  4376. <dt>PlayCost</dt>
  4377. <dd>4</dd>
  4378. </dl>
  4379. <dl>
  4380. <dt>DigivolveCost1</dt>
  4381. <dd>2fromLv.3</dd>
  4382. </dl>
  4383. <dl>
  4384. <dt>DigivolveCost2</dt>
  4385. <dd>-</dd>
  4386. </dl>
  4387. </div>
  4388. </div>
  4389. <divclass="cardinfo_bottom">
  4390. <dl>
  4391. <dt>Effect</dt>
  4392. <dd>[When Attacking] This Digimon can digivolve into a Digimon card with [Insectoid] in its traits in your hand for its digivolution cost.</dd>
  4393. </dl>
  4394. <dl>
  4395. <dt>Digivolveeffect</dt>
  4396. <dd>-</dd>
  4397. </dl>
  4398. <dl>
  4399. <dt>Securityeffect</dt>
  4400. <dd>-</dd>
  4401. </dl>
  4402. <dl>
  4403. <dt>Notes</dt>
  4404. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4405. </div>
  4406. </div>
  4407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4408. </div>
  4409. </div>
  4410. </li>
  4411. <liclass="image_lists_itemdatapage-2">
  4412. <aclass="card_img">
  4413. <imgsrc="../images/cardlist/card/EX1-036.png"alt="EX1-036Togemon"></a>
  4414. <divclass="popup">
  4415. <divclass="card_detailcard_detail_green">
  4416. <divclass="card_detail_inner">
  4417. <ulclass="cardinfo_head">
  4418. <liclass="cardno">EX1-036</li>
  4419. <li>C</li>
  4420. <liclass="cardtype">Digimon</li>
  4421. <liclass="cardlv">Lv.4</li>
  4422. </ul>
  4423. <divclass="card_name">Togemon</div>
  4424. <divclass="cardinfo_top">
  4425. <divclass="card_img">
  4426. <imgsrc="../images/cardlist/card/EX1-036.png"alt="EX1-036Togemon"></div>
  4427. <divclass="cardinfo_top_body">
  4428. <dl>
  4429. <dt>Form</dt>
  4430. <dd>Champion</dd>
  4431. </dl>
  4432. <dl>
  4433. <dt>Attribute</dt>
  4434. <dd>Data</dd>
  4435. </dl>
  4436. <dl>
  4437. <dt>Type</dt>
  4438. <dd>Vegetation</dd>
  4439. </dl>
  4440. <dl>
  4441. <dt>DP</dt>
  4442. <dd>5000</dl>
  4443. <dl>
  4444. <dt>PlayCost</dt>
  4445. <dd>4</dd>
  4446. </dl>
  4447. <dl>
  4448. <dt>DigivolveCost1</dt>
  4449. <dd>2fromLv.3</dd>
  4450. </dl>
  4451. <dl>
  4452. <dt>DigivolveCost2</dt>
  4453. <dd>-</dd>
  4454. </dl>
  4455. </div>
  4456. </div>
  4457. <divclass="cardinfo_bottom">
  4458. <dl>
  4459. <dt>Effect</dt>
  4460. <dd>-</dd>
  4461. </dl>
  4462. <dl>
  4463. <dt>Digivolveeffect</dt>
  4464. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon becomes suspended, this Digimon gets +2000 DP for the turn.</dd>
  4465. </dl>
  4466. <dl>
  4467. <dt>Securityeffect</dt>
  4468. <dd>-</dd>
  4469. </dl>
  4470. <dl>
  4471. <dt>Notes</dt>
  4472. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4473. </div>
  4474. </div>
  4475. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4476. </div>
  4477. </div>
  4478. </li>
  4479. <liclass="image_lists_itemdatapage-2">
  4480. <aclass="card_img">
  4481. <imgsrc="../images/cardlist/card/EX1-037.png"alt="EX1-037Kuwagamon"></a>
  4482. <divclass="popup">
  4483. <divclass="card_detailcard_detail_green">
  4484. <divclass="card_detail_inner">
  4485. <ulclass="cardinfo_head">
  4486. <liclass="cardno">EX1-037</li>
  4487. <li>R</li>
  4488. <liclass="cardtype">Digimon</li>
  4489. <liclass="cardlv">Lv.4</li>
  4490. </ul>
  4491. <divclass="card_name">Kuwagamon</div>
  4492. <divclass="cardinfo_top">
  4493. <divclass="card_img">
  4494. <imgsrc="../images/cardlist/card/EX1-037.png"alt="EX1-037Kuwagamon"></div>
  4495. <divclass="cardinfo_top_body">
  4496. <dl>
  4497. <dt>Form</dt>
  4498. <dd>Champion</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>Attribute</dt>
  4502. <dd>Virus</dd>
  4503. </dl>
  4504. <dl>
  4505. <dt>Type</dt>
  4506. <dd>Insectoid</dd>
  4507. </dl>
  4508. <dl>
  4509. <dt>DP</dt>
  4510. <dd>5000</dl>
  4511. <dl>
  4512. <dt>PlayCost</dt>
  4513. <dd>5</dd>
  4514. </dl>
  4515. <dl>
  4516. <dt>DigivolveCost1</dt>
  4517. <dd>2fromLv.3</dd>
  4518. </dl>
  4519. <dl>
  4520. <dt>DigivolveCost2</dt>
  4521. <dd>-</dd>
  4522. </dl>
  4523. </div>
  4524. </div>
  4525. <divclass="cardinfo_bottom">
  4526. <dl>
  4527. <dt>Effect</dt>
  4528. <dd>[Start of Your Turn] Suspend 1 of your opponent's Digimon with 3000 DP or less.</dd>
  4529. </dl>
  4530. <dl>
  4531. <dt>Digivolveeffect</dt>
  4532. <dd>[Your Turn] When this Digimon deletes one of your opponent's Digimon in battle and survives, 1 of your opponent's suspended Digimon doesn't unsuspend during their next unsuspend phase.</dd>
  4533. </dl>
  4534. <dl>
  4535. <dt>Securityeffect</dt>
  4536. <dd>-</dd>
  4537. </dl>
  4538. <dl>
  4539. <dt>Notes</dt>
  4540. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4541. </div>
  4542. </div>
  4543. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4544. </div>
  4545. </div>
  4546. </li>
  4547. <liclass="image_lists_itemdatapage-2">
  4548. <aclass="card_img">
  4549. <imgsrc="../images/cardlist/card/EX1-037_P1.png"alt="EX1-037Kuwagamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4550. </a>
  4551. <divclass="popup">
  4552. <divclass="card_detailcard_detail_green">
  4553. <divclass="card_detail_inner">
  4554. <ulclass="cardinfo_head">
  4555. <liclass="cardno">EX1-037</li>
  4556. <li>R</li>
  4557. <liclass="cardtype">Digimon</li>
  4558. <liclass="cardlv">Lv.4</li>
  4559. <liclass="cardtypecardParallel">AlternativeArt</li>
  4560. </ul>
  4561. <divclass="card_name">Kuwagamon</div>
  4562. <divclass="cardinfo_top">
  4563. <divclass="card_img">
  4564. <imgsrc="../images/cardlist/card/EX1-037_P1.png"alt="EX1-037Kuwagamon"></div>
  4565. <divclass="cardinfo_top_body">
  4566. <dl>
  4567. <dt>Form</dt>
  4568. <dd>Champion</dd>
  4569. </dl>
  4570. <dl>
  4571. <dt>Attribute</dt>
  4572. <dd>Virus</dd>
  4573. </dl>
  4574. <dl>
  4575. <dt>Type</dt>
  4576. <dd>Insectoid</dd>
  4577. </dl>
  4578. <dl>
  4579. <dt>DP</dt>
  4580. <dd>5000</dl>
  4581. <dl>
  4582. <dt>PlayCost</dt>
  4583. <dd>5</dd>
  4584. </dl>
  4585. <dl>
  4586. <dt>DigivolveCost1</dt>
  4587. <dd>2fromLv.3</dd>
  4588. </dl>
  4589. <dl>
  4590. <dt>DigivolveCost2</dt>
  4591. <dd>-</dd>
  4592. </dl>
  4593. </div>
  4594. </div>
  4595. <divclass="cardinfo_bottom">
  4596. <dl>
  4597. <dt>Effect</dt>
  4598. <dd>[Start of Your Turn] Suspend 1 of your opponent's Digimon with 3000 DP or less.</dd>
  4599. </dl>
  4600. <dl>
  4601. <dt>Digivolveeffect</dt>
  4602. <dd>[Your Turn] When this Digimon deletes one of your opponent's Digimon in battle and survives, 1 of your opponent's suspended Digimon doesn't unsuspend during their next unsuspend phase.</dd>
  4603. </dl>
  4604. <dl>
  4605. <dt>Securityeffect</dt>
  4606. <dd>-</dd>
  4607. </dl>
  4608. <dl>
  4609. <dt>Notes</dt>
  4610. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4611. </div>
  4612. </div>
  4613. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4614. </div>
  4615. </div>
  4616. </li>
  4617. <liclass="image_lists_itemdatapage-2">
  4618. <aclass="card_img">
  4619. <imgsrc="../images/cardlist/card/EX1-038.png"alt="EX1-038Stingmon"></a>
  4620. <divclass="popup">
  4621. <divclass="card_detailcard_detail_green">
  4622. <divclass="card_detail_inner">
  4623. <ulclass="cardinfo_head">
  4624. <liclass="cardno">EX1-038</li>
  4625. <li>C</li>
  4626. <liclass="cardtype">Digimon</li>
  4627. <liclass="cardlv">Lv.4</li>
  4628. </ul>
  4629. <divclass="card_name">Stingmon</div>
  4630. <divclass="cardinfo_top">
  4631. <divclass="card_img">
  4632. <imgsrc="../images/cardlist/card/EX1-038.png"alt="EX1-038Stingmon"></div>
  4633. <divclass="cardinfo_top_body">
  4634. <dl>
  4635. <dt>Form</dt>
  4636. <dd>Champion</dd>
  4637. </dl>
  4638. <dl>
  4639. <dt>Attribute</dt>
  4640. <dd>Free</dd>
  4641. </dl>
  4642. <dl>
  4643. <dt>Type</dt>
  4644. <dd>Insectoid</dd>
  4645. </dl>
  4646. <dl>
  4647. <dt>DP</dt>
  4648. <dd>5000</dl>
  4649. <dl>
  4650. <dt>PlayCost</dt>
  4651. <dd>6</dd>
  4652. </dl>
  4653. <dl>
  4654. <dt>DigivolveCost1</dt>
  4655. <dd>2fromLv.3</dd>
  4656. </dl>
  4657. <dl>
  4658. <dt>DigivolveCost2</dt>
  4659. <dd>2fromLv.3</dd>
  4660. </dl>
  4661. </div>
  4662. </div>
  4663. <divclass="cardinfo_bottom">
  4664. <dl>
  4665. <dt>Effect</dt>
  4666. <dd><Piercing> (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  4667. </dl>
  4668. <dl>
  4669. <dt>Digivolveeffect</dt>
  4670. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name or [Free] in its traits, it gains <Piercing>.</dd>
  4671. </dl>
  4672. <dl>
  4673. <dt>Securityeffect</dt>
  4674. <dd>-</dd>
  4675. </dl>
  4676. <dl>
  4677. <dt>Notes</dt>
  4678. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4679. </div>
  4680. </div>
  4681. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4682. </div>
  4683. </div>
  4684. </li>
  4685. <liclass="image_lists_itemdatapage-2">
  4686. <aclass="card_img">
  4687. <imgsrc="../images/cardlist/card/EX1-039.png"alt="EX1-039Lillymon"></a>
  4688. <divclass="popup">
  4689. <divclass="card_detailcard_detail_green">
  4690. <divclass="card_detail_inner">
  4691. <ulclass="cardinfo_head">
  4692. <liclass="cardno">EX1-039</li>
  4693. <li>U</li>
  4694. <liclass="cardtype">Digimon</li>
  4695. <liclass="cardlv">Lv.5</li>
  4696. </ul>
  4697. <divclass="card_name">Lillymon</div>
  4698. <divclass="cardinfo_top">
  4699. <divclass="card_img">
  4700. <imgsrc="../images/cardlist/card/EX1-039.png"alt="EX1-039Lillymon"></div>
  4701. <divclass="cardinfo_top_body">
  4702. <dl>
  4703. <dt>Form</dt>
  4704. <dd>Ultimate</dd>
  4705. </dl>
  4706. <dl>
  4707. <dt>Attribute</dt>
  4708. <dd>Data</dd>
  4709. </dl>
  4710. <dl>
  4711. <dt>Type</dt>
  4712. <dd>Fairy</dd>
  4713. </dl>
  4714. <dl>
  4715. <dt>DP</dt>
  4716. <dd>7000</dl>
  4717. <dl>
  4718. <dt>PlayCost</dt>
  4719. <dd>6</dd>
  4720. </dl>
  4721. <dl>
  4722. <dt>DigivolveCost1</dt>
  4723. <dd>3fromLv.4</dd>
  4724. </dl>
  4725. <dl>
  4726. <dt>DigivolveCost2</dt>
  4727. <dd>-</dd>
  4728. </dl>
  4729. </div>
  4730. </div>
  4731. <divclass="cardinfo_bottom">
  4732. <dl>
  4733. <dt>Effect</dt>
  4734. <dd>-</dd>
  4735. </dl>
  4736. <dl>
  4737. <dt>Digivolveeffect</dt>
  4738. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon becomes suspended, this Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  4739. </dl>
  4740. <dl>
  4741. <dt>Securityeffect</dt>
  4742. <dd>-</dd>
  4743. </dl>
  4744. <dl>
  4745. <dt>Notes</dt>
  4746. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4747. </div>
  4748. </div>
  4749. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4750. </div>
  4751. </div>
  4752. </li>
  4753. <liclass="image_lists_itemdatapage-2">
  4754. <aclass="card_img">
  4755. <imgsrc="../images/cardlist/card/EX1-039_P1.png"alt="EX1-039Lillymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4756. </a>
  4757. <divclass="popup">
  4758. <divclass="card_detailcard_detail_green">
  4759. <divclass="card_detail_inner">
  4760. <ulclass="cardinfo_head">
  4761. <liclass="cardno">EX1-039</li>
  4762. <li>U</li>
  4763. <liclass="cardtype">Digimon</li>
  4764. <liclass="cardlv">Lv.5</li>
  4765. <liclass="cardtypecardParallel">AlternativeArt</li>
  4766. </ul>
  4767. <divclass="card_name">Lillymon</div>
  4768. <divclass="cardinfo_top">
  4769. <divclass="card_img">
  4770. <imgsrc="../images/cardlist/card/EX1-039_P1.png"alt="EX1-039Lillymon"></div>
  4771. <divclass="cardinfo_top_body">
  4772. <dl>
  4773. <dt>Form</dt>
  4774. <dd>Ultimate</dd>
  4775. </dl>
  4776. <dl>
  4777. <dt>Attribute</dt>
  4778. <dd>Data</dd>
  4779. </dl>
  4780. <dl>
  4781. <dt>Type</dt>
  4782. <dd>Fairy</dd>
  4783. </dl>
  4784. <dl>
  4785. <dt>DP</dt>
  4786. <dd>7000</dl>
  4787. <dl>
  4788. <dt>PlayCost</dt>
  4789. <dd>6</dd>
  4790. </dl>
  4791. <dl>
  4792. <dt>DigivolveCost1</dt>
  4793. <dd>3fromLv.4</dd>
  4794. </dl>
  4795. <dl>
  4796. <dt>DigivolveCost2</dt>
  4797. <dd>-</dd>
  4798. </dl>
  4799. </div>
  4800. </div>
  4801. <divclass="cardinfo_bottom">
  4802. <dl>
  4803. <dt>Effect</dt>
  4804. <dd>-</dd>
  4805. </dl>
  4806. <dl>
  4807. <dt>Digivolveeffect</dt>
  4808. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon becomes suspended, this Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  4809. </dl>
  4810. <dl>
  4811. <dt>Securityeffect</dt>
  4812. <dd>-</dd>
  4813. </dl>
  4814. <dl>
  4815. <dt>Notes</dt>
  4816. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4817. </div>
  4818. </div>
  4819. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4820. </div>
  4821. </div>
  4822. </li>
  4823. <liclass="image_lists_itemdatapage-2">
  4824. <aclass="card_img">
  4825. <imgsrc="../images/cardlist/card/EX1-039_P2.png"alt="EX1-039Lillymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4826. </a>
  4827. <divclass="popup">
  4828. <divclass="card_detailcard_detail_green">
  4829. <divclass="card_detail_inner">
  4830. <ulclass="cardinfo_head">
  4831. <liclass="cardno">EX1-039</li>
  4832. <li>U</li>
  4833. <liclass="cardtype">Digimon</li>
  4834. <liclass="cardlv">Lv.5</li>
  4835. <liclass="cardtypecardParallel">AlternativeArt</li>
  4836. </ul>
  4837. <divclass="card_name">Lillymon</div>
  4838. <divclass="cardinfo_top">
  4839. <divclass="card_img">
  4840. <imgsrc="../images/cardlist/card/EX1-039_P2.png"alt="EX1-039Lillymon"></div>
  4841. <divclass="cardinfo_top_body">
  4842. <dl>
  4843. <dt>Form</dt>
  4844. <dd>Ultimate</dd>
  4845. </dl>
  4846. <dl>
  4847. <dt>Attribute</dt>
  4848. <dd>Data</dd>
  4849. </dl>
  4850. <dl>
  4851. <dt>Type</dt>
  4852. <dd>Fairy</dd>
  4853. </dl>
  4854. <dl>
  4855. <dt>DP</dt>
  4856. <dd>7000</dl>
  4857. <dl>
  4858. <dt>PlayCost</dt>
  4859. <dd>6</dd>
  4860. </dl>
  4861. <dl>
  4862. <dt>DigivolveCost1</dt>
  4863. <dd>3fromLv.4</dd>
  4864. </dl>
  4865. <dl>
  4866. <dt>DigivolveCost2</dt>
  4867. <dd>-</dd>
  4868. </dl>
  4869. </div>
  4870. </div>
  4871. <divclass="cardinfo_bottom">
  4872. <dl>
  4873. <dt>Effect</dt>
  4874. <dd>-</dd>
  4875. </dl>
  4876. <dl>
  4877. <dt>Digivolveeffect</dt>
  4878. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon becomes suspended, this Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  4879. </dl>
  4880. <dl>
  4881. <dt>Securityeffect</dt>
  4882. <dd>-</dd>
  4883. </dl>
  4884. <dl>
  4885. <dt>Notes</dt>
  4886. <dd>DigimonIllustrationCompetition</dd></dl>
  4887. </div>
  4888. </div>
  4889. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4890. </div>
  4891. </div>
  4892. </li>
  4893. <liclass="image_lists_itemdatapage-2">
  4894. <aclass="card_img">
  4895. <imgsrc="../images/cardlist/card/EX1-040.png"alt="EX1-040MegaKabuterimon"></a>
  4896. <divclass="popup">
  4897. <divclass="card_detailcard_detail_green">
  4898. <divclass="card_detail_inner">
  4899. <ulclass="cardinfo_head">
  4900. <liclass="cardno">EX1-040</li>
  4901. <li>R</li>
  4902. <liclass="cardtype">Digimon</li>
  4903. <liclass="cardlv">Lv.5</li>
  4904. </ul>
  4905. <divclass="card_name">MegaKabuterimon</div>
  4906. <divclass="cardinfo_top">
  4907. <divclass="card_img">
  4908. <imgsrc="../images/cardlist/card/EX1-040.png"alt="EX1-040MegaKabuterimon"></div>
  4909. <divclass="cardinfo_top_body">
  4910. <dl>
  4911. <dt>Form</dt>
  4912. <dd>Ultimate</dd>
  4913. </dl>
  4914. <dl>
  4915. <dt>Attribute</dt>
  4916. <dd>Vaccine</dd>
  4917. </dl>
  4918. <dl>
  4919. <dt>Type</dt>
  4920. <dd>Insectoid</dd>
  4921. </dl>
  4922. <dl>
  4923. <dt>DP</dt>
  4924. <dd>7000</dl>
  4925. <dl>
  4926. <dt>PlayCost</dt>
  4927. <dd>7</dd>
  4928. </dl>
  4929. <dl>
  4930. <dt>DigivolveCost1</dt>
  4931. <dd>3fromLv.4</dd>
  4932. </dl>
  4933. <dl>
  4934. <dt>DigivolveCost2</dt>
  4935. <dd>-</dd>
  4936. </dl>
  4937. </div>
  4938. </div>
  4939. <divclass="cardinfo_bottom">
  4940. <dl>
  4941. <dt>Effect</dt>
  4942. <dd>[When Attacking] This Digimon can digivolve into a Digimon card with [Insectoid] or [Ancient Insect] in its traits in your hand for its digivolution cost.</dd>
  4943. </dl>
  4944. <dl>
  4945. <dt>Digivolveeffect</dt>
  4946. <dd>[Your Turn] When this Digimon deletes an opponent's Digimon in battle and survives, gain 1 memory.</dd>
  4947. </dl>
  4948. <dl>
  4949. <dt>Securityeffect</dt>
  4950. <dd>-</dd>
  4951. </dl>
  4952. <dl>
  4953. <dt>Notes</dt>
  4954. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  4955. </div>
  4956. </div>
  4957. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4958. </div>
  4959. </div>
  4960. </li>
  4961. <liclass="image_lists_itemdatapage-2">
  4962. <aclass="card_img">
  4963. <imgsrc="../images/cardlist/card/EX1-040_P1.png"alt="EX1-040MegaKabuterimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4964. </a>
  4965. <divclass="popup">
  4966. <divclass="card_detailcard_detail_green">
  4967. <divclass="card_detail_inner">
  4968. <ulclass="cardinfo_head">
  4969. <liclass="cardno">EX1-040</li>
  4970. <li>R</li>
  4971. <liclass="cardtype">Digimon</li>
  4972. <liclass="cardlv">Lv.5</li>
  4973. <liclass="cardtypecardParallel">AlternativeArt</li>
  4974. </ul>
  4975. <divclass="card_name">MegaKabuterimon</div>
  4976. <divclass="cardinfo_top">
  4977. <divclass="card_img">
  4978. <imgsrc="../images/cardlist/card/EX1-040_P1.png"alt="EX1-040MegaKabuterimon"></div>
  4979. <divclass="cardinfo_top_body">
  4980. <dl>
  4981. <dt>Form</dt>
  4982. <dd>Ultimate</dd>
  4983. </dl>
  4984. <dl>
  4985. <dt>Attribute</dt>
  4986. <dd>Vaccine</dd>
  4987. </dl>
  4988. <dl>
  4989. <dt>Type</dt>
  4990. <dd>Insectoid</dd>
  4991. </dl>
  4992. <dl>
  4993. <dt>DP</dt>
  4994. <dd>7000</dl>
  4995. <dl>
  4996. <dt>PlayCost</dt>
  4997. <dd>7</dd>
  4998. </dl>
  4999. <dl>
  5000. <dt>DigivolveCost1</dt>
  5001. <dd>3fromLv.4</dd>
  5002. </dl>
  5003. <dl>
  5004. <dt>DigivolveCost2</dt>
  5005. <dd>-</dd>
  5006. </dl>
  5007. </div>
  5008. </div>
  5009. <divclass="cardinfo_bottom">
  5010. <dl>
  5011. <dt>Effect</dt>
  5012. <dd>[When Attacking] This Digimon can digivolve into a Digimon card with [Insectoid] or [Ancient Insect] in its traits in your hand for its digivolution cost.</dd>
  5013. </dl>
  5014. <dl>
  5015. <dt>Digivolveeffect</dt>
  5016. <dd>[Your Turn] When this Digimon deletes an opponent's Digimon in battle and survives, gain 1 memory.</dd>
  5017. </dl>
  5018. <dl>
  5019. <dt>Securityeffect</dt>
  5020. <dd>-</dd>
  5021. </dl>
  5022. <dl>
  5023. <dt>Notes</dt>
  5024. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5025. </div>
  5026. </div>
  5027. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5028. </div>
  5029. </div>
  5030. </li>
  5031. <liclass="image_lists_itemdatapage-2">
  5032. <aclass="card_img">
  5033. <imgsrc="../images/cardlist/card/EX1-041.png"alt="EX1-041Dinobeemon"></a>
  5034. <divclass="popup">
  5035. <divclass="card_detailcard_detail_green">
  5036. <divclass="card_detail_inner">
  5037. <ulclass="cardinfo_head">
  5038. <liclass="cardno">EX1-041</li>
  5039. <li>U</li>
  5040. <liclass="cardtype">Digimon</li>
  5041. <liclass="cardlv">Lv.5</li>
  5042. </ul>
  5043. <divclass="card_name">Dinobeemon</div>
  5044. <divclass="cardinfo_top">
  5045. <divclass="card_img">
  5046. <imgsrc="../images/cardlist/card/EX1-041.png"alt="EX1-041Dinobeemon"></div>
  5047. <divclass="cardinfo_top_body">
  5048. <dl>
  5049. <dt>Form</dt>
  5050. <dd>Ultimate</dd>
  5051. </dl>
  5052. <dl>
  5053. <dt>Attribute</dt>
  5054. <dd>Free</dd>
  5055. </dl>
  5056. <dl>
  5057. <dt>Type</dt>
  5058. <dd>Mutant</dd>
  5059. </dl>
  5060. <dl>
  5061. <dt>DP</dt>
  5062. <dd>7000</dl>
  5063. <dl>
  5064. <dt>PlayCost</dt>
  5065. <dd>8</dd>
  5066. </dl>
  5067. <dl>
  5068. <dt>DigivolveCost1</dt>
  5069. <dd>3fromLv.4</dd>
  5070. </dl>
  5071. <dl>
  5072. <dt>DigivolveCost2</dt>
  5073. <dd>3fromLv.4</dd>
  5074. </dl>
  5075. </div>
  5076. </div>
  5077. <divclass="cardinfo_bottom">
  5078. <dl>
  5079. <dt>Effect</dt>
  5080. <dd>[When Digivolving] If a Digimon card with [Free] in its traits is in this Digimon's digivolution cards, suspend 1 of your opponent's Digimon with 5000 DP or less.</dd>
  5081. </dl>
  5082. <dl>
  5083. <dt>Digivolveeffect</dt>
  5084. <dd>[Your Turn] When one of your Digimon with [Imperialdramon] in its name deletes an opponent's Digimon in battle and survives, gain 1 memory.</dd>
  5085. </dl>
  5086. <dl>
  5087. <dt>Securityeffect</dt>
  5088. <dd>-</dd>
  5089. </dl>
  5090. <dl>
  5091. <dt>Notes</dt>
  5092. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5093. </div>
  5094. </div>
  5095. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5096. </div>
  5097. </div>
  5098. </li>
  5099. <liclass="image_lists_itemdatapage-2">
  5100. <aclass="card_img">
  5101. <imgsrc="../images/cardlist/card/EX1-042.png"alt="EX1-042Rosemon"></a>
  5102. <divclass="popup">
  5103. <divclass="card_detailcard_detail_green">
  5104. <divclass="card_detail_inner">
  5105. <ulclass="cardinfo_head">
  5106. <liclass="cardno">EX1-042</li>
  5107. <li>U</li>
  5108. <liclass="cardtype">Digimon</li>
  5109. <liclass="cardlv">Lv.6</li>
  5110. </ul>
  5111. <divclass="card_name">Rosemon</div>
  5112. <divclass="cardinfo_top">
  5113. <divclass="card_img">
  5114. <imgsrc="../images/cardlist/card/EX1-042.png"alt="EX1-042Rosemon"></div>
  5115. <divclass="cardinfo_top_body">
  5116. <dl>
  5117. <dt>Form</dt>
  5118. <dd>Mega</dd>
  5119. </dl>
  5120. <dl>
  5121. <dt>Attribute</dt>
  5122. <dd>Data</dd>
  5123. </dl>
  5124. <dl>
  5125. <dt>Type</dt>
  5126. <dd>Fairy</dd>
  5127. </dl>
  5128. <dl>
  5129. <dt>DP</dt>
  5130. <dd>11000</dl>
  5131. <dl>
  5132. <dt>PlayCost</dt>
  5133. <dd>11</dd>
  5134. </dl>
  5135. <dl>
  5136. <dt>DigivolveCost1</dt>
  5137. <dd>3fromLv.5</dd>
  5138. </dl>
  5139. <dl>
  5140. <dt>DigivolveCost2</dt>
  5141. <dd>-</dd>
  5142. </dl>
  5143. </div>
  5144. </div>
  5145. <divclass="cardinfo_bottom">
  5146. <dl>
  5147. <dt>Effect</dt>
  5148. <dd>[Your Turn] This Digimon gets +1000 DP for each of your opponent's suspended Digimon. [When Attacking] Suspend 1 of your opponent's Digimon.</dd>
  5149. </dl>
  5150. <dl>
  5151. <dt>Digivolveeffect</dt>
  5152. <dd>-</dd>
  5153. </dl>
  5154. <dl>
  5155. <dt>Securityeffect</dt>
  5156. <dd>-</dd>
  5157. </dl>
  5158. <dl>
  5159. <dt>Notes</dt>
  5160. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5161. </div>
  5162. </div>
  5163. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5164. </div>
  5165. </div>
  5166. </li>
  5167. <liclass="image_lists_itemdatapage-2">
  5168. <aclass="card_img">
  5169. <imgsrc="../images/cardlist/card/EX1-043.png"alt="EX1-043HerculesKabuterimon"></a>
  5170. <divclass="popup">
  5171. <divclass="card_detailcard_detail_green">
  5172. <divclass="card_detail_inner">
  5173. <ulclass="cardinfo_head">
  5174. <liclass="cardno">EX1-043</li>
  5175. <li>SR</li>
  5176. <liclass="cardtype">Digimon</li>
  5177. <liclass="cardlv">Lv.6</li>
  5178. </ul>
  5179. <divclass="card_name">HerculesKabuterimon</div>
  5180. <divclass="cardinfo_top">
  5181. <divclass="card_img">
  5182. <imgsrc="../images/cardlist/card/EX1-043.png"alt="EX1-043HerculesKabuterimon"></div>
  5183. <divclass="cardinfo_top_body">
  5184. <dl>
  5185. <dt>Form</dt>
  5186. <dd>Mega</dd>
  5187. </dl>
  5188. <dl>
  5189. <dt>Attribute</dt>
  5190. <dd>Vaccine</dd>
  5191. </dl>
  5192. <dl>
  5193. <dt>Type</dt>
  5194. <dd>Insectoid</dd>
  5195. </dl>
  5196. <dl>
  5197. <dt>DP</dt>
  5198. <dd>12000</dl>
  5199. <dl>
  5200. <dt>PlayCost</dt>
  5201. <dd>12</dd>
  5202. </dl>
  5203. <dl>
  5204. <dt>DigivolveCost1</dt>
  5205. <dd>4fromLv.5</dd>
  5206. </dl>
  5207. <dl>
  5208. <dt>DigivolveCost2</dt>
  5209. <dd>-</dd>
  5210. </dl>
  5211. </div>
  5212. </div>
  5213. <divclass="cardinfo_bottom">
  5214. <dl>
  5215. <dt>Effect</dt>
  5216. <dd>[Your Turn][Once Per Turn] When one of your Digimon with [Insectoid] or [Ancient Insect] in its traits deletes an opponent's Digimon in battle and survives, you may unsuspend this Digimon. [Your Turn] For each Digimon card with [Insectoid] in its traits in this Digimon's digivolution cards, it gets +1000 DP.</dd>
  5217. </dl>
  5218. <dl>
  5219. <dt>Digivolveeffect</dt>
  5220. <dd>-</dd>
  5221. </dl>
  5222. <dl>
  5223. <dt>Securityeffect</dt>
  5224. <dd>-</dd>
  5225. </dl>
  5226. <dl>
  5227. <dt>Notes</dt>
  5228. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5229. </div>
  5230. </div>
  5231. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5232. </div>
  5233. </div>
  5234. </li>
  5235. <liclass="image_lists_itemdatapage-2">
  5236. <aclass="card_img">
  5237. <imgsrc="../images/cardlist/card/EX1-043_P1.png"alt="EX1-043HerculesKabuterimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5238. </a>
  5239. <divclass="popup">
  5240. <divclass="card_detailcard_detail_green">
  5241. <divclass="card_detail_inner">
  5242. <ulclass="cardinfo_head">
  5243. <liclass="cardno">EX1-043</li>
  5244. <li>SR</li>
  5245. <liclass="cardtype">Digimon</li>
  5246. <liclass="cardlv">Lv.6</li>
  5247. <liclass="cardtypecardParallel">AlternativeArt</li>
  5248. </ul>
  5249. <divclass="card_name">HerculesKabuterimon</div>
  5250. <divclass="cardinfo_top">
  5251. <divclass="card_img">
  5252. <imgsrc="../images/cardlist/card/EX1-043_P1.png"alt="EX1-043HerculesKabuterimon"></div>
  5253. <divclass="cardinfo_top_body">
  5254. <dl>
  5255. <dt>Form</dt>
  5256. <dd>Mega</dd>
  5257. </dl>
  5258. <dl>
  5259. <dt>Attribute</dt>
  5260. <dd>Vaccine</dd>
  5261. </dl>
  5262. <dl>
  5263. <dt>Type</dt>
  5264. <dd>Insectoid</dd>
  5265. </dl>
  5266. <dl>
  5267. <dt>DP</dt>
  5268. <dd>12000</dl>
  5269. <dl>
  5270. <dt>PlayCost</dt>
  5271. <dd>12</dd>
  5272. </dl>
  5273. <dl>
  5274. <dt>DigivolveCost1</dt>
  5275. <dd>4fromLv.5</dd>
  5276. </dl>
  5277. <dl>
  5278. <dt>DigivolveCost2</dt>
  5279. <dd>-</dd>
  5280. </dl>
  5281. </div>
  5282. </div>
  5283. <divclass="cardinfo_bottom">
  5284. <dl>
  5285. <dt>Effect</dt>
  5286. <dd>[Your Turn][Once Per Turn] When one of your Digimon with [Insectoid] or [Ancient Insect] in its traits deletes an opponent's Digimon in battle and survives, you may unsuspend this Digimon. [Your Turn] For each Digimon card with [Insectoid] in its traits in this Digimon's digivolution cards, it gets +1000 DP.</dd>
  5287. </dl>
  5288. <dl>
  5289. <dt>Digivolveeffect</dt>
  5290. <dd>-</dd>
  5291. </dl>
  5292. <dl>
  5293. <dt>Securityeffect</dt>
  5294. <dd>-</dd>
  5295. </dl>
  5296. <dl>
  5297. <dt>Notes</dt>
  5298. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5299. </div>
  5300. </div>
  5301. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5302. </div>
  5303. </div>
  5304. </li>
  5305. <liclass="image_lists_itemdatapage-2">
  5306. <aclass="card_img">
  5307. <imgsrc="../images/cardlist/card/EX1-044.png"alt="EX1-044Keramon"></a>
  5308. <divclass="popup">
  5309. <divclass="card_detailcard_detail_black">
  5310. <divclass="card_detail_inner">
  5311. <ulclass="cardinfo_head">
  5312. <liclass="cardno">EX1-044</li>
  5313. <li>C</li>
  5314. <liclass="cardtype">Digimon</li>
  5315. <liclass="cardlv">Lv.3</li>
  5316. </ul>
  5317. <divclass="card_name">Keramon</div>
  5318. <divclass="cardinfo_top">
  5319. <divclass="card_img">
  5320. <imgsrc="../images/cardlist/card/EX1-044.png"alt="EX1-044Keramon"></div>
  5321. <divclass="cardinfo_top_body">
  5322. <dl>
  5323. <dt>Form</dt>
  5324. <dd>Rookie</dd>
  5325. </dl>
  5326. <dl>
  5327. <dt>Attribute</dt>
  5328. <dd>Unknown</dd>
  5329. </dl>
  5330. <dl>
  5331. <dt>Type</dt>
  5332. <dd>Unidentified</dd>
  5333. </dl>
  5334. <dl>
  5335. <dt>DP</dt>
  5336. <dd>2000</dl>
  5337. <dl>
  5338. <dt>PlayCost</dt>
  5339. <dd>3</dd>
  5340. </dl>
  5341. <dl>
  5342. <dt>DigivolveCost1</dt>
  5343. <dd>0fromLv.2</dd>
  5344. </dl>
  5345. <dl>
  5346. <dt>DigivolveCost2</dt>
  5347. <dd>-</dd>
  5348. </dl>
  5349. </div>
  5350. </div>
  5351. <divclass="cardinfo_bottom">
  5352. <dl>
  5353. <dt>Effect</dt>
  5354. <dd>-</dd>
  5355. </dl>
  5356. <dl>
  5357. <dt>Digivolveeffect</dt>
  5358. <dd>[Your Turn] For each other Digimon you have in play with the same name as this Digimon, this Digimon gets +1000 DP.</dd>
  5359. </dl>
  5360. <dl>
  5361. <dt>Securityeffect</dt>
  5362. <dd>-</dd>
  5363. </dl>
  5364. <dl>
  5365. <dt>Notes</dt>
  5366. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5367. </div>
  5368. </div>
  5369. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5370. </div>
  5371. </div>
  5372. </li>
  5373. <liclass="image_lists_itemdatapage-2">
  5374. <aclass="card_img">
  5375. <imgsrc="../images/cardlist/card/EX1-045.png"alt="EX1-045Hagurumon"></a>
  5376. <divclass="popup">
  5377. <divclass="card_detailcard_detail_black">
  5378. <divclass="card_detail_inner">
  5379. <ulclass="cardinfo_head">
  5380. <liclass="cardno">EX1-045</li>
  5381. <li>C</li>
  5382. <liclass="cardtype">Digimon</li>
  5383. <liclass="cardlv">Lv.3</li>
  5384. </ul>
  5385. <divclass="card_name">Hagurumon</div>
  5386. <divclass="cardinfo_top">
  5387. <divclass="card_img">
  5388. <imgsrc="../images/cardlist/card/EX1-045.png"alt="EX1-045Hagurumon"></div>
  5389. <divclass="cardinfo_top_body">
  5390. <dl>
  5391. <dt>Form</dt>
  5392. <dd>Rookie</dd>
  5393. </dl>
  5394. <dl>
  5395. <dt>Attribute</dt>
  5396. <dd>Virus</dd>
  5397. </dl>
  5398. <dl>
  5399. <dt>Type</dt>
  5400. <dd>Machine</dd>
  5401. </dl>
  5402. <dl>
  5403. <dt>DP</dt>
  5404. <dd>2000</dl>
  5405. <dl>
  5406. <dt>PlayCost</dt>
  5407. <dd>3</dd>
  5408. </dl>
  5409. <dl>
  5410. <dt>DigivolveCost1</dt>
  5411. <dd>0fromLv.2</dd>
  5412. </dl>
  5413. <dl>
  5414. <dt>DigivolveCost2</dt>
  5415. <dd>-</dd>
  5416. </dl>
  5417. </div>
  5418. </div>
  5419. <divclass="cardinfo_bottom">
  5420. <dl>
  5421. <dt>Effect</dt>
  5422. <dd>[On Play] You may trash 1 Digimon card with [Machine] or [Cyborg] in its traits in your hand to <Draw 2>. (Draw 2 cards from your deck.)</dd>
  5423. </dl>
  5424. <dl>
  5425. <dt>Digivolveeffect</dt>
  5426. <dd>-</dd>
  5427. </dl>
  5428. <dl>
  5429. <dt>Securityeffect</dt>
  5430. <dd>-</dd>
  5431. </dl>
  5432. <dl>
  5433. <dt>Notes</dt>
  5434. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5435. </div>
  5436. </div>
  5437. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5438. </div>
  5439. </div>
  5440. </li>
  5441. <liclass="image_lists_itemdatapage-2">
  5442. <aclass="card_img">
  5443. <imgsrc="../images/cardlist/card/EX1-046.png"alt="EX1-046Kurisarimon"></a>
  5444. <divclass="popup">
  5445. <divclass="card_detailcard_detail_black">
  5446. <divclass="card_detail_inner">
  5447. <ulclass="cardinfo_head">
  5448. <liclass="cardno">EX1-046</li>
  5449. <li>C</li>
  5450. <liclass="cardtype">Digimon</li>
  5451. <liclass="cardlv">Lv.4</li>
  5452. </ul>
  5453. <divclass="card_name">Kurisarimon</div>
  5454. <divclass="cardinfo_top">
  5455. <divclass="card_img">
  5456. <imgsrc="../images/cardlist/card/EX1-046.png"alt="EX1-046Kurisarimon"></div>
  5457. <divclass="cardinfo_top_body">
  5458. <dl>
  5459. <dt>Form</dt>
  5460. <dd>Champion</dd>
  5461. </dl>
  5462. <dl>
  5463. <dt>Attribute</dt>
  5464. <dd>Unknown</dd>
  5465. </dl>
  5466. <dl>
  5467. <dt>Type</dt>
  5468. <dd>Unidentified</dd>
  5469. </dl>
  5470. <dl>
  5471. <dt>DP</dt>
  5472. <dd>5000</dl>
  5473. <dl>
  5474. <dt>PlayCost</dt>
  5475. <dd>4</dd>
  5476. </dl>
  5477. <dl>
  5478. <dt>DigivolveCost1</dt>
  5479. <dd>2fromLv.3</dd>
  5480. </dl>
  5481. <dl>
  5482. <dt>DigivolveCost2</dt>
  5483. <dd>-</dd>
  5484. </dl>
  5485. </div>
  5486. </div>
  5487. <divclass="cardinfo_bottom">
  5488. <dl>
  5489. <dt>Effect</dt>
  5490. <dd>-</dd>
  5491. </dl>
  5492. <dl>
  5493. <dt>Digivolveeffect</dt>
  5494. <dd>[Your Turn][Once Per Turn] When one of your other Digimon with the same name as this Digimon is deleted, unsuspend this Digimon.</dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>Securityeffect</dt>
  5498. <dd>-</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>Notes</dt>
  5502. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5503. </div>
  5504. </div>
  5505. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5506. </div>
  5507. </div>
  5508. </li>
  5509. <liclass="image_lists_itemdatapage-3">
  5510. <aclass="card_img">
  5511. <imgsrc="../images/cardlist/card/EX1-047.png"alt="EX1-047Guardromon"></a>
  5512. <divclass="popup">
  5513. <divclass="card_detailcard_detail_black">
  5514. <divclass="card_detail_inner">
  5515. <ulclass="cardinfo_head">
  5516. <liclass="cardno">EX1-047</li>
  5517. <li>C</li>
  5518. <liclass="cardtype">Digimon</li>
  5519. <liclass="cardlv">Lv.4</li>
  5520. </ul>
  5521. <divclass="card_name">Guardromon</div>
  5522. <divclass="cardinfo_top">
  5523. <divclass="card_img">
  5524. <imgsrc="../images/cardlist/card/EX1-047.png"alt="EX1-047Guardromon"></div>
  5525. <divclass="cardinfo_top_body">
  5526. <dl>
  5527. <dt>Form</dt>
  5528. <dd>Champion</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>Attribute</dt>
  5532. <dd>Virus</dd>
  5533. </dl>
  5534. <dl>
  5535. <dt>Type</dt>
  5536. <dd>Machine</dd>
  5537. </dl>
  5538. <dl>
  5539. <dt>DP</dt>
  5540. <dd>6000</dl>
  5541. <dl>
  5542. <dt>PlayCost</dt>
  5543. <dd>5</dd>
  5544. </dl>
  5545. <dl>
  5546. <dt>DigivolveCost1</dt>
  5547. <dd>2fromLv.3</dd>
  5548. </dl>
  5549. <dl>
  5550. <dt>DigivolveCost2</dt>
  5551. <dd>-</dd>
  5552. </dl>
  5553. </div>
  5554. </div>
  5555. <divclass="cardinfo_bottom">
  5556. <dl>
  5557. <dt>Effect</dt>
  5558. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[Your Turn] This Digimon can't attack.</dd>
  5559. </dl>
  5560. <dl>
  5561. <dt>Digivolveeffect</dt>
  5562. <dd>[When Attacking] You may trash 1 Digimon card with [Machine] or [Cyborg] in its traits in your hand to <Draw 2>. (Draw 2 cards from your deck.)</dd>
  5563. </dl>
  5564. <dl>
  5565. <dt>Securityeffect</dt>
  5566. <dd>-</dd>
  5567. </dl>
  5568. <dl>
  5569. <dt>Notes</dt>
  5570. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5571. </div>
  5572. </div>
  5573. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5574. </div>
  5575. </div>
  5576. </li>
  5577. <liclass="image_lists_itemdatapage-3">
  5578. <aclass="card_img">
  5579. <imgsrc="../images/cardlist/card/EX1-048.png"alt="EX1-048Andromon"></a>
  5580. <divclass="popup">
  5581. <divclass="card_detailcard_detail_black">
  5582. <divclass="card_detail_inner">
  5583. <ulclass="cardinfo_head">
  5584. <liclass="cardno">EX1-048</li>
  5585. <li>C</li>
  5586. <liclass="cardtype">Digimon</li>
  5587. <liclass="cardlv">Lv.5</li>
  5588. </ul>
  5589. <divclass="card_name">Andromon</div>
  5590. <divclass="cardinfo_top">
  5591. <divclass="card_img">
  5592. <imgsrc="../images/cardlist/card/EX1-048.png"alt="EX1-048Andromon"></div>
  5593. <divclass="cardinfo_top_body">
  5594. <dl>
  5595. <dt>Form</dt>
  5596. <dd>Ultimate</dd>
  5597. </dl>
  5598. <dl>
  5599. <dt>Attribute</dt>
  5600. <dd>Vaccine</dd>
  5601. </dl>
  5602. <dl>
  5603. <dt>Type</dt>
  5604. <dd>Cyborg</dd>
  5605. </dl>
  5606. <dl>
  5607. <dt>DP</dt>
  5608. <dd>7000</dl>
  5609. <dl>
  5610. <dt>PlayCost</dt>
  5611. <dd>7</dd>
  5612. </dl>
  5613. <dl>
  5614. <dt>DigivolveCost1</dt>
  5615. <dd>3fromLv.4</dd>
  5616. </dl>
  5617. <dl>
  5618. <dt>DigivolveCost2</dt>
  5619. <dd>-</dd>
  5620. </dl>
  5621. </div>
  5622. </div>
  5623. <divclass="cardinfo_bottom">
  5624. <dl>
  5625. <dt>Effect</dt>
  5626. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5627. </dl>
  5628. <dl>
  5629. <dt>Digivolveeffect</dt>
  5630. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  5631. </dl>
  5632. <dl>
  5633. <dt>Securityeffect</dt>
  5634. <dd>-</dd>
  5635. </dl>
  5636. <dl>
  5637. <dt>Notes</dt>
  5638. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5639. </div>
  5640. </div>
  5641. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5642. </div>
  5643. </div>
  5644. </li>
  5645. <liclass="image_lists_itemdatapage-3">
  5646. <aclass="card_img">
  5647. <imgsrc="../images/cardlist/card/EX1-048_P1.png"alt="EX1-048Andromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5648. </a>
  5649. <divclass="popup">
  5650. <divclass="card_detailcard_detail_black">
  5651. <divclass="card_detail_inner">
  5652. <ulclass="cardinfo_head">
  5653. <liclass="cardno">EX1-048</li>
  5654. <li>C</li>
  5655. <liclass="cardtype">Digimon</li>
  5656. <liclass="cardlv">Lv.5</li>
  5657. <liclass="cardtypecardParallel">AlternativeArt</li>
  5658. </ul>
  5659. <divclass="card_name">Andromon</div>
  5660. <divclass="cardinfo_top">
  5661. <divclass="card_img">
  5662. <imgsrc="../images/cardlist/card/EX1-048_P1.png"alt="EX1-048Andromon"></div>
  5663. <divclass="cardinfo_top_body">
  5664. <dl>
  5665. <dt>Form</dt>
  5666. <dd>Ultimate</dd>
  5667. </dl>
  5668. <dl>
  5669. <dt>Attribute</dt>
  5670. <dd>Vaccine</dd>
  5671. </dl>
  5672. <dl>
  5673. <dt>Type</dt>
  5674. <dd>Cyborg</dd>
  5675. </dl>
  5676. <dl>
  5677. <dt>DP</dt>
  5678. <dd>7000</dl>
  5679. <dl>
  5680. <dt>PlayCost</dt>
  5681. <dd>7</dd>
  5682. </dl>
  5683. <dl>
  5684. <dt>DigivolveCost1</dt>
  5685. <dd>3fromLv.4</dd>
  5686. </dl>
  5687. <dl>
  5688. <dt>DigivolveCost2</dt>
  5689. <dd>-</dd>
  5690. </dl>
  5691. </div>
  5692. </div>
  5693. <divclass="cardinfo_bottom">
  5694. <dl>
  5695. <dt>Effect</dt>
  5696. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5697. </dl>
  5698. <dl>
  5699. <dt>Digivolveeffect</dt>
  5700. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  5701. </dl>
  5702. <dl>
  5703. <dt>Securityeffect</dt>
  5704. <dd>-</dd>
  5705. </dl>
  5706. <dl>
  5707. <dt>Notes</dt>
  5708. <dd>2022RegionalsParticipationCardSet</dd></dl>
  5709. </div>
  5710. </div>
  5711. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5712. </div>
  5713. </div>
  5714. </li>
  5715. <liclass="image_lists_itemdatapage-3">
  5716. <aclass="card_img">
  5717. <imgsrc="../images/cardlist/card/EX1-048_P2.png"alt="EX1-048Andromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5718. </a>
  5719. <divclass="popup">
  5720. <divclass="card_detailcard_detail_black">
  5721. <divclass="card_detail_inner">
  5722. <ulclass="cardinfo_head">
  5723. <liclass="cardno">EX1-048</li>
  5724. <li>C</li>
  5725. <liclass="cardtype">Digimon</li>
  5726. <liclass="cardlv">Lv.5</li>
  5727. <liclass="cardtypecardParallel">AlternativeArt</li>
  5728. </ul>
  5729. <divclass="card_name">Andromon</div>
  5730. <divclass="cardinfo_top">
  5731. <divclass="card_img">
  5732. <imgsrc="../images/cardlist/card/EX1-048_P2.png"alt="EX1-048Andromon"></div>
  5733. <divclass="cardinfo_top_body">
  5734. <dl>
  5735. <dt>Form</dt>
  5736. <dd>Ultimate</dd>
  5737. </dl>
  5738. <dl>
  5739. <dt>Attribute</dt>
  5740. <dd>Vaccine</dd>
  5741. </dl>
  5742. <dl>
  5743. <dt>Type</dt>
  5744. <dd>Cyborg</dd>
  5745. </dl>
  5746. <dl>
  5747. <dt>DP</dt>
  5748. <dd>7000</dl>
  5749. <dl>
  5750. <dt>PlayCost</dt>
  5751. <dd>7</dd>
  5752. </dl>
  5753. <dl>
  5754. <dt>DigivolveCost1</dt>
  5755. <dd>3fromLv.4</dd>
  5756. </dl>
  5757. <dl>
  5758. <dt>DigivolveCost2</dt>
  5759. <dd>-</dd>
  5760. </dl>
  5761. </div>
  5762. </div>
  5763. <divclass="cardinfo_bottom">
  5764. <dl>
  5765. <dt>Effect</dt>
  5766. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5767. </dl>
  5768. <dl>
  5769. <dt>Digivolveeffect</dt>
  5770. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  5771. </dl>
  5772. <dl>
  5773. <dt>Securityeffect</dt>
  5774. <dd>-</dd>
  5775. </dl>
  5776. <dl>
  5777. <dt>Notes</dt>
  5778. <dd>2022RegionalsFinalistSet</dd></dl>
  5779. </div>
  5780. </div>
  5781. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5782. </div>
  5783. </div>
  5784. </li>
  5785. <liclass="image_lists_itemdatapage-3">
  5786. <aclass="card_img">
  5787. <imgsrc="../images/cardlist/card/EX1-048_P3.png"alt="EX1-048Andromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5788. </a>
  5789. <divclass="popup">
  5790. <divclass="card_detailcard_detail_black">
  5791. <divclass="card_detail_inner">
  5792. <ulclass="cardinfo_head">
  5793. <liclass="cardno">EX1-048</li>
  5794. <li>C</li>
  5795. <liclass="cardtype">Digimon</li>
  5796. <liclass="cardlv">Lv.5</li>
  5797. <liclass="cardtypecardParallel">AlternativeArt</li>
  5798. </ul>
  5799. <divclass="card_name">Andromon</div>
  5800. <divclass="cardinfo_top">
  5801. <divclass="card_img">
  5802. <imgsrc="../images/cardlist/card/EX1-048_P3.png"alt="EX1-048Andromon"></div>
  5803. <divclass="cardinfo_top_body">
  5804. <dl>
  5805. <dt>Form</dt>
  5806. <dd>Ultimate</dd>
  5807. </dl>
  5808. <dl>
  5809. <dt>Attribute</dt>
  5810. <dd>Vaccine</dd>
  5811. </dl>
  5812. <dl>
  5813. <dt>Type</dt>
  5814. <dd>Cyborg</dd>
  5815. </dl>
  5816. <dl>
  5817. <dt>DP</dt>
  5818. <dd>7000</dl>
  5819. <dl>
  5820. <dt>PlayCost</dt>
  5821. <dd>7</dd>
  5822. </dl>
  5823. <dl>
  5824. <dt>DigivolveCost1</dt>
  5825. <dd>3fromLv.4</dd>
  5826. </dl>
  5827. <dl>
  5828. <dt>DigivolveCost2</dt>
  5829. <dd>-</dd>
  5830. </dl>
  5831. </div>
  5832. </div>
  5833. <divclass="cardinfo_bottom">
  5834. <dl>
  5835. <dt>Effect</dt>
  5836. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5837. </dl>
  5838. <dl>
  5839. <dt>Digivolveeffect</dt>
  5840. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  5841. </dl>
  5842. <dl>
  5843. <dt>Securityeffect</dt>
  5844. <dd>-</dd>
  5845. </dl>
  5846. <dl>
  5847. <dt>Notes</dt>
  5848. <dd>2022RegionalsChampionCardSet</dd></dl>
  5849. </div>
  5850. </div>
  5851. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5852. </div>
  5853. </div>
  5854. </li>
  5855. <liclass="image_lists_itemdatapage-3">
  5856. <aclass="card_img">
  5857. <imgsrc="../images/cardlist/card/EX1-049.png"alt="EX1-049MetalTyrannomon"></a>
  5858. <divclass="popup">
  5859. <divclass="card_detailcard_detail_black">
  5860. <divclass="card_detail_inner">
  5861. <ulclass="cardinfo_head">
  5862. <liclass="cardno">EX1-049</li>
  5863. <li>C</li>
  5864. <liclass="cardtype">Digimon</li>
  5865. <liclass="cardlv">Lv.5</li>
  5866. </ul>
  5867. <divclass="card_name">MetalTyrannomon</div>
  5868. <divclass="cardinfo_top">
  5869. <divclass="card_img">
  5870. <imgsrc="../images/cardlist/card/EX1-049.png"alt="EX1-049MetalTyrannomon"></div>
  5871. <divclass="cardinfo_top_body">
  5872. <dl>
  5873. <dt>Form</dt>
  5874. <dd>Ultimate</dd>
  5875. </dl>
  5876. <dl>
  5877. <dt>Attribute</dt>
  5878. <dd>Virus</dd>
  5879. </dl>
  5880. <dl>
  5881. <dt>Type</dt>
  5882. <dd>Cyborg</dd>
  5883. </dl>
  5884. <dl>
  5885. <dt>DP</dt>
  5886. <dd>7000</dl>
  5887. <dl>
  5888. <dt>PlayCost</dt>
  5889. <dd>7</dd>
  5890. </dl>
  5891. <dl>
  5892. <dt>DigivolveCost1</dt>
  5893. <dd>3fromLv.4</dd>
  5894. </dl>
  5895. <dl>
  5896. <dt>DigivolveCost2</dt>
  5897. <dd>-</dd>
  5898. </dl>
  5899. </div>
  5900. </div>
  5901. <divclass="cardinfo_bottom">
  5902. <dl>
  5903. <dt>Effect</dt>
  5904. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5905. </dl>
  5906. <dl>
  5907. <dt>Digivolveeffect</dt>
  5908. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Reboot>. (Unsuspend this Digimon during your opponent's unsuspend phase.)</dd>
  5909. </dl>
  5910. <dl>
  5911. <dt>Securityeffect</dt>
  5912. <dd>-</dd>
  5913. </dl>
  5914. <dl>
  5915. <dt>Notes</dt>
  5916. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  5917. </div>
  5918. </div>
  5919. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5920. </div>
  5921. </div>
  5922. </li>
  5923. <liclass="image_lists_itemdatapage-3">
  5924. <aclass="card_img">
  5925. <imgsrc="../images/cardlist/card/EX1-049_P1.png"alt="EX1-049MetalTyrannomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5926. </a>
  5927. <divclass="popup">
  5928. <divclass="card_detailcard_detail_black">
  5929. <divclass="card_detail_inner">
  5930. <ulclass="cardinfo_head">
  5931. <liclass="cardno">EX1-049</li>
  5932. <li>C</li>
  5933. <liclass="cardtype">Digimon</li>
  5934. <liclass="cardlv">Lv.5</li>
  5935. <liclass="cardtypecardParallel">AlternativeArt</li>
  5936. </ul>
  5937. <divclass="card_name">MetalTyrannomon</div>
  5938. <divclass="cardinfo_top">
  5939. <divclass="card_img">
  5940. <imgsrc="../images/cardlist/card/EX1-049_P1.png"alt="EX1-049MetalTyrannomon"></div>
  5941. <divclass="cardinfo_top_body">
  5942. <dl>
  5943. <dt>Form</dt>
  5944. <dd>Ultimate</dd>
  5945. </dl>
  5946. <dl>
  5947. <dt>Attribute</dt>
  5948. <dd>Virus</dd>
  5949. </dl>
  5950. <dl>
  5951. <dt>Type</dt>
  5952. <dd>Cyborg</dd>
  5953. </dl>
  5954. <dl>
  5955. <dt>DP</dt>
  5956. <dd>7000</dl>
  5957. <dl>
  5958. <dt>PlayCost</dt>
  5959. <dd>7</dd>
  5960. </dl>
  5961. <dl>
  5962. <dt>DigivolveCost1</dt>
  5963. <dd>3fromLv.4</dd>
  5964. </dl>
  5965. <dl>
  5966. <dt>DigivolveCost2</dt>
  5967. <dd>-</dd>
  5968. </dl>
  5969. </div>
  5970. </div>
  5971. <divclass="cardinfo_bottom">
  5972. <dl>
  5973. <dt>Effect</dt>
  5974. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  5975. </dl>
  5976. <dl>
  5977. <dt>Digivolveeffect</dt>
  5978. <dd>[Opponent's Turn] While this Digimon has [Machine] in its traits, it gains <Reboot>. (Unsuspend this Digimon during your opponent's unsuspend phase.)</dd>
  5979. </dl>
  5980. <dl>
  5981. <dt>Securityeffect</dt>
  5982. <dd>-</dd>
  5983. </dl>
  5984. <dl>
  5985. <dt>Notes</dt>
  5986. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  5987. </div>
  5988. </div>
  5989. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5990. </div>
  5991. </div>
  5992. </li>
  5993. <liclass="image_lists_itemdatapage-3">
  5994. <aclass="card_img">
  5995. <imgsrc="../images/cardlist/card/EX1-050.png"alt="EX1-050MetalMamemon"></a>
  5996. <divclass="popup">
  5997. <divclass="card_detailcard_detail_black">
  5998. <divclass="card_detail_inner">
  5999. <ulclass="cardinfo_head">
  6000. <liclass="cardno">EX1-050</li>
  6001. <li>C</li>
  6002. <liclass="cardtype">Digimon</li>
  6003. <liclass="cardlv">Lv.5</li>
  6004. </ul>
  6005. <divclass="card_name">MetalMamemon</div>
  6006. <divclass="cardinfo_top">
  6007. <divclass="card_img">
  6008. <imgsrc="../images/cardlist/card/EX1-050.png"alt="EX1-050MetalMamemon"></div>
  6009. <divclass="cardinfo_top_body">
  6010. <dl>
  6011. <dt>Form</dt>
  6012. <dd>Ultimate</dd>
  6013. </dl>
  6014. <dl>
  6015. <dt>Attribute</dt>
  6016. <dd>Data</dd>
  6017. </dl>
  6018. <dl>
  6019. <dt>Type</dt>
  6020. <dd>Cyborg</dd>
  6021. </dl>
  6022. <dl>
  6023. <dt>DP</dt>
  6024. <dd>7000</dl>
  6025. <dl>
  6026. <dt>PlayCost</dt>
  6027. <dd>7</dd>
  6028. </dl>
  6029. <dl>
  6030. <dt>DigivolveCost1</dt>
  6031. <dd>3fromLv.4</dd>
  6032. </dl>
  6033. <dl>
  6034. <dt>DigivolveCost2</dt>
  6035. <dd>-</dd>
  6036. </dl>
  6037. </div>
  6038. </div>
  6039. <divclass="cardinfo_bottom">
  6040. <dl>
  6041. <dt>Effect</dt>
  6042. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>Digivolveeffect</dt>
  6046. <dd>[When Attacking] If this Digimon has [Machine] in its traits, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  6047. </dl>
  6048. <dl>
  6049. <dt>Securityeffect</dt>
  6050. <dd>-</dd>
  6051. </dl>
  6052. <dl>
  6053. <dt>Notes</dt>
  6054. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6055. </div>
  6056. </div>
  6057. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6058. </div>
  6059. </div>
  6060. </li>
  6061. <liclass="image_lists_itemdatapage-3">
  6062. <aclass="card_img">
  6063. <imgsrc="../images/cardlist/card/EX1-050_P1.png"alt="EX1-050MetalMamemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6064. </a>
  6065. <divclass="popup">
  6066. <divclass="card_detailcard_detail_black">
  6067. <divclass="card_detail_inner">
  6068. <ulclass="cardinfo_head">
  6069. <liclass="cardno">EX1-050</li>
  6070. <li>C</li>
  6071. <liclass="cardtype">Digimon</li>
  6072. <liclass="cardlv">Lv.5</li>
  6073. <liclass="cardtypecardParallel">AlternativeArt</li>
  6074. </ul>
  6075. <divclass="card_name">MetalMamemon</div>
  6076. <divclass="cardinfo_top">
  6077. <divclass="card_img">
  6078. <imgsrc="../images/cardlist/card/EX1-050_P1.png"alt="EX1-050MetalMamemon"></div>
  6079. <divclass="cardinfo_top_body">
  6080. <dl>
  6081. <dt>Form</dt>
  6082. <dd>Ultimate</dd>
  6083. </dl>
  6084. <dl>
  6085. <dt>Attribute</dt>
  6086. <dd>Data</dd>
  6087. </dl>
  6088. <dl>
  6089. <dt>Type</dt>
  6090. <dd>Cyborg</dd>
  6091. </dl>
  6092. <dl>
  6093. <dt>DP</dt>
  6094. <dd>7000</dl>
  6095. <dl>
  6096. <dt>PlayCost</dt>
  6097. <dd>7</dd>
  6098. </dl>
  6099. <dl>
  6100. <dt>DigivolveCost1</dt>
  6101. <dd>3fromLv.4</dd>
  6102. </dl>
  6103. <dl>
  6104. <dt>DigivolveCost2</dt>
  6105. <dd>-</dd>
  6106. </dl>
  6107. </div>
  6108. </div>
  6109. <divclass="cardinfo_bottom">
  6110. <dl>
  6111. <dt>Effect</dt>
  6112. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  6113. </dl>
  6114. <dl>
  6115. <dt>Digivolveeffect</dt>
  6116. <dd>[When Attacking] If this Digimon has [Machine] in its traits, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  6117. </dl>
  6118. <dl>
  6119. <dt>Securityeffect</dt>
  6120. <dd>-</dd>
  6121. </dl>
  6122. <dl>
  6123. <dt>Notes</dt>
  6124. <dd>StoreChampionship2022ParticipantPack</dd></dl>
  6125. </div>
  6126. </div>
  6127. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6128. </div>
  6129. </div>
  6130. </li>
  6131. <liclass="image_lists_itemdatapage-3">
  6132. <aclass="card_img">
  6133. <imgsrc="../images/cardlist/card/EX1-050_P2.png"alt="EX1-050MetalMamemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6134. </a>
  6135. <divclass="popup">
  6136. <divclass="card_detailcard_detail_black">
  6137. <divclass="card_detail_inner">
  6138. <ulclass="cardinfo_head">
  6139. <liclass="cardno">EX1-050</li>
  6140. <li>C</li>
  6141. <liclass="cardtype">Digimon</li>
  6142. <liclass="cardlv">Lv.5</li>
  6143. <liclass="cardtypecardParallel">AlternativeArt</li>
  6144. </ul>
  6145. <divclass="card_name">MetalMamemon</div>
  6146. <divclass="cardinfo_top">
  6147. <divclass="card_img">
  6148. <imgsrc="../images/cardlist/card/EX1-050_P2.png"alt="EX1-050MetalMamemon"></div>
  6149. <divclass="cardinfo_top_body">
  6150. <dl>
  6151. <dt>Form</dt>
  6152. <dd>Ultimate</dd>
  6153. </dl>
  6154. <dl>
  6155. <dt>Attribute</dt>
  6156. <dd>Data</dd>
  6157. </dl>
  6158. <dl>
  6159. <dt>Type</dt>
  6160. <dd>Cyborg</dd>
  6161. </dl>
  6162. <dl>
  6163. <dt>DP</dt>
  6164. <dd>7000</dl>
  6165. <dl>
  6166. <dt>PlayCost</dt>
  6167. <dd>7</dd>
  6168. </dl>
  6169. <dl>
  6170. <dt>DigivolveCost1</dt>
  6171. <dd>3fromLv.4</dd>
  6172. </dl>
  6173. <dl>
  6174. <dt>DigivolveCost2</dt>
  6175. <dd>-</dd>
  6176. </dl>
  6177. </div>
  6178. </div>
  6179. <divclass="cardinfo_bottom">
  6180. <dl>
  6181. <dt>Effect</dt>
  6182. <dd>[When Digivolving] You may reveal the top 3 cards of your deck. Add 1 level 6 Digimon card with [Machine] in its traits among them to your hand. Trash the remaining cards.</dd>
  6183. </dl>
  6184. <dl>
  6185. <dt>Digivolveeffect</dt>
  6186. <dd>[When Attacking] If this Digimon has [Machine] in its traits, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  6187. </dl>
  6188. <dl>
  6189. <dt>Securityeffect</dt>
  6190. <dd>-</dd>
  6191. </dl>
  6192. <dl>
  6193. <dt>Notes</dt>
  6194. <dd>StoreChampionship2022ChampionCardSet</dd></dl>
  6195. </div>
  6196. </div>
  6197. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6198. </div>
  6199. </div>
  6200. </li>
  6201. <liclass="image_lists_itemdatapage-3">
  6202. <aclass="card_img">
  6203. <imgsrc="../images/cardlist/card/EX1-051.png"alt="EX1-051Infermon"></a>
  6204. <divclass="popup">
  6205. <divclass="card_detailcard_detail_black">
  6206. <divclass="card_detail_inner">
  6207. <ulclass="cardinfo_head">
  6208. <liclass="cardno">EX1-051</li>
  6209. <li>R</li>
  6210. <liclass="cardtype">Digimon</li>
  6211. <liclass="cardlv">Lv.5</li>
  6212. </ul>
  6213. <divclass="card_name">Infermon</div>
  6214. <divclass="cardinfo_top">
  6215. <divclass="card_img">
  6216. <imgsrc="../images/cardlist/card/EX1-051.png"alt="EX1-051Infermon"></div>
  6217. <divclass="cardinfo_top_body">
  6218. <dl>
  6219. <dt>Form</dt>
  6220. <dd>Ultimate</dd>
  6221. </dl>
  6222. <dl>
  6223. <dt>Attribute</dt>
  6224. <dd>Unknown</dd>
  6225. </dl>
  6226. <dl>
  6227. <dt>Type</dt>
  6228. <dd>Unidentified</dd>
  6229. </dl>
  6230. <dl>
  6231. <dt>DP</dt>
  6232. <dd>7000</dl>
  6233. <dl>
  6234. <dt>PlayCost</dt>
  6235. <dd>8</dd>
  6236. </dl>
  6237. <dl>
  6238. <dt>DigivolveCost1</dt>
  6239. <dd>3fromLv.4</dd>
  6240. </dl>
  6241. <dl>
  6242. <dt>DigivolveCost2</dt>
  6243. <dd>-</dd>
  6244. </dl>
  6245. </div>
  6246. </div>
  6247. <divclass="cardinfo_bottom">
  6248. <dl>
  6249. <dt>Effect</dt>
  6250. <dd>[Opponent's Turn][Once Per Turn] When an opponent's Digimon digivolves into a level 5 or higher Digimon, gain 1 memory.</dd>
  6251. </dl>
  6252. <dl>
  6253. <dt>Digivolveeffect</dt>
  6254. <dd>[All Turns] All of your other Digimon with the same name as this Digimon get +2000 DP.</dd>
  6255. </dl>
  6256. <dl>
  6257. <dt>Securityeffect</dt>
  6258. <dd>-</dd>
  6259. </dl>
  6260. <dl>
  6261. <dt>Notes</dt>
  6262. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6263. </div>
  6264. </div>
  6265. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6266. </div>
  6267. </div>
  6268. </li>
  6269. <liclass="image_lists_itemdatapage-3">
  6270. <aclass="card_img">
  6271. <imgsrc="../images/cardlist/card/EX1-052.png"alt="EX1-052Etemon"></a>
  6272. <divclass="popup">
  6273. <divclass="card_detailcard_detail_black">
  6274. <divclass="card_detail_inner">
  6275. <ulclass="cardinfo_head">
  6276. <liclass="cardno">EX1-052</li>
  6277. <li>U</li>
  6278. <liclass="cardtype">Digimon</li>
  6279. <liclass="cardlv">Lv.5</li>
  6280. </ul>
  6281. <divclass="card_name">Etemon</div>
  6282. <divclass="cardinfo_top">
  6283. <divclass="card_img">
  6284. <imgsrc="../images/cardlist/card/EX1-052.png"alt="EX1-052Etemon"></div>
  6285. <divclass="cardinfo_top_body">
  6286. <dl>
  6287. <dt>Form</dt>
  6288. <dd>Ultimate</dd>
  6289. </dl>
  6290. <dl>
  6291. <dt>Attribute</dt>
  6292. <dd>Virus</dd>
  6293. </dl>
  6294. <dl>
  6295. <dt>Type</dt>
  6296. <dd>Puppet</dd>
  6297. </dl>
  6298. <dl>
  6299. <dt>DP</dt>
  6300. <dd>7000</dl>
  6301. <dl>
  6302. <dt>PlayCost</dt>
  6303. <dd>8</dd>
  6304. </dl>
  6305. <dl>
  6306. <dt>DigivolveCost1</dt>
  6307. <dd>3fromLv.4</dd>
  6308. </dl>
  6309. <dl>
  6310. <dt>DigivolveCost2</dt>
  6311. <dd>-</dd>
  6312. </dl>
  6313. </div>
  6314. </div>
  6315. <divclass="cardinfo_bottom">
  6316. <dl>
  6317. <dt>Effect</dt>
  6318. <dd>[Your Turn] When this Digimon digivolves into a Digimon card with [Etemon] in its name in your hand, reduce the memory cost of the digivolution by 1.</dd>
  6319. </dl>
  6320. <dl>
  6321. <dt>Digivolveeffect</dt>
  6322. <dd>[Your Turn] While this Digimon has [Etemon] in its name, it gains <Jamming>. (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  6323. </dl>
  6324. <dl>
  6325. <dt>Securityeffect</dt>
  6326. <dd>-</dd>
  6327. </dl>
  6328. <dl>
  6329. <dt>Notes</dt>
  6330. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6331. </div>
  6332. </div>
  6333. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6334. </div>
  6335. </div>
  6336. </li>
  6337. <liclass="image_lists_itemdatapage-3">
  6338. <aclass="card_img">
  6339. <imgsrc="../images/cardlist/card/EX1-053.png"alt="EX1-053MetalEtemon"></a>
  6340. <divclass="popup">
  6341. <divclass="card_detailcard_detail_black">
  6342. <divclass="card_detail_inner">
  6343. <ulclass="cardinfo_head">
  6344. <liclass="cardno">EX1-053</li>
  6345. <li>U</li>
  6346. <liclass="cardtype">Digimon</li>
  6347. <liclass="cardlv">Lv.6</li>
  6348. </ul>
  6349. <divclass="card_name">MetalEtemon</div>
  6350. <divclass="cardinfo_top">
  6351. <divclass="card_img">
  6352. <imgsrc="../images/cardlist/card/EX1-053.png"alt="EX1-053MetalEtemon"></div>
  6353. <divclass="cardinfo_top_body">
  6354. <dl>
  6355. <dt>Form</dt>
  6356. <dd>Mega</dd>
  6357. </dl>
  6358. <dl>
  6359. <dt>Attribute</dt>
  6360. <dd>Virus</dd>
  6361. </dl>
  6362. <dl>
  6363. <dt>Type</dt>
  6364. <dd>Cyborg</dd>
  6365. </dl>
  6366. <dl>
  6367. <dt>DP</dt>
  6368. <dd>10000</dl>
  6369. <dl>
  6370. <dt>PlayCost</dt>
  6371. <dd>11</dd>
  6372. </dl>
  6373. <dl>
  6374. <dt>DigivolveCost1</dt>
  6375. <dd>3fromLv.5</dd>
  6376. </dl>
  6377. <dl>
  6378. <dt>DigivolveCost2</dt>
  6379. <dd>-</dd>
  6380. </dl>
  6381. </div>
  6382. </div>
  6383. <divclass="cardinfo_bottom">
  6384. <dl>
  6385. <dt>Effect</dt>
  6386. <dd>[Opponent's Turn] For each Digimon card with [Etemon] in its name in your trash, this Digimon gets +1000 DP. [On Deletion] <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  6387. </dl>
  6388. <dl>
  6389. <dt>Digivolveeffect</dt>
  6390. <dd>-</dd>
  6391. </dl>
  6392. <dl>
  6393. <dt>Securityeffect</dt>
  6394. <dd>-</dd>
  6395. </dl>
  6396. <dl>
  6397. <dt>Notes</dt>
  6398. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6399. </div>
  6400. </div>
  6401. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6402. </div>
  6403. </div>
  6404. </li>
  6405. <liclass="image_lists_itemdatapage-3">
  6406. <aclass="card_img">
  6407. <imgsrc="../images/cardlist/card/EX1-054.png"alt="EX1-054Boltmon"></a>
  6408. <divclass="popup">
  6409. <divclass="card_detailcard_detail_black">
  6410. <divclass="card_detail_inner">
  6411. <ulclass="cardinfo_head">
  6412. <liclass="cardno">EX1-054</li>
  6413. <li>U</li>
  6414. <liclass="cardtype">Digimon</li>
  6415. <liclass="cardlv">Lv.6</li>
  6416. </ul>
  6417. <divclass="card_name">Boltmon</div>
  6418. <divclass="cardinfo_top">
  6419. <divclass="card_img">
  6420. <imgsrc="../images/cardlist/card/EX1-054.png"alt="EX1-054Boltmon"></div>
  6421. <divclass="cardinfo_top_body">
  6422. <dl>
  6423. <dt>Form</dt>
  6424. <dd>Mega</dd>
  6425. </dl>
  6426. <dl>
  6427. <dt>Attribute</dt>
  6428. <dd>Data</dd>
  6429. </dl>
  6430. <dl>
  6431. <dt>Type</dt>
  6432. <dd>Cyborg</dd>
  6433. </dl>
  6434. <dl>
  6435. <dt>DP</dt>
  6436. <dd>12000</dl>
  6437. <dl>
  6438. <dt>PlayCost</dt>
  6439. <dd>12</dd>
  6440. </dl>
  6441. <dl>
  6442. <dt>DigivolveCost1</dt>
  6443. <dd>4fromLv.5</dd>
  6444. </dl>
  6445. <dl>
  6446. <dt>DigivolveCost2</dt>
  6447. <dd>-</dd>
  6448. </dl>
  6449. </div>
  6450. </div>
  6451. <divclass="cardinfo_bottom">
  6452. <dl>
  6453. <dt>Effect</dt>
  6454. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase.)[When Digivolving] <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  6455. </dl>
  6456. <dl>
  6457. <dt>Digivolveeffect</dt>
  6458. <dd>-</dd>
  6459. </dl>
  6460. <dl>
  6461. <dt>Securityeffect</dt>
  6462. <dd>-</dd>
  6463. </dl>
  6464. <dl>
  6465. <dt>Notes</dt>
  6466. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6467. </div>
  6468. </div>
  6469. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6470. </div>
  6471. </div>
  6472. </li>
  6473. <liclass="image_lists_itemdatapage-3">
  6474. <aclass="card_img">
  6475. <imgsrc="../images/cardlist/card/EX1-055.png"alt="EX1-055Tapirmon"></a>
  6476. <divclass="popup">
  6477. <divclass="card_detailcard_detail_purple">
  6478. <divclass="card_detail_inner">
  6479. <ulclass="cardinfo_head">
  6480. <liclass="cardno">EX1-055</li>
  6481. <li>C</li>
  6482. <liclass="cardtype">Digimon</li>
  6483. <liclass="cardlv">Lv.3</li>
  6484. </ul>
  6485. <divclass="card_name">Tapirmon</div>
  6486. <divclass="cardinfo_top">
  6487. <divclass="card_img">
  6488. <imgsrc="../images/cardlist/card/EX1-055.png"alt="EX1-055Tapirmon"></div>
  6489. <divclass="cardinfo_top_body">
  6490. <dl>
  6491. <dt>Form</dt>
  6492. <dd>Rookie</dd>
  6493. </dl>
  6494. <dl>
  6495. <dt>Attribute</dt>
  6496. <dd>Vaccine</dd>
  6497. </dl>
  6498. <dl>
  6499. <dt>Type</dt>
  6500. <dd>HolyBeast</dd>
  6501. </dl>
  6502. <dl>
  6503. <dt>DP</dt>
  6504. <dd>2000</dl>
  6505. <dl>
  6506. <dt>PlayCost</dt>
  6507. <dd>3</dd>
  6508. </dl>
  6509. <dl>
  6510. <dt>DigivolveCost1</dt>
  6511. <dd>0fromLv.2</dd>
  6512. </dl>
  6513. <dl>
  6514. <dt>DigivolveCost2</dt>
  6515. <dd>-</dd>
  6516. </dl>
  6517. </div>
  6518. </div>
  6519. <divclass="cardinfo_bottom">
  6520. <dl>
  6521. <dt>Effect</dt>
  6522. <dd>-</dd>
  6523. </dl>
  6524. <dl>
  6525. <dt>Digivolveeffect</dt>
  6526. <dd>[Your Turn][Once Per Turn] When one of your other Digimon is deleted, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6527. </dl>
  6528. <dl>
  6529. <dt>Securityeffect</dt>
  6530. <dd>-</dd>
  6531. </dl>
  6532. <dl>
  6533. <dt>Notes</dt>
  6534. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6535. </div>
  6536. </div>
  6537. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6538. </div>
  6539. </div>
  6540. </li>
  6541. <liclass="image_lists_itemdatapage-3">
  6542. <aclass="card_img">
  6543. <imgsrc="../images/cardlist/card/EX1-056.png"alt="EX1-056DemiDevimon"></a>
  6544. <divclass="popup">
  6545. <divclass="card_detailcard_detail_purple">
  6546. <divclass="card_detail_inner">
  6547. <ulclass="cardinfo_head">
  6548. <liclass="cardno">EX1-056</li>
  6549. <li>C</li>
  6550. <liclass="cardtype">Digimon</li>
  6551. <liclass="cardlv">Lv.3</li>
  6552. </ul>
  6553. <divclass="card_name">DemiDevimon</div>
  6554. <divclass="cardinfo_top">
  6555. <divclass="card_img">
  6556. <imgsrc="../images/cardlist/card/EX1-056.png"alt="EX1-056DemiDevimon"></div>
  6557. <divclass="cardinfo_top_body">
  6558. <dl>
  6559. <dt>Form</dt>
  6560. <dd>Rookie</dd>
  6561. </dl>
  6562. <dl>
  6563. <dt>Attribute</dt>
  6564. <dd>Virus</dd>
  6565. </dl>
  6566. <dl>
  6567. <dt>Type</dt>
  6568. <dd>Evil</dd>
  6569. </dl>
  6570. <dl>
  6571. <dt>DP</dt>
  6572. <dd>2000</dl>
  6573. <dl>
  6574. <dt>PlayCost</dt>
  6575. <dd>3</dd>
  6576. </dl>
  6577. <dl>
  6578. <dt>DigivolveCost1</dt>
  6579. <dd>0fromLv.2</dd>
  6580. </dl>
  6581. <dl>
  6582. <dt>DigivolveCost2</dt>
  6583. <dd>-</dd>
  6584. </dl>
  6585. </div>
  6586. </div>
  6587. <divclass="cardinfo_bottom">
  6588. <dl>
  6589. <dt>Effect</dt>
  6590. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)[Your Turn] While you don't have a Digimon with [Myotismon] in its name in play, this Digimon can't attack your opponent's Digimon.</dd>
  6591. </dl>
  6592. <dl>
  6593. <dt>Digivolveeffect</dt>
  6594. <dd>-</dd>
  6595. </dl>
  6596. <dl>
  6597. <dt>Securityeffect</dt>
  6598. <dd>-</dd>
  6599. </dl>
  6600. <dl>
  6601. <dt>Notes</dt>
  6602. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6603. </div>
  6604. </div>
  6605. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6606. </div>
  6607. </div>
  6608. </li>
  6609. <liclass="image_lists_itemdatapage-3">
  6610. <aclass="card_img">
  6611. <imgsrc="../images/cardlist/card/EX1-057.png"alt="EX1-057Wizardmon"></a>
  6612. <divclass="popup">
  6613. <divclass="card_detailcard_detail_purple">
  6614. <divclass="card_detail_inner">
  6615. <ulclass="cardinfo_head">
  6616. <liclass="cardno">EX1-057</li>
  6617. <li>C</li>
  6618. <liclass="cardtype">Digimon</li>
  6619. <liclass="cardlv">Lv.4</li>
  6620. </ul>
  6621. <divclass="card_name">Wizardmon</div>
  6622. <divclass="cardinfo_top">
  6623. <divclass="card_img">
  6624. <imgsrc="../images/cardlist/card/EX1-057.png"alt="EX1-057Wizardmon"></div>
  6625. <divclass="cardinfo_top_body">
  6626. <dl>
  6627. <dt>Form</dt>
  6628. <dd>Champion</dd>
  6629. </dl>
  6630. <dl>
  6631. <dt>Attribute</dt>
  6632. <dd>Data</dd>
  6633. </dl>
  6634. <dl>
  6635. <dt>Type</dt>
  6636. <dd>Wizard</dd>
  6637. </dl>
  6638. <dl>
  6639. <dt>DP</dt>
  6640. <dd>3000</dl>
  6641. <dl>
  6642. <dt>PlayCost</dt>
  6643. <dd>5</dd>
  6644. </dl>
  6645. <dl>
  6646. <dt>DigivolveCost1</dt>
  6647. <dd>2fromLv.3</dd>
  6648. </dl>
  6649. <dl>
  6650. <dt>DigivolveCost2</dt>
  6651. <dd>-</dd>
  6652. </dl>
  6653. </div>
  6654. </div>
  6655. <divclass="cardinfo_bottom">
  6656. <dl>
  6657. <dt>Effect</dt>
  6658. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  6659. </dl>
  6660. <dl>
  6661. <dt>Digivolveeffect</dt>
  6662. <dd>[Your Turn] All of your Digimon with <Retaliation> gain <Rush>. (This Digimon can attack the turn it comes into play.)</dd>
  6663. </dl>
  6664. <dl>
  6665. <dt>Securityeffect</dt>
  6666. <dd>-</dd>
  6667. </dl>
  6668. <dl>
  6669. <dt>Notes</dt>
  6670. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6671. </div>
  6672. </div>
  6673. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6674. </div>
  6675. </div>
  6676. </li>
  6677. <liclass="image_lists_itemdatapage-3">
  6678. <aclass="card_img">
  6679. <imgsrc="../images/cardlist/card/EX1-058.png"alt="EX1-058Devimon"></a>
  6680. <divclass="popup">
  6681. <divclass="card_detailcard_detail_purple">
  6682. <divclass="card_detail_inner">
  6683. <ulclass="cardinfo_head">
  6684. <liclass="cardno">EX1-058</li>
  6685. <li>C</li>
  6686. <liclass="cardtype">Digimon</li>
  6687. <liclass="cardlv">Lv.4</li>
  6688. </ul>
  6689. <divclass="card_name">Devimon</div>
  6690. <divclass="cardinfo_top">
  6691. <divclass="card_img">
  6692. <imgsrc="../images/cardlist/card/EX1-058.png"alt="EX1-058Devimon"></div>
  6693. <divclass="cardinfo_top_body">
  6694. <dl>
  6695. <dt>Form</dt>
  6696. <dd>Champion</dd>
  6697. </dl>
  6698. <dl>
  6699. <dt>Attribute</dt>
  6700. <dd>Virus</dd>
  6701. </dl>
  6702. <dl>
  6703. <dt>Type</dt>
  6704. <dd>FallenAngel</dd>
  6705. </dl>
  6706. <dl>
  6707. <dt>DP</dt>
  6708. <dd>6000</dl>
  6709. <dl>
  6710. <dt>PlayCost</dt>
  6711. <dd>5</dd>
  6712. </dl>
  6713. <dl>
  6714. <dt>DigivolveCost1</dt>
  6715. <dd>2fromLv.3</dd>
  6716. </dl>
  6717. <dl>
  6718. <dt>DigivolveCost2</dt>
  6719. <dd>-</dd>
  6720. </dl>
  6721. </div>
  6722. </div>
  6723. <divclass="cardinfo_bottom">
  6724. <dl>
  6725. <dt>Effect</dt>
  6726. <dd>-</dd>
  6727. </dl>
  6728. <dl>
  6729. <dt>Digivolveeffect</dt>
  6730. <dd>[On Deletion] Return 1 purple level 4 or lower Digimon card from your trash to your hand.</dd>
  6731. </dl>
  6732. <dl>
  6733. <dt>Securityeffect</dt>
  6734. <dd>-</dd>
  6735. </dl>
  6736. <dl>
  6737. <dt>Notes</dt>
  6738. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6739. </div>
  6740. </div>
  6741. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6742. </div>
  6743. </div>
  6744. </li>
  6745. <liclass="image_lists_itemdatapage-3">
  6746. <aclass="card_img">
  6747. <imgsrc="../images/cardlist/card/EX1-059.png"alt="EX1-059Ogremon"></a>
  6748. <divclass="popup">
  6749. <divclass="card_detailcard_detail_purple">
  6750. <divclass="card_detail_inner">
  6751. <ulclass="cardinfo_head">
  6752. <liclass="cardno">EX1-059</li>
  6753. <li>R</li>
  6754. <liclass="cardtype">Digimon</li>
  6755. <liclass="cardlv">Lv.4</li>
  6756. </ul>
  6757. <divclass="card_name">Ogremon</div>
  6758. <divclass="cardinfo_top">
  6759. <divclass="card_img">
  6760. <imgsrc="../images/cardlist/card/EX1-059.png"alt="EX1-059Ogremon"></div>
  6761. <divclass="cardinfo_top_body">
  6762. <dl>
  6763. <dt>Form</dt>
  6764. <dd>Champion</dd>
  6765. </dl>
  6766. <dl>
  6767. <dt>Attribute</dt>
  6768. <dd>Virus</dd>
  6769. </dl>
  6770. <dl>
  6771. <dt>Type</dt>
  6772. <dd>Demon</dd>
  6773. </dl>
  6774. <dl>
  6775. <dt>DP</dt>
  6776. <dd>5000</dl>
  6777. <dl>
  6778. <dt>PlayCost</dt>
  6779. <dd>6</dd>
  6780. </dl>
  6781. <dl>
  6782. <dt>DigivolveCost1</dt>
  6783. <dd>2fromLv.3</dd>
  6784. </dl>
  6785. <dl>
  6786. <dt>DigivolveCost2</dt>
  6787. <dd>-</dd>
  6788. </dl>
  6789. </div>
  6790. </div>
  6791. <divclass="cardinfo_bottom">
  6792. <dl>
  6793. <dt>Effect</dt>
  6794. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon gain <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  6795. </dl>
  6796. <dl>
  6797. <dt>Digivolveeffect</dt>
  6798. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon get +2000 DP for the turn.</dd>
  6799. </dl>
  6800. <dl>
  6801. <dt>Securityeffect</dt>
  6802. <dd>-</dd>
  6803. </dl>
  6804. <dl>
  6805. <dt>Notes</dt>
  6806. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6807. </div>
  6808. </div>
  6809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6810. </div>
  6811. </div>
  6812. </li>
  6813. <liclass="image_lists_itemdatapage-3">
  6814. <aclass="card_img">
  6815. <imgsrc="../images/cardlist/card/EX1-059_P1.png"alt="EX1-059Ogremon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6816. </a>
  6817. <divclass="popup">
  6818. <divclass="card_detailcard_detail_purple">
  6819. <divclass="card_detail_inner">
  6820. <ulclass="cardinfo_head">
  6821. <liclass="cardno">EX1-059</li>
  6822. <li>R</li>
  6823. <liclass="cardtype">Digimon</li>
  6824. <liclass="cardlv">Lv.4</li>
  6825. <liclass="cardtypecardParallel">AlternativeArt</li>
  6826. </ul>
  6827. <divclass="card_name">Ogremon</div>
  6828. <divclass="cardinfo_top">
  6829. <divclass="card_img">
  6830. <imgsrc="../images/cardlist/card/EX1-059_P1.png"alt="EX1-059Ogremon"></div>
  6831. <divclass="cardinfo_top_body">
  6832. <dl>
  6833. <dt>Form</dt>
  6834. <dd>Champion</dd>
  6835. </dl>
  6836. <dl>
  6837. <dt>Attribute</dt>
  6838. <dd>Virus</dd>
  6839. </dl>
  6840. <dl>
  6841. <dt>Type</dt>
  6842. <dd>Demon</dd>
  6843. </dl>
  6844. <dl>
  6845. <dt>DP</dt>
  6846. <dd>5000</dl>
  6847. <dl>
  6848. <dt>PlayCost</dt>
  6849. <dd>6</dd>
  6850. </dl>
  6851. <dl>
  6852. <dt>DigivolveCost1</dt>
  6853. <dd>2fromLv.3</dd>
  6854. </dl>
  6855. <dl>
  6856. <dt>DigivolveCost2</dt>
  6857. <dd>-</dd>
  6858. </dl>
  6859. </div>
  6860. </div>
  6861. <divclass="cardinfo_bottom">
  6862. <dl>
  6863. <dt>Effect</dt>
  6864. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon gain <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  6865. </dl>
  6866. <dl>
  6867. <dt>Digivolveeffect</dt>
  6868. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon get +2000 DP for the turn.</dd>
  6869. </dl>
  6870. <dl>
  6871. <dt>Securityeffect</dt>
  6872. <dd>-</dd>
  6873. </dl>
  6874. <dl>
  6875. <dt>Notes</dt>
  6876. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6877. </div>
  6878. </div>
  6879. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6880. </div>
  6881. </div>
  6882. </li>
  6883. <liclass="image_lists_itemdatapage-3">
  6884. <aclass="card_img">
  6885. <imgsrc="../images/cardlist/card/EX1-060.png"alt="EX1-060LadyDevimon"></a>
  6886. <divclass="popup">
  6887. <divclass="card_detailcard_detail_purple">
  6888. <divclass="card_detail_inner">
  6889. <ulclass="cardinfo_head">
  6890. <liclass="cardno">EX1-060</li>
  6891. <li>U</li>
  6892. <liclass="cardtype">Digimon</li>
  6893. <liclass="cardlv">Lv.5</li>
  6894. </ul>
  6895. <divclass="card_name">LadyDevimon</div>
  6896. <divclass="cardinfo_top">
  6897. <divclass="card_img">
  6898. <imgsrc="../images/cardlist/card/EX1-060.png"alt="EX1-060LadyDevimon"></div>
  6899. <divclass="cardinfo_top_body">
  6900. <dl>
  6901. <dt>Form</dt>
  6902. <dd>Ultimate</dd>
  6903. </dl>
  6904. <dl>
  6905. <dt>Attribute</dt>
  6906. <dd>Virus</dd>
  6907. </dl>
  6908. <dl>
  6909. <dt>Type</dt>
  6910. <dd>FallenAngel</dd>
  6911. </dl>
  6912. <dl>
  6913. <dt>DP</dt>
  6914. <dd>7000</dl>
  6915. <dl>
  6916. <dt>PlayCost</dt>
  6917. <dd>7</dd>
  6918. </dl>
  6919. <dl>
  6920. <dt>DigivolveCost1</dt>
  6921. <dd>3fromLv.4</dd>
  6922. </dl>
  6923. <dl>
  6924. <dt>DigivolveCost2</dt>
  6925. <dd>-</dd>
  6926. </dl>
  6927. </div>
  6928. </div>
  6929. <divclass="cardinfo_bottom">
  6930. <dl>
  6931. <dt>Effect</dt>
  6932. <dd>[When Digivolving] You may trash the top 3 cards of your deck.</dd>
  6933. </dl>
  6934. <dl>
  6935. <dt>Digivolveeffect</dt>
  6936. <dd>[Your Turn][Once Per Turn] When you play a Digimon from your trash, gain 1 memory.</dd>
  6937. </dl>
  6938. <dl>
  6939. <dt>Securityeffect</dt>
  6940. <dd>-</dd>
  6941. </dl>
  6942. <dl>
  6943. <dt>Notes</dt>
  6944. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  6945. </div>
  6946. </div>
  6947. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6948. </div>
  6949. </div>
  6950. </li>
  6951. <liclass="image_lists_itemdatapage-3">
  6952. <aclass="card_img">
  6953. <imgsrc="../images/cardlist/card/EX1-061.png"alt="EX1-061Myotismon"></a>
  6954. <divclass="popup">
  6955. <divclass="card_detailcard_detail_purple">
  6956. <divclass="card_detail_inner">
  6957. <ulclass="cardinfo_head">
  6958. <liclass="cardno">EX1-061</li>
  6959. <li>U</li>
  6960. <liclass="cardtype">Digimon</li>
  6961. <liclass="cardlv">Lv.5</li>
  6962. </ul>
  6963. <divclass="card_name">Myotismon</div>
  6964. <divclass="cardinfo_top">
  6965. <divclass="card_img">
  6966. <imgsrc="../images/cardlist/card/EX1-061.png"alt="EX1-061Myotismon"></div>
  6967. <divclass="cardinfo_top_body">
  6968. <dl>
  6969. <dt>Form</dt>
  6970. <dd>Ultimate</dd>
  6971. </dl>
  6972. <dl>
  6973. <dt>Attribute</dt>
  6974. <dd>Virus</dd>
  6975. </dl>
  6976. <dl>
  6977. <dt>Type</dt>
  6978. <dd>Undead</dd>
  6979. </dl>
  6980. <dl>
  6981. <dt>DP</dt>
  6982. <dd>7000</dl>
  6983. <dl>
  6984. <dt>PlayCost</dt>
  6985. <dd>8</dd>
  6986. </dl>
  6987. <dl>
  6988. <dt>DigivolveCost1</dt>
  6989. <dd>3fromLv.4</dd>
  6990. </dl>
  6991. <dl>
  6992. <dt>DigivolveCost2</dt>
  6993. <dd>-</dd>
  6994. </dl>
  6995. </div>
  6996. </div>
  6997. <divclass="cardinfo_bottom">
  6998. <dl>
  6999. <dt>Effect</dt>
  7000. <dd>[Your Turn] When this Digimon digivolves into a Digimon card with [Myotismon] in its name in your hand, reduce the memory cost of the digivolution by 1.</dd>
  7001. </dl>
  7002. <dl>
  7003. <dt>Digivolveeffect</dt>
  7004. <dd>[Your Turn] While this Digimon has [Myotismon] in its name, all of your Digimon with <Retaliation> can also attack your opponent's unsuspended level 4 or lower Digimon.</dd>
  7005. </dl>
  7006. <dl>
  7007. <dt>Securityeffect</dt>
  7008. <dd>-</dd>
  7009. </dl>
  7010. <dl>
  7011. <dt>Notes</dt>
  7012. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7013. </div>
  7014. </div>
  7015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7016. </div>
  7017. </div>
  7018. </li>
  7019. <liclass="image_lists_itemdatapage-3">
  7020. <aclass="card_img">
  7021. <imgsrc="../images/cardlist/card/EX1-062.png"alt="EX1-062SkullGreymon"></a>
  7022. <divclass="popup">
  7023. <divclass="card_detailcard_detail_purple">
  7024. <divclass="card_detail_inner">
  7025. <ulclass="cardinfo_head">
  7026. <liclass="cardno">EX1-062</li>
  7027. <li>R</li>
  7028. <liclass="cardtype">Digimon</li>
  7029. <liclass="cardlv">Lv.5</li>
  7030. </ul>
  7031. <divclass="card_name">SkullGreymon</div>
  7032. <divclass="cardinfo_top">
  7033. <divclass="card_img">
  7034. <imgsrc="../images/cardlist/card/EX1-062.png"alt="EX1-062SkullGreymon"></div>
  7035. <divclass="cardinfo_top_body">
  7036. <dl>
  7037. <dt>Form</dt>
  7038. <dd>Ultimate</dd>
  7039. </dl>
  7040. <dl>
  7041. <dt>Attribute</dt>
  7042. <dd>Virus</dd>
  7043. </dl>
  7044. <dl>
  7045. <dt>Type</dt>
  7046. <dd>Undead</dd>
  7047. </dl>
  7048. <dl>
  7049. <dt>DP</dt>
  7050. <dd>8000</dl>
  7051. <dl>
  7052. <dt>PlayCost</dt>
  7053. <dd>8</dd>
  7054. </dl>
  7055. <dl>
  7056. <dt>DigivolveCost1</dt>
  7057. <dd>3fromLv.4</dd>
  7058. </dl>
  7059. <dl>
  7060. <dt>DigivolveCost2</dt>
  7061. <dd>3fromLv.4</dd>
  7062. </dl>
  7063. </div>
  7064. </div>
  7065. <divclass="cardinfo_bottom">
  7066. <dl>
  7067. <dt>Effect</dt>
  7068. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[End of Attack] Delete this Digimon. [On Deletion] You may play 1 [Agumon] from your trash suspended without paying its memory cost.</dd>
  7069. </dl>
  7070. <dl>
  7071. <dt>Digivolveeffect</dt>
  7072. <dd>-</dd>
  7073. </dl>
  7074. <dl>
  7075. <dt>Securityeffect</dt>
  7076. <dd>-</dd>
  7077. </dl>
  7078. <dl>
  7079. <dt>Notes</dt>
  7080. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7081. </div>
  7082. </div>
  7083. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7084. </div>
  7085. </div>
  7086. </li>
  7087. <liclass="image_lists_itemdatapage-3">
  7088. <aclass="card_img">
  7089. <imgsrc="../images/cardlist/card/EX1-063.png"alt="EX1-063VenomMyotismon"></a>
  7090. <divclass="popup">
  7091. <divclass="card_detailcard_detail_purple">
  7092. <divclass="card_detail_inner">
  7093. <ulclass="cardinfo_head">
  7094. <liclass="cardno">EX1-063</li>
  7095. <li>SR</li>
  7096. <liclass="cardtype">Digimon</li>
  7097. <liclass="cardlv">Lv.6</li>
  7098. </ul>
  7099. <divclass="card_name">VenomMyotismon</div>
  7100. <divclass="cardinfo_top">
  7101. <divclass="card_img">
  7102. <imgsrc="../images/cardlist/card/EX1-063.png"alt="EX1-063VenomMyotismon"></div>
  7103. <divclass="cardinfo_top_body">
  7104. <dl>
  7105. <dt>Form</dt>
  7106. <dd>Mega</dd>
  7107. </dl>
  7108. <dl>
  7109. <dt>Attribute</dt>
  7110. <dd>Virus</dd>
  7111. </dl>
  7112. <dl>
  7113. <dt>Type</dt>
  7114. <dd>DarkAnimal</dd>
  7115. </dl>
  7116. <dl>
  7117. <dt>DP</dt>
  7118. <dd>12000</dl>
  7119. <dl>
  7120. <dt>PlayCost</dt>
  7121. <dd>12</dd>
  7122. </dl>
  7123. <dl>
  7124. <dt>DigivolveCost1</dt>
  7125. <dd>4fromLv.5</dd>
  7126. </dl>
  7127. <dl>
  7128. <dt>DigivolveCost2</dt>
  7129. <dd>-</dd>
  7130. </dl>
  7131. </div>
  7132. </div>
  7133. <divclass="cardinfo_bottom">
  7134. <dl>
  7135. <dt>Effect</dt>
  7136. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)[When Attacking][Once Per Turn] You may play 1 purple level 4 or lower Digimon card with <Retaliation> from your trash without paying its memory cost. Any [On Play] effects on Digimon played with this effect don't activate.</dd>
  7137. </dl>
  7138. <dl>
  7139. <dt>Digivolveeffect</dt>
  7140. <dd>-</dd>
  7141. </dl>
  7142. <dl>
  7143. <dt>Securityeffect</dt>
  7144. <dd>-</dd>
  7145. </dl>
  7146. <dl>
  7147. <dt>Notes</dt>
  7148. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7149. </div>
  7150. </div>
  7151. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7152. </div>
  7153. </div>
  7154. </li>
  7155. <liclass="image_lists_itemdatapage-3">
  7156. <aclass="card_img">
  7157. <imgsrc="../images/cardlist/card/EX1-063_P1.png"alt="EX1-063VenomMyotismon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7158. </a>
  7159. <divclass="popup">
  7160. <divclass="card_detailcard_detail_purple">
  7161. <divclass="card_detail_inner">
  7162. <ulclass="cardinfo_head">
  7163. <liclass="cardno">EX1-063</li>
  7164. <li>SR</li>
  7165. <liclass="cardtype">Digimon</li>
  7166. <liclass="cardlv">Lv.6</li>
  7167. <liclass="cardtypecardParallel">AlternativeArt</li>
  7168. </ul>
  7169. <divclass="card_name">VenomMyotismon</div>
  7170. <divclass="cardinfo_top">
  7171. <divclass="card_img">
  7172. <imgsrc="../images/cardlist/card/EX1-063_P1.png"alt="EX1-063VenomMyotismon"></div>
  7173. <divclass="cardinfo_top_body">
  7174. <dl>
  7175. <dt>Form</dt>
  7176. <dd>Mega</dd>
  7177. </dl>
  7178. <dl>
  7179. <dt>Attribute</dt>
  7180. <dd>Virus</dd>
  7181. </dl>
  7182. <dl>
  7183. <dt>Type</dt>
  7184. <dd>DarkAnimal</dd>
  7185. </dl>
  7186. <dl>
  7187. <dt>DP</dt>
  7188. <dd>12000</dl>
  7189. <dl>
  7190. <dt>PlayCost</dt>
  7191. <dd>12</dd>
  7192. </dl>
  7193. <dl>
  7194. <dt>DigivolveCost1</dt>
  7195. <dd>4fromLv.5</dd>
  7196. </dl>
  7197. <dl>
  7198. <dt>DigivolveCost2</dt>
  7199. <dd>-</dd>
  7200. </dl>
  7201. </div>
  7202. </div>
  7203. <divclass="cardinfo_bottom">
  7204. <dl>
  7205. <dt>Effect</dt>
  7206. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)[When Attacking][Once Per Turn] You may play 1 purple level 4 or lower Digimon card with <Retaliation> from your trash without paying its memory cost. Any [On Play] effects on Digimon played with this effect don't activate.</dd>
  7207. </dl>
  7208. <dl>
  7209. <dt>Digivolveeffect</dt>
  7210. <dd>-</dd>
  7211. </dl>
  7212. <dl>
  7213. <dt>Securityeffect</dt>
  7214. <dd>-</dd>
  7215. </dl>
  7216. <dl>
  7217. <dt>Notes</dt>
  7218. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7219. </div>
  7220. </div>
  7221. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7222. </div>
  7223. </div>
  7224. </li>
  7225. <liclass="image_lists_itemdatapage-3">
  7226. <aclass="card_img">
  7227. <imgsrc="../images/cardlist/card/EX1-063_P2.png"alt="EX1-063VenomMyotismon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7228. </a>
  7229. <divclass="popup">
  7230. <divclass="card_detailcard_detail_purple">
  7231. <divclass="card_detail_inner">
  7232. <ulclass="cardinfo_head">
  7233. <liclass="cardno">EX1-063</li>
  7234. <li>SR</li>
  7235. <liclass="cardtype">Digimon</li>
  7236. <liclass="cardlv">Lv.6</li>
  7237. <liclass="cardtypecardParallel">AlternativeArt</li>
  7238. </ul>
  7239. <divclass="card_name">VenomMyotismon</div>
  7240. <divclass="cardinfo_top">
  7241. <divclass="card_img">
  7242. <imgsrc="../images/cardlist/card/EX1-063_P2.png"alt="EX1-063VenomMyotismon"></div>
  7243. <divclass="cardinfo_top_body">
  7244. <dl>
  7245. <dt>Form</dt>
  7246. <dd>Mega</dd>
  7247. </dl>
  7248. <dl>
  7249. <dt>Attribute</dt>
  7250. <dd>Virus</dd>
  7251. </dl>
  7252. <dl>
  7253. <dt>Type</dt>
  7254. <dd>DarkAnimal</dd>
  7255. </dl>
  7256. <dl>
  7257. <dt>DP</dt>
  7258. <dd>12000</dl>
  7259. <dl>
  7260. <dt>PlayCost</dt>
  7261. <dd>12</dd>
  7262. </dl>
  7263. <dl>
  7264. <dt>DigivolveCost1</dt>
  7265. <dd>4fromLv.5</dd>
  7266. </dl>
  7267. <dl>
  7268. <dt>DigivolveCost2</dt>
  7269. <dd>-</dd>
  7270. </dl>
  7271. </div>
  7272. </div>
  7273. <divclass="cardinfo_bottom">
  7274. <dl>
  7275. <dt>Effect</dt>
  7276. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)[When Attacking][Once Per Turn] You may play 1 purple level 4 or lower Digimon card with <Retaliation> from your trash without paying its memory cost. Any [On Play] effects on Digimon played with this effect don't activate.</dd>
  7277. </dl>
  7278. <dl>
  7279. <dt>Digivolveeffect</dt>
  7280. <dd>-</dd>
  7281. </dl>
  7282. <dl>
  7283. <dt>Securityeffect</dt>
  7284. <dd>-</dd>
  7285. </dl>
  7286. <dl>
  7287. <dt>Notes</dt>
  7288. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  7289. </div>
  7290. </div>
  7291. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7292. </div>
  7293. </div>
  7294. </li>
  7295. <liclass="image_lists_itemdatapage-3">
  7296. <aclass="card_img">
  7297. <imgsrc="../images/cardlist/card/EX1-064.png"alt="EX1-064Piedmon"></a>
  7298. <divclass="popup">
  7299. <divclass="card_detailcard_detail_purple">
  7300. <divclass="card_detail_inner">
  7301. <ulclass="cardinfo_head">
  7302. <liclass="cardno">EX1-064</li>
  7303. <li>U</li>
  7304. <liclass="cardtype">Digimon</li>
  7305. <liclass="cardlv">Lv.6</li>
  7306. </ul>
  7307. <divclass="card_name">Piedmon</div>
  7308. <divclass="cardinfo_top">
  7309. <divclass="card_img">
  7310. <imgsrc="../images/cardlist/card/EX1-064.png"alt="EX1-064Piedmon"></div>
  7311. <divclass="cardinfo_top_body">
  7312. <dl>
  7313. <dt>Form</dt>
  7314. <dd>Mega</dd>
  7315. </dl>
  7316. <dl>
  7317. <dt>Attribute</dt>
  7318. <dd>Virus</dd>
  7319. </dl>
  7320. <dl>
  7321. <dt>Type</dt>
  7322. <dd>Wizard</dd>
  7323. </dl>
  7324. <dl>
  7325. <dt>DP</dt>
  7326. <dd>11000</dl>
  7327. <dl>
  7328. <dt>PlayCost</dt>
  7329. <dd>12</dd>
  7330. </dl>
  7331. <dl>
  7332. <dt>DigivolveCost1</dt>
  7333. <dd>3fromLv.5</dd>
  7334. </dl>
  7335. <dl>
  7336. <dt>DigivolveCost2</dt>
  7337. <dd>-</dd>
  7338. </dl>
  7339. </div>
  7340. </div>
  7341. <divclass="cardinfo_bottom">
  7342. <dl>
  7343. <dt>Effect</dt>
  7344. <dd>[On Play] Delete 4 of your opponent's unsuspended level 4 or lower Digimon. [Your Turn][Once Per Turn] When one of your opponent's Digimon is deleted, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7345. </dl>
  7346. <dl>
  7347. <dt>Digivolveeffect</dt>
  7348. <dd>-</dd>
  7349. </dl>
  7350. <dl>
  7351. <dt>Securityeffect</dt>
  7352. <dd>-</dd>
  7353. </dl>
  7354. <dl>
  7355. <dt>Notes</dt>
  7356. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7357. </div>
  7358. </div>
  7359. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7360. </div>
  7361. </div>
  7362. </li>
  7363. <liclass="image_lists_itemdatapage-3">
  7364. <aclass="card_img">
  7365. <imgsrc="../images/cardlist/card/EX1-065.png"alt="EX1-065Diaboromon"></a>
  7366. <divclass="popup">
  7367. <divclass="card_detailcard_detail_white">
  7368. <divclass="card_detail_inner">
  7369. <ulclass="cardinfo_head">
  7370. <liclass="cardno">EX1-065</li>
  7371. <li>SR</li>
  7372. <liclass="cardtype">Digimon</li>
  7373. <liclass="cardlv">Lv.6</li>
  7374. </ul>
  7375. <divclass="card_name">Diaboromon</div>
  7376. <divclass="cardinfo_top">
  7377. <divclass="card_img">
  7378. <imgsrc="../images/cardlist/card/EX1-065.png"alt="EX1-065Diaboromon"></div>
  7379. <divclass="cardinfo_top_body">
  7380. <dl>
  7381. <dt>Form</dt>
  7382. <dd>Mega</dd>
  7383. </dl>
  7384. <dl>
  7385. <dt>Attribute</dt>
  7386. <dd>Unknown</dd>
  7387. </dl>
  7388. <dl>
  7389. <dt>Type</dt>
  7390. <dd>Unidentified</dd>
  7391. </dl>
  7392. <dl>
  7393. <dt>DP</dt>
  7394. <dd>11000</dl>
  7395. <dl>
  7396. <dt>PlayCost</dt>
  7397. <dd>12</dd>
  7398. </dl>
  7399. <dl>
  7400. <dt>DigivolveCost1</dt>
  7401. <dd>3fromLv.5</dd>
  7402. </dl>
  7403. <dl>
  7404. <dt>DigivolveCost2</dt>
  7405. <dd>-</dd>
  7406. </dl>
  7407. </div>
  7408. </div>
  7409. <divclass="cardinfo_bottom">
  7410. <dl>
  7411. <dt>Effect</dt>
  7412. <dd>[Security] At the end of the battle, you may play 1 [Diaboromon] Token without paying its memory cost. (Diaboromon Tokens are level 6 white Digimon with a memory cost of 14, 3000 DP, and Mega/Unknown/Unidentified traits.)[Opponent's Turn] All of your [Diaboromon] gain <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  7413. </dl>
  7414. <dl>
  7415. <dt>Digivolveeffect</dt>
  7416. <dd>-</dd>
  7417. </dl>
  7418. <dl>
  7419. <dt>Securityeffect</dt>
  7420. <dd>-</dd>
  7421. </dl>
  7422. <dl>
  7423. <dt>Notes</dt>
  7424. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7425. </div>
  7426. </div>
  7427. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7428. </div>
  7429. </div>
  7430. </li>
  7431. <liclass="image_lists_itemdatapage-3">
  7432. <aclass="card_img">
  7433. <imgsrc="../images/cardlist/card/EX1-067.png"alt="EX1-067BaptismbyFire!"></a>
  7434. <divclass="popup">
  7435. <divclass="card_detailcard_detail_red">
  7436. <divclass="card_detail_inner">
  7437. <ulclass="cardinfo_head">
  7438. <liclass="cardno">EX1-067</li>
  7439. <li>R</li>
  7440. <liclass="cardtype">Option</li>
  7441. </ul>
  7442. <divclass="card_name">BaptismbyFire!</div>
  7443. <divclass="cardinfo_top">
  7444. <divclass="card_img">
  7445. <imgsrc="../images/cardlist/card/EX1-067.png"alt="EX1-067BaptismbyFire!"></div>
  7446. <divclass="cardinfo_top_body">
  7447. <dl>
  7448. <dt>Form</dt>
  7449. <dd>-</dd>
  7450. </dl>
  7451. <dl>
  7452. <dt>Attribute</dt>
  7453. <dd>-</dd>
  7454. </dl>
  7455. <dl>
  7456. <dt>Type</dt>
  7457. <dd>-</dd>
  7458. </dl>
  7459. <dl>
  7460. <dt>DP</dt>
  7461. <dd>-</dl>
  7462. <dl>
  7463. <dt>PlayCost</dt>
  7464. <dd>3</dd>
  7465. </dl>
  7466. <dl>
  7467. <dt>DigivolveCost1</dt>
  7468. <dd>-</dd>
  7469. </dl>
  7470. <dl>
  7471. <dt>DigivolveCost2</dt>
  7472. <dd>-</dd>
  7473. </dl>
  7474. </div>
  7475. </div>
  7476. <divclass="cardinfo_bottom">
  7477. <dl>
  7478. <dt>Effect</dt>
  7479. <dd>[Main] Delete 1 of your opponent's Digimon with 6000 DP or less and <Blocker>.</dd>
  7480. </dl>
  7481. <dl>
  7482. <dt>Digivolveeffect</dt>
  7483. <dd>-</dd>
  7484. </dl>
  7485. <dl>
  7486. <dt>Securityeffect</dt>
  7487. <dd>[Security] Activate this card's [Main] effect.</dd>
  7488. </dl>
  7489. <dl>
  7490. <dt>Notes</dt>
  7491. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7492. </div>
  7493. </div>
  7494. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7495. </div>
  7496. </div>
  7497. </li>
  7498. <liclass="image_lists_itemdatapage-3">
  7499. <aclass="card_img">
  7500. <imgsrc="../images/cardlist/card/EX1-068.png"alt="EX1-068IceWall!"></a>
  7501. <divclass="popup">
  7502. <divclass="card_detailcard_detail_blue">
  7503. <divclass="card_detail_inner">
  7504. <ulclass="cardinfo_head">
  7505. <liclass="cardno">EX1-068</li>
  7506. <li>R</li>
  7507. <liclass="cardtype">Option</li>
  7508. </ul>
  7509. <divclass="card_name">IceWall!</div>
  7510. <divclass="cardinfo_top">
  7511. <divclass="card_img">
  7512. <imgsrc="../images/cardlist/card/EX1-068.png"alt="EX1-068IceWall!"></div>
  7513. <divclass="cardinfo_top_body">
  7514. <dl>
  7515. <dt>Form</dt>
  7516. <dd>-</dd>
  7517. </dl>
  7518. <dl>
  7519. <dt>Attribute</dt>
  7520. <dd>-</dd>
  7521. </dl>
  7522. <dl>
  7523. <dt>Type</dt>
  7524. <dd>-</dd>
  7525. </dl>
  7526. <dl>
  7527. <dt>DP</dt>
  7528. <dd>-</dl>
  7529. <dl>
  7530. <dt>PlayCost</dt>
  7531. <dd>1</dd>
  7532. </dl>
  7533. <dl>
  7534. <dt>DigivolveCost1</dt>
  7535. <dd>-</dd>
  7536. </dl>
  7537. <dl>
  7538. <dt>DigivolveCost2</dt>
  7539. <dd>-</dd>
  7540. </dl>
  7541. </div>
  7542. </div>
  7543. <divclass="cardinfo_bottom">
  7544. <dl>
  7545. <dt>Effect</dt>
  7546. <dd>[Main] All of your opponent's Digimon gain "[When Attacking] Lose 2 memory" until the end of their next turn.</dd>
  7547. </dl>
  7548. <dl>
  7549. <dt>Digivolveeffect</dt>
  7550. <dd>-</dd>
  7551. </dl>
  7552. <dl>
  7553. <dt>Securityeffect</dt>
  7554. <dd>[Security] Gain 2 memory.</dd>
  7555. </dl>
  7556. <dl>
  7557. <dt>Notes</dt>
  7558. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7559. </div>
  7560. </div>
  7561. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7562. </div>
  7563. </div>
  7564. </li>
  7565. <liclass="image_lists_itemdatapage-3">
  7566. <aclass="card_img">
  7567. <imgsrc="../images/cardlist/card/EX1-065_P1.png"alt="EX1-065Diaboromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7568. </a>
  7569. <divclass="popup">
  7570. <divclass="card_detailcard_detail_white">
  7571. <divclass="card_detail_inner">
  7572. <ulclass="cardinfo_head">
  7573. <liclass="cardno">EX1-065</li>
  7574. <li>SR</li>
  7575. <liclass="cardtype">Digimon</li>
  7576. <liclass="cardlv">Lv.6</li>
  7577. <liclass="cardtypecardParallel">AlternativeArt</li>
  7578. </ul>
  7579. <divclass="card_name">Diaboromon</div>
  7580. <divclass="cardinfo_top">
  7581. <divclass="card_img">
  7582. <imgsrc="../images/cardlist/card/EX1-065_P1.png"alt="EX1-065Diaboromon"></div>
  7583. <divclass="cardinfo_top_body">
  7584. <dl>
  7585. <dt>Form</dt>
  7586. <dd>Mega</dd>
  7587. </dl>
  7588. <dl>
  7589. <dt>Attribute</dt>
  7590. <dd>Unknown</dd>
  7591. </dl>
  7592. <dl>
  7593. <dt>Type</dt>
  7594. <dd>Unidentified</dd>
  7595. </dl>
  7596. <dl>
  7597. <dt>DP</dt>
  7598. <dd>11000</dl>
  7599. <dl>
  7600. <dt>PlayCost</dt>
  7601. <dd>12</dd>
  7602. </dl>
  7603. <dl>
  7604. <dt>DigivolveCost1</dt>
  7605. <dd>3fromLv.5</dd>
  7606. </dl>
  7607. <dl>
  7608. <dt>DigivolveCost2</dt>
  7609. <dd>-</dd>
  7610. </dl>
  7611. </div>
  7612. </div>
  7613. <divclass="cardinfo_bottom">
  7614. <dl>
  7615. <dt>Effect</dt>
  7616. <dd>[Security] At the end of the battle, you may play 1 [Diaboromon] Token without paying its memory cost. (Diaboromon Tokens are level 6 white Digimon with a memory cost of 14, 3000 DP, and Mega/Unknown/Unidentified traits.)[Opponent's Turn] All of your [Diaboromon] gain <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  7617. </dl>
  7618. <dl>
  7619. <dt>Digivolveeffect</dt>
  7620. <dd>-</dd>
  7621. </dl>
  7622. <dl>
  7623. <dt>Securityeffect</dt>
  7624. <dd>-</dd>
  7625. </dl>
  7626. <dl>
  7627. <dt>Notes</dt>
  7628. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7629. </div>
  7630. </div>
  7631. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7632. </div>
  7633. </div>
  7634. </li>
  7635. <liclass="image_lists_itemdatapage-3">
  7636. <aclass="card_img">
  7637. <imgsrc="../images/cardlist/card/EX1-073.png"alt="EX1-073Machinedramon"></a>
  7638. <divclass="popup">
  7639. <divclass="card_detailcard_detail_black">
  7640. <divclass="card_detail_inner">
  7641. <ulclass="cardinfo_head">
  7642. <liclass="cardno">EX1-073</li>
  7643. <li>SEC</li>
  7644. <liclass="cardtype">Digimon</li>
  7645. <liclass="cardlv">Lv.6</li>
  7646. </ul>
  7647. <divclass="card_name">Machinedramon</div>
  7648. <divclass="cardinfo_top">
  7649. <divclass="card_img">
  7650. <imgsrc="../images/cardlist/card/EX1-073.png"alt="EX1-073Machinedramon"></div>
  7651. <divclass="cardinfo_top_body">
  7652. <dl>
  7653. <dt>Form</dt>
  7654. <dd>Mega</dd>
  7655. </dl>
  7656. <dl>
  7657. <dt>Attribute</dt>
  7658. <dd>Virus</dd>
  7659. </dl>
  7660. <dl>
  7661. <dt>Type</dt>
  7662. <dd>Machine</dd>
  7663. </dl>
  7664. <dl>
  7665. <dt>DP</dt>
  7666. <dd>11000</dl>
  7667. <dl>
  7668. <dt>PlayCost</dt>
  7669. <dd>12</dd>
  7670. </dl>
  7671. <dl>
  7672. <dt>DigivolveCost1</dt>
  7673. <dd>3fromLv.5</dd>
  7674. </dl>
  7675. <dl>
  7676. <dt>DigivolveCost2</dt>
  7677. <dd>3fromLv.5</dd>
  7678. </dl>
  7679. </div>
  7680. </div>
  7681. <divclass="cardinfo_bottom">
  7682. <dl>
  7683. <dt>Effect</dt>
  7684. <dd>[On Play] You may place up to 5 level 5 red and/or black cards with [Cyborg] in their traits and different card numbers from your hand and/or trash in this Digimon's digivolution cards to gain 1 memory for each card placed.</dd>
  7685. </dl>
  7686. <dl>
  7687. <dt>Digivolveeffect</dt>
  7688. <dd>-</dd>
  7689. </dl>
  7690. <dl>
  7691. <dt>Securityeffect</dt>
  7692. <dd>-</dd>
  7693. </dl>
  7694. <dl>
  7695. <dt>Notes</dt>
  7696. <dd>THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#EX1-073'>ErrataCard</a></dd></dl>
  7697. </div>
  7698. </div>
  7699. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7700. </div>
  7701. </div>
  7702. </li>
  7703. <liclass="image_lists_itemdatapage-3">
  7704. <aclass="card_img">
  7705. <imgsrc="../images/cardlist/card/EX1-069.png"alt="EX1-069UltimateConnection!"></a>
  7706. <divclass="popup">
  7707. <divclass="card_detailcard_detail_black">
  7708. <divclass="card_detail_inner">
  7709. <ulclass="cardinfo_head">
  7710. <liclass="cardno">EX1-069</li>
  7711. <li>R</li>
  7712. <liclass="cardtype">Option</li>
  7713. </ul>
  7714. <divclass="card_name">UltimateConnection!</div>
  7715. <divclass="cardinfo_top">
  7716. <divclass="card_img">
  7717. <imgsrc="../images/cardlist/card/EX1-069.png"alt="EX1-069UltimateConnection!"></div>
  7718. <divclass="cardinfo_top_body">
  7719. <dl>
  7720. <dt>Form</dt>
  7721. <dd>-</dd>
  7722. </dl>
  7723. <dl>
  7724. <dt>Attribute</dt>
  7725. <dd>-</dd>
  7726. </dl>
  7727. <dl>
  7728. <dt>Type</dt>
  7729. <dd>-</dd>
  7730. </dl>
  7731. <dl>
  7732. <dt>DP</dt>
  7733. <dd>-</dl>
  7734. <dl>
  7735. <dt>PlayCost</dt>
  7736. <dd>1</dd>
  7737. </dl>
  7738. <dl>
  7739. <dt>DigivolveCost1</dt>
  7740. <dd>-</dd>
  7741. </dl>
  7742. <dl>
  7743. <dt>DigivolveCost2</dt>
  7744. <dd>-</dd>
  7745. </dl>
  7746. </div>
  7747. </div>
  7748. <divclass="cardinfo_bottom">
  7749. <dl>
  7750. <dt>Effect</dt>
  7751. <dd>[Main] You may trash 1 level 5 Digimon card with [Cyborg] in its traits in your hand to gain 2 memory and <Draw 1>. (Draw 1 card from your deck.)</dd>
  7752. </dl>
  7753. <dl>
  7754. <dt>Digivolveeffect</dt>
  7755. <dd>-</dd>
  7756. </dl>
  7757. <dl>
  7758. <dt>Securityeffect</dt>
  7759. <dd>[Security] Activate this card's [Main] effect.</dd>
  7760. </dl>
  7761. <dl>
  7762. <dt>Notes</dt>
  7763. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7764. </div>
  7765. </div>
  7766. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7767. </div>
  7768. </div>
  7769. </li>
  7770. <liclass="image_lists_itemdatapage-3">
  7771. <aclass="card_img">
  7772. <imgsrc="../images/cardlist/card/EX1-073_P1.png"alt="EX1-073Machinedramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7773. </a>
  7774. <divclass="popup">
  7775. <divclass="card_detailcard_detail_black">
  7776. <divclass="card_detail_inner">
  7777. <ulclass="cardinfo_head">
  7778. <liclass="cardno">EX1-073</li>
  7779. <li>SEC</li>
  7780. <liclass="cardtype">Digimon</li>
  7781. <liclass="cardlv">Lv.6</li>
  7782. <liclass="cardtypecardParallel">AlternativeArt</li>
  7783. </ul>
  7784. <divclass="card_name">Machinedramon</div>
  7785. <divclass="cardinfo_top">
  7786. <divclass="card_img">
  7787. <imgsrc="../images/cardlist/card/EX1-073_P1.png"alt="EX1-073Machinedramon"></div>
  7788. <divclass="cardinfo_top_body">
  7789. <dl>
  7790. <dt>Form</dt>
  7791. <dd>Mega</dd>
  7792. </dl>
  7793. <dl>
  7794. <dt>Attribute</dt>
  7795. <dd>Virus</dd>
  7796. </dl>
  7797. <dl>
  7798. <dt>Type</dt>
  7799. <dd>Machine</dd>
  7800. </dl>
  7801. <dl>
  7802. <dt>DP</dt>
  7803. <dd>11000</dl>
  7804. <dl>
  7805. <dt>PlayCost</dt>
  7806. <dd>12</dd>
  7807. </dl>
  7808. <dl>
  7809. <dt>DigivolveCost1</dt>
  7810. <dd>3fromLv.5</dd>
  7811. </dl>
  7812. <dl>
  7813. <dt>DigivolveCost2</dt>
  7814. <dd>3fromLv.5</dd>
  7815. </dl>
  7816. </div>
  7817. </div>
  7818. <divclass="cardinfo_bottom">
  7819. <dl>
  7820. <dt>Effect</dt>
  7821. <dd>[On Play] You may place up to 5 level 5 red and/or black cards with [Cyborg] in their traits and different card numbers from your hand and/or trash in this Digimon's digivolution cards to gain 1 memory for each card placed.</dd>
  7822. </dl>
  7823. <dl>
  7824. <dt>Digivolveeffect</dt>
  7825. <dd>-</dd>
  7826. </dl>
  7827. <dl>
  7828. <dt>Securityeffect</dt>
  7829. <dd>-</dd>
  7830. </dl>
  7831. <dl>
  7832. <dt>Notes</dt>
  7833. <dd>THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#EX1-073'>ErrataCard</a></dd></dl>
  7834. </div>
  7835. </div>
  7836. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7837. </div>
  7838. </div>
  7839. </li>
  7840. <liclass="image_lists_itemdatapage-3">
  7841. <aclass="card_img">
  7842. <imgsrc="../images/cardlist/card/EX1-073_P2.png"alt="EX1-073Machinedramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7843. </a>
  7844. <divclass="popup">
  7845. <divclass="card_detailcard_detail_black">
  7846. <divclass="card_detail_inner">
  7847. <ulclass="cardinfo_head">
  7848. <liclass="cardno">EX1-073</li>
  7849. <li>SEC</li>
  7850. <liclass="cardtype">Digimon</li>
  7851. <liclass="cardlv">Lv.6</li>
  7852. <liclass="cardtypecardParallel">AlternativeArt</li>
  7853. </ul>
  7854. <divclass="card_name">Machinedramon</div>
  7855. <divclass="cardinfo_top">
  7856. <divclass="card_img">
  7857. <imgsrc="../images/cardlist/card/EX1-073_P2.png"alt="EX1-073Machinedramon"></div>
  7858. <divclass="cardinfo_top_body">
  7859. <dl>
  7860. <dt>Form</dt>
  7861. <dd>Mega</dd>
  7862. </dl>
  7863. <dl>
  7864. <dt>Attribute</dt>
  7865. <dd>Virus</dd>
  7866. </dl>
  7867. <dl>
  7868. <dt>Type</dt>
  7869. <dd>Machine</dd>
  7870. </dl>
  7871. <dl>
  7872. <dt>DP</dt>
  7873. <dd>11000</dl>
  7874. <dl>
  7875. <dt>PlayCost</dt>
  7876. <dd>12</dd>
  7877. </dl>
  7878. <dl>
  7879. <dt>DigivolveCost1</dt>
  7880. <dd>3fromLv.5</dd>
  7881. </dl>
  7882. <dl>
  7883. <dt>DigivolveCost2</dt>
  7884. <dd>3fromLv.5</dd>
  7885. </dl>
  7886. </div>
  7887. </div>
  7888. <divclass="cardinfo_bottom">
  7889. <dl>
  7890. <dt>Effect</dt>
  7891. <dd>[On Play] You may place up to 5 level 5 red and/or black cards with [Cyborg] in their traits and different card numbers from your hand and/or trash in this Digimon's digivolution cards to gain 1 memory for each card placed.</dd>
  7892. </dl>
  7893. <dl>
  7894. <dt>Digivolveeffect</dt>
  7895. <dd>-</dd>
  7896. </dl>
  7897. <dl>
  7898. <dt>Securityeffect</dt>
  7899. <dd>-</dd>
  7900. </dl>
  7901. <dl>
  7902. <dt>Notes</dt>
  7903. <dd><ahref="/products/pack/ver11.php">&rtri;BOOSTERDIMENSIONALPHASE[BT11]</a></dd></dl>
  7904. </div>
  7905. </div>
  7906. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7907. </div>
  7908. </div>
  7909. </li>
  7910. <liclass="image_lists_itemdatapage-3">
  7911. <aclass="card_img">
  7912. <imgsrc="../images/cardlist/card/EX1-070.png"alt="EX1-070FightforYourPride!"></a>
  7913. <divclass="popup">
  7914. <divclass="card_detailcard_detail_purple">
  7915. <divclass="card_detail_inner">
  7916. <ulclass="cardinfo_head">
  7917. <liclass="cardno">EX1-070</li>
  7918. <li>R</li>
  7919. <liclass="cardtype">Option</li>
  7920. </ul>
  7921. <divclass="card_name">FightforYourPride!</div>
  7922. <divclass="cardinfo_top">
  7923. <divclass="card_img">
  7924. <imgsrc="../images/cardlist/card/EX1-070.png"alt="EX1-070FightforYourPride!"></div>
  7925. <divclass="cardinfo_top_body">
  7926. <dl>
  7927. <dt>Form</dt>
  7928. <dd>-</dd>
  7929. </dl>
  7930. <dl>
  7931. <dt>Attribute</dt>
  7932. <dd>-</dd>
  7933. </dl>
  7934. <dl>
  7935. <dt>Type</dt>
  7936. <dd>-</dd>
  7937. </dl>
  7938. <dl>
  7939. <dt>DP</dt>
  7940. <dd>-</dl>
  7941. <dl>
  7942. <dt>PlayCost</dt>
  7943. <dd>4</dd>
  7944. </dl>
  7945. <dl>
  7946. <dt>DigivolveCost1</dt>
  7947. <dd>-</dd>
  7948. </dl>
  7949. <dl>
  7950. <dt>DigivolveCost2</dt>
  7951. <dd>-</dd>
  7952. </dl>
  7953. </div>
  7954. </div>
  7955. <divclass="cardinfo_bottom">
  7956. <dl>
  7957. <dt>Effect</dt>
  7958. <dd>[Main] Play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost. Then, if you have a Digimon with [Myotismon] in its name in play, 1 of your Digimon gains <Blocker> until the end of your opponent's next turn. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  7959. </dl>
  7960. <dl>
  7961. <dt>Digivolveeffect</dt>
  7962. <dd>-</dd>
  7963. </dl>
  7964. <dl>
  7965. <dt>Securityeffect</dt>
  7966. <dd>[Security] Play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost.</dd>
  7967. </dl>
  7968. <dl>
  7969. <dt>Notes</dt>
  7970. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  7971. </div>
  7972. </div>
  7973. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7974. </div>
  7975. </div>
  7976. </li>
  7977. <liclass="image_lists_itemdatapage-3">
  7978. <aclass="card_img">
  7979. <imgsrc="../images/cardlist/card/EX1-066.png"alt="EX1-066AnalogYouth"></a>
  7980. <divclass="popup">
  7981. <divclass="card_detailcard_detail_white">
  7982. <divclass="card_detail_inner">
  7983. <ulclass="cardinfo_head">
  7984. <liclass="cardno">EX1-066</li>
  7985. <li>R</li>
  7986. <liclass="cardtype">Tamer</li>
  7987. </ul>
  7988. <divclass="card_name">AnalogYouth</div>
  7989. <divclass="cardinfo_top">
  7990. <divclass="card_img">
  7991. <imgsrc="../images/cardlist/card/EX1-066.png"alt="EX1-066AnalogYouth"></div>
  7992. <divclass="cardinfo_top_body">
  7993. <dl>
  7994. <dt>Form</dt>
  7995. <dd>-</dd>
  7996. </dl>
  7997. <dl>
  7998. <dt>Attribute</dt>
  7999. <dd>-</dd>
  8000. </dl>
  8001. <dl>
  8002. <dt>Type</dt>
  8003. <dd>-</dd>
  8004. </dl>
  8005. <dl>
  8006. <dt>DP</dt>
  8007. <dd>-</dl>
  8008. <dl>
  8009. <dt>PlayCost</dt>
  8010. <dd>2</dd>
  8011. </dl>
  8012. <dl>
  8013. <dt>DigivolveCost1</dt>
  8014. <dd>-</dd>
  8015. </dl>
  8016. <dl>
  8017. <dt>DigivolveCost2</dt>
  8018. <dd>-</dd>
  8019. </dl>
  8020. </div>
  8021. </div>
  8022. <divclass="cardinfo_bottom">
  8023. <dl>
  8024. <dt>Effect</dt>
  8025. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card among them to your hand. Trash the remaining cards. [All Turns] When one of your level 5 or higher Digimon with digivolution cards is deleted, you may suspend this Tamer. If you do, gain 1 memory, then hatch 1 Digi-Egg card to an empty space in your Breeding Area.</dd>
  8026. </dl>
  8027. <dl>
  8028. <dt>Digivolveeffect</dt>
  8029. <dd>-</dd>
  8030. </dl>
  8031. <dl>
  8032. <dt>Securityeffect</dt>
  8033. <dd>[Security] Play this card without paying its memory cost.</dd>
  8034. </dl>
  8035. <dl>
  8036. <dt>Notes</dt>
  8037. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  8038. </div>
  8039. </div>
  8040. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8041. </div>
  8042. </div>
  8043. </li>
  8044. <liclass="image_lists_itemdatapage-3">
  8045. <aclass="card_img">
  8046. <imgsrc="../images/cardlist/card/EX1-071.png"alt="EX1-071WinRate:60%!"></a>
  8047. <divclass="popup">
  8048. <divclass="card_detailcard_detail_white">
  8049. <divclass="card_detail_inner">
  8050. <ulclass="cardinfo_head">
  8051. <liclass="cardno">EX1-071</li>
  8052. <li>R</li>
  8053. <liclass="cardtype">Option</li>
  8054. </ul>
  8055. <divclass="card_name">WinRate:60%!</div>
  8056. <divclass="cardinfo_top">
  8057. <divclass="card_img">
  8058. <imgsrc="../images/cardlist/card/EX1-071.png"alt="EX1-071WinRate:60%!"></div>
  8059. <divclass="cardinfo_top_body">
  8060. <dl>
  8061. <dt>Form</dt>
  8062. <dd>-</dd>
  8063. </dl>
  8064. <dl>
  8065. <dt>Attribute</dt>
  8066. <dd>-</dd>
  8067. </dl>
  8068. <dl>
  8069. <dt>Type</dt>
  8070. <dd>-</dd>
  8071. </dl>
  8072. <dl>
  8073. <dt>DP</dt>
  8074. <dd>-</dl>
  8075. <dl>
  8076. <dt>PlayCost</dt>
  8077. <dd>2</dd>
  8078. </dl>
  8079. <dl>
  8080. <dt>DigivolveCost1</dt>
  8081. <dd>-</dd>
  8082. </dl>
  8083. <dl>
  8084. <dt>DigivolveCost2</dt>
  8085. <dd>-</dd>
  8086. </dl>
  8087. </div>
  8088. </div>
  8089. <divclass="cardinfo_bottom">
  8090. <dl>
  8091. <dt>Effect</dt>
  8092. <dd>If you have a Tamer in play, you may use this Option card without meeting its color requirements.[Main] The next time one of your Digimon digivolves this turn, you may trash 1 Digimon card in your hand of the same color as the digivolving Digimon to reduce the memory cost of the digivolution by 4.</dd>
  8093. </dl>
  8094. <dl>
  8095. <dt>Digivolveeffect</dt>
  8096. <dd>-</dd>
  8097. </dl>
  8098. <dl>
  8099. <dt>Securityeffect</dt>
  8100. <dd>[Security] Add this card to its owner's hand.</dd>
  8101. </dl>
  8102. <dl>
  8103. <dt>Notes</dt>
  8104. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  8105. </div>
  8106. </div>
  8107. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8108. </div>
  8109. </div>
  8110. </li>
  8111. <liclass="image_lists_itemdatapage-3">
  8112. <aclass="card_img">
  8113. <imgsrc="../images/cardlist/card/EX1-071_P1.png"alt="EX1-071WinRate:60%!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8114. </a>
  8115. <divclass="popup">
  8116. <divclass="card_detailcard_detail_white">
  8117. <divclass="card_detail_inner">
  8118. <ulclass="cardinfo_head">
  8119. <liclass="cardno">EX1-071</li>
  8120. <li>R</li>
  8121. <liclass="cardtype">Option</li>
  8122. <liclass="cardtypecardParallel">AlternativeArt</li>
  8123. </ul>
  8124. <divclass="card_name">WinRate:60%!</div>
  8125. <divclass="cardinfo_top">
  8126. <divclass="card_img">
  8127. <imgsrc="../images/cardlist/card/EX1-071_P1.png"alt="EX1-071WinRate:60%!"></div>
  8128. <divclass="cardinfo_top_body">
  8129. <dl>
  8130. <dt>Form</dt>
  8131. <dd>-</dd>
  8132. </dl>
  8133. <dl>
  8134. <dt>Attribute</dt>
  8135. <dd>-</dd>
  8136. </dl>
  8137. <dl>
  8138. <dt>Type</dt>
  8139. <dd>-</dd>
  8140. </dl>
  8141. <dl>
  8142. <dt>DP</dt>
  8143. <dd>-</dl>
  8144. <dl>
  8145. <dt>PlayCost</dt>
  8146. <dd>2</dd>
  8147. </dl>
  8148. <dl>
  8149. <dt>DigivolveCost1</dt>
  8150. <dd>-</dd>
  8151. </dl>
  8152. <dl>
  8153. <dt>DigivolveCost2</dt>
  8154. <dd>-</dd>
  8155. </dl>
  8156. </div>
  8157. </div>
  8158. <divclass="cardinfo_bottom">
  8159. <dl>
  8160. <dt>Effect</dt>
  8161. <dd>If you have a Tamer in play, you may use this Option card without meeting its color requirements.[Main] The next time one of your Digimon digivolves this turn, you may trash 1 Digimon card in your hand of the same color as the digivolving Digimon to reduce the memory cost of the digivolution by 4.</dd>
  8162. </dl>
  8163. <dl>
  8164. <dt>Digivolveeffect</dt>
  8165. <dd>-</dd>
  8166. </dl>
  8167. <dl>
  8168. <dt>Securityeffect</dt>
  8169. <dd>[Security] Add this card to its owner's hand.</dd>
  8170. </dl>
  8171. <dl>
  8172. <dt>Notes</dt>
  8173. <dd>TAMER’SEVOLUTIONBOX2[PB-06]</dd></dl>
  8174. </div>
  8175. </div>
  8176. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8177. </div>
  8178. </div>
  8179. </li>
  8180. <liclass="image_lists_itemdatapage-3">
  8181. <aclass="card_img">
  8182. <imgsrc="../images/cardlist/card/EX1-072.png"alt="EX1-072EmergencyProgramShutdown!"></a>
  8183. <divclass="popup">
  8184. <divclass="card_detailcard_detail_white">
  8185. <divclass="card_detail_inner">
  8186. <ulclass="cardinfo_head">
  8187. <liclass="cardno">EX1-072</li>
  8188. <li>R</li>
  8189. <liclass="cardtype">Option</li>
  8190. </ul>
  8191. <divclass="card_name">EmergencyProgramShutdown!</div>
  8192. <divclass="cardinfo_top">
  8193. <divclass="card_img">
  8194. <imgsrc="../images/cardlist/card/EX1-072.png"alt="EX1-072EmergencyProgramShutdown!"></div>
  8195. <divclass="cardinfo_top_body">
  8196. <dl>
  8197. <dt>Form</dt>
  8198. <dd>-</dd>
  8199. </dl>
  8200. <dl>
  8201. <dt>Attribute</dt>
  8202. <dd>-</dd>
  8203. </dl>
  8204. <dl>
  8205. <dt>Type</dt>
  8206. <dd>-</dd>
  8207. </dl>
  8208. <dl>
  8209. <dt>DP</dt>
  8210. <dd>-</dl>
  8211. <dl>
  8212. <dt>PlayCost</dt>
  8213. <dd>3</dd>
  8214. </dl>
  8215. <dl>
  8216. <dt>DigivolveCost1</dt>
  8217. <dd>-</dd>
  8218. </dl>
  8219. <dl>
  8220. <dt>DigivolveCost2</dt>
  8221. <dd>-</dd>
  8222. </dl>
  8223. </div>
  8224. </div>
  8225. <divclass="cardinfo_bottom">
  8226. <dl>
  8227. <dt>Effect</dt>
  8228. <dd>[Main] Your opponent can't use Option cards until the end of their next turn.</dd>
  8229. </dl>
  8230. <dl>
  8231. <dt>Digivolveeffect</dt>
  8232. <dd>-</dd>
  8233. </dl>
  8234. <dl>
  8235. <dt>Securityeffect</dt>
  8236. <dd>[Security] Your opponent can't use Option cards this turn. Then, add this card to its owner's hand.</dd>
  8237. </dl>
  8238. <dl>
  8239. <dt>Notes</dt>
  8240. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  8241. </div>
  8242. </div>
  8243. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8244. </div>
  8245. </div>
  8246. </li>
  8247. <liclass="image_lists_itemdatapage-4">
  8248. <aclass="card_img">
  8249. <imgsrc="../images/cardlist/card/EX1-066_P1.png"alt="EX1-066AnalogYouth"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8250. </a>
  8251. <divclass="popup">
  8252. <divclass="card_detailcard_detail_white">
  8253. <divclass="card_detail_inner">
  8254. <ulclass="cardinfo_head">
  8255. <liclass="cardno">EX1-066</li>
  8256. <li>R</li>
  8257. <liclass="cardtype">Tamer</li>
  8258. <liclass="cardtypecardParallel">AlternativeArt</li>
  8259. </ul>
  8260. <divclass="card_name">AnalogYouth</div>
  8261. <divclass="cardinfo_top">
  8262. <divclass="card_img">
  8263. <imgsrc="../images/cardlist/card/EX1-066_P1.png"alt="EX1-066AnalogYouth"></div>
  8264. <divclass="cardinfo_top_body">
  8265. <dl>
  8266. <dt>Form</dt>
  8267. <dd>-</dd>
  8268. </dl>
  8269. <dl>
  8270. <dt>Attribute</dt>
  8271. <dd>-</dd>
  8272. </dl>
  8273. <dl>
  8274. <dt>Type</dt>
  8275. <dd>-</dd>
  8276. </dl>
  8277. <dl>
  8278. <dt>DP</dt>
  8279. <dd>-</dl>
  8280. <dl>
  8281. <dt>PlayCost</dt>
  8282. <dd>2</dd>
  8283. </dl>
  8284. <dl>
  8285. <dt>DigivolveCost1</dt>
  8286. <dd>-</dd>
  8287. </dl>
  8288. <dl>
  8289. <dt>DigivolveCost2</dt>
  8290. <dd>-</dd>
  8291. </dl>
  8292. </div>
  8293. </div>
  8294. <divclass="cardinfo_bottom">
  8295. <dl>
  8296. <dt>Effect</dt>
  8297. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card among them to your hand. Trash the remaining cards. [All Turns] When one of your level 5 or higher Digimon with digivolution cards is deleted, you may suspend this Tamer. If you do, gain 1 memory, then hatch 1 Digi-Egg card to an empty space in your Breeding Area.</dd>
  8298. </dl>
  8299. <dl>
  8300. <dt>Digivolveeffect</dt>
  8301. <dd>-</dd>
  8302. </dl>
  8303. <dl>
  8304. <dt>Securityeffect</dt>
  8305. <dd>[Security] Play this card without paying its memory cost.</dd>
  8306. </dl>
  8307. <dl>
  8308. <dt>Notes</dt>
  8309. <dd><ahref="/products/pack/ex-01.php">&rtri;THEMEBOOSTER-CLASSICCOLLECTION-[EX-01]</a></dd></dl>
  8310. </div>
  8311. </div>
  8312. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8313. </div>
  8314. </div>
  8315. </li>