522901.txt 186 KB

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