522009.txt 179 KB

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