522017.txt 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/RB1-001.png"alt="RB1-001Gurimon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">RB1-001</li>
  9. <li>C</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Gurimon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/RB1-001.png"alt="RB1-001Gurimon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Form</dt>
  20. <dd>In-Training</dd>
  21. </dl>
  22. <dl>
  23. <dt>Attribute</dt>
  24. <dd>-</dd>
  25. </dl>
  26. <dl>
  27. <dt>Type</dt>
  28. <dd>Lesser</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>-</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>-</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>-</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[Your Turn][Once Per Turn] When one of your effects places a digivolution card under this Digimon, <Draw 1>.</dd>
  55. </dl>
  56. <dl>
  57. <dt>Securityeffect</dt>
  58. <dd>-</dd>
  59. </dl>
  60. <dl>
  61. <dt>Notes</dt>
  62. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  63. </div>
  64. </div>
  65. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  66. </div>
  67. </div>
  68. </li>
  69. <liclass="image_lists_itemdatapage-1">
  70. <aclass="card_img">
  71. <imgsrc="../images/cardlist/card/RB1-002.png"alt="RB1-002Puyoyomon"></a>
  72. <divclass="popup">
  73. <divclass="card_detailcard_detail_blue">
  74. <divclass="card_detail_inner">
  75. <ulclass="cardinfo_head">
  76. <liclass="cardno">RB1-002</li>
  77. <li>C</li>
  78. <liclass="cardtype">Digi-Egg</li>
  79. <liclass="cardlv">Lv.2</li>
  80. </ul>
  81. <divclass="card_name">Puyoyomon</div>
  82. <divclass="cardinfo_top">
  83. <divclass="card_img">
  84. <imgsrc="../images/cardlist/card/RB1-002.png"alt="RB1-002Puyoyomon"></div>
  85. <divclass="cardinfo_top_body">
  86. <dl>
  87. <dt>Form</dt>
  88. <dd>In-Training</dd>
  89. </dl>
  90. <dl>
  91. <dt>Attribute</dt>
  92. <dd>-</dd>
  93. </dl>
  94. <dl>
  95. <dt>Type</dt>
  96. <dd>Lesser</dd>
  97. </dl>
  98. <dl>
  99. <dt>DP</dt>
  100. <dd>-</dl>
  101. <dl>
  102. <dt>PlayCost</dt>
  103. <dd>-</dd>
  104. </dl>
  105. <dl>
  106. <dt>DigivolveCost1</dt>
  107. <dd>-</dd>
  108. </dl>
  109. <dl>
  110. <dt>DigivolveCost2</dt>
  111. <dd>-</dd>
  112. </dl>
  113. </div>
  114. </div>
  115. <divclass="cardinfo_bottom">
  116. <dl>
  117. <dt>Effect</dt>
  118. <dd>-</dd>
  119. </dl>
  120. <dl>
  121. <dt>Digivolveeffect</dt>
  122. <dd>[When Attacking][Once Per Turn] By trashing 1 blue card in your hand, trash the bottom digivolution card of 1 of your opponent's Digimon.</dd>
  123. </dl>
  124. <dl>
  125. <dt>Securityeffect</dt>
  126. <dd>-</dd>
  127. </dl>
  128. <dl>
  129. <dt>Notes</dt>
  130. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  131. </div>
  132. </div>
  133. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  134. </div>
  135. </div>
  136. </li>
  137. <liclass="image_lists_itemdatapage-1">
  138. <aclass="card_img">
  139. <imgsrc="../images/cardlist/card/RB1-003.png"alt="RB1-003Bosamon"></a>
  140. <divclass="popup">
  141. <divclass="card_detailcard_detail_green">
  142. <divclass="card_detail_inner">
  143. <ulclass="cardinfo_head">
  144. <liclass="cardno">RB1-003</li>
  145. <li>C</li>
  146. <liclass="cardtype">Digi-Egg</li>
  147. <liclass="cardlv">Lv.2</li>
  148. </ul>
  149. <divclass="card_name">Bosamon</div>
  150. <divclass="cardinfo_top">
  151. <divclass="card_img">
  152. <imgsrc="../images/cardlist/card/RB1-003.png"alt="RB1-003Bosamon"></div>
  153. <divclass="cardinfo_top_body">
  154. <dl>
  155. <dt>Form</dt>
  156. <dd>In-Training</dd>
  157. </dl>
  158. <dl>
  159. <dt>Attribute</dt>
  160. <dd>-</dd>
  161. </dl>
  162. <dl>
  163. <dt>Type</dt>
  164. <dd>Lesser</dd>
  165. </dl>
  166. <dl>
  167. <dt>DP</dt>
  168. <dd>-</dl>
  169. <dl>
  170. <dt>PlayCost</dt>
  171. <dd>-</dd>
  172. </dl>
  173. <dl>
  174. <dt>DigivolveCost1</dt>
  175. <dd>-</dd>
  176. </dl>
  177. <dl>
  178. <dt>DigivolveCost2</dt>
  179. <dd>-</dd>
  180. </dl>
  181. </div>
  182. </div>
  183. <divclass="cardinfo_bottom">
  184. <dl>
  185. <dt>Effect</dt>
  186. <dd>-</dd>
  187. </dl>
  188. <dl>
  189. <dt>Digivolveeffect</dt>
  190. <dd>[Your Turn] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  191. </dl>
  192. <dl>
  193. <dt>Securityeffect</dt>
  194. <dd>-</dd>
  195. </dl>
  196. <dl>
  197. <dt>Notes</dt>
  198. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  199. </div>
  200. </div>
  201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  202. </div>
  203. </div>
  204. </li>
  205. <liclass="image_lists_itemdatapage-1">
  206. <aclass="card_img">
  207. <imgsrc="../images/cardlist/card/RB1-004.png"alt="RB1-004Agumon"></a>
  208. <divclass="popup">
  209. <divclass="card_detailcard_detail_red">
  210. <divclass="card_detail_inner">
  211. <ulclass="cardinfo_head">
  212. <liclass="cardno">RB1-004</li>
  213. <li>R</li>
  214. <liclass="cardtype">Digimon</li>
  215. <liclass="cardlv">Lv.3</li>
  216. </ul>
  217. <divclass="card_name">Agumon</div>
  218. <divclass="cardinfo_top">
  219. <divclass="card_img">
  220. <imgsrc="../images/cardlist/card/RB1-004.png"alt="RB1-004Agumon"></div>
  221. <divclass="cardinfo_top_body">
  222. <dl>
  223. <dt>Form</dt>
  224. <dd>Rookie</dd>
  225. </dl>
  226. <dl>
  227. <dt>Attribute</dt>
  228. <dd>Vaccine</dd>
  229. </dl>
  230. <dl>
  231. <dt>Type</dt>
  232. <dd>Reptile</dd>
  233. </dl>
  234. <dl>
  235. <dt>DP</dt>
  236. <dd>2000</dl>
  237. <dl>
  238. <dt>PlayCost</dt>
  239. <dd>3</dd>
  240. </dl>
  241. <dl>
  242. <dt>DigivolveCost1</dt>
  243. <dd>0fromLv.2</dd>
  244. </dl>
  245. <dl>
  246. <dt>DigivolveCost2</dt>
  247. <dd>-</dd>
  248. </dl>
  249. </div>
  250. </div>
  251. <divclass="cardinfo_bottom">
  252. <dl>
  253. <dt>Effect</dt>
  254. <dd>※Card Number: Also treated as [P-009]. A deck may not have more than 4 total copies of this and [P-009].</dd>
  255. </dl>
  256. <dl>
  257. <dt>Digivolveeffect</dt>
  258. <dd>[Your Turn] While this Digimon has [Greymon] in its name, it gets +2000 DP.</dd>
  259. </dl>
  260. <dl>
  261. <dt>Securityeffect</dt>
  262. <dd>-</dd>
  263. </dl>
  264. <dl>
  265. <dt>Notes</dt>
  266. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  267. </div>
  268. </div>
  269. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  270. </div>
  271. </div>
  272. </li>
  273. <liclass="image_lists_itemdatapage-1">
  274. <aclass="card_img">
  275. <imgsrc="../images/cardlist/card/RB1-005.png"alt="RB1-005Gammamon"></a>
  276. <divclass="popup">
  277. <divclass="card_detailcard_detail_red">
  278. <divclass="card_detail_inner">
  279. <ulclass="cardinfo_head">
  280. <liclass="cardno">RB1-005</li>
  281. <li>U</li>
  282. <liclass="cardtype">Digimon</li>
  283. <liclass="cardlv">Lv.3</li>
  284. </ul>
  285. <divclass="card_name">Gammamon</div>
  286. <divclass="cardinfo_top">
  287. <divclass="card_img">
  288. <imgsrc="../images/cardlist/card/RB1-005.png"alt="RB1-005Gammamon"></div>
  289. <divclass="cardinfo_top_body">
  290. <dl>
  291. <dt>Form</dt>
  292. <dd>Rookie</dd>
  293. </dl>
  294. <dl>
  295. <dt>Attribute</dt>
  296. <dd>Virus</dd>
  297. </dl>
  298. <dl>
  299. <dt>Type</dt>
  300. <dd>Ceratopsian</dd>
  301. </dl>
  302. <dl>
  303. <dt>DP</dt>
  304. <dd>1000</dl>
  305. <dl>
  306. <dt>PlayCost</dt>
  307. <dd>3</dd>
  308. </dl>
  309. <dl>
  310. <dt>DigivolveCost1</dt>
  311. <dd>0fromLv.2</dd>
  312. </dl>
  313. <dl>
  314. <dt>DigivolveCost2</dt>
  315. <dd>-</dd>
  316. </dl>
  317. </div>
  318. </div>
  319. <divclass="cardinfo_bottom">
  320. <dl>
  321. <dt>Effect</dt>
  322. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Gammamon] in its text and 1 [Hiro Amanokawa] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  323. </dl>
  324. <dl>
  325. <dt>Digivolveeffect</dt>
  326. <dd>[Your Turn] While this Digimon has [Gammamon] in its text, it gets +2000 DP.</dd>
  327. </dl>
  328. <dl>
  329. <dt>Securityeffect</dt>
  330. <dd>-</dd>
  331. </dl>
  332. <dl>
  333. <dt>Notes</dt>
  334. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  335. </div>
  336. </div>
  337. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  338. </div>
  339. </div>
  340. </li>
  341. <liclass="image_lists_itemdatapage-1">
  342. <aclass="card_img">
  343. <imgsrc="../images/cardlist/card/RB1-005_P1.png"alt="RB1-005Gammamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  344. </a>
  345. <divclass="popup">
  346. <divclass="card_detailcard_detail_red">
  347. <divclass="card_detail_inner">
  348. <ulclass="cardinfo_head">
  349. <liclass="cardno">RB1-005</li>
  350. <li>U</li>
  351. <liclass="cardtype">Digimon</li>
  352. <liclass="cardlv">Lv.3</li>
  353. <liclass="cardtypecardParallel">AlternativeArt</li>
  354. </ul>
  355. <divclass="card_name">Gammamon</div>
  356. <divclass="cardinfo_top">
  357. <divclass="card_img">
  358. <imgsrc="../images/cardlist/card/RB1-005_P1.png"alt="RB1-005Gammamon"></div>
  359. <divclass="cardinfo_top_body">
  360. <dl>
  361. <dt>Form</dt>
  362. <dd>Rookie</dd>
  363. </dl>
  364. <dl>
  365. <dt>Attribute</dt>
  366. <dd>Virus</dd>
  367. </dl>
  368. <dl>
  369. <dt>Type</dt>
  370. <dd>Ceratopsian</dd>
  371. </dl>
  372. <dl>
  373. <dt>DP</dt>
  374. <dd>1000</dl>
  375. <dl>
  376. <dt>PlayCost</dt>
  377. <dd>3</dd>
  378. </dl>
  379. <dl>
  380. <dt>DigivolveCost1</dt>
  381. <dd>0fromLv.2</dd>
  382. </dl>
  383. <dl>
  384. <dt>DigivolveCost2</dt>
  385. <dd>-</dd>
  386. </dl>
  387. </div>
  388. </div>
  389. <divclass="cardinfo_bottom">
  390. <dl>
  391. <dt>Effect</dt>
  392. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Gammamon] in its text and 1 [Hiro Amanokawa] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  393. </dl>
  394. <dl>
  395. <dt>Digivolveeffect</dt>
  396. <dd>[Your Turn] While this Digimon has [Gammamon] in its text, it gets +2000 DP.</dd>
  397. </dl>
  398. <dl>
  399. <dt>Securityeffect</dt>
  400. <dd>-</dd>
  401. </dl>
  402. <dl>
  403. <dt>Notes</dt>
  404. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  405. </div>
  406. </div>
  407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  408. </div>
  409. </div>
  410. </li>
  411. <liclass="image_lists_itemdatapage-1">
  412. <aclass="card_img">
  413. <imgsrc="../images/cardlist/card/RB1-006.png"alt="RB1-006Gammamon"></a>
  414. <divclass="popup">
  415. <divclass="card_detailcard_detail_red">
  416. <divclass="card_detail_inner">
  417. <ulclass="cardinfo_head">
  418. <liclass="cardno">RB1-006</li>
  419. <li>R</li>
  420. <liclass="cardtype">Digimon</li>
  421. <liclass="cardlv">Lv.3</li>
  422. </ul>
  423. <divclass="card_name">Gammamon</div>
  424. <divclass="cardinfo_top">
  425. <divclass="card_img">
  426. <imgsrc="../images/cardlist/card/RB1-006.png"alt="RB1-006Gammamon"></div>
  427. <divclass="cardinfo_top_body">
  428. <dl>
  429. <dt>Form</dt>
  430. <dd>Rookie</dd>
  431. </dl>
  432. <dl>
  433. <dt>Attribute</dt>
  434. <dd>Virus</dd>
  435. </dl>
  436. <dl>
  437. <dt>Type</dt>
  438. <dd>Ceratopsian</dd>
  439. </dl>
  440. <dl>
  441. <dt>DP</dt>
  442. <dd>4000</dl>
  443. <dl>
  444. <dt>PlayCost</dt>
  445. <dd>4</dd>
  446. </dl>
  447. <dl>
  448. <dt>DigivolveCost1</dt>
  449. <dd>1fromLv.2</dd>
  450. </dl>
  451. <dl>
  452. <dt>DigivolveCost2</dt>
  453. <dd>-</dd>
  454. </dl>
  455. </div>
  456. </div>
  457. <divclass="cardinfo_bottom">
  458. <dl>
  459. <dt>Effect</dt>
  460. <dd>[Your Turn] While you have a red Tamer, this Digimon may also attack your opponent's unsuspended Digimon.<br>※Card Number: Also treated as [P-058]. A deck may not have more than 4 total copies of this and [P-058].</dd>
  461. </dl>
  462. <dl>
  463. <dt>Digivolveeffect</dt>
  464. <dd>-</dd>
  465. </dl>
  466. <dl>
  467. <dt>Securityeffect</dt>
  468. <dd>-</dd>
  469. </dl>
  470. <dl>
  471. <dt>Notes</dt>
  472. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  473. </div>
  474. </div>
  475. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  476. </div>
  477. </div>
  478. </li>
  479. <liclass="image_lists_itemdatapage-1">
  480. <aclass="card_img">
  481. <imgsrc="../images/cardlist/card/RB1-007.png"alt="RB1-007Greymon"></a>
  482. <divclass="popup">
  483. <divclass="card_detailcard_detail_red">
  484. <divclass="card_detail_inner">
  485. <ulclass="cardinfo_head">
  486. <liclass="cardno">RB1-007</li>
  487. <li>R</li>
  488. <liclass="cardtype">Digimon</li>
  489. <liclass="cardlv">Lv.4</li>
  490. </ul>
  491. <divclass="card_name">Greymon</div>
  492. <divclass="cardinfo_top">
  493. <divclass="card_img">
  494. <imgsrc="../images/cardlist/card/RB1-007.png"alt="RB1-007Greymon"></div>
  495. <divclass="cardinfo_top_body">
  496. <dl>
  497. <dt>Form</dt>
  498. <dd>Champion</dd>
  499. </dl>
  500. <dl>
  501. <dt>Attribute</dt>
  502. <dd>Vaccine</dd>
  503. </dl>
  504. <dl>
  505. <dt>Type</dt>
  506. <dd>Dinosaur</dd>
  507. </dl>
  508. <dl>
  509. <dt>DP</dt>
  510. <dd>5000</dl>
  511. <dl>
  512. <dt>PlayCost</dt>
  513. <dd>5</dd>
  514. </dl>
  515. <dl>
  516. <dt>DigivolveCost1</dt>
  517. <dd>2fromLv.3</dd>
  518. </dl>
  519. <dl>
  520. <dt>DigivolveCost2</dt>
  521. <dd>-</dd>
  522. </dl>
  523. </div>
  524. </div>
  525. <divclass="cardinfo_bottom">
  526. <dl>
  527. <dt>Effect</dt>
  528. <dd>[Your Turn] While [Agumon] is in this Digimon's digivolution cards, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)<br>※Card Number: Also treated as [P-010]. A deck may not have more than 4 total copies of this and [P-010].</dd>
  529. </dl>
  530. <dl>
  531. <dt>Digivolveeffect</dt>
  532. <dd>-</dd>
  533. </dl>
  534. <dl>
  535. <dt>Securityeffect</dt>
  536. <dd>-</dd>
  537. </dl>
  538. <dl>
  539. <dt>Notes</dt>
  540. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  541. </div>
  542. </div>
  543. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  544. </div>
  545. </div>
  546. </li>
  547. <liclass="image_lists_itemdatapage-1">
  548. <aclass="card_img">
  549. <imgsrc="../images/cardlist/card/RB1-008.png"alt="RB1-008BetelGammamon"></a>
  550. <divclass="popup">
  551. <divclass="card_detailcard_detail_red">
  552. <divclass="card_detail_inner">
  553. <ulclass="cardinfo_head">
  554. <liclass="cardno">RB1-008</li>
  555. <li>C</li>
  556. <liclass="cardtype">Digimon</li>
  557. <liclass="cardlv">Lv.4</li>
  558. </ul>
  559. <divclass="card_name">BetelGammamon</div>
  560. <divclass="cardinfo_top">
  561. <divclass="card_img">
  562. <imgsrc="../images/cardlist/card/RB1-008.png"alt="RB1-008BetelGammamon"></div>
  563. <divclass="cardinfo_top_body">
  564. <dl>
  565. <dt>Form</dt>
  566. <dd>Champion</dd>
  567. </dl>
  568. <dl>
  569. <dt>Attribute</dt>
  570. <dd>Vaccine</dd>
  571. </dl>
  572. <dl>
  573. <dt>Type</dt>
  574. <dd>Dragonkin</dd>
  575. </dl>
  576. <dl>
  577. <dt>DP</dt>
  578. <dd>6000</dl>
  579. <dl>
  580. <dt>PlayCost</dt>
  581. <dd>6</dd>
  582. </dl>
  583. <dl>
  584. <dt>DigivolveCost1</dt>
  585. <dd>2fromLv.3</dd>
  586. </dl>
  587. <dl>
  588. <dt>DigivolveCost2</dt>
  589. <dd>-</dd>
  590. </dl>
  591. </div>
  592. </div>
  593. <divclass="cardinfo_bottom">
  594. <dl>
  595. <dt>Effect</dt>
  596. <dd>Digivolve: 2 from [Gammamon]<br><Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)<br>[When Digivolving] If you don't have [Hiro Amanokawa], you may play 1 [Hiro Amanokawa] from your hand without paying the cost.</dd>
  597. </dl>
  598. <dl>
  599. <dt>Digivolveeffect</dt>
  600. <dd>-</dd>
  601. </dl>
  602. <dl>
  603. <dt>Securityeffect</dt>
  604. <dd>-</dd>
  605. </dl>
  606. <dl>
  607. <dt>Notes</dt>
  608. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  609. </div>
  610. </div>
  611. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  612. </div>
  613. </div>
  614. </li>
  615. <liclass="image_lists_itemdatapage-1">
  616. <aclass="card_img">
  617. <imgsrc="../images/cardlist/card/RB1-009.png"alt="RB1-009Canoweissmon"></a>
  618. <divclass="popup">
  619. <divclass="card_detailcard_detail_red">
  620. <divclass="card_detail_inner">
  621. <ulclass="cardinfo_head">
  622. <liclass="cardno">RB1-009</li>
  623. <li>U</li>
  624. <liclass="cardtype">Digimon</li>
  625. <liclass="cardlv">Lv.5</li>
  626. </ul>
  627. <divclass="card_name">Canoweissmon</div>
  628. <divclass="cardinfo_top">
  629. <divclass="card_img">
  630. <imgsrc="../images/cardlist/card/RB1-009.png"alt="RB1-009Canoweissmon"></div>
  631. <divclass="cardinfo_top_body">
  632. <dl>
  633. <dt>Form</dt>
  634. <dd>Ultimate</dd>
  635. </dl>
  636. <dl>
  637. <dt>Attribute</dt>
  638. <dd>Vaccine</dd>
  639. </dl>
  640. <dl>
  641. <dt>Type</dt>
  642. <dd>SkyDragon</dd>
  643. </dl>
  644. <dl>
  645. <dt>DP</dt>
  646. <dd>8000</dl>
  647. <dl>
  648. <dt>PlayCost</dt>
  649. <dd>8</dd>
  650. </dl>
  651. <dl>
  652. <dt>DigivolveCost1</dt>
  653. <dd>3fromLv.4</dd>
  654. </dl>
  655. <dl>
  656. <dt>DigivolveCost2</dt>
  657. <dd>-</dd>
  658. </dl>
  659. </div>
  660. </div>
  661. <divclass="cardinfo_bottom">
  662. <dl>
  663. <dt>Effect</dt>
  664. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name<br>One of your [Gammamon] that has a digivolution card with [Gammamon] in its name may digivolve into this card in your hand for a digivolution cost of 3, ignoring digivolution requirements.<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  665. </dl>
  666. <dl>
  667. <dt>Digivolveeffect</dt>
  668. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  669. </dl>
  670. <dl>
  671. <dt>Securityeffect</dt>
  672. <dd>-</dd>
  673. </dl>
  674. <dl>
  675. <dt>Notes</dt>
  676. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  677. </div>
  678. </div>
  679. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  680. </div>
  681. </div>
  682. </li>
  683. <liclass="image_lists_itemdatapage-1">
  684. <aclass="card_img">
  685. <imgsrc="../images/cardlist/card/RB1-010_P1.png"alt="RB1-010Siriusmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  686. </a>
  687. <divclass="popup">
  688. <divclass="card_detailcard_detail_red">
  689. <divclass="card_detail_inner">
  690. <ulclass="cardinfo_head">
  691. <liclass="cardno">RB1-010</li>
  692. <li>SR</li>
  693. <liclass="cardtype">Digimon</li>
  694. <liclass="cardlv">Lv.6</li>
  695. <liclass="cardtypecardParallel">AlternativeArt</li>
  696. </ul>
  697. <divclass="card_name">Siriusmon</div>
  698. <divclass="cardinfo_top">
  699. <divclass="card_img">
  700. <imgsrc="../images/cardlist/card/RB1-010_P1.png"alt="RB1-010Siriusmon"></div>
  701. <divclass="cardinfo_top_body">
  702. <dl>
  703. <dt>Form</dt>
  704. <dd>Mega</dd>
  705. </dl>
  706. <dl>
  707. <dt>Attribute</dt>
  708. <dd>Vaccine</dd>
  709. </dl>
  710. <dl>
  711. <dt>Type</dt>
  712. <dd>LightDragon</dd>
  713. </dl>
  714. <dl>
  715. <dt>DP</dt>
  716. <dd>11000</dl>
  717. <dl>
  718. <dt>PlayCost</dt>
  719. <dd>11</dd>
  720. </dl>
  721. <dl>
  722. <dt>DigivolveCost1</dt>
  723. <dd>3fromLv.5</dd>
  724. </dl>
  725. <dl>
  726. <dt>DigivolveCost2</dt>
  727. <dd>-</dd>
  728. </dl>
  729. </div>
  730. </div>
  731. <divclass="cardinfo_bottom">
  732. <dl>
  733. <dt>Effect</dt>
  734. <dd>Digivolve: 3 from Lv.5 w/[Gammamon] in text<br>[When Digivolving] By placing 1 Digimon card with [Gammamon] in its text from your hand as this Digimon's bottom digivolution card, delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.<br>[Your Turn][Once Per Turn] When an opponent’s Digimon is deleted, you may unsuspend this Digimon.</dd>
  735. </dl>
  736. <dl>
  737. <dt>Digivolveeffect</dt>
  738. <dd>-</dd>
  739. </dl>
  740. <dl>
  741. <dt>Securityeffect</dt>
  742. <dd>-</dd>
  743. </dl>
  744. <dl>
  745. <dt>Notes</dt>
  746. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  747. </div>
  748. </div>
  749. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  750. </div>
  751. </div>
  752. </li>
  753. <liclass="image_lists_itemdatapage-1">
  754. <aclass="card_img">
  755. <imgsrc="../images/cardlist/card/RB1-010_P2.png"alt="RB1-010Siriusmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  756. </a>
  757. <divclass="popup">
  758. <divclass="card_detailcard_detail_red">
  759. <divclass="card_detail_inner">
  760. <ulclass="cardinfo_head">
  761. <liclass="cardno">RB1-010</li>
  762. <li>SR</li>
  763. <liclass="cardtype">Digimon</li>
  764. <liclass="cardlv">Lv.6</li>
  765. <liclass="cardtypecardParallel">AlternativeArt</li>
  766. </ul>
  767. <divclass="card_name">Siriusmon</div>
  768. <divclass="cardinfo_top">
  769. <divclass="card_img">
  770. <imgsrc="../images/cardlist/card/RB1-010_P2.png"alt="RB1-010Siriusmon"></div>
  771. <divclass="cardinfo_top_body">
  772. <dl>
  773. <dt>Form</dt>
  774. <dd>Mega</dd>
  775. </dl>
  776. <dl>
  777. <dt>Attribute</dt>
  778. <dd>Vaccine</dd>
  779. </dl>
  780. <dl>
  781. <dt>Type</dt>
  782. <dd>LightDragon</dd>
  783. </dl>
  784. <dl>
  785. <dt>DP</dt>
  786. <dd>11000</dl>
  787. <dl>
  788. <dt>PlayCost</dt>
  789. <dd>11</dd>
  790. </dl>
  791. <dl>
  792. <dt>DigivolveCost1</dt>
  793. <dd>3fromLv.5</dd>
  794. </dl>
  795. <dl>
  796. <dt>DigivolveCost2</dt>
  797. <dd>-</dd>
  798. </dl>
  799. </div>
  800. </div>
  801. <divclass="cardinfo_bottom">
  802. <dl>
  803. <dt>Effect</dt>
  804. <dd>Digivolve: 3 from Lv.5 w/[Gammamon] in text<br>[When Digivolving] By placing 1 Digimon card with [Gammamon] in its text from your hand as this Digimon's bottom digivolution card, delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.<br>[Your Turn][Once Per Turn] When an opponent’s Digimon is deleted, you may unsuspend this Digimon.</dd>
  805. </dl>
  806. <dl>
  807. <dt>Digivolveeffect</dt>
  808. <dd>-</dd>
  809. </dl>
  810. <dl>
  811. <dt>Securityeffect</dt>
  812. <dd>-</dd>
  813. </dl>
  814. <dl>
  815. <dt>Notes</dt>
  816. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  817. </div>
  818. </div>
  819. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  820. </div>
  821. </div>
  822. </li>
  823. <liclass="image_lists_itemdatapage-1">
  824. <aclass="card_img">
  825. <imgsrc="../images/cardlist/card/RB1-010.png"alt="RB1-010Siriusmon"></a>
  826. <divclass="popup">
  827. <divclass="card_detailcard_detail_red">
  828. <divclass="card_detail_inner">
  829. <ulclass="cardinfo_head">
  830. <liclass="cardno">RB1-010</li>
  831. <li>SR</li>
  832. <liclass="cardtype">Digimon</li>
  833. <liclass="cardlv">Lv.6</li>
  834. </ul>
  835. <divclass="card_name">Siriusmon</div>
  836. <divclass="cardinfo_top">
  837. <divclass="card_img">
  838. <imgsrc="../images/cardlist/card/RB1-010.png"alt="RB1-010Siriusmon"></div>
  839. <divclass="cardinfo_top_body">
  840. <dl>
  841. <dt>Form</dt>
  842. <dd>Mega</dd>
  843. </dl>
  844. <dl>
  845. <dt>Attribute</dt>
  846. <dd>Vaccine</dd>
  847. </dl>
  848. <dl>
  849. <dt>Type</dt>
  850. <dd>LightDragon</dd>
  851. </dl>
  852. <dl>
  853. <dt>DP</dt>
  854. <dd>11000</dl>
  855. <dl>
  856. <dt>PlayCost</dt>
  857. <dd>11</dd>
  858. </dl>
  859. <dl>
  860. <dt>DigivolveCost1</dt>
  861. <dd>3fromLv.5</dd>
  862. </dl>
  863. <dl>
  864. <dt>DigivolveCost2</dt>
  865. <dd>-</dd>
  866. </dl>
  867. </div>
  868. </div>
  869. <divclass="cardinfo_bottom">
  870. <dl>
  871. <dt>Effect</dt>
  872. <dd>Digivolve: 3 from Lv.5 w/[Gammamon] in text<br>[When Digivolving] By placing 1 Digimon card with [Gammamon] in its text from your hand as this Digimon's bottom digivolution card, delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.<br>[Your Turn][Once Per Turn] When an opponent’s Digimon is deleted, you may unsuspend this Digimon.</dd>
  873. </dl>
  874. <dl>
  875. <dt>Digivolveeffect</dt>
  876. <dd>-</dd>
  877. </dl>
  878. <dl>
  879. <dt>Securityeffect</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Notes</dt>
  884. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  885. </div>
  886. </div>
  887. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  888. </div>
  889. </div>
  890. </li>
  891. <liclass="image_lists_itemdatapage-1">
  892. <aclass="card_img">
  893. <imgsrc="../images/cardlist/card/RB1-011.png"alt="RB1-011Jellymon"></a>
  894. <divclass="popup">
  895. <divclass="card_detailcard_detail_blue">
  896. <divclass="card_detail_inner">
  897. <ulclass="cardinfo_head">
  898. <liclass="cardno">RB1-011</li>
  899. <li>U</li>
  900. <liclass="cardtype">Digimon</li>
  901. <liclass="cardlv">Lv.3</li>
  902. </ul>
  903. <divclass="card_name">Jellymon</div>
  904. <divclass="cardinfo_top">
  905. <divclass="card_img">
  906. <imgsrc="../images/cardlist/card/RB1-011.png"alt="RB1-011Jellymon"></div>
  907. <divclass="cardinfo_top_body">
  908. <dl>
  909. <dt>Form</dt>
  910. <dd>Rookie</dd>
  911. </dl>
  912. <dl>
  913. <dt>Attribute</dt>
  914. <dd>Data</dd>
  915. </dl>
  916. <dl>
  917. <dt>Type</dt>
  918. <dd>Mollusk</dd>
  919. </dl>
  920. <dl>
  921. <dt>DP</dt>
  922. <dd>1000</dl>
  923. <dl>
  924. <dt>PlayCost</dt>
  925. <dd>3</dd>
  926. </dl>
  927. <dl>
  928. <dt>DigivolveCost1</dt>
  929. <dd>0fromLv.2</dd>
  930. </dl>
  931. <dl>
  932. <dt>DigivolveCost2</dt>
  933. <dd>-</dd>
  934. </dl>
  935. </div>
  936. </div>
  937. <divclass="cardinfo_bottom">
  938. <dl>
  939. <dt>Effect</dt>
  940. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Jellymon] in its text and 1 [Kiyoshiro Higashimitarai] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  941. </dl>
  942. <dl>
  943. <dt>Digivolveeffect</dt>
  944. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  945. </dl>
  946. <dl>
  947. <dt>Securityeffect</dt>
  948. <dd>-</dd>
  949. </dl>
  950. <dl>
  951. <dt>Notes</dt>
  952. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  953. </div>
  954. </div>
  955. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  956. </div>
  957. </div>
  958. </li>
  959. <liclass="image_lists_itemdatapage-1">
  960. <aclass="card_img">
  961. <imgsrc="../images/cardlist/card/RB1-011_P1.png"alt="RB1-011Jellymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  962. </a>
  963. <divclass="popup">
  964. <divclass="card_detailcard_detail_blue">
  965. <divclass="card_detail_inner">
  966. <ulclass="cardinfo_head">
  967. <liclass="cardno">RB1-011</li>
  968. <li>U</li>
  969. <liclass="cardtype">Digimon</li>
  970. <liclass="cardlv">Lv.3</li>
  971. <liclass="cardtypecardParallel">AlternativeArt</li>
  972. </ul>
  973. <divclass="card_name">Jellymon</div>
  974. <divclass="cardinfo_top">
  975. <divclass="card_img">
  976. <imgsrc="../images/cardlist/card/RB1-011_P1.png"alt="RB1-011Jellymon"></div>
  977. <divclass="cardinfo_top_body">
  978. <dl>
  979. <dt>Form</dt>
  980. <dd>Rookie</dd>
  981. </dl>
  982. <dl>
  983. <dt>Attribute</dt>
  984. <dd>Data</dd>
  985. </dl>
  986. <dl>
  987. <dt>Type</dt>
  988. <dd>Mollusk</dd>
  989. </dl>
  990. <dl>
  991. <dt>DP</dt>
  992. <dd>1000</dl>
  993. <dl>
  994. <dt>PlayCost</dt>
  995. <dd>3</dd>
  996. </dl>
  997. <dl>
  998. <dt>DigivolveCost1</dt>
  999. <dd>0fromLv.2</dd>
  1000. </dl>
  1001. <dl>
  1002. <dt>DigivolveCost2</dt>
  1003. <dd>-</dd>
  1004. </dl>
  1005. </div>
  1006. </div>
  1007. <divclass="cardinfo_bottom">
  1008. <dl>
  1009. <dt>Effect</dt>
  1010. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Jellymon] in its text and 1 [Kiyoshiro Higashimitarai] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  1011. </dl>
  1012. <dl>
  1013. <dt>Digivolveeffect</dt>
  1014. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  1015. </dl>
  1016. <dl>
  1017. <dt>Securityeffect</dt>
  1018. <dd>-</dd>
  1019. </dl>
  1020. <dl>
  1021. <dt>Notes</dt>
  1022. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1023. </div>
  1024. </div>
  1025. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1026. </div>
  1027. </div>
  1028. </li>
  1029. <liclass="image_lists_itemdatapage-1">
  1030. <aclass="card_img">
  1031. <imgsrc="../images/cardlist/card/RB1-012.png"alt="RB1-012KausGammamon"></a>
  1032. <divclass="popup">
  1033. <divclass="card_detailcard_detail_blue">
  1034. <divclass="card_detail_inner">
  1035. <ulclass="cardinfo_head">
  1036. <liclass="cardno">RB1-012</li>
  1037. <li>C</li>
  1038. <liclass="cardtype">Digimon</li>
  1039. <liclass="cardlv">Lv.4</li>
  1040. </ul>
  1041. <divclass="card_name">KausGammamon</div>
  1042. <divclass="cardinfo_top">
  1043. <divclass="card_img">
  1044. <imgsrc="../images/cardlist/card/RB1-012.png"alt="RB1-012KausGammamon"></div>
  1045. <divclass="cardinfo_top_body">
  1046. <dl>
  1047. <dt>Form</dt>
  1048. <dd>Champion</dd>
  1049. </dl>
  1050. <dl>
  1051. <dt>Attribute</dt>
  1052. <dd>Data</dd>
  1053. </dl>
  1054. <dl>
  1055. <dt>Type</dt>
  1056. <dd>Dragonkin</dd>
  1057. </dl>
  1058. <dl>
  1059. <dt>DP</dt>
  1060. <dd>6000</dl>
  1061. <dl>
  1062. <dt>PlayCost</dt>
  1063. <dd>5</dd>
  1064. </dl>
  1065. <dl>
  1066. <dt>DigivolveCost1</dt>
  1067. <dd>2fromLv.3</dd>
  1068. </dl>
  1069. <dl>
  1070. <dt>DigivolveCost2</dt>
  1071. <dd>-</dd>
  1072. </dl>
  1073. </div>
  1074. </div>
  1075. <divclass="cardinfo_bottom">
  1076. <dl>
  1077. <dt>Effect</dt>
  1078. <dd>Digivolve: 2 from [Gammamon]<br><Evade> (When this Digimon would be deleted, you may suspend it to prevent that deletion.)</dd>
  1079. </dl>
  1080. <dl>
  1081. <dt>Digivolveeffect</dt>
  1082. <dd>-</dd>
  1083. </dl>
  1084. <dl>
  1085. <dt>Securityeffect</dt>
  1086. <dd>-</dd>
  1087. </dl>
  1088. <dl>
  1089. <dt>Notes</dt>
  1090. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1091. </div>
  1092. </div>
  1093. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1094. </div>
  1095. </div>
  1096. </li>
  1097. <liclass="image_lists_itemdatapage-1">
  1098. <aclass="card_img">
  1099. <imgsrc="../images/cardlist/card/RB1-013.png"alt="RB1-013TeslaJellymon"></a>
  1100. <divclass="popup">
  1101. <divclass="card_detailcard_detail_blue">
  1102. <divclass="card_detail_inner">
  1103. <ulclass="cardinfo_head">
  1104. <liclass="cardno">RB1-013</li>
  1105. <li>C</li>
  1106. <liclass="cardtype">Digimon</li>
  1107. <liclass="cardlv">Lv.4</li>
  1108. </ul>
  1109. <divclass="card_name">TeslaJellymon</div>
  1110. <divclass="cardinfo_top">
  1111. <divclass="card_img">
  1112. <imgsrc="../images/cardlist/card/RB1-013.png"alt="RB1-013TeslaJellymon"></div>
  1113. <divclass="cardinfo_top_body">
  1114. <dl>
  1115. <dt>Form</dt>
  1116. <dd>Champion</dd>
  1117. </dl>
  1118. <dl>
  1119. <dt>Attribute</dt>
  1120. <dd>Data</dd>
  1121. </dl>
  1122. <dl>
  1123. <dt>Type</dt>
  1124. <dd>Mollusk</dd>
  1125. </dl>
  1126. <dl>
  1127. <dt>DP</dt>
  1128. <dd>5000</dl>
  1129. <dl>
  1130. <dt>PlayCost</dt>
  1131. <dd>5</dd>
  1132. </dl>
  1133. <dl>
  1134. <dt>DigivolveCost1</dt>
  1135. <dd>2fromLv.3</dd>
  1136. </dl>
  1137. <dl>
  1138. <dt>DigivolveCost2</dt>
  1139. <dd>-</dd>
  1140. </dl>
  1141. </div>
  1142. </div>
  1143. <divclass="cardinfo_bottom">
  1144. <dl>
  1145. <dt>Effect</dt>
  1146. <dd>[When Digivolving] If you don't have [Kiyoshiro Higashimitarai], you may play 1 [Kiyoshiro Higashimitarai] from your hand without paying the cost.</dd>
  1147. </dl>
  1148. <dl>
  1149. <dt>Digivolveeffect</dt>
  1150. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  1151. </dl>
  1152. <dl>
  1153. <dt>Securityeffect</dt>
  1154. <dd>-</dd>
  1155. </dl>
  1156. <dl>
  1157. <dt>Notes</dt>
  1158. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1159. </div>
  1160. </div>
  1161. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1162. </div>
  1163. </div>
  1164. </li>
  1165. <liclass="image_lists_itemdatapage-1">
  1166. <aclass="card_img">
  1167. <imgsrc="../images/cardlist/card/RB1-014.png"alt="RB1-014Thetismon"></a>
  1168. <divclass="popup">
  1169. <divclass="card_detailcard_detail_blue">
  1170. <divclass="card_detail_inner">
  1171. <ulclass="cardinfo_head">
  1172. <liclass="cardno">RB1-014</li>
  1173. <li>U</li>
  1174. <liclass="cardtype">Digimon</li>
  1175. <liclass="cardlv">Lv.5</li>
  1176. </ul>
  1177. <divclass="card_name">Thetismon</div>
  1178. <divclass="cardinfo_top">
  1179. <divclass="card_img">
  1180. <imgsrc="../images/cardlist/card/RB1-014.png"alt="RB1-014Thetismon"></div>
  1181. <divclass="cardinfo_top_body">
  1182. <dl>
  1183. <dt>Form</dt>
  1184. <dd>Ultimate</dd>
  1185. </dl>
  1186. <dl>
  1187. <dt>Attribute</dt>
  1188. <dd>Data</dd>
  1189. </dl>
  1190. <dl>
  1191. <dt>Type</dt>
  1192. <dd>Aquabeast</dd>
  1193. </dl>
  1194. <dl>
  1195. <dt>DP</dt>
  1196. <dd>7000</dl>
  1197. <dl>
  1198. <dt>PlayCost</dt>
  1199. <dd>7</dd>
  1200. </dl>
  1201. <dl>
  1202. <dt>DigivolveCost1</dt>
  1203. <dd>3fromLv.4</dd>
  1204. </dl>
  1205. <dl>
  1206. <dt>DigivolveCost2</dt>
  1207. <dd>-</dd>
  1208. </dl>
  1209. </div>
  1210. </div>
  1211. <divclass="cardinfo_bottom">
  1212. <dl>
  1213. <dt>Effect</dt>
  1214. <dd>[When Digivolving] You may trash up to 2 blue cards in your hand. For each one, you may trash any 1 card under your opponent's Digimon or Tamers. Then, until the end of your opponent's turn, 1 of their Digimon or Tamers without cards under it can't suspend.</dd>
  1215. </dl>
  1216. <dl>
  1217. <dt>Digivolveeffect</dt>
  1218. <dd>[End of Attack][Once Per Turn] By returning 3 cards with [Jellymon] in their texts from your trash to the bottom of the deck in any order, unsuspend this Digimon.</dd>
  1219. </dl>
  1220. <dl>
  1221. <dt>Securityeffect</dt>
  1222. <dd>-</dd>
  1223. </dl>
  1224. <dl>
  1225. <dt>Notes</dt>
  1226. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1227. </div>
  1228. </div>
  1229. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1230. </div>
  1231. </div>
  1232. </li>
  1233. <liclass="image_lists_itemdatapage-1">
  1234. <aclass="card_img">
  1235. <imgsrc="../images/cardlist/card/RB1-015.png"alt="RB1-015Fumamon"></a>
  1236. <divclass="popup">
  1237. <divclass="card_detailcard_detail_blue">
  1238. <divclass="card_detail_inner">
  1239. <ulclass="cardinfo_head">
  1240. <liclass="cardno">RB1-015</li>
  1241. <li>R</li>
  1242. <liclass="cardtype">Digimon</li>
  1243. <liclass="cardlv">Lv.5</li>
  1244. </ul>
  1245. <divclass="card_name">Fumamon</div>
  1246. <divclass="cardinfo_top">
  1247. <divclass="card_img">
  1248. <imgsrc="../images/cardlist/card/RB1-015.png"alt="RB1-015Fumamon"></div>
  1249. <divclass="cardinfo_top_body">
  1250. <dl>
  1251. <dt>Form</dt>
  1252. <dd>Ultimate</dd>
  1253. </dl>
  1254. <dl>
  1255. <dt>Attribute</dt>
  1256. <dd>Data</dd>
  1257. </dl>
  1258. <dl>
  1259. <dt>Type</dt>
  1260. <dd>Cyborg</dd>
  1261. </dl>
  1262. <dl>
  1263. <dt>DP</dt>
  1264. <dd>7000</dl>
  1265. <dl>
  1266. <dt>PlayCost</dt>
  1267. <dd>7</dd>
  1268. </dl>
  1269. <dl>
  1270. <dt>DigivolveCost1</dt>
  1271. <dd>3fromLv.4</dd>
  1272. </dl>
  1273. <dl>
  1274. <dt>DigivolveCost2</dt>
  1275. <dd>-</dd>
  1276. </dl>
  1277. </div>
  1278. </div>
  1279. <divclass="cardinfo_bottom">
  1280. <dl>
  1281. <dt>Effect</dt>
  1282. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name<br>[When Digivolving] Trash the top 3 digivolution cards of 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP. Then, 1 of your opponent's Digimon with no digivolution cards can't attack until the end of their turn.<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  1283. </dl>
  1284. <dl>
  1285. <dt>Digivolveeffect</dt>
  1286. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  1287. </dl>
  1288. <dl>
  1289. <dt>Securityeffect</dt>
  1290. <dd>-</dd>
  1291. </dl>
  1292. <dl>
  1293. <dt>Notes</dt>
  1294. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1295. </div>
  1296. </div>
  1297. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1298. </div>
  1299. </div>
  1300. </li>
  1301. <liclass="image_lists_itemdatapage-1">
  1302. <aclass="card_img">
  1303. <imgsrc="../images/cardlist/card/RB1-016.png"alt="RB1-016Amphimon"></a>
  1304. <divclass="popup">
  1305. <divclass="card_detailcard_detail_blue">
  1306. <divclass="card_detail_inner">
  1307. <ulclass="cardinfo_head">
  1308. <liclass="cardno">RB1-016</li>
  1309. <li>SR</li>
  1310. <liclass="cardtype">Digimon</li>
  1311. <liclass="cardlv">Lv.6</li>
  1312. </ul>
  1313. <divclass="card_name">Amphimon</div>
  1314. <divclass="cardinfo_top">
  1315. <divclass="card_img">
  1316. <imgsrc="../images/cardlist/card/RB1-016.png"alt="RB1-016Amphimon"></div>
  1317. <divclass="cardinfo_top_body">
  1318. <dl>
  1319. <dt>Form</dt>
  1320. <dd>Mega</dd>
  1321. </dl>
  1322. <dl>
  1323. <dt>Attribute</dt>
  1324. <dd>Data</dd>
  1325. </dl>
  1326. <dl>
  1327. <dt>Type</dt>
  1328. <dd>Cyborg</dd>
  1329. </dl>
  1330. <dl>
  1331. <dt>DP</dt>
  1332. <dd>12000</dl>
  1333. <dl>
  1334. <dt>PlayCost</dt>
  1335. <dd>12</dd>
  1336. </dl>
  1337. <dl>
  1338. <dt>DigivolveCost1</dt>
  1339. <dd>4fromLv.5</dd>
  1340. </dl>
  1341. <dl>
  1342. <dt>DigivolveCost2</dt>
  1343. <dd>-</dd>
  1344. </dl>
  1345. </div>
  1346. </div>
  1347. <divclass="cardinfo_bottom">
  1348. <dl>
  1349. <dt>Effect</dt>
  1350. <dd>[When Digivolving][When Attacking] You may trash up to 2 blue cards in your hand. For each one, trash any 1 card under your opponent’s Digimon or Tamers. Then, you may return 1 of your opponent’s Digimon with no digivolution cards to the bottom of the deck.<br>[All Turns][Once Per Turn] When one of your blue Digimon would be deleted, by returning 3 cards with [Jellymon] in their texts from your trash to the bottom of the deck in any order, prevent its deletion.</dd>
  1351. </dl>
  1352. <dl>
  1353. <dt>Digivolveeffect</dt>
  1354. <dd>-</dd>
  1355. </dl>
  1356. <dl>
  1357. <dt>Securityeffect</dt>
  1358. <dd>-</dd>
  1359. </dl>
  1360. <dl>
  1361. <dt>Notes</dt>
  1362. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1363. </div>
  1364. </div>
  1365. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1366. </div>
  1367. </div>
  1368. </li>
  1369. <liclass="image_lists_itemdatapage-1">
  1370. <aclass="card_img">
  1371. <imgsrc="../images/cardlist/card/RB1-016_P1.png"alt="RB1-016Amphimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1372. </a>
  1373. <divclass="popup">
  1374. <divclass="card_detailcard_detail_blue">
  1375. <divclass="card_detail_inner">
  1376. <ulclass="cardinfo_head">
  1377. <liclass="cardno">RB1-016</li>
  1378. <li>SR</li>
  1379. <liclass="cardtype">Digimon</li>
  1380. <liclass="cardlv">Lv.6</li>
  1381. <liclass="cardtypecardParallel">AlternativeArt</li>
  1382. </ul>
  1383. <divclass="card_name">Amphimon</div>
  1384. <divclass="cardinfo_top">
  1385. <divclass="card_img">
  1386. <imgsrc="../images/cardlist/card/RB1-016_P1.png"alt="RB1-016Amphimon"></div>
  1387. <divclass="cardinfo_top_body">
  1388. <dl>
  1389. <dt>Form</dt>
  1390. <dd>Mega</dd>
  1391. </dl>
  1392. <dl>
  1393. <dt>Attribute</dt>
  1394. <dd>Data</dd>
  1395. </dl>
  1396. <dl>
  1397. <dt>Type</dt>
  1398. <dd>Cyborg</dd>
  1399. </dl>
  1400. <dl>
  1401. <dt>DP</dt>
  1402. <dd>12000</dl>
  1403. <dl>
  1404. <dt>PlayCost</dt>
  1405. <dd>12</dd>
  1406. </dl>
  1407. <dl>
  1408. <dt>DigivolveCost1</dt>
  1409. <dd>4fromLv.5</dd>
  1410. </dl>
  1411. <dl>
  1412. <dt>DigivolveCost2</dt>
  1413. <dd>-</dd>
  1414. </dl>
  1415. </div>
  1416. </div>
  1417. <divclass="cardinfo_bottom">
  1418. <dl>
  1419. <dt>Effect</dt>
  1420. <dd>[When Digivolving][When Attacking] You may trash up to 2 blue cards in your hand. For each one, trash any 1 card under your opponent’s Digimon or Tamers. Then, you may return 1 of your opponent’s Digimon with no digivolution cards to the bottom of the deck.<br>[All Turns][Once Per Turn] When one of your blue Digimon would be deleted, by returning 3 cards with [Jellymon] in their texts from your trash to the bottom of the deck in any order, prevent its deletion.</dd>
  1421. </dl>
  1422. <dl>
  1423. <dt>Digivolveeffect</dt>
  1424. <dd>-</dd>
  1425. </dl>
  1426. <dl>
  1427. <dt>Securityeffect</dt>
  1428. <dd>-</dd>
  1429. </dl>
  1430. <dl>
  1431. <dt>Notes</dt>
  1432. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1433. </div>
  1434. </div>
  1435. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1436. </div>
  1437. </div>
  1438. </li>
  1439. <liclass="image_lists_itemdatapage-1">
  1440. <aclass="card_img">
  1441. <imgsrc="../images/cardlist/card/RB1-017.png"alt="RB1-017Numemon"></a>
  1442. <divclass="popup">
  1443. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  1444. <divclass="card_detail_inner">
  1445. <ulclass="cardinfo_head">
  1446. <liclass="cardno">RB1-017</li>
  1447. <li>C</li>
  1448. <liclass="cardtype">Digimon</li>
  1449. <liclass="cardlv">Lv.4</li>
  1450. </ul>
  1451. <divclass="card_name">Numemon</div>
  1452. <divclass="cardinfo_top">
  1453. <divclass="card_img">
  1454. <imgsrc="../images/cardlist/card/RB1-017.png"alt="RB1-017Numemon"></div>
  1455. <divclass="cardinfo_top_body">
  1456. <dl>
  1457. <dt>Form</dt>
  1458. <dd>Champion</dd>
  1459. </dl>
  1460. <dl>
  1461. <dt>Attribute</dt>
  1462. <dd>Virus</dd>
  1463. </dl>
  1464. <dl>
  1465. <dt>Type</dt>
  1466. <dd>Mollusk</dd>
  1467. </dl>
  1468. <dl>
  1469. <dt>DP</dt>
  1470. <dd>1000</dl>
  1471. <dl>
  1472. <dt>PlayCost</dt>
  1473. <dd>3</dd>
  1474. </dl>
  1475. <dl>
  1476. <dt>DigivolveCost1</dt>
  1477. <dd>2fromLv.3</dd>
  1478. </dl>
  1479. <dl>
  1480. <dt>DigivolveCost2</dt>
  1481. <dd>2fromLv.3</dd>
  1482. </dl>
  1483. </div>
  1484. </div>
  1485. <divclass="cardinfo_bottom">
  1486. <dl>
  1487. <dt>Effect</dt>
  1488. <dd>[On Deletion] Reveal the top 3 cards of your deck. Add 1 card with [Monzaemon] in its name and 1 card with [Numemon] in its name among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  1489. </dl>
  1490. <dl>
  1491. <dt>Digivolveeffect</dt>
  1492. <dd>[Opponent's Turn] While this Digimon has [Monzaemon] or [Numemon] in its name, it gains <Blocker>.</dd>
  1493. </dl>
  1494. <dl>
  1495. <dt>Securityeffect</dt>
  1496. <dd>-</dd>
  1497. </dl>
  1498. <dl>
  1499. <dt>Notes</dt>
  1500. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1501. </div>
  1502. </div>
  1503. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1504. </div>
  1505. </div>
  1506. </li>
  1507. <liclass="image_lists_itemdatapage-1">
  1508. <aclass="card_img">
  1509. <imgsrc="../images/cardlist/card/RB1-018.png"alt="RB1-018Monzaemon"></a>
  1510. <divclass="popup">
  1511. <divclass="card_detailcard_detail_yellow">
  1512. <divclass="card_detail_inner">
  1513. <ulclass="cardinfo_head">
  1514. <liclass="cardno">RB1-018</li>
  1515. <li>R</li>
  1516. <liclass="cardtype">Digimon</li>
  1517. <liclass="cardlv">Lv.5</li>
  1518. </ul>
  1519. <divclass="card_name">Monzaemon</div>
  1520. <divclass="cardinfo_top">
  1521. <divclass="card_img">
  1522. <imgsrc="../images/cardlist/card/RB1-018.png"alt="RB1-018Monzaemon"></div>
  1523. <divclass="cardinfo_top_body">
  1524. <dl>
  1525. <dt>Form</dt>
  1526. <dd>Ultimate</dd>
  1527. </dl>
  1528. <dl>
  1529. <dt>Attribute</dt>
  1530. <dd>Vaccine</dd>
  1531. </dl>
  1532. <dl>
  1533. <dt>Type</dt>
  1534. <dd>Puppet</dd>
  1535. </dl>
  1536. <dl>
  1537. <dt>DP</dt>
  1538. <dd>7000</dl>
  1539. <dl>
  1540. <dt>PlayCost</dt>
  1541. <dd>7</dd>
  1542. </dl>
  1543. <dl>
  1544. <dt>DigivolveCost1</dt>
  1545. <dd>4fromLv.4</dd>
  1546. </dl>
  1547. <dl>
  1548. <dt>DigivolveCost2</dt>
  1549. <dd>-</dd>
  1550. </dl>
  1551. </div>
  1552. </div>
  1553. <divclass="cardinfo_bottom">
  1554. <dl>
  1555. <dt>Effect</dt>
  1556. <dd>Digivolve: 3 from Lv.4 w/[Numemon] in name<br>[On Play] By placing 1 Digimon card with [Numemon] in its name from your trash as this Digimon's bottom digivolution card, gain 2 memory.<br>[On Play][When Digivolving] on] 1 of your opponent’s Digimon gets -3000 DP and gains <Security Attack -1> until the end of their turn.</dd>
  1557. </dl>
  1558. <dl>
  1559. <dt>Digivolveeffect</dt>
  1560. <dd>[Your Turn] While this Digimon has [Monzaemon] or [Numemon] in its name, it gains <Security Attack +1>.</dd>
  1561. </dl>
  1562. <dl>
  1563. <dt>Securityeffect</dt>
  1564. <dd>-</dd>
  1565. </dl>
  1566. <dl>
  1567. <dt>Notes</dt>
  1568. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1569. </div>
  1570. </div>
  1571. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1572. </div>
  1573. </div>
  1574. </li>
  1575. <liclass="image_lists_itemdatapage-1">
  1576. <aclass="card_img">
  1577. <imgsrc="../images/cardlist/card/RB1-019.png"alt="RB1-019ShinMonzaemon"></a>
  1578. <divclass="popup">
  1579. <divclass="card_detailcard_detail_yellow">
  1580. <divclass="card_detail_inner">
  1581. <ulclass="cardinfo_head">
  1582. <liclass="cardno">RB1-019</li>
  1583. <li>SR</li>
  1584. <liclass="cardtype">Digimon</li>
  1585. <liclass="cardlv">Lv.6</li>
  1586. </ul>
  1587. <divclass="card_name">ShinMonzaemon</div>
  1588. <divclass="cardinfo_top">
  1589. <divclass="card_img">
  1590. <imgsrc="../images/cardlist/card/RB1-019.png"alt="RB1-019ShinMonzaemon"></div>
  1591. <divclass="cardinfo_top_body">
  1592. <dl>
  1593. <dt>Form</dt>
  1594. <dd>Mega</dd>
  1595. </dl>
  1596. <dl>
  1597. <dt>Attribute</dt>
  1598. <dd>Vaccine</dd>
  1599. </dl>
  1600. <dl>
  1601. <dt>Type</dt>
  1602. <dd>Puppet</dd>
  1603. </dl>
  1604. <dl>
  1605. <dt>DP</dt>
  1606. <dd>13000</dl>
  1607. <dl>
  1608. <dt>PlayCost</dt>
  1609. <dd>13</dd>
  1610. </dl>
  1611. <dl>
  1612. <dt>DigivolveCost1</dt>
  1613. <dd>5fromLv.5</dd>
  1614. </dl>
  1615. <dl>
  1616. <dt>DigivolveCost2</dt>
  1617. <dd>-</dd>
  1618. </dl>
  1619. </div>
  1620. </div>
  1621. <divclass="cardinfo_bottom">
  1622. <dl>
  1623. <dt>Effect</dt>
  1624. <dd>Digivolve: 4 from Lv.5 w/[Monzaemon] or [Numemon] in name<br>[When Digivolving] Place all level 3 Digimon face down on top of their owners' security stacks in any order. Then, all of your opponent’s level 4 or higher Digimon get -3000 DP and gain <Security Attack -1> until the end of their turn. <br>[When Attacking] By trashing 1 card with [Numemon] in its name in this Digimon's digivolution cards, place 1 of your opponent’s Digimon face down at the bottom of their security stack.</dd>
  1625. </dl>
  1626. <dl>
  1627. <dt>Digivolveeffect</dt>
  1628. <dd>-</dd>
  1629. </dl>
  1630. <dl>
  1631. <dt>Securityeffect</dt>
  1632. <dd>-</dd>
  1633. </dl>
  1634. <dl>
  1635. <dt>Notes</dt>
  1636. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1637. </div>
  1638. </div>
  1639. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1640. </div>
  1641. </div>
  1642. </li>
  1643. <liclass="image_lists_itemdatapage-1">
  1644. <aclass="card_img">
  1645. <imgsrc="../images/cardlist/card/RB1-019_P1.png"alt="RB1-019ShinMonzaemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  1646. </a>
  1647. <divclass="popup">
  1648. <divclass="card_detailcard_detail_yellow">
  1649. <divclass="card_detail_inner">
  1650. <ulclass="cardinfo_head">
  1651. <liclass="cardno">RB1-019</li>
  1652. <li>SR</li>
  1653. <liclass="cardtype">Digimon</li>
  1654. <liclass="cardlv">Lv.6</li>
  1655. <liclass="cardtypecardParallel">AlternativeArt</li>
  1656. </ul>
  1657. <divclass="card_name">ShinMonzaemon</div>
  1658. <divclass="cardinfo_top">
  1659. <divclass="card_img">
  1660. <imgsrc="../images/cardlist/card/RB1-019_P1.png"alt="RB1-019ShinMonzaemon"></div>
  1661. <divclass="cardinfo_top_body">
  1662. <dl>
  1663. <dt>Form</dt>
  1664. <dd>Mega</dd>
  1665. </dl>
  1666. <dl>
  1667. <dt>Attribute</dt>
  1668. <dd>Vaccine</dd>
  1669. </dl>
  1670. <dl>
  1671. <dt>Type</dt>
  1672. <dd>Puppet</dd>
  1673. </dl>
  1674. <dl>
  1675. <dt>DP</dt>
  1676. <dd>13000</dl>
  1677. <dl>
  1678. <dt>PlayCost</dt>
  1679. <dd>13</dd>
  1680. </dl>
  1681. <dl>
  1682. <dt>DigivolveCost1</dt>
  1683. <dd>5fromLv.5</dd>
  1684. </dl>
  1685. <dl>
  1686. <dt>DigivolveCost2</dt>
  1687. <dd>-</dd>
  1688. </dl>
  1689. </div>
  1690. </div>
  1691. <divclass="cardinfo_bottom">
  1692. <dl>
  1693. <dt>Effect</dt>
  1694. <dd>Digivolve: 4 from Lv.5 w/[Monzaemon] or [Numemon] in name<br>[When Digivolving] Place all level 3 Digimon face down on top of their owners' security stacks in any order. Then, all of your opponent’s level 4 or higher Digimon get -3000 DP and gain <Security Attack -1> until the end of their turn. <br>[When Attacking] By trashing 1 card with [Numemon] in its name in this Digimon's digivolution cards, place 1 of your opponent’s Digimon face down at the bottom of their security stack.</dd>
  1695. </dl>
  1696. <dl>
  1697. <dt>Digivolveeffect</dt>
  1698. <dd>-</dd>
  1699. </dl>
  1700. <dl>
  1701. <dt>Securityeffect</dt>
  1702. <dd>-</dd>
  1703. </dl>
  1704. <dl>
  1705. <dt>Notes</dt>
  1706. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1707. </div>
  1708. </div>
  1709. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1710. </div>
  1711. </div>
  1712. </li>
  1713. <liclass="image_lists_itemdatapage-1">
  1714. <aclass="card_img">
  1715. <imgsrc="../images/cardlist/card/RB1-020.png"alt="RB1-020Angoramon"></a>
  1716. <divclass="popup">
  1717. <divclass="card_detailcard_detail_green">
  1718. <divclass="card_detail_inner">
  1719. <ulclass="cardinfo_head">
  1720. <liclass="cardno">RB1-020</li>
  1721. <li>U</li>
  1722. <liclass="cardtype">Digimon</li>
  1723. <liclass="cardlv">Lv.3</li>
  1724. </ul>
  1725. <divclass="card_name">Angoramon</div>
  1726. <divclass="cardinfo_top">
  1727. <divclass="card_img">
  1728. <imgsrc="../images/cardlist/card/RB1-020.png"alt="RB1-020Angoramon"></div>
  1729. <divclass="cardinfo_top_body">
  1730. <dl>
  1731. <dt>Form</dt>
  1732. <dd>Rookie</dd>
  1733. </dl>
  1734. <dl>
  1735. <dt>Attribute</dt>
  1736. <dd>Vaccine</dd>
  1737. </dl>
  1738. <dl>
  1739. <dt>Type</dt>
  1740. <dd>Beast</dd>
  1741. </dl>
  1742. <dl>
  1743. <dt>DP</dt>
  1744. <dd>1000</dl>
  1745. <dl>
  1746. <dt>PlayCost</dt>
  1747. <dd>3</dd>
  1748. </dl>
  1749. <dl>
  1750. <dt>DigivolveCost1</dt>
  1751. <dd>0fromLv.2</dd>
  1752. </dl>
  1753. <dl>
  1754. <dt>DigivolveCost2</dt>
  1755. <dd>-</dd>
  1756. </dl>
  1757. </div>
  1758. </div>
  1759. <divclass="cardinfo_bottom">
  1760. <dl>
  1761. <dt>Effect</dt>
  1762. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Angoramon] in its text and 1 [Ruli Tsukiyono] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  1763. </dl>
  1764. <dl>
  1765. <dt>Digivolveeffect</dt>
  1766. <dd>[All Turns] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  1767. </dl>
  1768. <dl>
  1769. <dt>Securityeffect</dt>
  1770. <dd>-</dd>
  1771. </dl>
  1772. <dl>
  1773. <dt>Notes</dt>
  1774. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1775. </div>
  1776. </div>
  1777. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1778. </div>
  1779. </div>
  1780. </li>
  1781. <liclass="image_lists_itemdatapage-1">
  1782. <aclass="card_img">
  1783. <imgsrc="../images/cardlist/card/RB1-020_P1.png"alt="RB1-020Angoramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  1784. </a>
  1785. <divclass="popup">
  1786. <divclass="card_detailcard_detail_green">
  1787. <divclass="card_detail_inner">
  1788. <ulclass="cardinfo_head">
  1789. <liclass="cardno">RB1-020</li>
  1790. <li>U</li>
  1791. <liclass="cardtype">Digimon</li>
  1792. <liclass="cardlv">Lv.3</li>
  1793. <liclass="cardtypecardParallel">AlternativeArt</li>
  1794. </ul>
  1795. <divclass="card_name">Angoramon</div>
  1796. <divclass="cardinfo_top">
  1797. <divclass="card_img">
  1798. <imgsrc="../images/cardlist/card/RB1-020_P1.png"alt="RB1-020Angoramon"></div>
  1799. <divclass="cardinfo_top_body">
  1800. <dl>
  1801. <dt>Form</dt>
  1802. <dd>Rookie</dd>
  1803. </dl>
  1804. <dl>
  1805. <dt>Attribute</dt>
  1806. <dd>Vaccine</dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>Type</dt>
  1810. <dd>Beast</dd>
  1811. </dl>
  1812. <dl>
  1813. <dt>DP</dt>
  1814. <dd>1000</dl>
  1815. <dl>
  1816. <dt>PlayCost</dt>
  1817. <dd>3</dd>
  1818. </dl>
  1819. <dl>
  1820. <dt>DigivolveCost1</dt>
  1821. <dd>0fromLv.2</dd>
  1822. </dl>
  1823. <dl>
  1824. <dt>DigivolveCost2</dt>
  1825. <dd>-</dd>
  1826. </dl>
  1827. </div>
  1828. </div>
  1829. <divclass="cardinfo_bottom">
  1830. <dl>
  1831. <dt>Effect</dt>
  1832. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Angoramon] in its text and 1 [Ruli Tsukiyono] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  1833. </dl>
  1834. <dl>
  1835. <dt>Digivolveeffect</dt>
  1836. <dd>[All Turns] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  1837. </dl>
  1838. <dl>
  1839. <dt>Securityeffect</dt>
  1840. <dd>-</dd>
  1841. </dl>
  1842. <dl>
  1843. <dt>Notes</dt>
  1844. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1845. </div>
  1846. </div>
  1847. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1848. </div>
  1849. </div>
  1850. </li>
  1851. <liclass="image_lists_itemdatapage-1">
  1852. <aclass="card_img">
  1853. <imgsrc="../images/cardlist/card/RB1-021.png"alt="RB1-021WezenGammamon"></a>
  1854. <divclass="popup">
  1855. <divclass="card_detailcard_detail_green">
  1856. <divclass="card_detail_inner">
  1857. <ulclass="cardinfo_head">
  1858. <liclass="cardno">RB1-021</li>
  1859. <li>C</li>
  1860. <liclass="cardtype">Digimon</li>
  1861. <liclass="cardlv">Lv.4</li>
  1862. </ul>
  1863. <divclass="card_name">WezenGammamon</div>
  1864. <divclass="cardinfo_top">
  1865. <divclass="card_img">
  1866. <imgsrc="../images/cardlist/card/RB1-021.png"alt="RB1-021WezenGammamon"></div>
  1867. <divclass="cardinfo_top_body">
  1868. <dl>
  1869. <dt>Form</dt>
  1870. <dd>Champion</dd>
  1871. </dl>
  1872. <dl>
  1873. <dt>Attribute</dt>
  1874. <dd>Data</dd>
  1875. </dl>
  1876. <dl>
  1877. <dt>Type</dt>
  1878. <dd>Ceratopsian</dd>
  1879. </dl>
  1880. <dl>
  1881. <dt>DP</dt>
  1882. <dd>6000</dl>
  1883. <dl>
  1884. <dt>PlayCost</dt>
  1885. <dd>5</dd>
  1886. </dl>
  1887. <dl>
  1888. <dt>DigivolveCost1</dt>
  1889. <dd>2fromLv.3</dd>
  1890. </dl>
  1891. <dl>
  1892. <dt>DigivolveCost2</dt>
  1893. <dd>-</dd>
  1894. </dl>
  1895. </div>
  1896. </div>
  1897. <divclass="cardinfo_bottom">
  1898. <dl>
  1899. <dt>Effect</dt>
  1900. <dd>Digivolve: 2 from [Gammamon]<br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  1901. </dl>
  1902. <dl>
  1903. <dt>Digivolveeffect</dt>
  1904. <dd>-</dd>
  1905. </dl>
  1906. <dl>
  1907. <dt>Securityeffect</dt>
  1908. <dd>-</dd>
  1909. </dl>
  1910. <dl>
  1911. <dt>Notes</dt>
  1912. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1913. </div>
  1914. </div>
  1915. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1916. </div>
  1917. </div>
  1918. </li>
  1919. <liclass="image_lists_itemdatapage-1">
  1920. <aclass="card_img">
  1921. <imgsrc="../images/cardlist/card/RB1-022.png"alt="RB1-022SymbareAngoramon"></a>
  1922. <divclass="popup">
  1923. <divclass="card_detailcard_detail_green">
  1924. <divclass="card_detail_inner">
  1925. <ulclass="cardinfo_head">
  1926. <liclass="cardno">RB1-022</li>
  1927. <li>C</li>
  1928. <liclass="cardtype">Digimon</li>
  1929. <liclass="cardlv">Lv.4</li>
  1930. </ul>
  1931. <divclass="card_name">SymbareAngoramon</div>
  1932. <divclass="cardinfo_top">
  1933. <divclass="card_img">
  1934. <imgsrc="../images/cardlist/card/RB1-022.png"alt="RB1-022SymbareAngoramon"></div>
  1935. <divclass="cardinfo_top_body">
  1936. <dl>
  1937. <dt>Form</dt>
  1938. <dd>Champion</dd>
  1939. </dl>
  1940. <dl>
  1941. <dt>Attribute</dt>
  1942. <dd>Vaccine</dd>
  1943. </dl>
  1944. <dl>
  1945. <dt>Type</dt>
  1946. <dd>Beastkin</dd>
  1947. </dl>
  1948. <dl>
  1949. <dt>DP</dt>
  1950. <dd>5000</dl>
  1951. <dl>
  1952. <dt>PlayCost</dt>
  1953. <dd>5</dd>
  1954. </dl>
  1955. <dl>
  1956. <dt>DigivolveCost1</dt>
  1957. <dd>2fromLv.3</dd>
  1958. </dl>
  1959. <dl>
  1960. <dt>DigivolveCost2</dt>
  1961. <dd>-</dd>
  1962. </dl>
  1963. </div>
  1964. </div>
  1965. <divclass="cardinfo_bottom">
  1966. <dl>
  1967. <dt>Effect</dt>
  1968. <dd>[When Digivolving] If you don't have [Ruli Tsukiyono], you may play 1 [Ruli Tsukiyono] from your hand without paying the cost.</dd>
  1969. </dl>
  1970. <dl>
  1971. <dt>Digivolveeffect</dt>
  1972. <dd>[All Turns] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  1973. </dl>
  1974. <dl>
  1975. <dt>Securityeffect</dt>
  1976. <dd>-</dd>
  1977. </dl>
  1978. <dl>
  1979. <dt>Notes</dt>
  1980. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  1981. </div>
  1982. </div>
  1983. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1984. </div>
  1985. </div>
  1986. </li>
  1987. <liclass="image_lists_itemdatapage-1">
  1988. <aclass="card_img">
  1989. <imgsrc="../images/cardlist/card/RB1-023.png"alt="RB1-023Ghilliedhumon"></a>
  1990. <divclass="popup">
  1991. <divclass="card_detailcard_detail_green">
  1992. <divclass="card_detail_inner">
  1993. <ulclass="cardinfo_head">
  1994. <liclass="cardno">RB1-023</li>
  1995. <li>R</li>
  1996. <liclass="cardtype">Digimon</li>
  1997. <liclass="cardlv">Lv.5</li>
  1998. </ul>
  1999. <divclass="card_name">Ghilliedhumon</div>
  2000. <divclass="cardinfo_top">
  2001. <divclass="card_img">
  2002. <imgsrc="../images/cardlist/card/RB1-023.png"alt="RB1-023Ghilliedhumon"></div>
  2003. <divclass="cardinfo_top_body">
  2004. <dl>
  2005. <dt>Form</dt>
  2006. <dd>Ultimate</dd>
  2007. </dl>
  2008. <dl>
  2009. <dt>Attribute</dt>
  2010. <dd>Data</dd>
  2011. </dl>
  2012. <dl>
  2013. <dt>Type</dt>
  2014. <dd>Fairy</dd>
  2015. </dl>
  2016. <dl>
  2017. <dt>DP</dt>
  2018. <dd>7000</dl>
  2019. <dl>
  2020. <dt>PlayCost</dt>
  2021. <dd>7</dd>
  2022. </dl>
  2023. <dl>
  2024. <dt>DigivolveCost1</dt>
  2025. <dd>3fromLv.4</dd>
  2026. </dl>
  2027. <dl>
  2028. <dt>DigivolveCost2</dt>
  2029. <dd>-</dd>
  2030. </dl>
  2031. </div>
  2032. </div>
  2033. <divclass="cardinfo_bottom">
  2034. <dl>
  2035. <dt>Effect</dt>
  2036. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name<br>[When Digivolving] Suspend 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP. Digimon suspended by this effect don’t unsuspend until the end of your opponent’s turn.<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  2037. </dl>
  2038. <dl>
  2039. <dt>Digivolveeffect</dt>
  2040. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  2041. </dl>
  2042. <dl>
  2043. <dt>Securityeffect</dt>
  2044. <dd>-</dd>
  2045. </dl>
  2046. <dl>
  2047. <dt>Notes</dt>
  2048. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2049. </div>
  2050. </div>
  2051. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2052. </div>
  2053. </div>
  2054. </li>
  2055. <liclass="image_lists_itemdatapage-1">
  2056. <aclass="card_img">
  2057. <imgsrc="../images/cardlist/card/RB1-024.png"alt="RB1-024Lamortmon"></a>
  2058. <divclass="popup">
  2059. <divclass="card_detailcard_detail_green">
  2060. <divclass="card_detail_inner">
  2061. <ulclass="cardinfo_head">
  2062. <liclass="cardno">RB1-024</li>
  2063. <li>U</li>
  2064. <liclass="cardtype">Digimon</li>
  2065. <liclass="cardlv">Lv.5</li>
  2066. </ul>
  2067. <divclass="card_name">Lamortmon</div>
  2068. <divclass="cardinfo_top">
  2069. <divclass="card_img">
  2070. <imgsrc="../images/cardlist/card/RB1-024.png"alt="RB1-024Lamortmon"></div>
  2071. <divclass="cardinfo_top_body">
  2072. <dl>
  2073. <dt>Form</dt>
  2074. <dd>Ultimate</dd>
  2075. </dl>
  2076. <dl>
  2077. <dt>Attribute</dt>
  2078. <dd>Vaccine</dd>
  2079. </dl>
  2080. <dl>
  2081. <dt>Type</dt>
  2082. <dd>Beast</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>DP</dt>
  2086. <dd>8000</dl>
  2087. <dl>
  2088. <dt>PlayCost</dt>
  2089. <dd>8</dd>
  2090. </dl>
  2091. <dl>
  2092. <dt>DigivolveCost1</dt>
  2093. <dd>3fromLv.4</dd>
  2094. </dl>
  2095. <dl>
  2096. <dt>DigivolveCost2</dt>
  2097. <dd>-</dd>
  2098. </dl>
  2099. </div>
  2100. </div>
  2101. <divclass="cardinfo_bottom">
  2102. <dl>
  2103. <dt>Effect</dt>
  2104. <dd>[When Digivolving] This Digimon gains <Piercing> for the turn. Then, if a Digimon card with [Angoramon] in its name is in this Digimon's digivolution cards, suspend 1 of your opponent’s Digimon.</dd>
  2105. </dl>
  2106. <dl>
  2107. <dt>Digivolveeffect</dt>
  2108. <dd>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, trash the top card of your opponent's security stack.</dd>
  2109. </dl>
  2110. <dl>
  2111. <dt>Securityeffect</dt>
  2112. <dd>-</dd>
  2113. </dl>
  2114. <dl>
  2115. <dt>Notes</dt>
  2116. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2117. </div>
  2118. </div>
  2119. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2120. </div>
  2121. </div>
  2122. </li>
  2123. <liclass="image_lists_itemdatapage-1">
  2124. <aclass="card_img">
  2125. <imgsrc="../images/cardlist/card/RB1-025.png"alt="RB1-025Diarbbitmon"></a>
  2126. <divclass="popup">
  2127. <divclass="card_detailcard_detail_green">
  2128. <divclass="card_detail_inner">
  2129. <ulclass="cardinfo_head">
  2130. <liclass="cardno">RB1-025</li>
  2131. <li>SR</li>
  2132. <liclass="cardtype">Digimon</li>
  2133. <liclass="cardlv">Lv.6</li>
  2134. </ul>
  2135. <divclass="card_name">Diarbbitmon</div>
  2136. <divclass="cardinfo_top">
  2137. <divclass="card_img">
  2138. <imgsrc="../images/cardlist/card/RB1-025.png"alt="RB1-025Diarbbitmon"></div>
  2139. <divclass="cardinfo_top_body">
  2140. <dl>
  2141. <dt>Form</dt>
  2142. <dd>Mega</dd>
  2143. </dl>
  2144. <dl>
  2145. <dt>Attribute</dt>
  2146. <dd>Vaccine</dd>
  2147. </dl>
  2148. <dl>
  2149. <dt>Type</dt>
  2150. <dd>BeastKnight</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>DP</dt>
  2154. <dd>12000</dl>
  2155. <dl>
  2156. <dt>PlayCost</dt>
  2157. <dd>12</dd>
  2158. </dl>
  2159. <dl>
  2160. <dt>DigivolveCost1</dt>
  2161. <dd>4fromLv.5</dd>
  2162. </dl>
  2163. <dl>
  2164. <dt>DigivolveCost2</dt>
  2165. <dd>-</dd>
  2166. </dl>
  2167. </div>
  2168. </div>
  2169. <divclass="cardinfo_bottom">
  2170. <dl>
  2171. <dt>Effect</dt>
  2172. <dd><Blocker><br>[When Digivolving][When Attacking] Suspend 1 of your opponent’s Digimon. Then, if your opponent has no unsuspended Digimon, gain 1 memory.<br>[End of Your Turn] 1 of your Digimon with [Angoramon] in its text may attack an opponent's Digimon.</dd>
  2173. </dl>
  2174. <dl>
  2175. <dt>Digivolveeffect</dt>
  2176. <dd>-</dd>
  2177. </dl>
  2178. <dl>
  2179. <dt>Securityeffect</dt>
  2180. <dd>-</dd>
  2181. </dl>
  2182. <dl>
  2183. <dt>Notes</dt>
  2184. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2185. </div>
  2186. </div>
  2187. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2188. </div>
  2189. </div>
  2190. </li>
  2191. <liclass="image_lists_itemdatapage-1">
  2192. <aclass="card_img">
  2193. <imgsrc="../images/cardlist/card/RB1-025_P1.png"alt="RB1-025Diarbbitmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  2194. </a>
  2195. <divclass="popup">
  2196. <divclass="card_detailcard_detail_green">
  2197. <divclass="card_detail_inner">
  2198. <ulclass="cardinfo_head">
  2199. <liclass="cardno">RB1-025</li>
  2200. <li>SR</li>
  2201. <liclass="cardtype">Digimon</li>
  2202. <liclass="cardlv">Lv.6</li>
  2203. <liclass="cardtypecardParallel">AlternativeArt</li>
  2204. </ul>
  2205. <divclass="card_name">Diarbbitmon</div>
  2206. <divclass="cardinfo_top">
  2207. <divclass="card_img">
  2208. <imgsrc="../images/cardlist/card/RB1-025_P1.png"alt="RB1-025Diarbbitmon"></div>
  2209. <divclass="cardinfo_top_body">
  2210. <dl>
  2211. <dt>Form</dt>
  2212. <dd>Mega</dd>
  2213. </dl>
  2214. <dl>
  2215. <dt>Attribute</dt>
  2216. <dd>Vaccine</dd>
  2217. </dl>
  2218. <dl>
  2219. <dt>Type</dt>
  2220. <dd>BeastKnight</dd>
  2221. </dl>
  2222. <dl>
  2223. <dt>DP</dt>
  2224. <dd>12000</dl>
  2225. <dl>
  2226. <dt>PlayCost</dt>
  2227. <dd>12</dd>
  2228. </dl>
  2229. <dl>
  2230. <dt>DigivolveCost1</dt>
  2231. <dd>4fromLv.5</dd>
  2232. </dl>
  2233. <dl>
  2234. <dt>DigivolveCost2</dt>
  2235. <dd>-</dd>
  2236. </dl>
  2237. </div>
  2238. </div>
  2239. <divclass="cardinfo_bottom">
  2240. <dl>
  2241. <dt>Effect</dt>
  2242. <dd><Blocker><br>[When Digivolving][When Attacking] Suspend 1 of your opponent’s Digimon. Then, if your opponent has no unsuspended Digimon, gain 1 memory.<br>[End of Your Turn] 1 of your Digimon with [Angoramon] in its text may attack an opponent's Digimon.</dd>
  2243. </dl>
  2244. <dl>
  2245. <dt>Digivolveeffect</dt>
  2246. <dd>-</dd>
  2247. </dl>
  2248. <dl>
  2249. <dt>Securityeffect</dt>
  2250. <dd>-</dd>
  2251. </dl>
  2252. <dl>
  2253. <dt>Notes</dt>
  2254. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2255. </div>
  2256. </div>
  2257. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2258. </div>
  2259. </div>
  2260. </li>
  2261. <liclass="image_lists_itemdatapage-1">
  2262. <aclass="card_img">
  2263. <imgsrc="../images/cardlist/card/RB1-026.png"alt="RB1-026Espimon"></a>
  2264. <divclass="popup">
  2265. <divclass="card_detailcard_detail_black">
  2266. <divclass="card_detail_inner">
  2267. <ulclass="cardinfo_head">
  2268. <liclass="cardno">RB1-026</li>
  2269. <li>C</li>
  2270. <liclass="cardtype">Digimon</li>
  2271. <liclass="cardlv">Lv.3</li>
  2272. </ul>
  2273. <divclass="card_name">Espimon</div>
  2274. <divclass="cardinfo_top">
  2275. <divclass="card_img">
  2276. <imgsrc="../images/cardlist/card/RB1-026.png"alt="RB1-026Espimon"></div>
  2277. <divclass="cardinfo_top_body">
  2278. <dl>
  2279. <dt>Form</dt>
  2280. <dd>Rookie</dd>
  2281. </dl>
  2282. <dl>
  2283. <dt>Attribute</dt>
  2284. <dd>Virus</dd>
  2285. </dl>
  2286. <dl>
  2287. <dt>Type</dt>
  2288. <dd>Cyborg</dd>
  2289. </dl>
  2290. <dl>
  2291. <dt>DP</dt>
  2292. <dd>2000</dl>
  2293. <dl>
  2294. <dt>PlayCost</dt>
  2295. <dd>3</dd>
  2296. </dl>
  2297. <dl>
  2298. <dt>DigivolveCost1</dt>
  2299. <dd>0fromLv.2</dd>
  2300. </dl>
  2301. <dl>
  2302. <dt>DigivolveCost2</dt>
  2303. <dd>-</dd>
  2304. </dl>
  2305. </div>
  2306. </div>
  2307. <divclass="cardinfo_bottom">
  2308. <dl>
  2309. <dt>Effect</dt>
  2310. <dd>-</dd>
  2311. </dl>
  2312. <dl>
  2313. <dt>Digivolveeffect</dt>
  2314. <dd>[Opponent's Turn] While there's a Tamer, this Digimon gets +2000 DP.</dd>
  2315. </dl>
  2316. <dl>
  2317. <dt>Securityeffect</dt>
  2318. <dd>-</dd>
  2319. </dl>
  2320. <dl>
  2321. <dt>Notes</dt>
  2322. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2323. </div>
  2324. </div>
  2325. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2326. </div>
  2327. </div>
  2328. </li>
  2329. <liclass="image_lists_itemdatapage-1">
  2330. <aclass="card_img">
  2331. <imgsrc="../images/cardlist/card/RB1-027.png"alt="RB1-027HoverEspimon"></a>
  2332. <divclass="popup">
  2333. <divclass="card_detailcard_detail_black">
  2334. <divclass="card_detail_inner">
  2335. <ulclass="cardinfo_head">
  2336. <liclass="cardno">RB1-027</li>
  2337. <li>SR</li>
  2338. <liclass="cardtype">Digimon</li>
  2339. <liclass="cardlv">Lv.4</li>
  2340. </ul>
  2341. <divclass="card_name">HoverEspimon</div>
  2342. <divclass="cardinfo_top">
  2343. <divclass="card_img">
  2344. <imgsrc="../images/cardlist/card/RB1-027.png"alt="RB1-027HoverEspimon"></div>
  2345. <divclass="cardinfo_top_body">
  2346. <dl>
  2347. <dt>Form</dt>
  2348. <dd>Champion</dd>
  2349. </dl>
  2350. <dl>
  2351. <dt>Attribute</dt>
  2352. <dd>Virus</dd>
  2353. </dl>
  2354. <dl>
  2355. <dt>Type</dt>
  2356. <dd>Cyborg</dd>
  2357. </dl>
  2358. <dl>
  2359. <dt>DP</dt>
  2360. <dd>5000</dl>
  2361. <dl>
  2362. <dt>PlayCost</dt>
  2363. <dd>5</dd>
  2364. </dl>
  2365. <dl>
  2366. <dt>DigivolveCost1</dt>
  2367. <dd>2fromLv.3</dd>
  2368. </dl>
  2369. <dl>
  2370. <dt>DigivolveCost2</dt>
  2371. <dd>-</dd>
  2372. </dl>
  2373. </div>
  2374. </div>
  2375. <divclass="cardinfo_bottom">
  2376. <dl>
  2377. <dt>Effect</dt>
  2378. <dd>[On Play][When Digivolving] Reveal the top card of your opponent's security stack. If that card is a Digimon card, gain 1 memory. If it's a non-Digimon card, <Draw 1>. Place the revealed card at the top or bottom of your opponent’s security stack face down.<br>[All Turns] While there's a Tamer, this Digimon gains <Blocker> and can't be deleted by your opponent's effects.</dd>
  2379. </dl>
  2380. <dl>
  2381. <dt>Digivolveeffect</dt>
  2382. <dd>-</dd>
  2383. </dl>
  2384. <dl>
  2385. <dt>Securityeffect</dt>
  2386. <dd>-</dd>
  2387. </dl>
  2388. <dl>
  2389. <dt>Notes</dt>
  2390. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2391. </div>
  2392. </div>
  2393. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2394. </div>
  2395. </div>
  2396. </li>
  2397. <liclass="image_lists_itemdatapage-1">
  2398. <aclass="card_img">
  2399. <imgsrc="../images/cardlist/card/RB1-027_P1.png"alt="RB1-027HoverEspimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  2400. </a>
  2401. <divclass="popup">
  2402. <divclass="card_detailcard_detail_black">
  2403. <divclass="card_detail_inner">
  2404. <ulclass="cardinfo_head">
  2405. <liclass="cardno">RB1-027</li>
  2406. <li>SR</li>
  2407. <liclass="cardtype">Digimon</li>
  2408. <liclass="cardlv">Lv.4</li>
  2409. <liclass="cardtypecardParallel">AlternativeArt</li>
  2410. </ul>
  2411. <divclass="card_name">HoverEspimon</div>
  2412. <divclass="cardinfo_top">
  2413. <divclass="card_img">
  2414. <imgsrc="../images/cardlist/card/RB1-027_P1.png"alt="RB1-027HoverEspimon"></div>
  2415. <divclass="cardinfo_top_body">
  2416. <dl>
  2417. <dt>Form</dt>
  2418. <dd>Champion</dd>
  2419. </dl>
  2420. <dl>
  2421. <dt>Attribute</dt>
  2422. <dd>Virus</dd>
  2423. </dl>
  2424. <dl>
  2425. <dt>Type</dt>
  2426. <dd>Cyborg</dd>
  2427. </dl>
  2428. <dl>
  2429. <dt>DP</dt>
  2430. <dd>5000</dl>
  2431. <dl>
  2432. <dt>PlayCost</dt>
  2433. <dd>5</dd>
  2434. </dl>
  2435. <dl>
  2436. <dt>DigivolveCost1</dt>
  2437. <dd>2fromLv.3</dd>
  2438. </dl>
  2439. <dl>
  2440. <dt>DigivolveCost2</dt>
  2441. <dd>-</dd>
  2442. </dl>
  2443. </div>
  2444. </div>
  2445. <divclass="cardinfo_bottom">
  2446. <dl>
  2447. <dt>Effect</dt>
  2448. <dd>[On Play][When Digivolving] Reveal the top card of your opponent's security stack. If that card is a Digimon card, gain 1 memory. If it's a non-Digimon card, <Draw 1>. Place the revealed card at the top or bottom of your opponent’s security stack face down.<br>[All Turns] While there's a Tamer, this Digimon gains <Blocker> and can't be deleted by your opponent's effects.</dd>
  2449. </dl>
  2450. <dl>
  2451. <dt>Digivolveeffect</dt>
  2452. <dd>-</dd>
  2453. </dl>
  2454. <dl>
  2455. <dt>Securityeffect</dt>
  2456. <dd>-</dd>
  2457. </dl>
  2458. <dl>
  2459. <dt>Notes</dt>
  2460. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2461. </div>
  2462. </div>
  2463. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2464. </div>
  2465. </div>
  2466. </li>
  2467. <liclass="image_lists_itemdatapage-1">
  2468. <aclass="card_img">
  2469. <imgsrc="../images/cardlist/card/RB1-028.png"alt="RB1-028BlackGatomonUver."></a>
  2470. <divclass="popup">
  2471. <divclass="card_detailcard_detail_purple">
  2472. <divclass="card_detail_inner">
  2473. <ulclass="cardinfo_head">
  2474. <liclass="cardno">RB1-028</li>
  2475. <li>R</li>
  2476. <liclass="cardtype">Digimon</li>
  2477. <liclass="cardlv">Lv.4</li>
  2478. </ul>
  2479. <divclass="card_name">BlackGatomonUver.</div>
  2480. <divclass="cardinfo_top">
  2481. <divclass="card_img">
  2482. <imgsrc="../images/cardlist/card/RB1-028.png"alt="RB1-028BlackGatomonUver."></div>
  2483. <divclass="cardinfo_top_body">
  2484. <dl>
  2485. <dt>Form</dt>
  2486. <dd>Champion</dd>
  2487. </dl>
  2488. <dl>
  2489. <dt>Attribute</dt>
  2490. <dd>Virus</dd>
  2491. </dl>
  2492. <dl>
  2493. <dt>Type</dt>
  2494. <dd>DarkAnimal</dd>
  2495. </dl>
  2496. <dl>
  2497. <dt>DP</dt>
  2498. <dd>4000</dl>
  2499. <dl>
  2500. <dt>PlayCost</dt>
  2501. <dd>5</dd>
  2502. </dl>
  2503. <dl>
  2504. <dt>DigivolveCost1</dt>
  2505. <dd>2fromLv.3</dd>
  2506. </dl>
  2507. <dl>
  2508. <dt>DigivolveCost2</dt>
  2509. <dd>-</dd>
  2510. </dl>
  2511. </div>
  2512. </div>
  2513. <divclass="cardinfo_bottom">
  2514. <dl>
  2515. <dt>Effect</dt>
  2516. <dd>[Security] At the end of the battle, play this card without paying the cost.<br>[On Play] By returning 1 Digimon card from your opponent’s trash to the bottom of the deck, <Draw 1>.</dd>
  2517. </dl>
  2518. <dl>
  2519. <dt>Digivolveeffect</dt>
  2520. <dd>-</dd>
  2521. </dl>
  2522. <dl>
  2523. <dt>Securityeffect</dt>
  2524. <dd>-</dd>
  2525. </dl>
  2526. <dl>
  2527. <dt>Notes</dt>
  2528. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2529. </div>
  2530. </div>
  2531. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2532. </div>
  2533. </div>
  2534. </li>
  2535. <liclass="image_lists_itemdatapage-1">
  2536. <aclass="card_img">
  2537. <imgsrc="../images/cardlist/card/RB1-029.png"alt="RB1-029GulusGammamon"></a>
  2538. <divclass="popup">
  2539. <divclass="card_detailcard_detail_purple">
  2540. <divclass="card_detail_inner">
  2541. <ulclass="cardinfo_head">
  2542. <liclass="cardno">RB1-029</li>
  2543. <li>U</li>
  2544. <liclass="cardtype">Digimon</li>
  2545. <liclass="cardlv">Lv.4</li>
  2546. </ul>
  2547. <divclass="card_name">GulusGammamon</div>
  2548. <divclass="cardinfo_top">
  2549. <divclass="card_img">
  2550. <imgsrc="../images/cardlist/card/RB1-029.png"alt="RB1-029GulusGammamon"></div>
  2551. <divclass="cardinfo_top_body">
  2552. <dl>
  2553. <dt>Form</dt>
  2554. <dd>Champion</dd>
  2555. </dl>
  2556. <dl>
  2557. <dt>Attribute</dt>
  2558. <dd>Virus</dd>
  2559. </dl>
  2560. <dl>
  2561. <dt>Type</dt>
  2562. <dd>Dragonkin</dd>
  2563. </dl>
  2564. <dl>
  2565. <dt>DP</dt>
  2566. <dd>6000</dl>
  2567. <dl>
  2568. <dt>PlayCost</dt>
  2569. <dd>6</dd>
  2570. </dl>
  2571. <dl>
  2572. <dt>DigivolveCost1</dt>
  2573. <dd>3fromLv.3</dd>
  2574. </dl>
  2575. <dl>
  2576. <dt>DigivolveCost2</dt>
  2577. <dd>-</dd>
  2578. </dl>
  2579. </div>
  2580. </div>
  2581. <divclass="cardinfo_bottom">
  2582. <dl>
  2583. <dt>Effect</dt>
  2584. <dd>Digivolve: 2 from [Gammamon]<br>[End of Attack] By deleting this Digimon, delete 1 of your opponent’s Digimon with DP less than or equal to the deleted Digimon’s DP.<br>[On Deletion] Play 1 [Gammamon] from your trash suspended without paying the cost.</dd>
  2585. </dl>
  2586. <dl>
  2587. <dt>Digivolveeffect</dt>
  2588. <dd>-</dd>
  2589. </dl>
  2590. <dl>
  2591. <dt>Securityeffect</dt>
  2592. <dd>-</dd>
  2593. </dl>
  2594. <dl>
  2595. <dt>Notes</dt>
  2596. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2597. </div>
  2598. </div>
  2599. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2600. </div>
  2601. </div>
  2602. </li>
  2603. <liclass="image_lists_itemdatapage-1">
  2604. <aclass="card_img">
  2605. <imgsrc="../images/cardlist/card/RB1-030.png"alt="RB1-030Regulusmon"></a>
  2606. <divclass="popup">
  2607. <divclass="card_detailcard_detail_purple">
  2608. <divclass="card_detail_inner">
  2609. <ulclass="cardinfo_head">
  2610. <liclass="cardno">RB1-030</li>
  2611. <li>R</li>
  2612. <liclass="cardtype">Digimon</li>
  2613. <liclass="cardlv">Lv.5</li>
  2614. </ul>
  2615. <divclass="card_name">Regulusmon</div>
  2616. <divclass="cardinfo_top">
  2617. <divclass="card_img">
  2618. <imgsrc="../images/cardlist/card/RB1-030.png"alt="RB1-030Regulusmon"></div>
  2619. <divclass="cardinfo_top_body">
  2620. <dl>
  2621. <dt>Form</dt>
  2622. <dd>Ultimate</dd>
  2623. </dl>
  2624. <dl>
  2625. <dt>Attribute</dt>
  2626. <dd>Virus</dd>
  2627. </dl>
  2628. <dl>
  2629. <dt>Type</dt>
  2630. <dd>EvilDragon</dd>
  2631. </dl>
  2632. <dl>
  2633. <dt>DP</dt>
  2634. <dd>9000</dl>
  2635. <dl>
  2636. <dt>PlayCost</dt>
  2637. <dd>9</dd>
  2638. </dl>
  2639. <dl>
  2640. <dt>DigivolveCost1</dt>
  2641. <dd>4fromLv.4</dd>
  2642. </dl>
  2643. <dl>
  2644. <dt>DigivolveCost2</dt>
  2645. <dd>-</dd>
  2646. </dl>
  2647. </div>
  2648. </div>
  2649. <divclass="cardinfo_bottom">
  2650. <dl>
  2651. <dt>Effect</dt>
  2652. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name<br>[When Digivolving][When Attacking][Once Per Turn] By trashing 1 card with [Gammamon] in its text in your hand, 1 of your Digimon gains ”[On Deletion] Delete 1 of your opponent’s Digimon with the lowest level” until the end of your opponent’s turn.<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  2653. </dl>
  2654. <dl>
  2655. <dt>Digivolveeffect</dt>
  2656. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  2657. </dl>
  2658. <dl>
  2659. <dt>Securityeffect</dt>
  2660. <dd>-</dd>
  2661. </dl>
  2662. <dl>
  2663. <dt>Notes</dt>
  2664. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2665. </div>
  2666. </div>
  2667. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2668. </div>
  2669. </div>
  2670. </li>
  2671. <liclass="image_lists_itemdatapage-1">
  2672. <aclass="card_img">
  2673. <imgsrc="../images/cardlist/card/RB1-031.png"alt="RB1-031Arcturusmon"></a>
  2674. <divclass="popup">
  2675. <divclass="card_detailcard_detail_purple">
  2676. <divclass="card_detail_inner">
  2677. <ulclass="cardinfo_head">
  2678. <liclass="cardno">RB1-031</li>
  2679. <li>SR</li>
  2680. <liclass="cardtype">Digimon</li>
  2681. <liclass="cardlv">Lv.6</li>
  2682. </ul>
  2683. <divclass="card_name">Arcturusmon</div>
  2684. <divclass="cardinfo_top">
  2685. <divclass="card_img">
  2686. <imgsrc="../images/cardlist/card/RB1-031.png"alt="RB1-031Arcturusmon"></div>
  2687. <divclass="cardinfo_top_body">
  2688. <dl>
  2689. <dt>Form</dt>
  2690. <dd>Mega</dd>
  2691. </dl>
  2692. <dl>
  2693. <dt>Attribute</dt>
  2694. <dd>Virus</dd>
  2695. </dl>
  2696. <dl>
  2697. <dt>Type</dt>
  2698. <dd>Dragonkin</dd>
  2699. </dl>
  2700. <dl>
  2701. <dt>DP</dt>
  2702. <dd>13000</dl>
  2703. <dl>
  2704. <dt>PlayCost</dt>
  2705. <dd>13</dd>
  2706. </dl>
  2707. <dl>
  2708. <dt>DigivolveCost1</dt>
  2709. <dd>5fromLv.5</dd>
  2710. </dl>
  2711. <dl>
  2712. <dt>DigivolveCost2</dt>
  2713. <dd>-</dd>
  2714. </dl>
  2715. </div>
  2716. </div>
  2717. <divclass="cardinfo_bottom">
  2718. <dl>
  2719. <dt>Effect</dt>
  2720. <dd>Digivolve: 4 from Lv.5 w/[Gammamon] in text<br>[When Digivolving] You may place 1 Digimon card with [Gammamon] in its text from your trash as this Digimon's bottom digivolution card. Then, you may delete 1 Digimon with a level less than or equal to the number of this Digimon's digivolution cards.<br>[On Deletion] You may return 1 Digimon card from your trash to the hand. Then, by trashing 1 [Siriusmon] in your hand, you may play 1 [Proximamon] from your hand without paying the cost.</dd>
  2721. </dl>
  2722. <dl>
  2723. <dt>Digivolveeffect</dt>
  2724. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon is deleted, if this Digimon has [Gammamon] in its text, trash the top card of your opponent’s security stack.</dd>
  2725. </dl>
  2726. <dl>
  2727. <dt>Securityeffect</dt>
  2728. <dd>-</dd>
  2729. </dl>
  2730. <dl>
  2731. <dt>Notes</dt>
  2732. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2733. </div>
  2734. </div>
  2735. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2736. </div>
  2737. </div>
  2738. </li>
  2739. <liclass="image_lists_itemdatapage-2">
  2740. <aclass="card_img">
  2741. <imgsrc="../images/cardlist/card/RB1-031_P1.png"alt="RB1-031Arcturusmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  2742. </a>
  2743. <divclass="popup">
  2744. <divclass="card_detailcard_detail_purple">
  2745. <divclass="card_detail_inner">
  2746. <ulclass="cardinfo_head">
  2747. <liclass="cardno">RB1-031</li>
  2748. <li>SR</li>
  2749. <liclass="cardtype">Digimon</li>
  2750. <liclass="cardlv">Lv.6</li>
  2751. <liclass="cardtypecardParallel">AlternativeArt</li>
  2752. </ul>
  2753. <divclass="card_name">Arcturusmon</div>
  2754. <divclass="cardinfo_top">
  2755. <divclass="card_img">
  2756. <imgsrc="../images/cardlist/card/RB1-031_P1.png"alt="RB1-031Arcturusmon"></div>
  2757. <divclass="cardinfo_top_body">
  2758. <dl>
  2759. <dt>Form</dt>
  2760. <dd>Mega</dd>
  2761. </dl>
  2762. <dl>
  2763. <dt>Attribute</dt>
  2764. <dd>Virus</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>Type</dt>
  2768. <dd>Dragonkin</dd>
  2769. </dl>
  2770. <dl>
  2771. <dt>DP</dt>
  2772. <dd>13000</dl>
  2773. <dl>
  2774. <dt>PlayCost</dt>
  2775. <dd>13</dd>
  2776. </dl>
  2777. <dl>
  2778. <dt>DigivolveCost1</dt>
  2779. <dd>5fromLv.5</dd>
  2780. </dl>
  2781. <dl>
  2782. <dt>DigivolveCost2</dt>
  2783. <dd>-</dd>
  2784. </dl>
  2785. </div>
  2786. </div>
  2787. <divclass="cardinfo_bottom">
  2788. <dl>
  2789. <dt>Effect</dt>
  2790. <dd>Digivolve: 4 from Lv.5 w/[Gammamon] in text<br>[When Digivolving] You may place 1 Digimon card with [Gammamon] in its text from your trash as this Digimon's bottom digivolution card. Then, you may delete 1 Digimon with a level less than or equal to the number of this Digimon's digivolution cards.<br>[On Deletion] You may return 1 Digimon card from your trash to the hand. Then, by trashing 1 [Siriusmon] in your hand, you may play 1 [Proximamon] from your hand without paying the cost.</dd>
  2791. </dl>
  2792. <dl>
  2793. <dt>Digivolveeffect</dt>
  2794. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon is deleted, if this Digimon has [Gammamon] in its text, trash the top card of your opponent’s security stack.</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Securityeffect</dt>
  2798. <dd>-</dd>
  2799. </dl>
  2800. <dl>
  2801. <dt>Notes</dt>
  2802. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2803. </div>
  2804. </div>
  2805. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2806. </div>
  2807. </div>
  2808. </li>
  2809. <liclass="image_lists_itemdatapage-2">
  2810. <aclass="card_img">
  2811. <imgsrc="../images/cardlist/card/RB1-032.png"alt="RB1-032HiroAmanokawa"></a>
  2812. <divclass="popup">
  2813. <divclass="card_detailcard_detail_red">
  2814. <divclass="card_detail_inner">
  2815. <ulclass="cardinfo_head">
  2816. <liclass="cardno">RB1-032</li>
  2817. <li>R</li>
  2818. <liclass="cardtype">Tamer</li>
  2819. </ul>
  2820. <divclass="card_name">HiroAmanokawa</div>
  2821. <divclass="cardinfo_top">
  2822. <divclass="card_img">
  2823. <imgsrc="../images/cardlist/card/RB1-032.png"alt="RB1-032HiroAmanokawa"></div>
  2824. <divclass="cardinfo_top_body">
  2825. <dl>
  2826. <dt>Form</dt>
  2827. <dd>-</dd>
  2828. </dl>
  2829. <dl>
  2830. <dt>Attribute</dt>
  2831. <dd>-</dd>
  2832. </dl>
  2833. <dl>
  2834. <dt>Type</dt>
  2835. <dd>-</dd>
  2836. </dl>
  2837. <dl>
  2838. <dt>DP</dt>
  2839. <dd>-</dl>
  2840. <dl>
  2841. <dt>PlayCost</dt>
  2842. <dd>3</dd>
  2843. </dl>
  2844. <dl>
  2845. <dt>DigivolveCost1</dt>
  2846. <dd>-</dd>
  2847. </dl>
  2848. <dl>
  2849. <dt>DigivolveCost2</dt>
  2850. <dd>-</dd>
  2851. </dl>
  2852. </div>
  2853. </div>
  2854. <divclass="cardinfo_bottom">
  2855. <dl>
  2856. <dt>Effect</dt>
  2857. <dd>[Start of Your Main Phase] By placing 1 Digimon card with [Gammamon] in its name from your hand as 1 of your Digimon's bottom digivolution card, gain 1 memory and <Draw 1>.<br>[Your Turn] When one of your Digimon digivolves into a Digimon with [Gammamon] in its text, by suspending this Tamer, that Digimon gets +2000 DP for the turn.</dd>
  2858. </dl>
  2859. <dl>
  2860. <dt>Digivolveeffect</dt>
  2861. <dd>-</dd>
  2862. </dl>
  2863. <dl>
  2864. <dt>Securityeffect</dt>
  2865. <dd>[Security] Play this card without paying the cost.</dd>
  2866. </dl>
  2867. <dl>
  2868. <dt>Notes</dt>
  2869. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2870. </div>
  2871. </div>
  2872. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2873. </div>
  2874. </div>
  2875. </li>
  2876. <liclass="image_lists_itemdatapage-2">
  2877. <aclass="card_img">
  2878. <imgsrc="../images/cardlist/card/RB1-032_P1.png"alt="RB1-032HiroAmanokawa"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  2879. </a>
  2880. <divclass="popup">
  2881. <divclass="card_detailcard_detail_red">
  2882. <divclass="card_detail_inner">
  2883. <ulclass="cardinfo_head">
  2884. <liclass="cardno">RB1-032</li>
  2885. <li>R</li>
  2886. <liclass="cardtype">Tamer</li>
  2887. <liclass="cardtypecardParallel">AlternativeArt</li>
  2888. </ul>
  2889. <divclass="card_name">HiroAmanokawa</div>
  2890. <divclass="cardinfo_top">
  2891. <divclass="card_img">
  2892. <imgsrc="../images/cardlist/card/RB1-032_P1.png"alt="RB1-032HiroAmanokawa"></div>
  2893. <divclass="cardinfo_top_body">
  2894. <dl>
  2895. <dt>Form</dt>
  2896. <dd>-</dd>
  2897. </dl>
  2898. <dl>
  2899. <dt>Attribute</dt>
  2900. <dd>-</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>Type</dt>
  2904. <dd>-</dd>
  2905. </dl>
  2906. <dl>
  2907. <dt>DP</dt>
  2908. <dd>-</dl>
  2909. <dl>
  2910. <dt>PlayCost</dt>
  2911. <dd>3</dd>
  2912. </dl>
  2913. <dl>
  2914. <dt>DigivolveCost1</dt>
  2915. <dd>-</dd>
  2916. </dl>
  2917. <dl>
  2918. <dt>DigivolveCost2</dt>
  2919. <dd>-</dd>
  2920. </dl>
  2921. </div>
  2922. </div>
  2923. <divclass="cardinfo_bottom">
  2924. <dl>
  2925. <dt>Effect</dt>
  2926. <dd>[Start of Your Main Phase] By placing 1 Digimon card with [Gammamon] in its name from your hand as 1 of your Digimon's bottom digivolution card, gain 1 memory and <Draw 1>.<br>[Your Turn] When one of your Digimon digivolves into a Digimon with [Gammamon] in its text, by suspending this Tamer, that Digimon gets +2000 DP for the turn.</dd>
  2927. </dl>
  2928. <dl>
  2929. <dt>Digivolveeffect</dt>
  2930. <dd>-</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Securityeffect</dt>
  2934. <dd>[Security] Play this card without paying the cost.</dd>
  2935. </dl>
  2936. <dl>
  2937. <dt>Notes</dt>
  2938. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  2939. </div>
  2940. </div>
  2941. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2942. </div>
  2943. </div>
  2944. </li>
  2945. <liclass="image_lists_itemdatapage-2">
  2946. <aclass="card_img">
  2947. <imgsrc="../images/cardlist/card/RB1-033.png"alt="RB1-033KiyoshiroHigashimitarai"></a>
  2948. <divclass="popup">
  2949. <divclass="card_detailcard_detail_blue">
  2950. <divclass="card_detail_inner">
  2951. <ulclass="cardinfo_head">
  2952. <liclass="cardno">RB1-033</li>
  2953. <li>R</li>
  2954. <liclass="cardtype">Tamer</li>
  2955. </ul>
  2956. <divclass="card_name">KiyoshiroHigashimitarai</div>
  2957. <divclass="cardinfo_top">
  2958. <divclass="card_img">
  2959. <imgsrc="../images/cardlist/card/RB1-033.png"alt="RB1-033KiyoshiroHigashimitarai"></div>
  2960. <divclass="cardinfo_top_body">
  2961. <dl>
  2962. <dt>Form</dt>
  2963. <dd>-</dd>
  2964. </dl>
  2965. <dl>
  2966. <dt>Attribute</dt>
  2967. <dd>-</dd>
  2968. </dl>
  2969. <dl>
  2970. <dt>Type</dt>
  2971. <dd>-</dd>
  2972. </dl>
  2973. <dl>
  2974. <dt>DP</dt>
  2975. <dd>-</dl>
  2976. <dl>
  2977. <dt>PlayCost</dt>
  2978. <dd>3</dd>
  2979. </dl>
  2980. <dl>
  2981. <dt>DigivolveCost1</dt>
  2982. <dd>-</dd>
  2983. </dl>
  2984. <dl>
  2985. <dt>DigivolveCost2</dt>
  2986. <dd>-</dd>
  2987. </dl>
  2988. </div>
  2989. </div>
  2990. <divclass="cardinfo_bottom">
  2991. <dl>
  2992. <dt>Effect</dt>
  2993. <dd>[All Turns] When one of your Digimon with [Jellymon] in its text or an opponent's level 5 or higher Digimon attacks, if you have 7 or fewer cards in your hand, by suspending this Tamer, <Draw 1>.<br>[Your Turn] When this Tamer becomes unsuspended, gain 1 memory.</dd>
  2994. </dl>
  2995. <dl>
  2996. <dt>Digivolveeffect</dt>
  2997. <dd>-</dd>
  2998. </dl>
  2999. <dl>
  3000. <dt>Securityeffect</dt>
  3001. <dd>[Security] Play this card without paying the cost.</dd>
  3002. </dl>
  3003. <dl>
  3004. <dt>Notes</dt>
  3005. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3006. </div>
  3007. </div>
  3008. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3009. </div>
  3010. </div>
  3011. </li>
  3012. <liclass="image_lists_itemdatapage-2">
  3013. <aclass="card_img">
  3014. <imgsrc="../images/cardlist/card/RB1-033_P1.png"alt="RB1-033KiyoshiroHigashimitarai"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  3015. </a>
  3016. <divclass="popup">
  3017. <divclass="card_detailcard_detail_blue">
  3018. <divclass="card_detail_inner">
  3019. <ulclass="cardinfo_head">
  3020. <liclass="cardno">RB1-033</li>
  3021. <li>R</li>
  3022. <liclass="cardtype">Tamer</li>
  3023. <liclass="cardtypecardParallel">AlternativeArt</li>
  3024. </ul>
  3025. <divclass="card_name">KiyoshiroHigashimitarai</div>
  3026. <divclass="cardinfo_top">
  3027. <divclass="card_img">
  3028. <imgsrc="../images/cardlist/card/RB1-033_P1.png"alt="RB1-033KiyoshiroHigashimitarai"></div>
  3029. <divclass="cardinfo_top_body">
  3030. <dl>
  3031. <dt>Form</dt>
  3032. <dd>-</dd>
  3033. </dl>
  3034. <dl>
  3035. <dt>Attribute</dt>
  3036. <dd>-</dd>
  3037. </dl>
  3038. <dl>
  3039. <dt>Type</dt>
  3040. <dd>-</dd>
  3041. </dl>
  3042. <dl>
  3043. <dt>DP</dt>
  3044. <dd>-</dl>
  3045. <dl>
  3046. <dt>PlayCost</dt>
  3047. <dd>3</dd>
  3048. </dl>
  3049. <dl>
  3050. <dt>DigivolveCost1</dt>
  3051. <dd>-</dd>
  3052. </dl>
  3053. <dl>
  3054. <dt>DigivolveCost2</dt>
  3055. <dd>-</dd>
  3056. </dl>
  3057. </div>
  3058. </div>
  3059. <divclass="cardinfo_bottom">
  3060. <dl>
  3061. <dt>Effect</dt>
  3062. <dd>[All Turns] When one of your Digimon with [Jellymon] in its text or an opponent's level 5 or higher Digimon attacks, if you have 7 or fewer cards in your hand, by suspending this Tamer, <Draw 1>.<br>[Your Turn] When this Tamer becomes unsuspended, gain 1 memory.</dd>
  3063. </dl>
  3064. <dl>
  3065. <dt>Digivolveeffect</dt>
  3066. <dd>-</dd>
  3067. </dl>
  3068. <dl>
  3069. <dt>Securityeffect</dt>
  3070. <dd>[Security] Play this card without paying the cost.</dd>
  3071. </dl>
  3072. <dl>
  3073. <dt>Notes</dt>
  3074. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3075. </div>
  3076. </div>
  3077. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3078. </div>
  3079. </div>
  3080. </li>
  3081. <liclass="image_lists_itemdatapage-2">
  3082. <aclass="card_img">
  3083. <imgsrc="../images/cardlist/card/RB1-034.png"alt="RB1-034RuliTsukiyono"></a>
  3084. <divclass="popup">
  3085. <divclass="card_detailcard_detail_green">
  3086. <divclass="card_detail_inner">
  3087. <ulclass="cardinfo_head">
  3088. <liclass="cardno">RB1-034</li>
  3089. <li>R</li>
  3090. <liclass="cardtype">Tamer</li>
  3091. </ul>
  3092. <divclass="card_name">RuliTsukiyono</div>
  3093. <divclass="cardinfo_top">
  3094. <divclass="card_img">
  3095. <imgsrc="../images/cardlist/card/RB1-034.png"alt="RB1-034RuliTsukiyono"></div>
  3096. <divclass="cardinfo_top_body">
  3097. <dl>
  3098. <dt>Form</dt>
  3099. <dd>-</dd>
  3100. </dl>
  3101. <dl>
  3102. <dt>Attribute</dt>
  3103. <dd>-</dd>
  3104. </dl>
  3105. <dl>
  3106. <dt>Type</dt>
  3107. <dd>-</dd>
  3108. </dl>
  3109. <dl>
  3110. <dt>DP</dt>
  3111. <dd>-</dl>
  3112. <dl>
  3113. <dt>PlayCost</dt>
  3114. <dd>3</dd>
  3115. </dl>
  3116. <dl>
  3117. <dt>DigivolveCost1</dt>
  3118. <dd>-</dd>
  3119. </dl>
  3120. <dl>
  3121. <dt>DigivolveCost2</dt>
  3122. <dd>-</dd>
  3123. </dl>
  3124. </div>
  3125. </div>
  3126. <divclass="cardinfo_bottom">
  3127. <dl>
  3128. <dt>Effect</dt>
  3129. <dd>[Your Turn] When one of your Digimon digivolves into a green card with [Beast], [Animal] or [Sovereign], other than [Sea Animal], in one of its traits, by suspending this Tamer, reduce the digivolution cost by 1.<br>[End of Your Turn][Once Per Turn] You may unsuspend 1 of your Digimon with [Angoramon] in its text.</dd>
  3130. </dl>
  3131. <dl>
  3132. <dt>Digivolveeffect</dt>
  3133. <dd>-</dd>
  3134. </dl>
  3135. <dl>
  3136. <dt>Securityeffect</dt>
  3137. <dd>[Security] Play this card without paying the cost.</dd>
  3138. </dl>
  3139. <dl>
  3140. <dt>Notes</dt>
  3141. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3142. </div>
  3143. </div>
  3144. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3145. </div>
  3146. </div>
  3147. </li>
  3148. <liclass="image_lists_itemdatapage-2">
  3149. <aclass="card_img">
  3150. <imgsrc="../images/cardlist/card/RB1-034_P1.png"alt="RB1-034RuliTsukiyono"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  3151. </a>
  3152. <divclass="popup">
  3153. <divclass="card_detailcard_detail_green">
  3154. <divclass="card_detail_inner">
  3155. <ulclass="cardinfo_head">
  3156. <liclass="cardno">RB1-034</li>
  3157. <li>R</li>
  3158. <liclass="cardtype">Tamer</li>
  3159. <liclass="cardtypecardParallel">AlternativeArt</li>
  3160. </ul>
  3161. <divclass="card_name">RuliTsukiyono</div>
  3162. <divclass="cardinfo_top">
  3163. <divclass="card_img">
  3164. <imgsrc="../images/cardlist/card/RB1-034_P1.png"alt="RB1-034RuliTsukiyono"></div>
  3165. <divclass="cardinfo_top_body">
  3166. <dl>
  3167. <dt>Form</dt>
  3168. <dd>-</dd>
  3169. </dl>
  3170. <dl>
  3171. <dt>Attribute</dt>
  3172. <dd>-</dd>
  3173. </dl>
  3174. <dl>
  3175. <dt>Type</dt>
  3176. <dd>-</dd>
  3177. </dl>
  3178. <dl>
  3179. <dt>DP</dt>
  3180. <dd>-</dl>
  3181. <dl>
  3182. <dt>PlayCost</dt>
  3183. <dd>3</dd>
  3184. </dl>
  3185. <dl>
  3186. <dt>DigivolveCost1</dt>
  3187. <dd>-</dd>
  3188. </dl>
  3189. <dl>
  3190. <dt>DigivolveCost2</dt>
  3191. <dd>-</dd>
  3192. </dl>
  3193. </div>
  3194. </div>
  3195. <divclass="cardinfo_bottom">
  3196. <dl>
  3197. <dt>Effect</dt>
  3198. <dd>[Your Turn] When one of your Digimon digivolves into a green card with [Beast], [Animal] or [Sovereign], other than [Sea Animal], in one of its traits, by suspending this Tamer, reduce the digivolution cost by 1.<br>[End of Your Turn][Once Per Turn] You may unsuspend 1 of your Digimon with [Angoramon] in its text.</dd>
  3199. </dl>
  3200. <dl>
  3201. <dt>Digivolveeffect</dt>
  3202. <dd>-</dd>
  3203. </dl>
  3204. <dl>
  3205. <dt>Securityeffect</dt>
  3206. <dd>[Security] Play this card without paying the cost.</dd>
  3207. </dl>
  3208. <dl>
  3209. <dt>Notes</dt>
  3210. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3211. </div>
  3212. </div>
  3213. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3214. </div>
  3215. </div>
  3216. </li>
  3217. <liclass="image_lists_itemdatapage-2">
  3218. <aclass="card_img">
  3219. <imgsrc="../images/cardlist/card/RB1-035.png"alt="RB1-035HokutoAmanokawa"></a>
  3220. <divclass="popup">
  3221. <divclass="card_detailcard_detail_white">
  3222. <divclass="card_detail_inner">
  3223. <ulclass="cardinfo_head">
  3224. <liclass="cardno">RB1-035</li>
  3225. <li>R</li>
  3226. <liclass="cardtype">Tamer</li>
  3227. </ul>
  3228. <divclass="card_name">HokutoAmanokawa</div>
  3229. <divclass="cardinfo_top">
  3230. <divclass="card_img">
  3231. <imgsrc="../images/cardlist/card/RB1-035.png"alt="RB1-035HokutoAmanokawa"></div>
  3232. <divclass="cardinfo_top_body">
  3233. <dl>
  3234. <dt>Form</dt>
  3235. <dd>-</dd>
  3236. </dl>
  3237. <dl>
  3238. <dt>Attribute</dt>
  3239. <dd>-</dd>
  3240. </dl>
  3241. <dl>
  3242. <dt>Type</dt>
  3243. <dd>-</dd>
  3244. </dl>
  3245. <dl>
  3246. <dt>DP</dt>
  3247. <dd>-</dl>
  3248. <dl>
  3249. <dt>PlayCost</dt>
  3250. <dd>2</dd>
  3251. </dl>
  3252. <dl>
  3253. <dt>DigivolveCost1</dt>
  3254. <dd>-</dd>
  3255. </dl>
  3256. <dl>
  3257. <dt>DigivolveCost2</dt>
  3258. <dd>-</dd>
  3259. </dl>
  3260. </div>
  3261. </div>
  3262. <divclass="cardinfo_bottom">
  3263. <dl>
  3264. <dt>Effect</dt>
  3265. <dd>[Start of Your Turn] If your opponent has 3 or more Tamers, gain 1 memory.<br>[All Turns] When an opponent plays a Digimon, by suspending this Tamer, gain 1 memory if that Digimon is level 4 or higher, and <Draw 1> if it is level 3.</dd>
  3266. </dl>
  3267. <dl>
  3268. <dt>Digivolveeffect</dt>
  3269. <dd>-</dd>
  3270. </dl>
  3271. <dl>
  3272. <dt>Securityeffect</dt>
  3273. <dd>[Security] Play this card without paying the cost.</dd>
  3274. </dl>
  3275. <dl>
  3276. <dt>Notes</dt>
  3277. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3278. </div>
  3279. </div>
  3280. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3281. </div>
  3282. </div>
  3283. </li>
  3284. <liclass="image_lists_itemdatapage-2">
  3285. <aclass="card_img">
  3286. <imgsrc="../images/cardlist/card/RB1-036.png"alt="RB1-036Proximamon"></a>
  3287. <divclass="popup">
  3288. <divclass="card_detailcard_detail_red_purplemulticolor">
  3289. <divclass="card_detail_inner">
  3290. <ulclass="cardinfo_head">
  3291. <liclass="cardno">RB1-036</li>
  3292. <li>SEC</li>
  3293. <liclass="cardtype">Digimon</li>
  3294. <liclass="cardlv">Lv.7</li>
  3295. </ul>
  3296. <divclass="card_name">Proximamon</div>
  3297. <divclass="cardinfo_top">
  3298. <divclass="card_img">
  3299. <imgsrc="../images/cardlist/card/RB1-036.png"alt="RB1-036Proximamon"></div>
  3300. <divclass="cardinfo_top_body">
  3301. <dl>
  3302. <dt>Form</dt>
  3303. <dd>Mega</dd>
  3304. </dl>
  3305. <dl>
  3306. <dt>Attribute</dt>
  3307. <dd>Virus</dd>
  3308. </dl>
  3309. <dl>
  3310. <dt>Type</dt>
  3311. <dd>Unique</dd>
  3312. </dl>
  3313. <dl>
  3314. <dt>DP</dt>
  3315. <dd>15000</dl>
  3316. <dl>
  3317. <dt>PlayCost</dt>
  3318. <dd>15</dd>
  3319. </dl>
  3320. <dl>
  3321. <dt>DigivolveCost1</dt>
  3322. <dd>6fromLv.6</dd>
  3323. </dl>
  3324. <dl>
  3325. <dt>DigivolveCost2</dt>
  3326. <dd>6fromLv.6</dd>
  3327. </dl>
  3328. </div>
  3329. </div>
  3330. <divclass="cardinfo_bottom">
  3331. <dl>
  3332. <dt>Effect</dt>
  3333. <dd>Digivolve: 3 from [Siriusmon] w/[Arcturusmon] digivolution card<br>[All Turns][Once Per Turn] When another Digimon is deleted, you may play 1 level 4 or lower Digimon card with [Gammamon] in its name from your trash without paying the cost.<br>[End of Your Turn][Once Per Turn] By placing 1 Digimon card with [Gammamon] in its text from your hand or trash as this Digimon's bottom digivolution card, delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.</dd>
  3334. </dl>
  3335. <dl>
  3336. <dt>Digivolveeffect</dt>
  3337. <dd>-</dd>
  3338. </dl>
  3339. <dl>
  3340. <dt>Securityeffect</dt>
  3341. <dd>-</dd>
  3342. </dl>
  3343. <dl>
  3344. <dt>Notes</dt>
  3345. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3346. </div>
  3347. </div>
  3348. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3349. </div>
  3350. </div>
  3351. </li>
  3352. <liclass="image_lists_itemdatapage-2">
  3353. <aclass="card_img">
  3354. <imgsrc="../images/cardlist/card/RB1-036_P1.png"alt="RB1-036Proximamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3355. </a>
  3356. <divclass="popup">
  3357. <divclass="card_detailcard_detail_red_purplemulticolor">
  3358. <divclass="card_detail_inner">
  3359. <ulclass="cardinfo_head">
  3360. <liclass="cardno">RB1-036</li>
  3361. <li>SEC</li>
  3362. <liclass="cardtype">Digimon</li>
  3363. <liclass="cardlv">Lv.7</li>
  3364. <liclass="cardtypecardParallel">AlternativeArt</li>
  3365. </ul>
  3366. <divclass="card_name">Proximamon</div>
  3367. <divclass="cardinfo_top">
  3368. <divclass="card_img">
  3369. <imgsrc="../images/cardlist/card/RB1-036_P1.png"alt="RB1-036Proximamon"></div>
  3370. <divclass="cardinfo_top_body">
  3371. <dl>
  3372. <dt>Form</dt>
  3373. <dd>Mega</dd>
  3374. </dl>
  3375. <dl>
  3376. <dt>Attribute</dt>
  3377. <dd>Virus</dd>
  3378. </dl>
  3379. <dl>
  3380. <dt>Type</dt>
  3381. <dd>Unique</dd>
  3382. </dl>
  3383. <dl>
  3384. <dt>DP</dt>
  3385. <dd>15000</dl>
  3386. <dl>
  3387. <dt>PlayCost</dt>
  3388. <dd>15</dd>
  3389. </dl>
  3390. <dl>
  3391. <dt>DigivolveCost1</dt>
  3392. <dd>6fromLv.6</dd>
  3393. </dl>
  3394. <dl>
  3395. <dt>DigivolveCost2</dt>
  3396. <dd>6fromLv.6</dd>
  3397. </dl>
  3398. </div>
  3399. </div>
  3400. <divclass="cardinfo_bottom">
  3401. <dl>
  3402. <dt>Effect</dt>
  3403. <dd>Digivolve: 3 from [Siriusmon] w/[Arcturusmon] digivolution card<br>[All Turns][Once Per Turn] When another Digimon is deleted, you may play 1 level 4 or lower Digimon card with [Gammamon] in its name from your trash without paying the cost.<br>[End of Your Turn][Once Per Turn] By placing 1 Digimon card with [Gammamon] in its text from your hand or trash as this Digimon's bottom digivolution card, delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.</dd>
  3404. </dl>
  3405. <dl>
  3406. <dt>Digivolveeffect</dt>
  3407. <dd>-</dd>
  3408. </dl>
  3409. <dl>
  3410. <dt>Securityeffect</dt>
  3411. <dd>-</dd>
  3412. </dl>
  3413. <dl>
  3414. <dt>Notes</dt>
  3415. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3416. </div>
  3417. </div>
  3418. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3419. </div>
  3420. </div>
  3421. </li>
  3422. <liclass="image_lists_itemdatapage-2">
  3423. <aclass="card_img">
  3424. <imgsrc="../images/cardlist/card/BT1-003_P3.png"alt="BT1-003Upamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  3425. </a>
  3426. <divclass="popup">
  3427. <divclass="card_detailcard_detail_blue">
  3428. <divclass="card_detail_inner">
  3429. <ulclass="cardinfo_head">
  3430. <liclass="cardno">BT1-003</li>
  3431. <li>R</li>
  3432. <liclass="cardtype">Digi-Egg</li>
  3433. <liclass="cardlv">Lv.2</li>
  3434. <liclass="cardtypecardParallel">AlternativeArt</li>
  3435. </ul>
  3436. <divclass="card_name">Upamon</div>
  3437. <divclass="cardinfo_top">
  3438. <divclass="card_img">
  3439. <imgsrc="../images/cardlist/card/BT1-003_P3.png"alt="BT1-003Upamon"></div>
  3440. <divclass="cardinfo_top_body">
  3441. <dl>
  3442. <dt>Form</dt>
  3443. <dd>In-Training</dd>
  3444. </dl>
  3445. <dl>
  3446. <dt>Attribute</dt>
  3447. <dd>-</dd>
  3448. </dl>
  3449. <dl>
  3450. <dt>Type</dt>
  3451. <dd>Amphibian</dd>
  3452. </dl>
  3453. <dl>
  3454. <dt>DP</dt>
  3455. <dd>-</dl>
  3456. <dl>
  3457. <dt>PlayCost</dt>
  3458. <dd>-</dd>
  3459. </dl>
  3460. <dl>
  3461. <dt>DigivolveCost1</dt>
  3462. <dd>-</dd>
  3463. </dl>
  3464. <dl>
  3465. <dt>DigivolveCost2</dt>
  3466. <dd>-</dd>
  3467. </dl>
  3468. </div>
  3469. </div>
  3470. <divclass="cardinfo_bottom">
  3471. <dl>
  3472. <dt>Effect</dt>
  3473. <dd>-</dd>
  3474. </dl>
  3475. <dl>
  3476. <dt>Digivolveeffect</dt>
  3477. <dd>[When Attacking][Once Per Turn] If your opponent has a Digimon with no digivolution cards in play, trigger <Draw 1> (Draw 1 card from your deck).</dd>
  3478. </dl>
  3479. <dl>
  3480. <dt>Securityeffect</dt>
  3481. <dd>-</dd>
  3482. </dl>
  3483. <dl>
  3484. <dt>Notes</dt>
  3485. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3486. </div>
  3487. </div>
  3488. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3489. </div>
  3490. </div>
  3491. </li>
  3492. <liclass="image_lists_itemdatapage-2">
  3493. <aclass="card_img">
  3494. <imgsrc="../images/cardlist/card/BT1-006_P1.png"alt="BT1-006Cupimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3495. </a>
  3496. <divclass="popup">
  3497. <divclass="card_detailcard_detail_yellow">
  3498. <divclass="card_detail_inner">
  3499. <ulclass="cardinfo_head">
  3500. <liclass="cardno">BT1-006</li>
  3501. <li>R</li>
  3502. <liclass="cardtype">Digi-Egg</li>
  3503. <liclass="cardlv">Lv.2</li>
  3504. <liclass="cardtypecardParallel">AlternativeArt</li>
  3505. </ul>
  3506. <divclass="card_name">Cupimon</div>
  3507. <divclass="cardinfo_top">
  3508. <divclass="card_img">
  3509. <imgsrc="../images/cardlist/card/BT1-006_P1.png"alt="BT1-006Cupimon"></div>
  3510. <divclass="cardinfo_top_body">
  3511. <dl>
  3512. <dt>Form</dt>
  3513. <dd>In-Training</dd>
  3514. </dl>
  3515. <dl>
  3516. <dt>Attribute</dt>
  3517. <dd>-</dd>
  3518. </dl>
  3519. <dl>
  3520. <dt>Type</dt>
  3521. <dd>MiniAngel</dd>
  3522. </dl>
  3523. <dl>
  3524. <dt>DP</dt>
  3525. <dd>-</dl>
  3526. <dl>
  3527. <dt>PlayCost</dt>
  3528. <dd>-</dd>
  3529. </dl>
  3530. <dl>
  3531. <dt>DigivolveCost1</dt>
  3532. <dd>-</dd>
  3533. </dl>
  3534. <dl>
  3535. <dt>DigivolveCost2</dt>
  3536. <dd>-</dd>
  3537. </dl>
  3538. </div>
  3539. </div>
  3540. <divclass="cardinfo_bottom">
  3541. <dl>
  3542. <dt>Effect</dt>
  3543. <dd>-</dd>
  3544. </dl>
  3545. <dl>
  3546. <dt>Digivolveeffect</dt>
  3547. <dd>[When Attacking] If you have 5 or more security cards, trigger <Draw 1> (Draw 1 card from your deck).</dd>
  3548. </dl>
  3549. <dl>
  3550. <dt>Securityeffect</dt>
  3551. <dd>-</dd>
  3552. </dl>
  3553. <dl>
  3554. <dt>Notes</dt>
  3555. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3556. </div>
  3557. </div>
  3558. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3559. </div>
  3560. </div>
  3561. </li>
  3562. <liclass="image_lists_itemdatapage-2">
  3563. <aclass="card_img">
  3564. <imgsrc="../images/cardlist/card/BT1-007_P1.png"alt="BT1-007Tanemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  3565. </a>
  3566. <divclass="popup">
  3567. <divclass="card_detailcard_detail_green">
  3568. <divclass="card_detail_inner">
  3569. <ulclass="cardinfo_head">
  3570. <liclass="cardno">BT1-007</li>
  3571. <li>R</li>
  3572. <liclass="cardtype">Digi-Egg</li>
  3573. <liclass="cardlv">Lv.2</li>
  3574. <liclass="cardtypecardParallel">AlternativeArt</li>
  3575. </ul>
  3576. <divclass="card_name">Tanemon</div>
  3577. <divclass="cardinfo_top">
  3578. <divclass="card_img">
  3579. <imgsrc="../images/cardlist/card/BT1-007_P1.png"alt="BT1-007Tanemon"></div>
  3580. <divclass="cardinfo_top_body">
  3581. <dl>
  3582. <dt>Form</dt>
  3583. <dd>In-Training</dd>
  3584. </dl>
  3585. <dl>
  3586. <dt>Attribute</dt>
  3587. <dd>-</dd>
  3588. </dl>
  3589. <dl>
  3590. <dt>Type</dt>
  3591. <dd>Bulb</dd>
  3592. </dl>
  3593. <dl>
  3594. <dt>DP</dt>
  3595. <dd>-</dl>
  3596. <dl>
  3597. <dt>PlayCost</dt>
  3598. <dd>-</dd>
  3599. </dl>
  3600. <dl>
  3601. <dt>DigivolveCost1</dt>
  3602. <dd>-</dd>
  3603. </dl>
  3604. <dl>
  3605. <dt>DigivolveCost2</dt>
  3606. <dd>-</dd>
  3607. </dl>
  3608. </div>
  3609. </div>
  3610. <divclass="cardinfo_bottom">
  3611. <dl>
  3612. <dt>Effect</dt>
  3613. <dd>-</dd>
  3614. </dl>
  3615. <dl>
  3616. <dt>Digivolveeffect</dt>
  3617. <dd>[When Attacking] If you've digivolved this turn, this Digimon gets +1000 DP for the turn.</dd>
  3618. </dl>
  3619. <dl>
  3620. <dt>Securityeffect</dt>
  3621. <dd>-</dd>
  3622. </dl>
  3623. <dl>
  3624. <dt>Notes</dt>
  3625. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3626. </div>
  3627. </div>
  3628. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3629. </div>
  3630. </div>
  3631. </li>
  3632. <liclass="image_lists_itemdatapage-2">
  3633. <aclass="card_img">
  3634. <imgsrc="../images/cardlist/card/BT1-010_P4.png"alt="BT1-010Agumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  3635. </a>
  3636. <divclass="popup">
  3637. <divclass="card_detailcard_detail_red">
  3638. <divclass="card_detail_inner">
  3639. <ulclass="cardinfo_head">
  3640. <liclass="cardno">BT1-010</li>
  3641. <li>R</li>
  3642. <liclass="cardtype">Digimon</li>
  3643. <liclass="cardlv">Lv.3</li>
  3644. <liclass="cardtypecardParallel">AlternativeArt</li>
  3645. </ul>
  3646. <divclass="card_name">Agumon</div>
  3647. <divclass="cardinfo_top">
  3648. <divclass="card_img">
  3649. <imgsrc="../images/cardlist/card/BT1-010_P4.png"alt="BT1-010Agumon"></div>
  3650. <divclass="cardinfo_top_body">
  3651. <dl>
  3652. <dt>Form</dt>
  3653. <dd>Rookie</dd>
  3654. </dl>
  3655. <dl>
  3656. <dt>Attribute</dt>
  3657. <dd>Vaccine</dd>
  3658. </dl>
  3659. <dl>
  3660. <dt>Type</dt>
  3661. <dd>Reptile</dd>
  3662. </dl>
  3663. <dl>
  3664. <dt>DP</dt>
  3665. <dd>2000</dl>
  3666. <dl>
  3667. <dt>PlayCost</dt>
  3668. <dd>3</dd>
  3669. </dl>
  3670. <dl>
  3671. <dt>DigivolveCost1</dt>
  3672. <dd>0fromLv.2</dd>
  3673. </dl>
  3674. <dl>
  3675. <dt>DigivolveCost2</dt>
  3676. <dd>-</dd>
  3677. </dl>
  3678. </div>
  3679. </div>
  3680. <divclass="cardinfo_bottom">
  3681. <dl>
  3682. <dt>Effect</dt>
  3683. <dd>[On Play] Reveal 5 cards from the top 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>
  3684. </dl>
  3685. <dl>
  3686. <dt>Digivolveeffect</dt>
  3687. <dd>-</dd>
  3688. </dl>
  3689. <dl>
  3690. <dt>Securityeffect</dt>
  3691. <dd>-</dd>
  3692. </dl>
  3693. <dl>
  3694. <dt>Notes</dt>
  3695. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3696. </div>
  3697. </div>
  3698. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3699. </div>
  3700. </div>
  3701. </li>
  3702. <liclass="image_lists_itemdatapage-2">
  3703. <aclass="card_img">
  3704. <imgsrc="../images/cardlist/card/BT1-048_P2.png"alt="BT1-048Patamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3705. </a>
  3706. <divclass="popup">
  3707. <divclass="card_detailcard_detail_yellow">
  3708. <divclass="card_detail_inner">
  3709. <ulclass="cardinfo_head">
  3710. <liclass="cardno">BT1-048</li>
  3711. <li>R</li>
  3712. <liclass="cardtype">Digimon</li>
  3713. <liclass="cardlv">Lv.3</li>
  3714. <liclass="cardtypecardParallel">AlternativeArt</li>
  3715. </ul>
  3716. <divclass="card_name">Patamon</div>
  3717. <divclass="cardinfo_top">
  3718. <divclass="card_img">
  3719. <imgsrc="../images/cardlist/card/BT1-048_P2.png"alt="BT1-048Patamon"></div>
  3720. <divclass="cardinfo_top_body">
  3721. <dl>
  3722. <dt>Form</dt>
  3723. <dd>Rookie</dd>
  3724. </dl>
  3725. <dl>
  3726. <dt>Attribute</dt>
  3727. <dd>Data</dd>
  3728. </dl>
  3729. <dl>
  3730. <dt>Type</dt>
  3731. <dd>Mammal</dd>
  3732. </dl>
  3733. <dl>
  3734. <dt>DP</dt>
  3735. <dd>2000</dl>
  3736. <dl>
  3737. <dt>PlayCost</dt>
  3738. <dd>3</dd>
  3739. </dl>
  3740. <dl>
  3741. <dt>DigivolveCost1</dt>
  3742. <dd>0fromLv.2</dd>
  3743. </dl>
  3744. <dl>
  3745. <dt>DigivolveCost2</dt>
  3746. <dd>-</dd>
  3747. </dl>
  3748. </div>
  3749. </div>
  3750. <divclass="cardinfo_bottom">
  3751. <dl>
  3752. <dt>Effect</dt>
  3753. <dd>[On Play] Reveal 4 cards from the top of your deck. Add all yellow Tamer cards among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3754. </dl>
  3755. <dl>
  3756. <dt>Digivolveeffect</dt>
  3757. <dd>-</dd>
  3758. </dl>
  3759. <dl>
  3760. <dt>Securityeffect</dt>
  3761. <dd>-</dd>
  3762. </dl>
  3763. <dl>
  3764. <dt>Notes</dt>
  3765. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3766. </div>
  3767. </div>
  3768. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3769. </div>
  3770. </div>
  3771. </li>
  3772. <liclass="image_lists_itemdatapage-2">
  3773. <aclass="card_img">
  3774. <imgsrc="../images/cardlist/card/BT1-060_P3.png"alt="BT1-060MagnaAngemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3775. </a>
  3776. <divclass="popup">
  3777. <divclass="card_detailcard_detail_yellow">
  3778. <divclass="card_detail_inner">
  3779. <ulclass="cardinfo_head">
  3780. <liclass="cardno">BT1-060</li>
  3781. <li>SR</li>
  3782. <liclass="cardtype">Digimon</li>
  3783. <liclass="cardlv">Lv.5</li>
  3784. <liclass="cardtypecardParallel">AlternativeArt</li>
  3785. </ul>
  3786. <divclass="card_name">MagnaAngemon</div>
  3787. <divclass="cardinfo_top">
  3788. <divclass="card_img">
  3789. <imgsrc="../images/cardlist/card/BT1-060_P3.png"alt="BT1-060MagnaAngemon"></div>
  3790. <divclass="cardinfo_top_body">
  3791. <dl>
  3792. <dt>Form</dt>
  3793. <dd>Ultimate</dd>
  3794. </dl>
  3795. <dl>
  3796. <dt>Attribute</dt>
  3797. <dd>Vaccine</dd>
  3798. </dl>
  3799. <dl>
  3800. <dt>Type</dt>
  3801. <dd>Archangel</dd>
  3802. </dl>
  3803. <dl>
  3804. <dt>DP</dt>
  3805. <dd>6000</dl>
  3806. <dl>
  3807. <dt>PlayCost</dt>
  3808. <dd>7</dd>
  3809. </dl>
  3810. <dl>
  3811. <dt>DigivolveCost1</dt>
  3812. <dd>3fromLv.4</dd>
  3813. </dl>
  3814. <dl>
  3815. <dt>DigivolveCost2</dt>
  3816. <dd>-</dd>
  3817. </dl>
  3818. </div>
  3819. </div>
  3820. <divclass="cardinfo_bottom">
  3821. <dl>
  3822. <dt>Effect</dt>
  3823. <dd>[On Play] Trigger <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  3824. </dl>
  3825. <dl>
  3826. <dt>Digivolveeffect</dt>
  3827. <dd>[Your Turn] This Digimon gets +1000 DP for every 3 security cards you have.</dd>
  3828. </dl>
  3829. <dl>
  3830. <dt>Securityeffect</dt>
  3831. <dd>-</dd>
  3832. </dl>
  3833. <dl>
  3834. <dt>Notes</dt>
  3835. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3836. </div>
  3837. </div>
  3838. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3839. </div>
  3840. </div>
  3841. </li>
  3842. <liclass="image_lists_itemdatapage-2">
  3843. <aclass="card_img">
  3844. <imgsrc="../images/cardlist/card/BT1-067_P2.png"alt="BT1-067Palmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  3845. </a>
  3846. <divclass="popup">
  3847. <divclass="card_detailcard_detail_green">
  3848. <divclass="card_detail_inner">
  3849. <ulclass="cardinfo_head">
  3850. <liclass="cardno">BT1-067</li>
  3851. <li>U</li>
  3852. <liclass="cardtype">Digimon</li>
  3853. <liclass="cardlv">Lv.3</li>
  3854. <liclass="cardtypecardParallel">AlternativeArt</li>
  3855. </ul>
  3856. <divclass="card_name">Palmon</div>
  3857. <divclass="cardinfo_top">
  3858. <divclass="card_img">
  3859. <imgsrc="../images/cardlist/card/BT1-067_P2.png"alt="BT1-067Palmon"></div>
  3860. <divclass="cardinfo_top_body">
  3861. <dl>
  3862. <dt>Form</dt>
  3863. <dd>Rookie</dd>
  3864. </dl>
  3865. <dl>
  3866. <dt>Attribute</dt>
  3867. <dd>Data</dd>
  3868. </dl>
  3869. <dl>
  3870. <dt>Type</dt>
  3871. <dd>Vegetation</dd>
  3872. </dl>
  3873. <dl>
  3874. <dt>DP</dt>
  3875. <dd>1000</dl>
  3876. <dl>
  3877. <dt>PlayCost</dt>
  3878. <dd>3</dd>
  3879. </dl>
  3880. <dl>
  3881. <dt>DigivolveCost1</dt>
  3882. <dd>0fromLv.2</dd>
  3883. </dl>
  3884. <dl>
  3885. <dt>DigivolveCost2</dt>
  3886. <dd>-</dd>
  3887. </dl>
  3888. </div>
  3889. </div>
  3890. <divclass="cardinfo_bottom">
  3891. <dl>
  3892. <dt>Effect</dt>
  3893. <dd>[On Play] Reveal 3 cards from the top of your deck. Add 1 level 4 Digimon card among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3894. </dl>
  3895. <dl>
  3896. <dt>Digivolveeffect</dt>
  3897. <dd>-</dd>
  3898. </dl>
  3899. <dl>
  3900. <dt>Securityeffect</dt>
  3901. <dd>-</dd>
  3902. </dl>
  3903. <dl>
  3904. <dt>Notes</dt>
  3905. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3906. </div>
  3907. </div>
  3908. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3909. </div>
  3910. </div>
  3911. </li>
  3912. <liclass="image_lists_itemdatapage-2">
  3913. <aclass="card_img">
  3914. <imgsrc="../images/cardlist/card/BT1-085_P3.png"alt="BT1-085TaiKamiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  3915. </a>
  3916. <divclass="popup">
  3917. <divclass="card_detailcard_detail_red">
  3918. <divclass="card_detail_inner">
  3919. <ulclass="cardinfo_head">
  3920. <liclass="cardno">BT1-085</li>
  3921. <li>R</li>
  3922. <liclass="cardtype">Tamer</li>
  3923. <liclass="cardtypecardParallel">AlternativeArt</li>
  3924. </ul>
  3925. <divclass="card_name">TaiKamiya</div>
  3926. <divclass="cardinfo_top">
  3927. <divclass="card_img">
  3928. <imgsrc="../images/cardlist/card/BT1-085_P3.png"alt="BT1-085TaiKamiya"></div>
  3929. <divclass="cardinfo_top_body">
  3930. <dl>
  3931. <dt>Form</dt>
  3932. <dd>-</dd>
  3933. </dl>
  3934. <dl>
  3935. <dt>Attribute</dt>
  3936. <dd>-</dd>
  3937. </dl>
  3938. <dl>
  3939. <dt>Type</dt>
  3940. <dd>-</dd>
  3941. </dl>
  3942. <dl>
  3943. <dt>DP</dt>
  3944. <dd>-</dl>
  3945. <dl>
  3946. <dt>PlayCost</dt>
  3947. <dd>4</dd>
  3948. </dl>
  3949. <dl>
  3950. <dt>DigivolveCost1</dt>
  3951. <dd>-</dd>
  3952. </dl>
  3953. <dl>
  3954. <dt>DigivolveCost2</dt>
  3955. <dd>-</dd>
  3956. </dl>
  3957. </div>
  3958. </div>
  3959. <divclass="cardinfo_bottom">
  3960. <dl>
  3961. <dt>Effect</dt>
  3962. <dd>[Start of Your Turn] If you have 2 or less memory, set your memory to 3.[Your Turn] All of your red Digimon with 4 or more digivolution cards gain <Security Attack +1> (This Digimon checks 1 additional security card).</dd>
  3963. </dl>
  3964. <dl>
  3965. <dt>Digivolveeffect</dt>
  3966. <dd>-</dd>
  3967. </dl>
  3968. <dl>
  3969. <dt>Securityeffect</dt>
  3970. <dd>[Security] Play this card without paying its memory cost.</dd>
  3971. </dl>
  3972. <dl>
  3973. <dt>Notes</dt>
  3974. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  3975. </div>
  3976. </div>
  3977. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3978. </div>
  3979. </div>
  3980. </li>
  3981. <liclass="image_lists_itemdatapage-2">
  3982. <aclass="card_img">
  3983. <imgsrc="../images/cardlist/card/BT1-087_P3.png"alt="BT1-087T.K.Takaishi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3984. </a>
  3985. <divclass="popup">
  3986. <divclass="card_detailcard_detail_yellow">
  3987. <divclass="card_detail_inner">
  3988. <ulclass="cardinfo_head">
  3989. <liclass="cardno">BT1-087</li>
  3990. <li>R</li>
  3991. <liclass="cardtype">Tamer</li>
  3992. <liclass="cardtypecardParallel">AlternativeArt</li>
  3993. </ul>
  3994. <divclass="card_name">T.K.Takaishi</div>
  3995. <divclass="cardinfo_top">
  3996. <divclass="card_img">
  3997. <imgsrc="../images/cardlist/card/BT1-087_P3.png"alt="BT1-087T.K.Takaishi"></div>
  3998. <divclass="cardinfo_top_body">
  3999. <dl>
  4000. <dt>Form</dt>
  4001. <dd>-</dd>
  4002. </dl>
  4003. <dl>
  4004. <dt>Attribute</dt>
  4005. <dd>-</dd>
  4006. </dl>
  4007. <dl>
  4008. <dt>Type</dt>
  4009. <dd>-</dd>
  4010. </dl>
  4011. <dl>
  4012. <dt>DP</dt>
  4013. <dd>-</dl>
  4014. <dl>
  4015. <dt>PlayCost</dt>
  4016. <dd>4</dd>
  4017. </dl>
  4018. <dl>
  4019. <dt>DigivolveCost1</dt>
  4020. <dd>-</dd>
  4021. </dl>
  4022. <dl>
  4023. <dt>DigivolveCost2</dt>
  4024. <dd>-</dd>
  4025. </dl>
  4026. </div>
  4027. </div>
  4028. <divclass="cardinfo_bottom">
  4029. <dl>
  4030. <dt>Effect</dt>
  4031. <dd>[Start of Your Turn] If you have 2 or less memory, set your memory to 3.[On Play] Look at your security stack, then reveal 1 card in it and add it to your hand. If that card is yellow, trigger <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) Then shuffle your security stack.</dd>
  4032. </dl>
  4033. <dl>
  4034. <dt>Digivolveeffect</dt>
  4035. <dd>-</dd>
  4036. </dl>
  4037. <dl>
  4038. <dt>Securityeffect</dt>
  4039. <dd>[Security] Play this card without paying its memory cost.</dd>
  4040. </dl>
  4041. <dl>
  4042. <dt>Notes</dt>
  4043. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4044. </div>
  4045. </div>
  4046. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4047. </div>
  4048. </div>
  4049. </li>
  4050. <liclass="image_lists_itemdatapage-2">
  4051. <aclass="card_img">
  4052. <imgsrc="../images/cardlist/card/BT1-089_P3.png"alt="BT1-089MimiTachikawa"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4053. </a>
  4054. <divclass="popup">
  4055. <divclass="card_detailcard_detail_green">
  4056. <divclass="card_detail_inner">
  4057. <ulclass="cardinfo_head">
  4058. <liclass="cardno">BT1-089</li>
  4059. <li>R</li>
  4060. <liclass="cardtype">Tamer</li>
  4061. <liclass="cardtypecardParallel">AlternativeArt</li>
  4062. </ul>
  4063. <divclass="card_name">MimiTachikawa</div>
  4064. <divclass="cardinfo_top">
  4065. <divclass="card_img">
  4066. <imgsrc="../images/cardlist/card/BT1-089_P3.png"alt="BT1-089MimiTachikawa"></div>
  4067. <divclass="cardinfo_top_body">
  4068. <dl>
  4069. <dt>Form</dt>
  4070. <dd>-</dd>
  4071. </dl>
  4072. <dl>
  4073. <dt>Attribute</dt>
  4074. <dd>-</dd>
  4075. </dl>
  4076. <dl>
  4077. <dt>Type</dt>
  4078. <dd>-</dd>
  4079. </dl>
  4080. <dl>
  4081. <dt>DP</dt>
  4082. <dd>-</dl>
  4083. <dl>
  4084. <dt>PlayCost</dt>
  4085. <dd>4</dd>
  4086. </dl>
  4087. <dl>
  4088. <dt>DigivolveCost1</dt>
  4089. <dd>-</dd>
  4090. </dl>
  4091. <dl>
  4092. <dt>DigivolveCost2</dt>
  4093. <dd>-</dd>
  4094. </dl>
  4095. </div>
  4096. </div>
  4097. <divclass="cardinfo_bottom">
  4098. <dl>
  4099. <dt>Effect</dt>
  4100. <dd>[Start of Your Turn] If you have 2 or less memory, set your memory to 3.[Main] If you have a level 5 or higher green Digimon in play, you can suspend this Tamer to hatch 1 Digi-Egg card to an empty space in your breeding area, or move 1 level 3 or higher Digimon from your breeding area to your battle area. </dd>
  4101. </dl>
  4102. <dl>
  4103. <dt>Digivolveeffect</dt>
  4104. <dd>-</dd>
  4105. </dl>
  4106. <dl>
  4107. <dt>Securityeffect</dt>
  4108. <dd>[Security] Play this card without paying its memory cost.</dd>
  4109. </dl>
  4110. <dl>
  4111. <dt>Notes</dt>
  4112. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4113. </div>
  4114. </div>
  4115. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4116. </div>
  4117. </div>
  4118. </li>
  4119. <liclass="image_lists_itemdatapage-2">
  4120. <aclass="card_img">
  4121. <imgsrc="../images/cardlist/card/BT1-114_P2.png"alt="BT1-114MetalGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  4122. </a>
  4123. <divclass="popup">
  4124. <divclass="card_detailcard_detail_red">
  4125. <divclass="card_detail_inner">
  4126. <ulclass="cardinfo_head">
  4127. <liclass="cardno">BT1-114</li>
  4128. <li>SEC</li>
  4129. <liclass="cardtype">Digimon</li>
  4130. <liclass="cardlv">Lv.5</li>
  4131. <liclass="cardtypecardParallel">AlternativeArt</li>
  4132. </ul>
  4133. <divclass="card_name">MetalGreymon</div>
  4134. <divclass="cardinfo_top">
  4135. <divclass="card_img">
  4136. <imgsrc="../images/cardlist/card/BT1-114_P2.png"alt="BT1-114MetalGreymon"></div>
  4137. <divclass="cardinfo_top_body">
  4138. <dl>
  4139. <dt>Form</dt>
  4140. <dd>Ultimate</dd>
  4141. </dl>
  4142. <dl>
  4143. <dt>Attribute</dt>
  4144. <dd>Virus</dd>
  4145. </dl>
  4146. <dl>
  4147. <dt>Type</dt>
  4148. <dd>Cyborg</dd>
  4149. </dl>
  4150. <dl>
  4151. <dt>DP</dt>
  4152. <dd>9000</dl>
  4153. <dl>
  4154. <dt>PlayCost</dt>
  4155. <dd>8</dd>
  4156. </dl>
  4157. <dl>
  4158. <dt>DigivolveCost1</dt>
  4159. <dd>3fromLv.4</dd>
  4160. </dl>
  4161. <dl>
  4162. <dt>DigivolveCost2</dt>
  4163. <dd>-</dd>
  4164. </dl>
  4165. </div>
  4166. </div>
  4167. <divclass="cardinfo_bottom">
  4168. <dl>
  4169. <dt>Effect</dt>
  4170. <dd><Security Attack +2> (This Digimon checks 2 additional security cards.)[When Attacking] Lose 5 memory.</dd>
  4171. </dl>
  4172. <dl>
  4173. <dt>Digivolveeffect</dt>
  4174. <dd>[Your Turn] This Digimon gets +3000 DP.</dd>
  4175. </dl>
  4176. <dl>
  4177. <dt>Securityeffect</dt>
  4178. <dd>-</dd>
  4179. </dl>
  4180. <dl>
  4181. <dt>Notes</dt>
  4182. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4183. </div>
  4184. </div>
  4185. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4186. </div>
  4187. </div>
  4188. </li>
  4189. <liclass="image_lists_itemdatapage-2">
  4190. <aclass="card_img">
  4191. <imgsrc="../images/cardlist/card/BT1-115_P2.png"alt="BT1-115Veedramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  4192. </a>
  4193. <divclass="popup">
  4194. <divclass="card_detailcard_detail_blue">
  4195. <divclass="card_detail_inner">
  4196. <ulclass="cardinfo_head">
  4197. <liclass="cardno">BT1-115</li>
  4198. <li>SEC</li>
  4199. <liclass="cardtype">Digimon</li>
  4200. <liclass="cardlv">Lv.4</li>
  4201. <liclass="cardtypecardParallel">AlternativeArt</li>
  4202. </ul>
  4203. <divclass="card_name">Veedramon</div>
  4204. <divclass="cardinfo_top">
  4205. <divclass="card_img">
  4206. <imgsrc="../images/cardlist/card/BT1-115_P2.png"alt="BT1-115Veedramon"></div>
  4207. <divclass="cardinfo_top_body">
  4208. <dl>
  4209. <dt>Form</dt>
  4210. <dd>Champion</dd>
  4211. </dl>
  4212. <dl>
  4213. <dt>Attribute</dt>
  4214. <dd>Vaccine</dd>
  4215. </dl>
  4216. <dl>
  4217. <dt>Type</dt>
  4218. <dd>MythicalDragon</dd>
  4219. </dl>
  4220. <dl>
  4221. <dt>DP</dt>
  4222. <dd>6000</dl>
  4223. <dl>
  4224. <dt>PlayCost</dt>
  4225. <dd>6</dd>
  4226. </dl>
  4227. <dl>
  4228. <dt>DigivolveCost1</dt>
  4229. <dd>3fromLv.3</dd>
  4230. </dl>
  4231. <dl>
  4232. <dt>DigivolveCost2</dt>
  4233. <dd>-</dd>
  4234. </dl>
  4235. </div>
  4236. </div>
  4237. <divclass="cardinfo_bottom">
  4238. <dl>
  4239. <dt>Effect</dt>
  4240. <dd>[When Attacking][Once Per Turn] If you have a Tamer in play, unsuspend this Digimon.</dd>
  4241. </dl>
  4242. <dl>
  4243. <dt>Digivolveeffect</dt>
  4244. <dd>[All Turns] While you have a blue Tamer in play, this Digimon gets +1000 DP.</dd>
  4245. </dl>
  4246. <dl>
  4247. <dt>Securityeffect</dt>
  4248. <dd>-</dd>
  4249. </dl>
  4250. <dl>
  4251. <dt>Notes</dt>
  4252. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4253. </div>
  4254. </div>
  4255. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4256. </div>
  4257. </div>
  4258. </li>
  4259. <liclass="image_lists_itemdatapage-2">
  4260. <aclass="card_img">
  4261. <imgsrc="../images/cardlist/card/BT2-006_P1.png"alt="BT2-006Tsumemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4262. </a>
  4263. <divclass="popup">
  4264. <divclass="card_detailcard_detail_black">
  4265. <divclass="card_detail_inner">
  4266. <ulclass="cardinfo_head">
  4267. <liclass="cardno">BT2-006</li>
  4268. <li>R</li>
  4269. <liclass="cardtype">Digi-Egg</li>
  4270. <liclass="cardlv">Lv.2</li>
  4271. <liclass="cardtypecardParallel">AlternativeArt</li>
  4272. </ul>
  4273. <divclass="card_name">Tsumemon</div>
  4274. <divclass="cardinfo_top">
  4275. <divclass="card_img">
  4276. <imgsrc="../images/cardlist/card/BT2-006_P1.png"alt="BT2-006Tsumemon"></div>
  4277. <divclass="cardinfo_top_body">
  4278. <dl>
  4279. <dt>Form</dt>
  4280. <dd>In-Training</dd>
  4281. </dl>
  4282. <dl>
  4283. <dt>Attribute</dt>
  4284. <dd>-</dd>
  4285. </dl>
  4286. <dl>
  4287. <dt>Type</dt>
  4288. <dd>Unidentified</dd>
  4289. </dl>
  4290. <dl>
  4291. <dt>DP</dt>
  4292. <dd>-</dl>
  4293. <dl>
  4294. <dt>PlayCost</dt>
  4295. <dd>-</dd>
  4296. </dl>
  4297. <dl>
  4298. <dt>DigivolveCost1</dt>
  4299. <dd>-</dd>
  4300. </dl>
  4301. <dl>
  4302. <dt>DigivolveCost2</dt>
  4303. <dd>-</dd>
  4304. </dl>
  4305. </div>
  4306. </div>
  4307. <divclass="cardinfo_bottom">
  4308. <dl>
  4309. <dt>Effect</dt>
  4310. <dd>-</dd>
  4311. </dl>
  4312. <dl>
  4313. <dt>Digivolveeffect</dt>
  4314. <dd>[Your Turn] While you have another Digimon in play with the same name as this Digimon, this Digimon gets +2000 DP.</dd>
  4315. </dl>
  4316. <dl>
  4317. <dt>Securityeffect</dt>
  4318. <dd>-</dd>
  4319. </dl>
  4320. <dl>
  4321. <dt>Notes</dt>
  4322. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4323. </div>
  4324. </div>
  4325. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4326. </div>
  4327. </div>
  4328. </li>
  4329. <liclass="image_lists_itemdatapage-2">
  4330. <aclass="card_img">
  4331. <imgsrc="../images/cardlist/card/BT2-032_P4.png"alt="BT2-032UlforceVeedramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  4332. </a>
  4333. <divclass="popup">
  4334. <divclass="card_detailcard_detail_blue">
  4335. <divclass="card_detail_inner">
  4336. <ulclass="cardinfo_head">
  4337. <liclass="cardno">BT2-032</li>
  4338. <li>SR</li>
  4339. <liclass="cardtype">Digimon</li>
  4340. <liclass="cardlv">Lv.6</li>
  4341. <liclass="cardtypecardParallel">AlternativeArt</li>
  4342. </ul>
  4343. <divclass="card_name">UlforceVeedramon</div>
  4344. <divclass="cardinfo_top">
  4345. <divclass="card_img">
  4346. <imgsrc="../images/cardlist/card/BT2-032_P4.png"alt="BT2-032UlforceVeedramon"></div>
  4347. <divclass="cardinfo_top_body">
  4348. <dl>
  4349. <dt>Form</dt>
  4350. <dd>Mega</dd>
  4351. </dl>
  4352. <dl>
  4353. <dt>Attribute</dt>
  4354. <dd>Vaccine</dd>
  4355. </dl>
  4356. <dl>
  4357. <dt>Type</dt>
  4358. <dd>HolyWarrior/RoyalKnight</dd>
  4359. </dl>
  4360. <dl>
  4361. <dt>DP</dt>
  4362. <dd>11000</dl>
  4363. <dl>
  4364. <dt>PlayCost</dt>
  4365. <dd>13</dd>
  4366. </dl>
  4367. <dl>
  4368. <dt>DigivolveCost1</dt>
  4369. <dd>3fromLv.5</dd>
  4370. </dl>
  4371. <dl>
  4372. <dt>DigivolveCost2</dt>
  4373. <dd>-</dd>
  4374. </dl>
  4375. </div>
  4376. </div>
  4377. <divclass="cardinfo_bottom">
  4378. <dl>
  4379. <dt>Effect</dt>
  4380. <dd>[Your Turn] When one of your blue Tamers becomes suspended, unsuspend this Digimon.[Your Turn][Once Per Turn] When this Digimon becomes unsuspended during your main phase, gain 1 memory.</dd>
  4381. </dl>
  4382. <dl>
  4383. <dt>Digivolveeffect</dt>
  4384. <dd>-</dd>
  4385. </dl>
  4386. <dl>
  4387. <dt>Securityeffect</dt>
  4388. <dd>-</dd>
  4389. </dl>
  4390. <dl>
  4391. <dt>Notes</dt>
  4392. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4393. </div>
  4394. </div>
  4395. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4396. </div>
  4397. </div>
  4398. </li>
  4399. <liclass="image_lists_itemdatapage-2">
  4400. <aclass="card_img">
  4401. <imgsrc="../images/cardlist/card/BT2-034_P2.png"alt="BT2-034Salamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4402. </a>
  4403. <divclass="popup">
  4404. <divclass="card_detailcard_detail_yellow">
  4405. <divclass="card_detail_inner">
  4406. <ulclass="cardinfo_head">
  4407. <liclass="cardno">BT2-034</li>
  4408. <li>U</li>
  4409. <liclass="cardtype">Digimon</li>
  4410. <liclass="cardlv">Lv.3</li>
  4411. <liclass="cardtypecardParallel">AlternativeArt</li>
  4412. </ul>
  4413. <divclass="card_name">Salamon</div>
  4414. <divclass="cardinfo_top">
  4415. <divclass="card_img">
  4416. <imgsrc="../images/cardlist/card/BT2-034_P2.png"alt="BT2-034Salamon"></div>
  4417. <divclass="cardinfo_top_body">
  4418. <dl>
  4419. <dt>Form</dt>
  4420. <dd>Rookie</dd>
  4421. </dl>
  4422. <dl>
  4423. <dt>Attribute</dt>
  4424. <dd>Vaccine</dd>
  4425. </dl>
  4426. <dl>
  4427. <dt>Type</dt>
  4428. <dd>Mammal</dd>
  4429. </dl>
  4430. <dl>
  4431. <dt>DP</dt>
  4432. <dd>2000</dl>
  4433. <dl>
  4434. <dt>PlayCost</dt>
  4435. <dd>4</dd>
  4436. </dl>
  4437. <dl>
  4438. <dt>DigivolveCost1</dt>
  4439. <dd>0fromLv.2</dd>
  4440. </dl>
  4441. <dl>
  4442. <dt>DigivolveCost2</dt>
  4443. <dd>-</dd>
  4444. </dl>
  4445. </div>
  4446. </div>
  4447. <divclass="cardinfo_bottom">
  4448. <dl>
  4449. <dt>Effect</dt>
  4450. <dd>[On Deletion] 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>
  4451. </dl>
  4452. <dl>
  4453. <dt>Digivolveeffect</dt>
  4454. <dd>-</dd>
  4455. </dl>
  4456. <dl>
  4457. <dt>Securityeffect</dt>
  4458. <dd>-</dd>
  4459. </dl>
  4460. <dl>
  4461. <dt>Notes</dt>
  4462. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4463. </div>
  4464. </div>
  4465. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4466. </div>
  4467. </div>
  4468. </li>
  4469. <liclass="image_lists_itemdatapage-2">
  4470. <aclass="card_img">
  4471. <imgsrc="../images/cardlist/card/BT2-038_P3.png"alt="BT2-038RizeGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4472. </a>
  4473. <divclass="popup">
  4474. <divclass="card_detailcard_detail_yellow">
  4475. <divclass="card_detail_inner">
  4476. <ulclass="cardinfo_head">
  4477. <liclass="cardno">BT2-038</li>
  4478. <li>R</li>
  4479. <liclass="cardtype">Digimon</li>
  4480. <liclass="cardlv">Lv.5</li>
  4481. <liclass="cardtypecardParallel">AlternativeArt</li>
  4482. </ul>
  4483. <divclass="card_name">RizeGreymon</div>
  4484. <divclass="cardinfo_top">
  4485. <divclass="card_img">
  4486. <imgsrc="../images/cardlist/card/BT2-038_P3.png"alt="BT2-038RizeGreymon"></div>
  4487. <divclass="cardinfo_top_body">
  4488. <dl>
  4489. <dt>Form</dt>
  4490. <dd>Ultimate</dd>
  4491. </dl>
  4492. <dl>
  4493. <dt>Attribute</dt>
  4494. <dd>Vaccine</dd>
  4495. </dl>
  4496. <dl>
  4497. <dt>Type</dt>
  4498. <dd>Cyborg</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>DP</dt>
  4502. <dd>7000</dl>
  4503. <dl>
  4504. <dt>PlayCost</dt>
  4505. <dd>8</dd>
  4506. </dl>
  4507. <dl>
  4508. <dt>DigivolveCost1</dt>
  4509. <dd>3fromLv.4</dd>
  4510. </dl>
  4511. <dl>
  4512. <dt>DigivolveCost2</dt>
  4513. <dd>-</dd>
  4514. </dl>
  4515. </div>
  4516. </div>
  4517. <divclass="cardinfo_bottom">
  4518. <dl>
  4519. <dt>Effect</dt>
  4520. <dd>[When Digivolving] You may play 1 yellow Tamer card from your hand without paying its memory cost. Any [On Play] effects on the Tamer played with this effect don't activate. </dd>
  4521. </dl>
  4522. <dl>
  4523. <dt>Digivolveeffect</dt>
  4524. <dd>[Your Turn] While you have 3 or more yellow Tamers in play, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  4525. </dl>
  4526. <dl>
  4527. <dt>Securityeffect</dt>
  4528. <dd>-</dd>
  4529. </dl>
  4530. <dl>
  4531. <dt>Notes</dt>
  4532. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4533. </div>
  4534. </div>
  4535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4536. </div>
  4537. </div>
  4538. </li>
  4539. <liclass="image_lists_itemdatapage-2">
  4540. <aclass="card_img">
  4541. <imgsrc="../images/cardlist/card/BT2-041_P2.png"alt="BT2-041ShineGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4542. </a>
  4543. <divclass="popup">
  4544. <divclass="card_detailcard_detail_yellow">
  4545. <divclass="card_detail_inner">
  4546. <ulclass="cardinfo_head">
  4547. <liclass="cardno">BT2-041</li>
  4548. <li>SR</li>
  4549. <liclass="cardtype">Digimon</li>
  4550. <liclass="cardlv">Lv.6</li>
  4551. <liclass="cardtypecardParallel">AlternativeArt</li>
  4552. </ul>
  4553. <divclass="card_name">ShineGreymon</div>
  4554. <divclass="cardinfo_top">
  4555. <divclass="card_img">
  4556. <imgsrc="../images/cardlist/card/BT2-041_P2.png"alt="BT2-041ShineGreymon"></div>
  4557. <divclass="cardinfo_top_body">
  4558. <dl>
  4559. <dt>Form</dt>
  4560. <dd>Mega</dd>
  4561. </dl>
  4562. <dl>
  4563. <dt>Attribute</dt>
  4564. <dd>Vaccine</dd>
  4565. </dl>
  4566. <dl>
  4567. <dt>Type</dt>
  4568. <dd>LightDragon</dd>
  4569. </dl>
  4570. <dl>
  4571. <dt>DP</dt>
  4572. <dd>11000</dl>
  4573. <dl>
  4574. <dt>PlayCost</dt>
  4575. <dd>12</dd>
  4576. </dl>
  4577. <dl>
  4578. <dt>DigivolveCost1</dt>
  4579. <dd>4fromLv.5</dd>
  4580. </dl>
  4581. <dl>
  4582. <dt>DigivolveCost2</dt>
  4583. <dd>-</dd>
  4584. </dl>
  4585. </div>
  4586. </div>
  4587. <divclass="cardinfo_bottom">
  4588. <dl>
  4589. <dt>Effect</dt>
  4590. <dd>[When Digivolving] Suspend all of your yellow Tamers. For each Tamer you suspend this way, activate the following effect:・1 of your opponent's Digimon gets -4000 DP for the turn.[Your Turn] This Digimon gets +1000 DP for each Tamer you have in play.</dd>
  4591. </dl>
  4592. <dl>
  4593. <dt>Digivolveeffect</dt>
  4594. <dd>-</dd>
  4595. </dl>
  4596. <dl>
  4597. <dt>Securityeffect</dt>
  4598. <dd>-</dd>
  4599. </dl>
  4600. <dl>
  4601. <dt>Notes</dt>
  4602. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4603. </div>
  4604. </div>
  4605. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4606. </div>
  4607. </div>
  4608. </li>
  4609. <liclass="image_lists_itemdatapage-2">
  4610. <aclass="card_img">
  4611. <imgsrc="../images/cardlist/card/BT2-055_P3.png"alt="BT2-055ToyAgumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4612. </a>
  4613. <divclass="popup">
  4614. <divclass="card_detailcard_detail_black">
  4615. <divclass="card_detail_inner">
  4616. <ulclass="cardinfo_head">
  4617. <liclass="cardno">BT2-055</li>
  4618. <li>C</li>
  4619. <liclass="cardtype">Digimon</li>
  4620. <liclass="cardlv">Lv.3</li>
  4621. <liclass="cardtypecardParallel">AlternativeArt</li>
  4622. </ul>
  4623. <divclass="card_name">ToyAgumon</div>
  4624. <divclass="cardinfo_top">
  4625. <divclass="card_img">
  4626. <imgsrc="../images/cardlist/card/BT2-055_P3.png"alt="BT2-055ToyAgumon"></div>
  4627. <divclass="cardinfo_top_body">
  4628. <dl>
  4629. <dt>Form</dt>
  4630. <dd>Rookie</dd>
  4631. </dl>
  4632. <dl>
  4633. <dt>Attribute</dt>
  4634. <dd>Vaccine</dd>
  4635. </dl>
  4636. <dl>
  4637. <dt>Type</dt>
  4638. <dd>Puppet</dd>
  4639. </dl>
  4640. <dl>
  4641. <dt>DP</dt>
  4642. <dd>1000</dl>
  4643. <dl>
  4644. <dt>PlayCost</dt>
  4645. <dd>3</dd>
  4646. </dl>
  4647. <dl>
  4648. <dt>DigivolveCost1</dt>
  4649. <dd>0fromLv.2</dd>
  4650. </dl>
  4651. <dl>
  4652. <dt>DigivolveCost2</dt>
  4653. <dd>-</dd>
  4654. </dl>
  4655. </div>
  4656. </div>
  4657. <divclass="cardinfo_bottom">
  4658. <dl>
  4659. <dt>Effect</dt>
  4660. <dd>-</dd>
  4661. </dl>
  4662. <dl>
  4663. <dt>Digivolveeffect</dt>
  4664. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase.)</dd>
  4665. </dl>
  4666. <dl>
  4667. <dt>Securityeffect</dt>
  4668. <dd>-</dd>
  4669. </dl>
  4670. <dl>
  4671. <dt>Notes</dt>
  4672. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4673. </div>
  4674. </div>
  4675. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4676. </div>
  4677. </div>
  4678. </li>
  4679. <liclass="image_lists_itemdatapage-2">
  4680. <aclass="card_img">
  4681. <imgsrc="../images/cardlist/card/BT2-069_P2.png"alt="BT2-069Gabumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  4682. </a>
  4683. <divclass="popup">
  4684. <divclass="card_detailcard_detail_purple">
  4685. <divclass="card_detail_inner">
  4686. <ulclass="cardinfo_head">
  4687. <liclass="cardno">BT2-069</li>
  4688. <li>C</li>
  4689. <liclass="cardtype">Digimon</li>
  4690. <liclass="cardlv">Lv.3</li>
  4691. <liclass="cardtypecardParallel">AlternativeArt</li>
  4692. </ul>
  4693. <divclass="card_name">Gabumon</div>
  4694. <divclass="cardinfo_top">
  4695. <divclass="card_img">
  4696. <imgsrc="../images/cardlist/card/BT2-069_P2.png"alt="BT2-069Gabumon"></div>
  4697. <divclass="cardinfo_top_body">
  4698. <dl>
  4699. <dt>Form</dt>
  4700. <dd>Rookie</dd>
  4701. </dl>
  4702. <dl>
  4703. <dt>Attribute</dt>
  4704. <dd>Data</dd>
  4705. </dl>
  4706. <dl>
  4707. <dt>Type</dt>
  4708. <dd>Reptile</dd>
  4709. </dl>
  4710. <dl>
  4711. <dt>DP</dt>
  4712. <dd>2000</dl>
  4713. <dl>
  4714. <dt>PlayCost</dt>
  4715. <dd>3</dd>
  4716. </dl>
  4717. <dl>
  4718. <dt>DigivolveCost1</dt>
  4719. <dd>0fromLv.2</dd>
  4720. </dl>
  4721. <dl>
  4722. <dt>DigivolveCost2</dt>
  4723. <dd>-</dd>
  4724. </dl>
  4725. </div>
  4726. </div>
  4727. <divclass="cardinfo_bottom">
  4728. <dl>
  4729. <dt>Effect</dt>
  4730. <dd>-</dd>
  4731. </dl>
  4732. <dl>
  4733. <dt>Digivolveeffect</dt>
  4734. <dd>[On Deletion] Trigger <Draw 2>. (Draw 2 cards from your deck.) Then trash 1 card from your hand.</dd>
  4735. </dl>
  4736. <dl>
  4737. <dt>Securityeffect</dt>
  4738. <dd>-</dd>
  4739. </dl>
  4740. <dl>
  4741. <dt>Notes</dt>
  4742. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4743. </div>
  4744. </div>
  4745. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4746. </div>
  4747. </div>
  4748. </li>
  4749. <liclass="image_lists_itemdatapage-2">
  4750. <aclass="card_img">
  4751. <imgsrc="../images/cardlist/card/BT2-070_P2.png"alt="BT2-070Tapirmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  4752. </a>
  4753. <divclass="popup">
  4754. <divclass="card_detailcard_detail_purple">
  4755. <divclass="card_detail_inner">
  4756. <ulclass="cardinfo_head">
  4757. <liclass="cardno">BT2-070</li>
  4758. <li>U</li>
  4759. <liclass="cardtype">Digimon</li>
  4760. <liclass="cardlv">Lv.3</li>
  4761. <liclass="cardtypecardParallel">AlternativeArt</li>
  4762. </ul>
  4763. <divclass="card_name">Tapirmon</div>
  4764. <divclass="cardinfo_top">
  4765. <divclass="card_img">
  4766. <imgsrc="../images/cardlist/card/BT2-070_P2.png"alt="BT2-070Tapirmon"></div>
  4767. <divclass="cardinfo_top_body">
  4768. <dl>
  4769. <dt>Form</dt>
  4770. <dd>Rookie</dd>
  4771. </dl>
  4772. <dl>
  4773. <dt>Attribute</dt>
  4774. <dd>Vaccine</dd>
  4775. </dl>
  4776. <dl>
  4777. <dt>Type</dt>
  4778. <dd>HolyBeast</dd>
  4779. </dl>
  4780. <dl>
  4781. <dt>DP</dt>
  4782. <dd>2000</dl>
  4783. <dl>
  4784. <dt>PlayCost</dt>
  4785. <dd>3</dd>
  4786. </dl>
  4787. <dl>
  4788. <dt>DigivolveCost1</dt>
  4789. <dd>0fromLv.2</dd>
  4790. </dl>
  4791. <dl>
  4792. <dt>DigivolveCost2</dt>
  4793. <dd>-</dd>
  4794. </dl>
  4795. </div>
  4796. </div>
  4797. <divclass="cardinfo_bottom">
  4798. <dl>
  4799. <dt>Effect</dt>
  4800. <dd>[On Deletion] Trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  4801. </dl>
  4802. <dl>
  4803. <dt>Digivolveeffect</dt>
  4804. <dd>-</dd>
  4805. </dl>
  4806. <dl>
  4807. <dt>Securityeffect</dt>
  4808. <dd>-</dd>
  4809. </dl>
  4810. <dl>
  4811. <dt>Notes</dt>
  4812. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4813. </div>
  4814. </div>
  4815. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4816. </div>
  4817. </div>
  4818. </li>
  4819. <liclass="image_lists_itemdatapage-2">
  4820. <aclass="card_img">
  4821. <imgsrc="../images/cardlist/card/BT2-074_P2.png"alt="BT2-074Devimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  4822. </a>
  4823. <divclass="popup">
  4824. <divclass="card_detailcard_detail_purple">
  4825. <divclass="card_detail_inner">
  4826. <ulclass="cardinfo_head">
  4827. <liclass="cardno">BT2-074</li>
  4828. <li>U</li>
  4829. <liclass="cardtype">Digimon</li>
  4830. <liclass="cardlv">Lv.4</li>
  4831. <liclass="cardtypecardParallel">AlternativeArt</li>
  4832. </ul>
  4833. <divclass="card_name">Devimon</div>
  4834. <divclass="cardinfo_top">
  4835. <divclass="card_img">
  4836. <imgsrc="../images/cardlist/card/BT2-074_P2.png"alt="BT2-074Devimon"></div>
  4837. <divclass="cardinfo_top_body">
  4838. <dl>
  4839. <dt>Form</dt>
  4840. <dd>Champion</dd>
  4841. </dl>
  4842. <dl>
  4843. <dt>Attribute</dt>
  4844. <dd>Virus</dd>
  4845. </dl>
  4846. <dl>
  4847. <dt>Type</dt>
  4848. <dd>FallenAngel</dd>
  4849. </dl>
  4850. <dl>
  4851. <dt>DP</dt>
  4852. <dd>4000</dl>
  4853. <dl>
  4854. <dt>PlayCost</dt>
  4855. <dd>6</dd>
  4856. </dl>
  4857. <dl>
  4858. <dt>DigivolveCost1</dt>
  4859. <dd>2fromLv.3</dd>
  4860. </dl>
  4861. <dl>
  4862. <dt>DigivolveCost2</dt>
  4863. <dd>-</dd>
  4864. </dl>
  4865. </div>
  4866. </div>
  4867. <divclass="cardinfo_bottom">
  4868. <dl>
  4869. <dt>Effect</dt>
  4870. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  4871. </dl>
  4872. <dl>
  4873. <dt>Digivolveeffect</dt>
  4874. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  4875. </dl>
  4876. <dl>
  4877. <dt>Securityeffect</dt>
  4878. <dd>-</dd>
  4879. </dl>
  4880. <dl>
  4881. <dt>Notes</dt>
  4882. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4883. </div>
  4884. </div>
  4885. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4886. </div>
  4887. </div>
  4888. </li>
  4889. <liclass="image_lists_itemdatapage-2">
  4890. <aclass="card_img">
  4891. <imgsrc="../images/cardlist/card/BT2-090_P3.png"alt="BT2-090MattIshida"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  4892. </a>
  4893. <divclass="popup">
  4894. <divclass="card_detailcard_detail_purple">
  4895. <divclass="card_detail_inner">
  4896. <ulclass="cardinfo_head">
  4897. <liclass="cardno">BT2-090</li>
  4898. <li>R</li>
  4899. <liclass="cardtype">Tamer</li>
  4900. <liclass="cardtypecardParallel">AlternativeArt</li>
  4901. </ul>
  4902. <divclass="card_name">MattIshida</div>
  4903. <divclass="cardinfo_top">
  4904. <divclass="card_img">
  4905. <imgsrc="../images/cardlist/card/BT2-090_P3.png"alt="BT2-090MattIshida"></div>
  4906. <divclass="cardinfo_top_body">
  4907. <dl>
  4908. <dt>Form</dt>
  4909. <dd>-</dd>
  4910. </dl>
  4911. <dl>
  4912. <dt>Attribute</dt>
  4913. <dd>-</dd>
  4914. </dl>
  4915. <dl>
  4916. <dt>Type</dt>
  4917. <dd>-</dd>
  4918. </dl>
  4919. <dl>
  4920. <dt>DP</dt>
  4921. <dd>-</dl>
  4922. <dl>
  4923. <dt>PlayCost</dt>
  4924. <dd>4</dd>
  4925. </dl>
  4926. <dl>
  4927. <dt>DigivolveCost1</dt>
  4928. <dd>-</dd>
  4929. </dl>
  4930. <dl>
  4931. <dt>DigivolveCost2</dt>
  4932. <dd>-</dd>
  4933. </dl>
  4934. </div>
  4935. </div>
  4936. <divclass="cardinfo_bottom">
  4937. <dl>
  4938. <dt>Effect</dt>
  4939. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[On Play] Return 1 purple Digimon card or purple Option card from your trash to your hand.</dd>
  4940. </dl>
  4941. <dl>
  4942. <dt>Digivolveeffect</dt>
  4943. <dd>-</dd>
  4944. </dl>
  4945. <dl>
  4946. <dt>Securityeffect</dt>
  4947. <dd>[Security] Play this card without paying its memory cost.</dd>
  4948. </dl>
  4949. <dl>
  4950. <dt>Notes</dt>
  4951. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  4952. </div>
  4953. </div>
  4954. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4955. </div>
  4956. </div>
  4957. </li>
  4958. <liclass="image_lists_itemdatapage-2">
  4959. <aclass="card_img">
  4960. <imgsrc="../images/cardlist/card/BT2-112_P2.png"alt="BT2-112BlackWarGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4961. </a>
  4962. <divclass="popup">
  4963. <divclass="card_detailcard_detail_black">
  4964. <divclass="card_detail_inner">
  4965. <ulclass="cardinfo_head">
  4966. <liclass="cardno">BT2-112</li>
  4967. <li>SEC</li>
  4968. <liclass="cardtype">Digimon</li>
  4969. <liclass="cardlv">Lv.6</li>
  4970. <liclass="cardtypecardParallel">AlternativeArt</li>
  4971. </ul>
  4972. <divclass="card_name">BlackWarGreymon</div>
  4973. <divclass="cardinfo_top">
  4974. <divclass="card_img">
  4975. <imgsrc="../images/cardlist/card/BT2-112_P2.png"alt="BT2-112BlackWarGreymon"></div>
  4976. <divclass="cardinfo_top_body">
  4977. <dl>
  4978. <dt>Form</dt>
  4979. <dd>Mega</dd>
  4980. </dl>
  4981. <dl>
  4982. <dt>Attribute</dt>
  4983. <dd>Virus</dd>
  4984. </dl>
  4985. <dl>
  4986. <dt>Type</dt>
  4987. <dd>Dragonkin</dd>
  4988. </dl>
  4989. <dl>
  4990. <dt>DP</dt>
  4991. <dd>12000</dl>
  4992. <dl>
  4993. <dt>PlayCost</dt>
  4994. <dd>13</dd>
  4995. </dl>
  4996. <dl>
  4997. <dt>DigivolveCost1</dt>
  4998. <dd>4fromLv.5</dd>
  4999. </dl>
  5000. <dl>
  5001. <dt>DigivolveCost2</dt>
  5002. <dd>-</dd>
  5003. </dl>
  5004. </div>
  5005. </div>
  5006. <divclass="cardinfo_bottom">
  5007. <dl>
  5008. <dt>Effect</dt>
  5009. <dd>While your opponent has a Digimon with 10000 DP or more in play, reduce the memory cost to play this card from your hand by 6.[When Attacking] If you attack your opponent's Digimon with the highest DP, unsuspend this Digimon.</dd>
  5010. </dl>
  5011. <dl>
  5012. <dt>Digivolveeffect</dt>
  5013. <dd>-</dd>
  5014. </dl>
  5015. <dl>
  5016. <dt>Securityeffect</dt>
  5017. <dd>-</dd>
  5018. </dl>
  5019. <dl>
  5020. <dt>Notes</dt>
  5021. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5022. </div>
  5023. </div>
  5024. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5025. </div>
  5026. </div>
  5027. </li>
  5028. <liclass="image_lists_itemdatapage-2">
  5029. <aclass="card_img">
  5030. <imgsrc="../images/cardlist/card/BT3-002_P3.png"alt="BT3-002DemiVeemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  5031. </a>
  5032. <divclass="popup">
  5033. <divclass="card_detailcard_detail_blue">
  5034. <divclass="card_detail_inner">
  5035. <ulclass="cardinfo_head">
  5036. <liclass="cardno">BT3-002</li>
  5037. <li>U</li>
  5038. <liclass="cardtype">Digi-Egg</li>
  5039. <liclass="cardlv">Lv.2</li>
  5040. <liclass="cardtypecardParallel">AlternativeArt</li>
  5041. </ul>
  5042. <divclass="card_name">DemiVeemon</div>
  5043. <divclass="cardinfo_top">
  5044. <divclass="card_img">
  5045. <imgsrc="../images/cardlist/card/BT3-002_P3.png"alt="BT3-002DemiVeemon"></div>
  5046. <divclass="cardinfo_top_body">
  5047. <dl>
  5048. <dt>Form</dt>
  5049. <dd>In-Training</dd>
  5050. </dl>
  5051. <dl>
  5052. <dt>Attribute</dt>
  5053. <dd>-</dd>
  5054. </dl>
  5055. <dl>
  5056. <dt>Type</dt>
  5057. <dd>BabyDragon</dd>
  5058. </dl>
  5059. <dl>
  5060. <dt>DP</dt>
  5061. <dd>-</dl>
  5062. <dl>
  5063. <dt>PlayCost</dt>
  5064. <dd>-</dd>
  5065. </dl>
  5066. <dl>
  5067. <dt>DigivolveCost1</dt>
  5068. <dd>-</dd>
  5069. </dl>
  5070. <dl>
  5071. <dt>DigivolveCost2</dt>
  5072. <dd>-</dd>
  5073. </dl>
  5074. </div>
  5075. </div>
  5076. <divclass="cardinfo_bottom">
  5077. <dl>
  5078. <dt>Effect</dt>
  5079. <dd>-</dd>
  5080. </dl>
  5081. <dl>
  5082. <dt>Digivolveeffect</dt>
  5083. <dd>[When Attacking][Once Per Turn] If this Digimon has <Jamming>, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  5084. </dl>
  5085. <dl>
  5086. <dt>Securityeffect</dt>
  5087. <dd>-</dd>
  5088. </dl>
  5089. <dl>
  5090. <dt>Notes</dt>
  5091. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5092. </div>
  5093. </div>
  5094. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5095. </div>
  5096. </div>
  5097. </li>
  5098. <liclass="image_lists_itemdatapage-2">
  5099. <aclass="card_img">
  5100. <imgsrc="../images/cardlist/card/BT3-003_P3.png"alt="BT3-003Upamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  5101. </a>
  5102. <divclass="popup">
  5103. <divclass="card_detailcard_detail_yellow">
  5104. <divclass="card_detail_inner">
  5105. <ulclass="cardinfo_head">
  5106. <liclass="cardno">BT3-003</li>
  5107. <li>U</li>
  5108. <liclass="cardtype">Digi-Egg</li>
  5109. <liclass="cardlv">Lv.2</li>
  5110. <liclass="cardtypecardParallel">AlternativeArt</li>
  5111. </ul>
  5112. <divclass="card_name">Upamon</div>
  5113. <divclass="cardinfo_top">
  5114. <divclass="card_img">
  5115. <imgsrc="../images/cardlist/card/BT3-003_P3.png"alt="BT3-003Upamon"></div>
  5116. <divclass="cardinfo_top_body">
  5117. <dl>
  5118. <dt>Form</dt>
  5119. <dd>In-Training</dd>
  5120. </dl>
  5121. <dl>
  5122. <dt>Attribute</dt>
  5123. <dd>-</dd>
  5124. </dl>
  5125. <dl>
  5126. <dt>Type</dt>
  5127. <dd>Amphibian</dd>
  5128. </dl>
  5129. <dl>
  5130. <dt>DP</dt>
  5131. <dd>-</dl>
  5132. <dl>
  5133. <dt>PlayCost</dt>
  5134. <dd>-</dd>
  5135. </dl>
  5136. <dl>
  5137. <dt>DigivolveCost1</dt>
  5138. <dd>-</dd>
  5139. </dl>
  5140. <dl>
  5141. <dt>DigivolveCost2</dt>
  5142. <dd>-</dd>
  5143. </dl>
  5144. </div>
  5145. </div>
  5146. <divclass="cardinfo_bottom">
  5147. <dl>
  5148. <dt>Effect</dt>
  5149. <dd>-</dd>
  5150. </dl>
  5151. <dl>
  5152. <dt>Digivolveeffect</dt>
  5153. <dd>[When Attacking][Once Per Turn] If you have 3 or fewer security cards, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  5154. </dl>
  5155. <dl>
  5156. <dt>Securityeffect</dt>
  5157. <dd>-</dd>
  5158. </dl>
  5159. <dl>
  5160. <dt>Notes</dt>
  5161. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5162. </div>
  5163. </div>
  5164. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5165. </div>
  5166. </div>
  5167. </li>
  5168. <liclass="image_lists_itemdatapage-2">
  5169. <aclass="card_img">
  5170. <imgsrc="../images/cardlist/card/BT3-006_P3.png"alt="BT3-006DemiMeramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  5171. </a>
  5172. <divclass="popup">
  5173. <divclass="card_detailcard_detail_purple">
  5174. <divclass="card_detail_inner">
  5175. <ulclass="cardinfo_head">
  5176. <liclass="cardno">BT3-006</li>
  5177. <li>U</li>
  5178. <liclass="cardtype">Digi-Egg</li>
  5179. <liclass="cardlv">Lv.2</li>
  5180. <liclass="cardtypecardParallel">AlternativeArt</li>
  5181. </ul>
  5182. <divclass="card_name">DemiMeramon</div>
  5183. <divclass="cardinfo_top">
  5184. <divclass="card_img">
  5185. <imgsrc="../images/cardlist/card/BT3-006_P3.png"alt="BT3-006DemiMeramon"></div>
  5186. <divclass="cardinfo_top_body">
  5187. <dl>
  5188. <dt>Form</dt>
  5189. <dd>In-Training</dd>
  5190. </dl>
  5191. <dl>
  5192. <dt>Attribute</dt>
  5193. <dd>-</dd>
  5194. </dl>
  5195. <dl>
  5196. <dt>Type</dt>
  5197. <dd>Flame</dd>
  5198. </dl>
  5199. <dl>
  5200. <dt>DP</dt>
  5201. <dd>-</dl>
  5202. <dl>
  5203. <dt>PlayCost</dt>
  5204. <dd>-</dd>
  5205. </dl>
  5206. <dl>
  5207. <dt>DigivolveCost1</dt>
  5208. <dd>-</dd>
  5209. </dl>
  5210. <dl>
  5211. <dt>DigivolveCost2</dt>
  5212. <dd>-</dd>
  5213. </dl>
  5214. </div>
  5215. </div>
  5216. <divclass="cardinfo_bottom">
  5217. <dl>
  5218. <dt>Effect</dt>
  5219. <dd>-</dd>
  5220. </dl>
  5221. <dl>
  5222. <dt>Digivolveeffect</dt>
  5223. <dd>[On Deletion] Trigger <Draw 1>. (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  5224. </dl>
  5225. <dl>
  5226. <dt>Securityeffect</dt>
  5227. <dd>-</dd>
  5228. </dl>
  5229. <dl>
  5230. <dt>Notes</dt>
  5231. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5232. </div>
  5233. </div>
  5234. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5235. </div>
  5236. </div>
  5237. </li>
  5238. <liclass="image_lists_itemdatapage-2">
  5239. <aclass="card_img">
  5240. <imgsrc="../images/cardlist/card/BT3-021_P5.png"alt="BT3-021Veemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  5241. </a>
  5242. <divclass="popup">
  5243. <divclass="card_detailcard_detail_blue">
  5244. <divclass="card_detail_inner">
  5245. <ulclass="cardinfo_head">
  5246. <liclass="cardno">BT3-021</li>
  5247. <li>R</li>
  5248. <liclass="cardtype">Digimon</li>
  5249. <liclass="cardlv">Lv.3</li>
  5250. <liclass="cardtypecardParallel">AlternativeArt</li>
  5251. </ul>
  5252. <divclass="card_name">Veemon</div>
  5253. <divclass="cardinfo_top">
  5254. <divclass="card_img">
  5255. <imgsrc="../images/cardlist/card/BT3-021_P5.png"alt="BT3-021Veemon"></div>
  5256. <divclass="cardinfo_top_body">
  5257. <dl>
  5258. <dt>Form</dt>
  5259. <dd>Rookie</dd>
  5260. </dl>
  5261. <dl>
  5262. <dt>Attribute</dt>
  5263. <dd>Free</dd>
  5264. </dl>
  5265. <dl>
  5266. <dt>Type</dt>
  5267. <dd>MiniDragon</dd>
  5268. </dl>
  5269. <dl>
  5270. <dt>DP</dt>
  5271. <dd>2000</dl>
  5272. <dl>
  5273. <dt>PlayCost</dt>
  5274. <dd>3</dd>
  5275. </dl>
  5276. <dl>
  5277. <dt>DigivolveCost1</dt>
  5278. <dd>0fromLv.2</dd>
  5279. </dl>
  5280. <dl>
  5281. <dt>DigivolveCost2</dt>
  5282. <dd>-</dd>
  5283. </dl>
  5284. </div>
  5285. </div>
  5286. <divclass="cardinfo_bottom">
  5287. <dl>
  5288. <dt>Effect</dt>
  5289. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  5290. </dl>
  5291. <dl>
  5292. <dt>Digivolveeffect</dt>
  5293. <dd>-</dd>
  5294. </dl>
  5295. <dl>
  5296. <dt>Securityeffect</dt>
  5297. <dd>-</dd>
  5298. </dl>
  5299. <dl>
  5300. <dt>Notes</dt>
  5301. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5302. </div>
  5303. </div>
  5304. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5305. </div>
  5306. </div>
  5307. </li>
  5308. <liclass="image_lists_itemdatapage-2">
  5309. <aclass="card_img">
  5310. <imgsrc="../images/cardlist/card/BT3-039_P2.png"alt="BT3-039Angewomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  5311. </a>
  5312. <divclass="popup">
  5313. <divclass="card_detailcard_detail_yellow">
  5314. <divclass="card_detail_inner">
  5315. <ulclass="cardinfo_head">
  5316. <liclass="cardno">BT3-039</li>
  5317. <li>R</li>
  5318. <liclass="cardtype">Digimon</li>
  5319. <liclass="cardlv">Lv.5</li>
  5320. <liclass="cardtypecardParallel">AlternativeArt</li>
  5321. </ul>
  5322. <divclass="card_name">Angewomon</div>
  5323. <divclass="cardinfo_top">
  5324. <divclass="card_img">
  5325. <imgsrc="../images/cardlist/card/BT3-039_P2.png"alt="BT3-039Angewomon"></div>
  5326. <divclass="cardinfo_top_body">
  5327. <dl>
  5328. <dt>Form</dt>
  5329. <dd>Ultimate</dd>
  5330. </dl>
  5331. <dl>
  5332. <dt>Attribute</dt>
  5333. <dd>Vaccine</dd>
  5334. </dl>
  5335. <dl>
  5336. <dt>Type</dt>
  5337. <dd>Archangel</dd>
  5338. </dl>
  5339. <dl>
  5340. <dt>DP</dt>
  5341. <dd>6000</dl>
  5342. <dl>
  5343. <dt>PlayCost</dt>
  5344. <dd>7</dd>
  5345. </dl>
  5346. <dl>
  5347. <dt>DigivolveCost1</dt>
  5348. <dd>3fromLv.4</dd>
  5349. </dl>
  5350. <dl>
  5351. <dt>DigivolveCost2</dt>
  5352. <dd>-</dd>
  5353. </dl>
  5354. </div>
  5355. </div>
  5356. <divclass="cardinfo_bottom">
  5357. <dl>
  5358. <dt>Effect</dt>
  5359. <dd>[When Digivolving] 1 of your opponent's Digimon gains <Security Attack -2> (This Digimon checks 2 fewer security cards) until the end of your opponent's next turn.</dd>
  5360. </dl>
  5361. <dl>
  5362. <dt>Digivolveeffect</dt>
  5363. <dd>[When Attacking] If you have 3 or fewer security cards, you may play 1 yellow level 3 Digimon card from your hand without paying its memory cost.</dd>
  5364. </dl>
  5365. <dl>
  5366. <dt>Securityeffect</dt>
  5367. <dd>-</dd>
  5368. </dl>
  5369. <dl>
  5370. <dt>Notes</dt>
  5371. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5372. </div>
  5373. </div>
  5374. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5375. </div>
  5376. </div>
  5377. </li>
  5378. <liclass="image_lists_itemdatapage-2">
  5379. <aclass="card_img">
  5380. <imgsrc="../images/cardlist/card/BT3-046_P2.png"alt="BT3-046Terriermon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5381. </a>
  5382. <divclass="popup">
  5383. <divclass="card_detailcard_detail_green">
  5384. <divclass="card_detail_inner">
  5385. <ulclass="cardinfo_head">
  5386. <liclass="cardno">BT3-046</li>
  5387. <li>U</li>
  5388. <liclass="cardtype">Digimon</li>
  5389. <liclass="cardlv">Lv.3</li>
  5390. <liclass="cardtypecardParallel">AlternativeArt</li>
  5391. </ul>
  5392. <divclass="card_name">Terriermon</div>
  5393. <divclass="cardinfo_top">
  5394. <divclass="card_img">
  5395. <imgsrc="../images/cardlist/card/BT3-046_P2.png"alt="BT3-046Terriermon"></div>
  5396. <divclass="cardinfo_top_body">
  5397. <dl>
  5398. <dt>Form</dt>
  5399. <dd>Rookie</dd>
  5400. </dl>
  5401. <dl>
  5402. <dt>Attribute</dt>
  5403. <dd>Vaccine</dd>
  5404. </dl>
  5405. <dl>
  5406. <dt>Type</dt>
  5407. <dd>Beast</dd>
  5408. </dl>
  5409. <dl>
  5410. <dt>DP</dt>
  5411. <dd>2000</dl>
  5412. <dl>
  5413. <dt>PlayCost</dt>
  5414. <dd>3</dd>
  5415. </dl>
  5416. <dl>
  5417. <dt>DigivolveCost1</dt>
  5418. <dd>0fromLv.2</dd>
  5419. </dl>
  5420. <dl>
  5421. <dt>DigivolveCost2</dt>
  5422. <dd>-</dd>
  5423. </dl>
  5424. </div>
  5425. </div>
  5426. <divclass="cardinfo_bottom">
  5427. <dl>
  5428. <dt>Effect</dt>
  5429. <dd>[All Turns] Your opponent can't gain memory except with Tamer effects.</dd>
  5430. </dl>
  5431. <dl>
  5432. <dt>Digivolveeffect</dt>
  5433. <dd>-</dd>
  5434. </dl>
  5435. <dl>
  5436. <dt>Securityeffect</dt>
  5437. <dd>-</dd>
  5438. </dl>
  5439. <dl>
  5440. <dt>Notes</dt>
  5441. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5442. </div>
  5443. </div>
  5444. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5445. </div>
  5446. </div>
  5447. </li>
  5448. <liclass="image_lists_itemdatapage-2">
  5449. <aclass="card_img">
  5450. <imgsrc="../images/cardlist/card/BT3-054_P2.png"alt="BT3-054Blossomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5451. </a>
  5452. <divclass="popup">
  5453. <divclass="card_detailcard_detail_green">
  5454. <divclass="card_detail_inner">
  5455. <ulclass="cardinfo_head">
  5456. <liclass="cardno">BT3-054</li>
  5457. <li>C</li>
  5458. <liclass="cardtype">Digimon</li>
  5459. <liclass="cardlv">Lv.5</li>
  5460. <liclass="cardtypecardParallel">AlternativeArt</li>
  5461. </ul>
  5462. <divclass="card_name">Blossomon</div>
  5463. <divclass="cardinfo_top">
  5464. <divclass="card_img">
  5465. <imgsrc="../images/cardlist/card/BT3-054_P2.png"alt="BT3-054Blossomon"></div>
  5466. <divclass="cardinfo_top_body">
  5467. <dl>
  5468. <dt>Form</dt>
  5469. <dd>Ultimate</dd>
  5470. </dl>
  5471. <dl>
  5472. <dt>Attribute</dt>
  5473. <dd>Data</dd>
  5474. </dl>
  5475. <dl>
  5476. <dt>Type</dt>
  5477. <dd>Vegetation</dd>
  5478. </dl>
  5479. <dl>
  5480. <dt>DP</dt>
  5481. <dd>7000</dl>
  5482. <dl>
  5483. <dt>PlayCost</dt>
  5484. <dd>7</dd>
  5485. </dl>
  5486. <dl>
  5487. <dt>DigivolveCost1</dt>
  5488. <dd>3fromLv.4</dd>
  5489. </dl>
  5490. <dl>
  5491. <dt>DigivolveCost2</dt>
  5492. <dd>-</dd>
  5493. </dl>
  5494. </div>
  5495. </div>
  5496. <divclass="cardinfo_bottom">
  5497. <dl>
  5498. <dt>Effect</dt>
  5499. <dd><Digisorption -3> (When one of your Digimon digivolves into this card from your hand, you may suspend 1 of your Digimon to reduce the memory cost of the digivolution by 3.)</dd>
  5500. </dl>
  5501. <dl>
  5502. <dt>Digivolveeffect</dt>
  5503. <dd>-</dd>
  5504. </dl>
  5505. <dl>
  5506. <dt>Securityeffect</dt>
  5507. <dd>-</dd>
  5508. </dl>
  5509. <dl>
  5510. <dt>Notes</dt>
  5511. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5512. </div>
  5513. </div>
  5514. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5515. </div>
  5516. </div>
  5517. </li>
  5518. <liclass="image_lists_itemdatapage-3">
  5519. <aclass="card_img">
  5520. <imgsrc="../images/cardlist/card/BT3-061_P3.png"alt="BT3-061Chuumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5521. </a>
  5522. <divclass="popup">
  5523. <divclass="card_detailcard_detail_black">
  5524. <divclass="card_detail_inner">
  5525. <ulclass="cardinfo_head">
  5526. <liclass="cardno">BT3-061</li>
  5527. <li>C</li>
  5528. <liclass="cardtype">Digimon</li>
  5529. <liclass="cardlv">Lv.3</li>
  5530. <liclass="cardtypecardParallel">AlternativeArt</li>
  5531. </ul>
  5532. <divclass="card_name">Chuumon</div>
  5533. <divclass="cardinfo_top">
  5534. <divclass="card_img">
  5535. <imgsrc="../images/cardlist/card/BT3-061_P3.png"alt="BT3-061Chuumon"></div>
  5536. <divclass="cardinfo_top_body">
  5537. <dl>
  5538. <dt>Form</dt>
  5539. <dd>Rookie</dd>
  5540. </dl>
  5541. <dl>
  5542. <dt>Attribute</dt>
  5543. <dd>Virus</dd>
  5544. </dl>
  5545. <dl>
  5546. <dt>Type</dt>
  5547. <dd>Beast</dd>
  5548. </dl>
  5549. <dl>
  5550. <dt>DP</dt>
  5551. <dd>1000</dl>
  5552. <dl>
  5553. <dt>PlayCost</dt>
  5554. <dd>3</dd>
  5555. </dl>
  5556. <dl>
  5557. <dt>DigivolveCost1</dt>
  5558. <dd>0fromLv.2</dd>
  5559. </dl>
  5560. <dl>
  5561. <dt>DigivolveCost2</dt>
  5562. <dd>-</dd>
  5563. </dl>
  5564. </div>
  5565. </div>
  5566. <divclass="cardinfo_bottom">
  5567. <dl>
  5568. <dt>Effect</dt>
  5569. <dd>[All Turns] Your opponent can't gain memory except with Tamer effects.</dd>
  5570. </dl>
  5571. <dl>
  5572. <dt>Digivolveeffect</dt>
  5573. <dd>-</dd>
  5574. </dl>
  5575. <dl>
  5576. <dt>Securityeffect</dt>
  5577. <dd>-</dd>
  5578. </dl>
  5579. <dl>
  5580. <dt>Notes</dt>
  5581. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5582. </div>
  5583. </div>
  5584. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5585. </div>
  5586. </div>
  5587. </li>
  5588. <liclass="image_lists_itemdatapage-3">
  5589. <aclass="card_img">
  5590. <imgsrc="../images/cardlist/card/BT3-075_P3.png"alt="BT3-075Craniamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5591. </a>
  5592. <divclass="popup">
  5593. <divclass="card_detailcard_detail_black">
  5594. <divclass="card_detail_inner">
  5595. <ulclass="cardinfo_head">
  5596. <liclass="cardno">BT3-075</li>
  5597. <li>SR</li>
  5598. <liclass="cardtype">Digimon</li>
  5599. <liclass="cardlv">Lv.6</li>
  5600. <liclass="cardtypecardParallel">AlternativeArt</li>
  5601. </ul>
  5602. <divclass="card_name">Craniamon</div>
  5603. <divclass="cardinfo_top">
  5604. <divclass="card_img">
  5605. <imgsrc="../images/cardlist/card/BT3-075_P3.png"alt="BT3-075Craniamon"></div>
  5606. <divclass="cardinfo_top_body">
  5607. <dl>
  5608. <dt>Form</dt>
  5609. <dd>Mega</dd>
  5610. </dl>
  5611. <dl>
  5612. <dt>Attribute</dt>
  5613. <dd>Vaccine</dd>
  5614. </dl>
  5615. <dl>
  5616. <dt>Type</dt>
  5617. <dd>HolyWarrior/RoyalKnight</dd>
  5618. </dl>
  5619. <dl>
  5620. <dt>DP</dt>
  5621. <dd>12000</dl>
  5622. <dl>
  5623. <dt>PlayCost</dt>
  5624. <dd>13</dd>
  5625. </dl>
  5626. <dl>
  5627. <dt>DigivolveCost1</dt>
  5628. <dd>4fromLv.5</dd>
  5629. </dl>
  5630. <dl>
  5631. <dt>DigivolveCost2</dt>
  5632. <dd>-</dd>
  5633. </dl>
  5634. </div>
  5635. </div>
  5636. <divclass="cardinfo_bottom">
  5637. <dl>
  5638. <dt>Effect</dt>
  5639. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[All Turns] Your Digimon with <Blocker> can't be deleted by your opponent's effects.</dd>
  5640. </dl>
  5641. <dl>
  5642. <dt>Digivolveeffect</dt>
  5643. <dd>-</dd>
  5644. </dl>
  5645. <dl>
  5646. <dt>Securityeffect</dt>
  5647. <dd>-</dd>
  5648. </dl>
  5649. <dl>
  5650. <dt>Notes</dt>
  5651. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5652. </div>
  5653. </div>
  5654. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5655. </div>
  5656. </div>
  5657. </li>
  5658. <liclass="image_lists_itemdatapage-3">
  5659. <aclass="card_img">
  5660. <imgsrc="../images/cardlist/card/BT3-088_P3.png"alt="BT3-088LadyDevimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  5661. </a>
  5662. <divclass="popup">
  5663. <divclass="card_detailcard_detail_purple">
  5664. <divclass="card_detail_inner">
  5665. <ulclass="cardinfo_head">
  5666. <liclass="cardno">BT3-088</li>
  5667. <li>R</li>
  5668. <liclass="cardtype">Digimon</li>
  5669. <liclass="cardlv">Lv.5</li>
  5670. <liclass="cardtypecardParallel">AlternativeArt</li>
  5671. </ul>
  5672. <divclass="card_name">LadyDevimon</div>
  5673. <divclass="cardinfo_top">
  5674. <divclass="card_img">
  5675. <imgsrc="../images/cardlist/card/BT3-088_P3.png"alt="BT3-088LadyDevimon"></div>
  5676. <divclass="cardinfo_top_body">
  5677. <dl>
  5678. <dt>Form</dt>
  5679. <dd>Ultimate</dd>
  5680. </dl>
  5681. <dl>
  5682. <dt>Attribute</dt>
  5683. <dd>Virus</dd>
  5684. </dl>
  5685. <dl>
  5686. <dt>Type</dt>
  5687. <dd>FallenAngel</dd>
  5688. </dl>
  5689. <dl>
  5690. <dt>DP</dt>
  5691. <dd>8000</dl>
  5692. <dl>
  5693. <dt>PlayCost</dt>
  5694. <dd>8</dd>
  5695. </dl>
  5696. <dl>
  5697. <dt>DigivolveCost1</dt>
  5698. <dd>3fromLv.4</dd>
  5699. </dl>
  5700. <dl>
  5701. <dt>DigivolveCost2</dt>
  5702. <dd>-</dd>
  5703. </dl>
  5704. </div>
  5705. </div>
  5706. <divclass="cardinfo_bottom">
  5707. <dl>
  5708. <dt>Effect</dt>
  5709. <dd>[When Digivolving] Trigger <Draw 2>. (Draw 2 cards from your deck.) Then, trash 2 cards in your hand.</dd>
  5710. </dl>
  5711. <dl>
  5712. <dt>Digivolveeffect</dt>
  5713. <dd>[Your Turn][Once Per Turn] When you use an Option card, delete 1 of your opponent's level 3 Digimon.</dd>
  5714. </dl>
  5715. <dl>
  5716. <dt>Securityeffect</dt>
  5717. <dd>-</dd>
  5718. </dl>
  5719. <dl>
  5720. <dt>Notes</dt>
  5721. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5722. </div>
  5723. </div>
  5724. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5725. </div>
  5726. </div>
  5727. </li>
  5728. <liclass="image_lists_itemdatapage-3">
  5729. <aclass="card_img">
  5730. <imgsrc="../images/cardlist/card/BT3-091_P5.png"alt="BT3-091Lilithmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  5731. </a>
  5732. <divclass="popup">
  5733. <divclass="card_detailcard_detail_purple">
  5734. <divclass="card_detail_inner">
  5735. <ulclass="cardinfo_head">
  5736. <liclass="cardno">BT3-091</li>
  5737. <li>SR</li>
  5738. <liclass="cardtype">Digimon</li>
  5739. <liclass="cardlv">Lv.6</li>
  5740. <liclass="cardtypecardParallel">AlternativeArt</li>
  5741. </ul>
  5742. <divclass="card_name">Lilithmon</div>
  5743. <divclass="cardinfo_top">
  5744. <divclass="card_img">
  5745. <imgsrc="../images/cardlist/card/BT3-091_P5.png"alt="BT3-091Lilithmon"></div>
  5746. <divclass="cardinfo_top_body">
  5747. <dl>
  5748. <dt>Form</dt>
  5749. <dd>Mega</dd>
  5750. </dl>
  5751. <dl>
  5752. <dt>Attribute</dt>
  5753. <dd>Virus</dd>
  5754. </dl>
  5755. <dl>
  5756. <dt>Type</dt>
  5757. <dd>DemonLord/SevenGreatDemonLords</dd>
  5758. </dl>
  5759. <dl>
  5760. <dt>DP</dt>
  5761. <dd>11000</dl>
  5762. <dl>
  5763. <dt>PlayCost</dt>
  5764. <dd>12</dd>
  5765. </dl>
  5766. <dl>
  5767. <dt>DigivolveCost1</dt>
  5768. <dd>3fromLv.5</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>DigivolveCost2</dt>
  5772. <dd>-</dd>
  5773. </dl>
  5774. </div>
  5775. </div>
  5776. <divclass="cardinfo_bottom">
  5777. <dl>
  5778. <dt>Effect</dt>
  5779. <dd>[When Digivolving] If you have 10 or more cards in your trash, you may return up to 2 purple Option cards from your trash to your hand.[Your Turn][Once Per Turn] When you use an Option card, gain 2 memory.</dd>
  5780. </dl>
  5781. <dl>
  5782. <dt>Digivolveeffect</dt>
  5783. <dd>-</dd>
  5784. </dl>
  5785. <dl>
  5786. <dt>Securityeffect</dt>
  5787. <dd>-</dd>
  5788. </dl>
  5789. <dl>
  5790. <dt>Notes</dt>
  5791. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5792. </div>
  5793. </div>
  5794. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5795. </div>
  5796. </div>
  5797. </li>
  5798. <liclass="image_lists_itemdatapage-3">
  5799. <aclass="card_img">
  5800. <imgsrc="../images/cardlist/card/BT3-097_P1.png"alt="BT3-097ADelicatePlan"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  5801. </a>
  5802. <divclass="popup">
  5803. <divclass="card_detailcard_detail_red">
  5804. <divclass="card_detail_inner">
  5805. <ulclass="cardinfo_head">
  5806. <liclass="cardno">BT3-097</li>
  5807. <li>U</li>
  5808. <liclass="cardtype">Option</li>
  5809. <liclass="cardtypecardParallel">AlternativeArt</li>
  5810. </ul>
  5811. <divclass="card_name">ADelicatePlan</div>
  5812. <divclass="cardinfo_top">
  5813. <divclass="card_img">
  5814. <imgsrc="../images/cardlist/card/BT3-097_P1.png"alt="BT3-097ADelicatePlan"></div>
  5815. <divclass="cardinfo_top_body">
  5816. <dl>
  5817. <dt>Form</dt>
  5818. <dd>-</dd>
  5819. </dl>
  5820. <dl>
  5821. <dt>Attribute</dt>
  5822. <dd>-</dd>
  5823. </dl>
  5824. <dl>
  5825. <dt>Type</dt>
  5826. <dd>-</dd>
  5827. </dl>
  5828. <dl>
  5829. <dt>DP</dt>
  5830. <dd>-</dl>
  5831. <dl>
  5832. <dt>PlayCost</dt>
  5833. <dd>1</dd>
  5834. </dl>
  5835. <dl>
  5836. <dt>DigivolveCost1</dt>
  5837. <dd>-</dd>
  5838. </dl>
  5839. <dl>
  5840. <dt>DigivolveCost2</dt>
  5841. <dd>-</dd>
  5842. </dl>
  5843. </div>
  5844. </div>
  5845. <divclass="cardinfo_bottom">
  5846. <dl>
  5847. <dt>Effect</dt>
  5848. <dd>[Main] 1 of your Digimon gains "This Digimon doesn't activate the [Security] effects of any Option cards it checks" for the turn.</dd>
  5849. </dl>
  5850. <dl>
  5851. <dt>Digivolveeffect</dt>
  5852. <dd>-</dd>
  5853. </dl>
  5854. <dl>
  5855. <dt>Securityeffect</dt>
  5856. <dd>[Security] Add this card to your hand.</dd>
  5857. </dl>
  5858. <dl>
  5859. <dt>Notes</dt>
  5860. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5861. </div>
  5862. </div>
  5863. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5864. </div>
  5865. </div>
  5866. </li>
  5867. <liclass="image_lists_itemdatapage-3">
  5868. <aclass="card_img">
  5869. <imgsrc="../images/cardlist/card/BT3-103_P3.png"alt="BT3-103HiddenPotentialDiscovered!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5870. </a>
  5871. <divclass="popup">
  5872. <divclass="card_detailcard_detail_green">
  5873. <divclass="card_detail_inner">
  5874. <ulclass="cardinfo_head">
  5875. <liclass="cardno">BT3-103</li>
  5876. <li>U</li>
  5877. <liclass="cardtype">Option</li>
  5878. <liclass="cardtypecardParallel">AlternativeArt</li>
  5879. </ul>
  5880. <divclass="card_name">HiddenPotentialDiscovered!</div>
  5881. <divclass="cardinfo_top">
  5882. <divclass="card_img">
  5883. <imgsrc="../images/cardlist/card/BT3-103_P3.png"alt="BT3-103HiddenPotentialDiscovered!"></div>
  5884. <divclass="cardinfo_top_body">
  5885. <dl>
  5886. <dt>Form</dt>
  5887. <dd>-</dd>
  5888. </dl>
  5889. <dl>
  5890. <dt>Attribute</dt>
  5891. <dd>-</dd>
  5892. </dl>
  5893. <dl>
  5894. <dt>Type</dt>
  5895. <dd>-</dd>
  5896. </dl>
  5897. <dl>
  5898. <dt>DP</dt>
  5899. <dd>-</dl>
  5900. <dl>
  5901. <dt>PlayCost</dt>
  5902. <dd>-</dd>
  5903. </dl>
  5904. <dl>
  5905. <dt>DigivolveCost1</dt>
  5906. <dd>-</dd>
  5907. </dl>
  5908. <dl>
  5909. <dt>DigivolveCost2</dt>
  5910. <dd>-</dd>
  5911. </dl>
  5912. </div>
  5913. </div>
  5914. <divclass="cardinfo_bottom">
  5915. <dl>
  5916. <dt>Effect</dt>
  5917. <dd>[Main] The next time one of your green Digimon digivolves this turn, you may suspend 1 of your Digimon to reduce the memory cost of the digivolution by 5.</dd>
  5918. </dl>
  5919. <dl>
  5920. <dt>Digivolveeffect</dt>
  5921. <dd>-</dd>
  5922. </dl>
  5923. <dl>
  5924. <dt>Securityeffect</dt>
  5925. <dd>[Security] Add this card to your hand.</dd>
  5926. </dl>
  5927. <dl>
  5928. <dt>Notes</dt>
  5929. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  5930. </div>
  5931. </div>
  5932. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5933. </div>
  5934. </div>
  5935. </li>
  5936. <liclass="image_lists_itemdatapage-3">
  5937. <aclass="card_img">
  5938. <imgsrc="../images/cardlist/card/BT4-006_P2.png"alt="BT4-006Xiaomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  5939. </a>
  5940. <divclass="popup">
  5941. <divclass="card_detailcard_detail_purple">
  5942. <divclass="card_detail_inner">
  5943. <ulclass="cardinfo_head">
  5944. <liclass="cardno">BT4-006</li>
  5945. <li>U</li>
  5946. <liclass="cardtype">Digi-Egg</li>
  5947. <liclass="cardlv">Lv.2</li>
  5948. <liclass="cardtypecardParallel">AlternativeArt</li>
  5949. </ul>
  5950. <divclass="card_name">Xiaomon</div>
  5951. <divclass="cardinfo_top">
  5952. <divclass="card_img">
  5953. <imgsrc="../images/cardlist/card/BT4-006_P2.png"alt="BT4-006Xiaomon"></div>
  5954. <divclass="cardinfo_top_body">
  5955. <dl>
  5956. <dt>Form</dt>
  5957. <dd>In-Training</dd>
  5958. </dl>
  5959. <dl>
  5960. <dt>Attribute</dt>
  5961. <dd>-</dd>
  5962. </dl>
  5963. <dl>
  5964. <dt>Type</dt>
  5965. <dd>Lesser</dd>
  5966. </dl>
  5967. <dl>
  5968. <dt>DP</dt>
  5969. <dd>-</dl>
  5970. <dl>
  5971. <dt>PlayCost</dt>
  5972. <dd>-</dd>
  5973. </dl>
  5974. <dl>
  5975. <dt>DigivolveCost1</dt>
  5976. <dd>-</dd>
  5977. </dl>
  5978. <dl>
  5979. <dt>DigivolveCost2</dt>
  5980. <dd>-</dd>
  5981. </dl>
  5982. </div>
  5983. </div>
  5984. <divclass="cardinfo_bottom">
  5985. <dl>
  5986. <dt>Effect</dt>
  5987. <dd>-</dd>
  5988. </dl>
  5989. <dl>
  5990. <dt>Digivolveeffect</dt>
  5991. <dd>[Your Turn] While there are 10 or more cards in your trash, this Digimon gains <Retaliation>. (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  5992. </dl>
  5993. <dl>
  5994. <dt>Securityeffect</dt>
  5995. <dd>-</dd>
  5996. </dl>
  5997. <dl>
  5998. <dt>Notes</dt>
  5999. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6000. </div>
  6001. </div>
  6002. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6003. </div>
  6004. </div>
  6005. </li>
  6006. <liclass="image_lists_itemdatapage-3">
  6007. <aclass="card_img">
  6008. <imgsrc="../images/cardlist/card/BT4-011_P6.png"alt="BT4-011Agunimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  6009. </a>
  6010. <divclass="popup">
  6011. <divclass="card_detailcard_detail_red">
  6012. <divclass="card_detail_inner">
  6013. <ulclass="cardinfo_head">
  6014. <liclass="cardno">BT4-011</li>
  6015. <li>U</li>
  6016. <liclass="cardtype">Digimon</li>
  6017. <liclass="cardlv">Lv.4</li>
  6018. <liclass="cardtypecardParallel">AlternativeArt</li>
  6019. </ul>
  6020. <divclass="card_name">Agunimon</div>
  6021. <divclass="cardinfo_top">
  6022. <divclass="card_img">
  6023. <imgsrc="../images/cardlist/card/BT4-011_P6.png"alt="BT4-011Agunimon"></div>
  6024. <divclass="cardinfo_top_body">
  6025. <dl>
  6026. <dt>Form</dt>
  6027. <dd>Hybrid</dd>
  6028. </dl>
  6029. <dl>
  6030. <dt>Attribute</dt>
  6031. <dd>Variable</dd>
  6032. </dl>
  6033. <dl>
  6034. <dt>Type</dt>
  6035. <dd>Wizard</dd>
  6036. </dl>
  6037. <dl>
  6038. <dt>DP</dt>
  6039. <dd>5000</dl>
  6040. <dl>
  6041. <dt>PlayCost</dt>
  6042. <dd>5</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>DigivolveCost1</dt>
  6046. <dd>2fromLv.3</dd>
  6047. </dl>
  6048. <dl>
  6049. <dt>DigivolveCost2</dt>
  6050. <dd>-</dd>
  6051. </dl>
  6052. </div>
  6053. </div>
  6054. <divclass="cardinfo_bottom">
  6055. <dl>
  6056. <dt>Effect</dt>
  6057. <dd>You may Digivolve this card from your hand onto one of your red Tamers as if the Tamer is a level 3 Digimon.</dd>
  6058. </dl>
  6059. <dl>
  6060. <dt>Digivolveeffect</dt>
  6061. <dd>-</dd>
  6062. </dl>
  6063. <dl>
  6064. <dt>Securityeffect</dt>
  6065. <dd>-</dd>
  6066. </dl>
  6067. <dl>
  6068. <dt>Notes</dt>
  6069. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6070. </div>
  6071. </div>
  6072. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6073. </div>
  6074. </div>
  6075. </li>
  6076. <liclass="image_lists_itemdatapage-3">
  6077. <aclass="card_img">
  6078. <imgsrc="../images/cardlist/card/BT4-017_P3.png"alt="BT4-017RizeGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  6079. </a>
  6080. <divclass="popup">
  6081. <divclass="card_detailcard_detail_red">
  6082. <divclass="card_detail_inner">
  6083. <ulclass="cardinfo_head">
  6084. <liclass="cardno">BT4-017</li>
  6085. <li>SR</li>
  6086. <liclass="cardtype">Digimon</li>
  6087. <liclass="cardlv">Lv.5</li>
  6088. <liclass="cardtypecardParallel">AlternativeArt</li>
  6089. </ul>
  6090. <divclass="card_name">RizeGreymon</div>
  6091. <divclass="cardinfo_top">
  6092. <divclass="card_img">
  6093. <imgsrc="../images/cardlist/card/BT4-017_P3.png"alt="BT4-017RizeGreymon"></div>
  6094. <divclass="cardinfo_top_body">
  6095. <dl>
  6096. <dt>Form</dt>
  6097. <dd>Ultimate</dd>
  6098. </dl>
  6099. <dl>
  6100. <dt>Attribute</dt>
  6101. <dd>Vaccine</dd>
  6102. </dl>
  6103. <dl>
  6104. <dt>Type</dt>
  6105. <dd>Cyborg</dd>
  6106. </dl>
  6107. <dl>
  6108. <dt>DP</dt>
  6109. <dd>7000</dl>
  6110. <dl>
  6111. <dt>PlayCost</dt>
  6112. <dd>8</dd>
  6113. </dl>
  6114. <dl>
  6115. <dt>DigivolveCost1</dt>
  6116. <dd>3fromLv.4</dd>
  6117. </dl>
  6118. <dl>
  6119. <dt>DigivolveCost2</dt>
  6120. <dd>-</dd>
  6121. </dl>
  6122. </div>
  6123. </div>
  6124. <divclass="cardinfo_bottom">
  6125. <dl>
  6126. <dt>Effect</dt>
  6127. <dd>[Your Turn] This Digimon is also treated as yellow.[Main] <Digi-Burst 2> (Trash 2 of this Digimon's digivolution cards to activate the effect below.)・You may play a red or yellow Tamer card with a play cost of 4 or less from your hand without paying its memory cost.</dd>
  6128. </dl>
  6129. <dl>
  6130. <dt>Digivolveeffect</dt>
  6131. <dd>[When Attacking] If you have a Tamer in play, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  6132. </dl>
  6133. <dl>
  6134. <dt>Securityeffect</dt>
  6135. <dd>-</dd>
  6136. </dl>
  6137. <dl>
  6138. <dt>Notes</dt>
  6139. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6140. </div>
  6141. </div>
  6142. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6143. </div>
  6144. </div>
  6145. </li>
  6146. <liclass="image_lists_itemdatapage-3">
  6147. <aclass="card_img">
  6148. <imgsrc="../images/cardlist/card/BT4-025_P3.png"alt="BT4-025Lobomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  6149. </a>
  6150. <divclass="popup">
  6151. <divclass="card_detailcard_detail_blue">
  6152. <divclass="card_detail_inner">
  6153. <ulclass="cardinfo_head">
  6154. <liclass="cardno">BT4-025</li>
  6155. <li>U</li>
  6156. <liclass="cardtype">Digimon</li>
  6157. <liclass="cardlv">Lv.4</li>
  6158. <liclass="cardtypecardParallel">AlternativeArt</li>
  6159. </ul>
  6160. <divclass="card_name">Lobomon</div>
  6161. <divclass="cardinfo_top">
  6162. <divclass="card_img">
  6163. <imgsrc="../images/cardlist/card/BT4-025_P3.png"alt="BT4-025Lobomon"></div>
  6164. <divclass="cardinfo_top_body">
  6165. <dl>
  6166. <dt>Form</dt>
  6167. <dd>Hybrid</dd>
  6168. </dl>
  6169. <dl>
  6170. <dt>Attribute</dt>
  6171. <dd>Variable</dd>
  6172. </dl>
  6173. <dl>
  6174. <dt>Type</dt>
  6175. <dd>Warrior</dd>
  6176. </dl>
  6177. <dl>
  6178. <dt>DP</dt>
  6179. <dd>5000</dl>
  6180. <dl>
  6181. <dt>PlayCost</dt>
  6182. <dd>5</dd>
  6183. </dl>
  6184. <dl>
  6185. <dt>DigivolveCost1</dt>
  6186. <dd>2fromLv.3</dd>
  6187. </dl>
  6188. <dl>
  6189. <dt>DigivolveCost2</dt>
  6190. <dd>-</dd>
  6191. </dl>
  6192. </div>
  6193. </div>
  6194. <divclass="cardinfo_bottom">
  6195. <dl>
  6196. <dt>Effect</dt>
  6197. <dd>You may Digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 Digimon.</dd>
  6198. </dl>
  6199. <dl>
  6200. <dt>Digivolveeffect</dt>
  6201. <dd>-</dd>
  6202. </dl>
  6203. <dl>
  6204. <dt>Securityeffect</dt>
  6205. <dd>-</dd>
  6206. </dl>
  6207. <dl>
  6208. <dt>Notes</dt>
  6209. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6210. </div>
  6211. </div>
  6212. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6213. </div>
  6214. </div>
  6215. </li>
  6216. <liclass="image_lists_itemdatapage-3">
  6217. <aclass="card_img">
  6218. <imgsrc="../images/cardlist/card/BT4-062_P3.png"alt="BT4-062Nidhoggmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  6219. </a>
  6220. <divclass="popup">
  6221. <divclass="card_detailcard_detail_green">
  6222. <divclass="card_detail_inner">
  6223. <ulclass="cardinfo_head">
  6224. <liclass="cardno">BT4-062</li>
  6225. <li>SR</li>
  6226. <liclass="cardtype">Digimon</li>
  6227. <liclass="cardlv">Lv.6</li>
  6228. <liclass="cardtypecardParallel">AlternativeArt</li>
  6229. </ul>
  6230. <divclass="card_name">Nidhoggmon</div>
  6231. <divclass="cardinfo_top">
  6232. <divclass="card_img">
  6233. <imgsrc="../images/cardlist/card/BT4-062_P3.png"alt="BT4-062Nidhoggmon"></div>
  6234. <divclass="cardinfo_top_body">
  6235. <dl>
  6236. <dt>Form</dt>
  6237. <dd>Mega</dd>
  6238. </dl>
  6239. <dl>
  6240. <dt>Attribute</dt>
  6241. <dd>Virus</dd>
  6242. </dl>
  6243. <dl>
  6244. <dt>Type</dt>
  6245. <dd>DarkDragon</dd>
  6246. </dl>
  6247. <dl>
  6248. <dt>DP</dt>
  6249. <dd>13000</dl>
  6250. <dl>
  6251. <dt>PlayCost</dt>
  6252. <dd>13</dd>
  6253. </dl>
  6254. <dl>
  6255. <dt>DigivolveCost1</dt>
  6256. <dd>5fromLv.5</dd>
  6257. </dl>
  6258. <dl>
  6259. <dt>DigivolveCost2</dt>
  6260. <dd>-</dd>
  6261. </dl>
  6262. </div>
  6263. </div>
  6264. <divclass="cardinfo_bottom">
  6265. <dl>
  6266. <dt>Effect</dt>
  6267. <dd>[When Digivolving] <Digi-Burst 4> (Trash 4 of this Digimon's digivolution cards to activate the effect below.)・Suspend all of your opponent's Digimon with 5000 DP or less. Then, place all of your opponent's suspended Digimon at the bottom of their owners' decks in any order. Trash all of the digivolution cards of those Digimon.</dd>
  6268. </dl>
  6269. <dl>
  6270. <dt>Digivolveeffect</dt>
  6271. <dd>-</dd>
  6272. </dl>
  6273. <dl>
  6274. <dt>Securityeffect</dt>
  6275. <dd>-</dd>
  6276. </dl>
  6277. <dl>
  6278. <dt>Notes</dt>
  6279. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6280. </div>
  6281. </div>
  6282. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6283. </div>
  6284. </div>
  6285. </li>
  6286. <liclass="image_lists_itemdatapage-3">
  6287. <aclass="card_img">
  6288. <imgsrc="../images/cardlist/card/BT4-079_P2.png"alt="BT4-079Labramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6289. </a>
  6290. <divclass="popup">
  6291. <divclass="card_detailcard_detail_purple">
  6292. <divclass="card_detail_inner">
  6293. <ulclass="cardinfo_head">
  6294. <liclass="cardno">BT4-079</li>
  6295. <li>C</li>
  6296. <liclass="cardtype">Digimon</li>
  6297. <liclass="cardlv">Lv.3</li>
  6298. <liclass="cardtypecardParallel">AlternativeArt</li>
  6299. </ul>
  6300. <divclass="card_name">Labramon</div>
  6301. <divclass="cardinfo_top">
  6302. <divclass="card_img">
  6303. <imgsrc="../images/cardlist/card/BT4-079_P2.png"alt="BT4-079Labramon"></div>
  6304. <divclass="cardinfo_top_body">
  6305. <dl>
  6306. <dt>Form</dt>
  6307. <dd>Rookie</dd>
  6308. </dl>
  6309. <dl>
  6310. <dt>Attribute</dt>
  6311. <dd>Vaccine</dd>
  6312. </dl>
  6313. <dl>
  6314. <dt>Type</dt>
  6315. <dd>Beast</dd>
  6316. </dl>
  6317. <dl>
  6318. <dt>DP</dt>
  6319. <dd>2000</dl>
  6320. <dl>
  6321. <dt>PlayCost</dt>
  6322. <dd>3</dd>
  6323. </dl>
  6324. <dl>
  6325. <dt>DigivolveCost1</dt>
  6326. <dd>0fromLv.2</dd>
  6327. </dl>
  6328. <dl>
  6329. <dt>DigivolveCost2</dt>
  6330. <dd>-</dd>
  6331. </dl>
  6332. </div>
  6333. </div>
  6334. <divclass="cardinfo_bottom">
  6335. <dl>
  6336. <dt>Effect</dt>
  6337. <dd>[On Play] Trigger <Draw 1>. (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  6338. </dl>
  6339. <dl>
  6340. <dt>Digivolveeffect</dt>
  6341. <dd>-</dd>
  6342. </dl>
  6343. <dl>
  6344. <dt>Securityeffect</dt>
  6345. <dd>-</dd>
  6346. </dl>
  6347. <dl>
  6348. <dt>Notes</dt>
  6349. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6350. </div>
  6351. </div>
  6352. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6353. </div>
  6354. </div>
  6355. </li>
  6356. <liclass="image_lists_itemdatapage-3">
  6357. <aclass="card_img">
  6358. <imgsrc="../images/cardlist/card/BT4-096_P4.png"alt="BT4-096IzzyIzumi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6359. </a>
  6360. <divclass="popup">
  6361. <divclass="card_detailcard_detail_black">
  6362. <divclass="card_detail_inner">
  6363. <ulclass="cardinfo_head">
  6364. <liclass="cardno">BT4-096</li>
  6365. <li>R</li>
  6366. <liclass="cardtype">Tamer</li>
  6367. <liclass="cardtypecardParallel">AlternativeArt</li>
  6368. </ul>
  6369. <divclass="card_name">IzzyIzumi</div>
  6370. <divclass="cardinfo_top">
  6371. <divclass="card_img">
  6372. <imgsrc="../images/cardlist/card/BT4-096_P4.png"alt="BT4-096IzzyIzumi"></div>
  6373. <divclass="cardinfo_top_body">
  6374. <dl>
  6375. <dt>Form</dt>
  6376. <dd>-</dd>
  6377. </dl>
  6378. <dl>
  6379. <dt>Attribute</dt>
  6380. <dd>-</dd>
  6381. </dl>
  6382. <dl>
  6383. <dt>Type</dt>
  6384. <dd>-</dd>
  6385. </dl>
  6386. <dl>
  6387. <dt>DP</dt>
  6388. <dd>-</dl>
  6389. <dl>
  6390. <dt>PlayCost</dt>
  6391. <dd>4</dd>
  6392. </dl>
  6393. <dl>
  6394. <dt>DigivolveCost1</dt>
  6395. <dd>-</dd>
  6396. </dl>
  6397. <dl>
  6398. <dt>DigivolveCost2</dt>
  6399. <dd>-</dd>
  6400. </dl>
  6401. </div>
  6402. </div>
  6403. <divclass="cardinfo_bottom">
  6404. <dl>
  6405. <dt>Effect</dt>
  6406. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[On Play] Reveal the top 3 cards of your deck. If all of the revealed cards are black, gain 1 memory. Place the cards on top of your deck in any order.</dd>
  6407. </dl>
  6408. <dl>
  6409. <dt>Digivolveeffect</dt>
  6410. <dd>-</dd>
  6411. </dl>
  6412. <dl>
  6413. <dt>Securityeffect</dt>
  6414. <dd>[Security] Play this card without paying its memory cost.</dd>
  6415. </dl>
  6416. <dl>
  6417. <dt>Notes</dt>
  6418. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6419. </div>
  6420. </div>
  6421. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6422. </div>
  6423. </div>
  6424. </li>
  6425. <liclass="image_lists_itemdatapage-3">
  6426. <aclass="card_img">
  6427. <imgsrc="../images/cardlist/card/BT4-097_P3.png"alt="BT4-097KariKamiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6428. </a>
  6429. <divclass="popup">
  6430. <divclass="card_detailcard_detail_purple">
  6431. <divclass="card_detail_inner">
  6432. <ulclass="cardinfo_head">
  6433. <liclass="cardno">BT4-097</li>
  6434. <li>R</li>
  6435. <liclass="cardtype">Tamer</li>
  6436. <liclass="cardtypecardParallel">AlternativeArt</li>
  6437. </ul>
  6438. <divclass="card_name">KariKamiya</div>
  6439. <divclass="cardinfo_top">
  6440. <divclass="card_img">
  6441. <imgsrc="../images/cardlist/card/BT4-097_P3.png"alt="BT4-097KariKamiya"></div>
  6442. <divclass="cardinfo_top_body">
  6443. <dl>
  6444. <dt>Form</dt>
  6445. <dd>-</dd>
  6446. </dl>
  6447. <dl>
  6448. <dt>Attribute</dt>
  6449. <dd>-</dd>
  6450. </dl>
  6451. <dl>
  6452. <dt>Type</dt>
  6453. <dd>-</dd>
  6454. </dl>
  6455. <dl>
  6456. <dt>DP</dt>
  6457. <dd>-</dl>
  6458. <dl>
  6459. <dt>PlayCost</dt>
  6460. <dd>3</dd>
  6461. </dl>
  6462. <dl>
  6463. <dt>DigivolveCost1</dt>
  6464. <dd>-</dd>
  6465. </dl>
  6466. <dl>
  6467. <dt>DigivolveCost2</dt>
  6468. <dd>-</dd>
  6469. </dl>
  6470. </div>
  6471. </div>
  6472. <divclass="cardinfo_bottom">
  6473. <dl>
  6474. <dt>Effect</dt>
  6475. <dd>[All Turns] When a card is removed from your security stack, you may suspend this Tamer to gain 1 memory.</dd>
  6476. </dl>
  6477. <dl>
  6478. <dt>Digivolveeffect</dt>
  6479. <dd>-</dd>
  6480. </dl>
  6481. <dl>
  6482. <dt>Securityeffect</dt>
  6483. <dd>[Security] Play this card without paying its memory cost.</dd>
  6484. </dl>
  6485. <dl>
  6486. <dt>Notes</dt>
  6487. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6488. </div>
  6489. </div>
  6490. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6491. </div>
  6492. </div>
  6493. </li>
  6494. <liclass="image_lists_itemdatapage-3">
  6495. <aclass="card_img">
  6496. <imgsrc="../images/cardlist/card/BT4-104_P1.png"alt="BT4-104BlindingRay"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  6497. </a>
  6498. <divclass="popup">
  6499. <divclass="card_detailcard_detail_yellow">
  6500. <divclass="card_detail_inner">
  6501. <ulclass="cardinfo_head">
  6502. <liclass="cardno">BT4-104</li>
  6503. <li>R</li>
  6504. <liclass="cardtype">Option</li>
  6505. <liclass="cardtypecardParallel">AlternativeArt</li>
  6506. </ul>
  6507. <divclass="card_name">BlindingRay</div>
  6508. <divclass="cardinfo_top">
  6509. <divclass="card_img">
  6510. <imgsrc="../images/cardlist/card/BT4-104_P1.png"alt="BT4-104BlindingRay"></div>
  6511. <divclass="cardinfo_top_body">
  6512. <dl>
  6513. <dt>Form</dt>
  6514. <dd>-</dd>
  6515. </dl>
  6516. <dl>
  6517. <dt>Attribute</dt>
  6518. <dd>-</dd>
  6519. </dl>
  6520. <dl>
  6521. <dt>Type</dt>
  6522. <dd>-</dd>
  6523. </dl>
  6524. <dl>
  6525. <dt>DP</dt>
  6526. <dd>-</dl>
  6527. <dl>
  6528. <dt>PlayCost</dt>
  6529. <dd>-</dd>
  6530. </dl>
  6531. <dl>
  6532. <dt>DigivolveCost1</dt>
  6533. <dd>-</dd>
  6534. </dl>
  6535. <dl>
  6536. <dt>DigivolveCost2</dt>
  6537. <dd>-</dd>
  6538. </dl>
  6539. </div>
  6540. </div>
  6541. <divclass="cardinfo_bottom">
  6542. <dl>
  6543. <dt>Effect</dt>
  6544. <dd>[Main] Trash the top card of your security stack. Then, gain 2 memory.</dd>
  6545. </dl>
  6546. <dl>
  6547. <dt>Digivolveeffect</dt>
  6548. <dd>-</dd>
  6549. </dl>
  6550. <dl>
  6551. <dt>Securityeffect</dt>
  6552. <dd>-</dd>
  6553. </dl>
  6554. <dl>
  6555. <dt>Notes</dt>
  6556. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6557. </div>
  6558. </div>
  6559. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6560. </div>
  6561. </div>
  6562. </li>
  6563. <liclass="image_lists_itemdatapage-3">
  6564. <aclass="card_img">
  6565. <imgsrc="../images/cardlist/card/BT4-111_P2.png"alt="BT4-111JackRaid"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6566. </a>
  6567. <divclass="popup">
  6568. <divclass="card_detailcard_detail_purple">
  6569. <divclass="card_detail_inner">
  6570. <ulclass="cardinfo_head">
  6571. <liclass="cardno">BT4-111</li>
  6572. <li>C</li>
  6573. <liclass="cardtype">Option</li>
  6574. <liclass="cardtypecardParallel">AlternativeArt</li>
  6575. </ul>
  6576. <divclass="card_name">JackRaid</div>
  6577. <divclass="cardinfo_top">
  6578. <divclass="card_img">
  6579. <imgsrc="../images/cardlist/card/BT4-111_P2.png"alt="BT4-111JackRaid"></div>
  6580. <divclass="cardinfo_top_body">
  6581. <dl>
  6582. <dt>Form</dt>
  6583. <dd>-</dd>
  6584. </dl>
  6585. <dl>
  6586. <dt>Attribute</dt>
  6587. <dd>-</dd>
  6588. </dl>
  6589. <dl>
  6590. <dt>Type</dt>
  6591. <dd>-</dd>
  6592. </dl>
  6593. <dl>
  6594. <dt>DP</dt>
  6595. <dd>-</dl>
  6596. <dl>
  6597. <dt>PlayCost</dt>
  6598. <dd>-</dd>
  6599. </dl>
  6600. <dl>
  6601. <dt>DigivolveCost1</dt>
  6602. <dd>-</dd>
  6603. </dl>
  6604. <dl>
  6605. <dt>DigivolveCost2</dt>
  6606. <dd>-</dd>
  6607. </dl>
  6608. </div>
  6609. </div>
  6610. <divclass="cardinfo_bottom">
  6611. <dl>
  6612. <dt>Effect</dt>
  6613. <dd>[Main] Gain 1 memory for every 10 cards in your trash.</dd>
  6614. </dl>
  6615. <dl>
  6616. <dt>Digivolveeffect</dt>
  6617. <dd>-</dd>
  6618. </dl>
  6619. <dl>
  6620. <dt>Securityeffect</dt>
  6621. <dd>[Security] Gain 2 memory.</dd>
  6622. </dl>
  6623. <dl>
  6624. <dt>Notes</dt>
  6625. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6626. </div>
  6627. </div>
  6628. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6629. </div>
  6630. </div>
  6631. </li>
  6632. <liclass="image_lists_itemdatapage-3">
  6633. <aclass="card_img">
  6634. <imgsrc="../images/cardlist/card/BT4-115_P3.png"alt="BT4-115Lucemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  6635. </a>
  6636. <divclass="popup">
  6637. <divclass="card_detailcard_detail_yellow">
  6638. <divclass="card_detail_inner">
  6639. <ulclass="cardinfo_head">
  6640. <liclass="cardno">BT4-115</li>
  6641. <li>SEC</li>
  6642. <liclass="cardtype">Digimon</li>
  6643. <liclass="cardlv">Lv.3</li>
  6644. <liclass="cardtypecardParallel">AlternativeArt</li>
  6645. </ul>
  6646. <divclass="card_name">Lucemon</div>
  6647. <divclass="cardinfo_top">
  6648. <divclass="card_img">
  6649. <imgsrc="../images/cardlist/card/BT4-115_P3.png"alt="BT4-115Lucemon"></div>
  6650. <divclass="cardinfo_top_body">
  6651. <dl>
  6652. <dt>Form</dt>
  6653. <dd>Rookie</dd>
  6654. </dl>
  6655. <dl>
  6656. <dt>Attribute</dt>
  6657. <dd>Vaccine</dd>
  6658. </dl>
  6659. <dl>
  6660. <dt>Type</dt>
  6661. <dd>Angel</dd>
  6662. </dl>
  6663. <dl>
  6664. <dt>DP</dt>
  6665. <dd>10000</dl>
  6666. <dl>
  6667. <dt>PlayCost</dt>
  6668. <dd>13</dd>
  6669. </dl>
  6670. <dl>
  6671. <dt>DigivolveCost1</dt>
  6672. <dd>-</dd>
  6673. </dl>
  6674. <dl>
  6675. <dt>DigivolveCost2</dt>
  6676. <dd>-</dd>
  6677. </dl>
  6678. </div>
  6679. </div>
  6680. <divclass="cardinfo_bottom">
  6681. <dl>
  6682. <dt>Effect</dt>
  6683. <dd>While you have 10 or more cards in your trash, when playing this card from your hand, reduce its play cost by 8.[On Play] <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)[All Turns] This Digimon can only digivolve into Digimon with [Lucemon] in their names.</dd>
  6684. </dl>
  6685. <dl>
  6686. <dt>Digivolveeffect</dt>
  6687. <dd>-</dd>
  6688. </dl>
  6689. <dl>
  6690. <dt>Securityeffect</dt>
  6691. <dd>-</dd>
  6692. </dl>
  6693. <dl>
  6694. <dt>Notes</dt>
  6695. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6696. </div>
  6697. </div>
  6698. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6699. </div>
  6700. </div>
  6701. </li>
  6702. <liclass="image_lists_itemdatapage-3">
  6703. <aclass="card_img">
  6704. <imgsrc="../images/cardlist/card/BT5-001_P3.png"alt="BT5-001Koromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  6705. </a>
  6706. <divclass="popup">
  6707. <divclass="card_detailcard_detail_red">
  6708. <divclass="card_detail_inner">
  6709. <ulclass="cardinfo_head">
  6710. <liclass="cardno">BT5-001</li>
  6711. <li>U</li>
  6712. <liclass="cardtype">Digi-Egg</li>
  6713. <liclass="cardlv">Lv.2</li>
  6714. <liclass="cardtypecardParallel">AlternativeArt</li>
  6715. </ul>
  6716. <divclass="card_name">Koromon</div>
  6717. <divclass="cardinfo_top">
  6718. <divclass="card_img">
  6719. <imgsrc="../images/cardlist/card/BT5-001_P3.png"alt="BT5-001Koromon"></div>
  6720. <divclass="cardinfo_top_body">
  6721. <dl>
  6722. <dt>Form</dt>
  6723. <dd>In-Training</dd>
  6724. </dl>
  6725. <dl>
  6726. <dt>Attribute</dt>
  6727. <dd>-</dd>
  6728. </dl>
  6729. <dl>
  6730. <dt>Type</dt>
  6731. <dd>Lesser</dd>
  6732. </dl>
  6733. <dl>
  6734. <dt>DP</dt>
  6735. <dd>-</dl>
  6736. <dl>
  6737. <dt>PlayCost</dt>
  6738. <dd>-</dd>
  6739. </dl>
  6740. <dl>
  6741. <dt>DigivolveCost1</dt>
  6742. <dd>-</dd>
  6743. </dl>
  6744. <dl>
  6745. <dt>DigivolveCost2</dt>
  6746. <dd>-</dd>
  6747. </dl>
  6748. </div>
  6749. </div>
  6750. <divclass="cardinfo_bottom">
  6751. <dl>
  6752. <dt>Effect</dt>
  6753. <dd>-</dd>
  6754. </dl>
  6755. <dl>
  6756. <dt>Digivolveeffect</dt>
  6757. <dd>[When Attacking][Once Per Turn] If this Digimon has [Omnimon] or [Greymon] (other than [DoruGreymon], [BurningGreymon], or [DexDoruGreymon]) in its name, trigger <Draw 1>. (Draw 1 card from your deck.) </dd>
  6758. </dl>
  6759. <dl>
  6760. <dt>Securityeffect</dt>
  6761. <dd>-</dd>
  6762. </dl>
  6763. <dl>
  6764. <dt>Notes</dt>
  6765. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6766. </div>
  6767. </div>
  6768. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6769. </div>
  6770. </div>
  6771. </li>
  6772. <liclass="image_lists_itemdatapage-3">
  6773. <aclass="card_img">
  6774. <imgsrc="../images/cardlist/card/BT5-021_P2.png"alt="BT5-021Syakomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  6775. </a>
  6776. <divclass="popup">
  6777. <divclass="card_detailcard_detail_blue">
  6778. <divclass="card_detail_inner">
  6779. <ulclass="cardinfo_head">
  6780. <liclass="cardno">BT5-021</li>
  6781. <li>C</li>
  6782. <liclass="cardtype">Digimon</li>
  6783. <liclass="cardlv">Lv.3</li>
  6784. <liclass="cardtypecardParallel">AlternativeArt</li>
  6785. </ul>
  6786. <divclass="card_name">Syakomon</div>
  6787. <divclass="cardinfo_top">
  6788. <divclass="card_img">
  6789. <imgsrc="../images/cardlist/card/BT5-021_P2.png"alt="BT5-021Syakomon"></div>
  6790. <divclass="cardinfo_top_body">
  6791. <dl>
  6792. <dt>Form</dt>
  6793. <dd>Rookie</dd>
  6794. </dl>
  6795. <dl>
  6796. <dt>Attribute</dt>
  6797. <dd>Virus</dd>
  6798. </dl>
  6799. <dl>
  6800. <dt>Type</dt>
  6801. <dd>Crustacean</dd>
  6802. </dl>
  6803. <dl>
  6804. <dt>DP</dt>
  6805. <dd>3000</dl>
  6806. <dl>
  6807. <dt>PlayCost</dt>
  6808. <dd>3</dd>
  6809. </dl>
  6810. <dl>
  6811. <dt>DigivolveCost1</dt>
  6812. <dd>0fromLv.2</dd>
  6813. </dl>
  6814. <dl>
  6815. <dt>DigivolveCost2</dt>
  6816. <dd>-</dd>
  6817. </dl>
  6818. </div>
  6819. </div>
  6820. <divclass="cardinfo_bottom">
  6821. <dl>
  6822. <dt>Effect</dt>
  6823. <dd>[Opponent's Turn] Your opponent can't reduce digivolution costs.</dd>
  6824. </dl>
  6825. <dl>
  6826. <dt>Digivolveeffect</dt>
  6827. <dd>-</dd>
  6828. </dl>
  6829. <dl>
  6830. <dt>Securityeffect</dt>
  6831. <dd>-</dd>
  6832. </dl>
  6833. <dl>
  6834. <dt>Notes</dt>
  6835. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6836. </div>
  6837. </div>
  6838. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6839. </div>
  6840. </div>
  6841. </li>
  6842. <liclass="image_lists_itemdatapage-3">
  6843. <aclass="card_img">
  6844. <imgsrc="../images/cardlist/card/BT5-050_P1.png"alt="BT5-050Weedmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  6845. </a>
  6846. <divclass="popup">
  6847. <divclass="card_detailcard_detail_green">
  6848. <divclass="card_detail_inner">
  6849. <ulclass="cardinfo_head">
  6850. <liclass="cardno">BT5-050</li>
  6851. <li>C</li>
  6852. <liclass="cardtype">Digimon</li>
  6853. <liclass="cardlv">Lv.4</li>
  6854. <liclass="cardtypecardParallel">AlternativeArt</li>
  6855. </ul>
  6856. <divclass="card_name">Weedmon</div>
  6857. <divclass="cardinfo_top">
  6858. <divclass="card_img">
  6859. <imgsrc="../images/cardlist/card/BT5-050_P1.png"alt="BT5-050Weedmon"></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>Virus</dd>
  6868. </dl>
  6869. <dl>
  6870. <dt>Type</dt>
  6871. <dd>Vegetation</dd>
  6872. </dl>
  6873. <dl>
  6874. <dt>DP</dt>
  6875. <dd>3000</dl>
  6876. <dl>
  6877. <dt>PlayCost</dt>
  6878. <dd>4</dd>
  6879. </dl>
  6880. <dl>
  6881. <dt>DigivolveCost1</dt>
  6882. <dd>1fromLv.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>[Your Turn] When this card is trashed due to activating this Digimon's <Digi-Burst>, gain 1 memory.</dd>
  6898. </dl>
  6899. <dl>
  6900. <dt>Securityeffect</dt>
  6901. <dd>-</dd>
  6902. </dl>
  6903. <dl>
  6904. <dt>Notes</dt>
  6905. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></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/BT5-065_P1.png"alt="BT5-065Shademon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6915. </a>
  6916. <divclass="popup">
  6917. <divclass="card_detailcard_detail_black">
  6918. <divclass="card_detail_inner">
  6919. <ulclass="cardinfo_head">
  6920. <liclass="cardno">BT5-065</li>
  6921. <li>U</li>
  6922. <liclass="cardtype">Digimon</li>
  6923. <liclass="cardlv">Lv.4</li>
  6924. <liclass="cardtypecardParallel">AlternativeArt</li>
  6925. </ul>
  6926. <divclass="card_name">Shademon</div>
  6927. <divclass="cardinfo_top">
  6928. <divclass="card_img">
  6929. <imgsrc="../images/cardlist/card/BT5-065_P1.png"alt="BT5-065Shademon"></div>
  6930. <divclass="cardinfo_top_body">
  6931. <dl>
  6932. <dt>Form</dt>
  6933. <dd>Champion</dd>
  6934. </dl>
  6935. <dl>
  6936. <dt>Attribute</dt>
  6937. <dd>Virus</dd>
  6938. </dl>
  6939. <dl>
  6940. <dt>Type</dt>
  6941. <dd>Unidentified</dd>
  6942. </dl>
  6943. <dl>
  6944. <dt>DP</dt>
  6945. <dd>5000</dl>
  6946. <dl>
  6947. <dt>PlayCost</dt>
  6948. <dd>6</dd>
  6949. </dl>
  6950. <dl>
  6951. <dt>DigivolveCost1</dt>
  6952. <dd>2fromLv.3</dd>
  6953. </dl>
  6954. <dl>
  6955. <dt>DigivolveCost2</dt>
  6956. <dd>-</dd>
  6957. </dl>
  6958. </div>
  6959. </div>
  6960. <divclass="cardinfo_bottom">
  6961. <dl>
  6962. <dt>Effect</dt>
  6963. <dd>[Security] At the end of the battle, play this card without paying its memory cost.<Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[Your Turn] This Digimon can't attack.</dd>
  6964. </dl>
  6965. <dl>
  6966. <dt>Digivolveeffect</dt>
  6967. <dd>-</dd>
  6968. </dl>
  6969. <dl>
  6970. <dt>Securityeffect</dt>
  6971. <dd>-</dd>
  6972. </dl>
  6973. <dl>
  6974. <dt>Notes</dt>
  6975. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  6976. </div>
  6977. </div>
  6978. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6979. </div>
  6980. </div>
  6981. </li>
  6982. <liclass="image_lists_itemdatapage-3">
  6983. <aclass="card_img">
  6984. <imgsrc="../images/cardlist/card/BT5-086_P7.png"alt="BT5-086Omnimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  6985. </a>
  6986. <divclass="popup">
  6987. <divclass="card_detailcard_detail_white">
  6988. <divclass="card_detail_inner">
  6989. <ulclass="cardinfo_head">
  6990. <liclass="cardno">BT5-086</li>
  6991. <li>SR</li>
  6992. <liclass="cardtype">Digimon</li>
  6993. <liclass="cardlv">Lv.7</li>
  6994. <liclass="cardtypecardParallel">AlternativeArt</li>
  6995. </ul>
  6996. <divclass="card_name">Omnimon</div>
  6997. <divclass="cardinfo_top">
  6998. <divclass="card_img">
  6999. <imgsrc="../images/cardlist/card/BT5-086_P7.png"alt="BT5-086Omnimon"></div>
  7000. <divclass="cardinfo_top_body">
  7001. <dl>
  7002. <dt>Form</dt>
  7003. <dd>Mega</dd>
  7004. </dl>
  7005. <dl>
  7006. <dt>Attribute</dt>
  7007. <dd>Vaccine</dd>
  7008. </dl>
  7009. <dl>
  7010. <dt>Type</dt>
  7011. <dd>HolyWarrior/RoyalKnight</dd>
  7012. </dl>
  7013. <dl>
  7014. <dt>DP</dt>
  7015. <dd>14000</dl>
  7016. <dl>
  7017. <dt>PlayCost</dt>
  7018. <dd>15</dd>
  7019. </dl>
  7020. <dl>
  7021. <dt>DigivolveCost1</dt>
  7022. <dd>4fromLv.6</dd>
  7023. </dl>
  7024. <dl>
  7025. <dt>DigivolveCost2</dt>
  7026. <dd>4fromLv.6</dd>
  7027. </dl>
  7028. </div>
  7029. </div>
  7030. <divclass="cardinfo_bottom">
  7031. <dl>
  7032. <dt>Effect</dt>
  7033. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[When Digivolving] Unsuspend this Digimon.[All Turns] If an opponent's effect would delete this Digimon or return it to its owner's hand or deck, you may prevent it from leaving play by trashing a level 6 Digimon card in this card's digivolution cards.</dd>
  7034. </dl>
  7035. <dl>
  7036. <dt>Digivolveeffect</dt>
  7037. <dd>-</dd>
  7038. </dl>
  7039. <dl>
  7040. <dt>Securityeffect</dt>
  7041. <dd>-</dd>
  7042. </dl>
  7043. <dl>
  7044. <dt>Notes</dt>
  7045. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7046. </div>
  7047. </div>
  7048. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7049. </div>
  7050. </div>
  7051. </li>
  7052. <liclass="image_lists_itemdatapage-3">
  7053. <aclass="card_img">
  7054. <imgsrc="../images/cardlist/card/BT5-087_P4.png"alt="BT5-087OmnimonZwart"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7055. </a>
  7056. <divclass="popup">
  7057. <divclass="card_detailcard_detail_white">
  7058. <divclass="card_detail_inner">
  7059. <ulclass="cardinfo_head">
  7060. <liclass="cardno">BT5-087</li>
  7061. <li>SR</li>
  7062. <liclass="cardtype">Digimon</li>
  7063. <liclass="cardlv">Lv.7</li>
  7064. <liclass="cardtypecardParallel">AlternativeArt</li>
  7065. </ul>
  7066. <divclass="card_name">OmnimonZwart</div>
  7067. <divclass="cardinfo_top">
  7068. <divclass="card_img">
  7069. <imgsrc="../images/cardlist/card/BT5-087_P4.png"alt="BT5-087OmnimonZwart"></div>
  7070. <divclass="cardinfo_top_body">
  7071. <dl>
  7072. <dt>Form</dt>
  7073. <dd>Mega</dd>
  7074. </dl>
  7075. <dl>
  7076. <dt>Attribute</dt>
  7077. <dd>Vaccine</dd>
  7078. </dl>
  7079. <dl>
  7080. <dt>Type</dt>
  7081. <dd>HolyWarrior</dd>
  7082. </dl>
  7083. <dl>
  7084. <dt>DP</dt>
  7085. <dd>15000</dl>
  7086. <dl>
  7087. <dt>PlayCost</dt>
  7088. <dd>15</dd>
  7089. </dl>
  7090. <dl>
  7091. <dt>DigivolveCost1</dt>
  7092. <dd>6fromLv.6</dd>
  7093. </dl>
  7094. <dl>
  7095. <dt>DigivolveCost2</dt>
  7096. <dd>6fromLv.6</dd>
  7097. </dl>
  7098. </div>
  7099. </div>
  7100. <divclass="cardinfo_bottom">
  7101. <dl>
  7102. <dt>Effect</dt>
  7103. <dd>[When Digivolving] Trash the top 3 cards of your deck. Then, you may play up to 2 black and/or purple Digimon cards with play costs of 8 or less from your trash without paying their memory costs.[When Attacking] You may return 1 level 6 Digimon card in this Digimon's digivolution cards to its owner's hand to delete 1 of your opponent's unsuspended Digimon with a play cost of 12 or less.</dd>
  7104. </dl>
  7105. <dl>
  7106. <dt>Digivolveeffect</dt>
  7107. <dd>-</dd>
  7108. </dl>
  7109. <dl>
  7110. <dt>Securityeffect</dt>
  7111. <dd>-</dd>
  7112. </dl>
  7113. <dl>
  7114. <dt>Notes</dt>
  7115. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7116. </div>
  7117. </div>
  7118. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7119. </div>
  7120. </div>
  7121. </li>
  7122. <liclass="image_lists_itemdatapage-3">
  7123. <aclass="card_img">
  7124. <imgsrc="../images/cardlist/card/BT5-088_P3.png"alt="BT5-088SoraTakenouchi&JoeKido"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7125. </a>
  7126. <divclass="popup">
  7127. <divclass="card_detailcard_detail_blue">
  7128. <divclass="card_detail_inner">
  7129. <ulclass="cardinfo_head">
  7130. <liclass="cardno">BT5-088</li>
  7131. <li>R</li>
  7132. <liclass="cardtype">Tamer</li>
  7133. <liclass="cardtypecardParallel">AlternativeArt</li>
  7134. </ul>
  7135. <divclass="card_name">SoraTakenouchi&JoeKido</div>
  7136. <divclass="cardinfo_top">
  7137. <divclass="card_img">
  7138. <imgsrc="../images/cardlist/card/BT5-088_P3.png"alt="BT5-088SoraTakenouchi&JoeKido"></div>
  7139. <divclass="cardinfo_top_body">
  7140. <dl>
  7141. <dt>Form</dt>
  7142. <dd>-</dd>
  7143. </dl>
  7144. <dl>
  7145. <dt>Attribute</dt>
  7146. <dd>-</dd>
  7147. </dl>
  7148. <dl>
  7149. <dt>Type</dt>
  7150. <dd>-</dd>
  7151. </dl>
  7152. <dl>
  7153. <dt>DP</dt>
  7154. <dd>-</dl>
  7155. <dl>
  7156. <dt>PlayCost</dt>
  7157. <dd>4</dd>
  7158. </dl>
  7159. <dl>
  7160. <dt>DigivolveCost1</dt>
  7161. <dd>-</dd>
  7162. </dl>
  7163. <dl>
  7164. <dt>DigivolveCost2</dt>
  7165. <dd>-</dd>
  7166. </dl>
  7167. </div>
  7168. </div>
  7169. <divclass="cardinfo_bottom">
  7170. <dl>
  7171. <dt>Effect</dt>
  7172. <dd>[Start of Your Turn] If your opponent has a Digimon with no digivolution cards in play, gain 2 memory.[Your Turn] When you attack with a blue Digimon, you may suspend this Tamer to trash up to 2 digivolution cards from the bottom of 1 of your opponent's Digimon.</dd>
  7173. </dl>
  7174. <dl>
  7175. <dt>Digivolveeffect</dt>
  7176. <dd>-</dd>
  7177. </dl>
  7178. <dl>
  7179. <dt>Securityeffect</dt>
  7180. <dd>[Security] Play this card without paying its memory cost.</dd>
  7181. </dl>
  7182. <dl>
  7183. <dt>Notes</dt>
  7184. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7185. </div>
  7186. </div>
  7187. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7188. </div>
  7189. </div>
  7190. </li>
  7191. <liclass="image_lists_itemdatapage-3">
  7192. <aclass="card_img">
  7193. <imgsrc="../images/cardlist/card/BT5-092_P3.png"alt="BT5-092NokiaShiramine"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7194. </a>
  7195. <divclass="popup">
  7196. <divclass="card_detailcard_detail_white">
  7197. <divclass="card_detail_inner">
  7198. <ulclass="cardinfo_head">
  7199. <liclass="cardno">BT5-092</li>
  7200. <li>R</li>
  7201. <liclass="cardtype">Tamer</li>
  7202. <liclass="cardtypecardParallel">AlternativeArt</li>
  7203. </ul>
  7204. <divclass="card_name">NokiaShiramine</div>
  7205. <divclass="cardinfo_top">
  7206. <divclass="card_img">
  7207. <imgsrc="../images/cardlist/card/BT5-092_P3.png"alt="BT5-092NokiaShiramine"></div>
  7208. <divclass="cardinfo_top_body">
  7209. <dl>
  7210. <dt>Form</dt>
  7211. <dd>-</dd>
  7212. </dl>
  7213. <dl>
  7214. <dt>Attribute</dt>
  7215. <dd>-</dd>
  7216. </dl>
  7217. <dl>
  7218. <dt>Type</dt>
  7219. <dd>-</dd>
  7220. </dl>
  7221. <dl>
  7222. <dt>DP</dt>
  7223. <dd>-</dl>
  7224. <dl>
  7225. <dt>PlayCost</dt>
  7226. <dd>3</dd>
  7227. </dl>
  7228. <dl>
  7229. <dt>DigivolveCost1</dt>
  7230. <dd>-</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>[On Play] You may play 1 [Agumon] or [Gabumon] from your hand without paying its memory cost.[Main] When digivolving one of your Digimon into a Digimon card in your hand with [Garurumon], [Omnimon], or [Greymon] (other than [DoruGreymon], [BurningGreymon], or [DexDoruGreymon]), in its name, you may suspend this Tamer to reduce the memory cost of the digivolution by 1.</dd>
  7242. </dl>
  7243. <dl>
  7244. <dt>Digivolveeffect</dt>
  7245. <dd>-</dd>
  7246. </dl>
  7247. <dl>
  7248. <dt>Securityeffect</dt>
  7249. <dd>[Security] Play this card without paying its memory cost.</dd>
  7250. </dl>
  7251. <dl>
  7252. <dt>Notes</dt>
  7253. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></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/BT5-105_P2.png"alt="BT5-105UltimateFlare"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7263. </a>
  7264. <divclass="popup">
  7265. <divclass="card_detailcard_detail_black">
  7266. <divclass="card_detail_inner">
  7267. <ulclass="cardinfo_head">
  7268. <liclass="cardno">BT5-105</li>
  7269. <li>C</li>
  7270. <liclass="cardtype">Option</li>
  7271. <liclass="cardtypecardParallel">AlternativeArt</li>
  7272. </ul>
  7273. <divclass="card_name">UltimateFlare</div>
  7274. <divclass="cardinfo_top">
  7275. <divclass="card_img">
  7276. <imgsrc="../images/cardlist/card/BT5-105_P2.png"alt="BT5-105UltimateFlare"></div>
  7277. <divclass="cardinfo_top_body">
  7278. <dl>
  7279. <dt>Form</dt>
  7280. <dd>-</dd>
  7281. </dl>
  7282. <dl>
  7283. <dt>Attribute</dt>
  7284. <dd>-</dd>
  7285. </dl>
  7286. <dl>
  7287. <dt>Type</dt>
  7288. <dd>-</dd>
  7289. </dl>
  7290. <dl>
  7291. <dt>DP</dt>
  7292. <dd>-</dl>
  7293. <dl>
  7294. <dt>PlayCost</dt>
  7295. <dd>8</dd>
  7296. </dl>
  7297. <dl>
  7298. <dt>DigivolveCost1</dt>
  7299. <dd>-</dd>
  7300. </dl>
  7301. <dl>
  7302. <dt>DigivolveCost2</dt>
  7303. <dd>-</dd>
  7304. </dl>
  7305. </div>
  7306. </div>
  7307. <divclass="cardinfo_bottom">
  7308. <dl>
  7309. <dt>Effect</dt>
  7310. <dd>[Main] Trigger <De-Digivolve 3> on 1 of your opponent's Digimon. (Trash up to 3 cards 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.) Then, delete all of your opponent's Digimon with play costs of 3 or less.</dd>
  7311. </dl>
  7312. <dl>
  7313. <dt>Digivolveeffect</dt>
  7314. <dd>-</dd>
  7315. </dl>
  7316. <dl>
  7317. <dt>Securityeffect</dt>
  7318. <dd>[Security] Activate this card's [Main] effect.</dd>
  7319. </dl>
  7320. <dl>
  7321. <dt>Notes</dt>
  7322. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7323. </div>
  7324. </div>
  7325. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7326. </div>
  7327. </div>
  7328. </li>
  7329. <liclass="image_lists_itemdatapage-3">
  7330. <aclass="card_img">
  7331. <imgsrc="../images/cardlist/card/BT5-111_P3.png"alt="BT5-111OmnimonXAnti-body"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7332. </a>
  7333. <divclass="popup">
  7334. <divclass="card_detailcard_detail_white">
  7335. <divclass="card_detail_inner">
  7336. <ulclass="cardinfo_head">
  7337. <liclass="cardno">BT5-111</li>
  7338. <li>SEC</li>
  7339. <liclass="cardtype">Digimon</li>
  7340. <liclass="cardlv">Lv.7</li>
  7341. <liclass="cardtypecardParallel">AlternativeArt</li>
  7342. </ul>
  7343. <divclass="card_name">OmnimonXAnti-body</div>
  7344. <divclass="cardinfo_top">
  7345. <divclass="card_img">
  7346. <imgsrc="../images/cardlist/card/BT5-111_P3.png"alt="BT5-111OmnimonXAnti-body"></div>
  7347. <divclass="cardinfo_top_body">
  7348. <dl>
  7349. <dt>Form</dt>
  7350. <dd>Mega</dd>
  7351. </dl>
  7352. <dl>
  7353. <dt>Attribute</dt>
  7354. <dd>Vaccine</dd>
  7355. </dl>
  7356. <dl>
  7357. <dt>Type</dt>
  7358. <dd>HolyWarrior/RoyalKnight/X-Antibody</dd>
  7359. </dl>
  7360. <dl>
  7361. <dt>DP</dt>
  7362. <dd>15000</dl>
  7363. <dl>
  7364. <dt>PlayCost</dt>
  7365. <dd>15</dd>
  7366. </dl>
  7367. <dl>
  7368. <dt>DigivolveCost1</dt>
  7369. <dd>6fromLv.6</dd>
  7370. </dl>
  7371. <dl>
  7372. <dt>DigivolveCost2</dt>
  7373. <dd>6fromLv.6</dd>
  7374. </dl>
  7375. </div>
  7376. </div>
  7377. <divclass="cardinfo_bottom">
  7378. <dl>
  7379. <dt>Effect</dt>
  7380. <dd>Your Digimon with [Omnimon] in its name can digivolve into this card in your hand for a memory cost of 3, ignoring this card's digivolution requirements.[When Attacking] Delete 1 of your opponent's Digimon with DP less than or equal to this Digimon's DP.[Opponent's Turn] When your opponent's Digimon attacks, you may trash 2 of this Digimon's digivolution cards to end the attack.</dd>
  7381. </dl>
  7382. <dl>
  7383. <dt>Digivolveeffect</dt>
  7384. <dd>-</dd>
  7385. </dl>
  7386. <dl>
  7387. <dt>Securityeffect</dt>
  7388. <dd>-</dd>
  7389. </dl>
  7390. <dl>
  7391. <dt>Notes</dt>
  7392. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7393. </div>
  7394. </div>
  7395. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7396. </div>
  7397. </div>
  7398. </li>
  7399. <liclass="image_lists_itemdatapage-3">
  7400. <aclass="card_img">
  7401. <imgsrc="../images/cardlist/card/BT5-112_P4.png"alt="BT5-112OmnimonZwartDefeat"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7402. </a>
  7403. <divclass="popup">
  7404. <divclass="card_detailcard_detail_white">
  7405. <divclass="card_detail_inner">
  7406. <ulclass="cardinfo_head">
  7407. <liclass="cardno">BT5-112</li>
  7408. <li>SEC</li>
  7409. <liclass="cardtype">Digimon</li>
  7410. <liclass="cardlv">Lv.7</li>
  7411. <liclass="cardtypecardParallel">AlternativeArt</li>
  7412. </ul>
  7413. <divclass="card_name">OmnimonZwartDefeat</div>
  7414. <divclass="cardinfo_top">
  7415. <divclass="card_img">
  7416. <imgsrc="../images/cardlist/card/BT5-112_P4.png"alt="BT5-112OmnimonZwartDefeat"></div>
  7417. <divclass="cardinfo_top_body">
  7418. <dl>
  7419. <dt>Form</dt>
  7420. <dd>Mega</dd>
  7421. </dl>
  7422. <dl>
  7423. <dt>Attribute</dt>
  7424. <dd>Virus</dd>
  7425. </dl>
  7426. <dl>
  7427. <dt>Type</dt>
  7428. <dd>HolyWarrior</dd>
  7429. </dl>
  7430. <dl>
  7431. <dt>DP</dt>
  7432. <dd>13000</dl>
  7433. <dl>
  7434. <dt>PlayCost</dt>
  7435. <dd>15</dd>
  7436. </dl>
  7437. <dl>
  7438. <dt>DigivolveCost1</dt>
  7439. <dd>3fromLv.6</dd>
  7440. </dl>
  7441. <dl>
  7442. <dt>DigivolveCost2</dt>
  7443. <dd>3fromLv.6</dd>
  7444. </dl>
  7445. </div>
  7446. </div>
  7447. <divclass="cardinfo_bottom">
  7448. <dl>
  7449. <dt>Effect</dt>
  7450. <dd>[Security] Play this card without battling and without paying its memory cost.[When Digivolving] Delete 1 of your opponent's Tamers.[On Deletion] Delete 1 of your opponent's Digimon.</dd>
  7451. </dl>
  7452. <dl>
  7453. <dt>Digivolveeffect</dt>
  7454. <dd>-</dd>
  7455. </dl>
  7456. <dl>
  7457. <dt>Securityeffect</dt>
  7458. <dd>-</dd>
  7459. </dl>
  7460. <dl>
  7461. <dt>Notes</dt>
  7462. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7463. </div>
  7464. </div>
  7465. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7466. </div>
  7467. </div>
  7468. </li>
  7469. <liclass="image_lists_itemdatapage-3">
  7470. <aclass="card_img">
  7471. <imgsrc="../images/cardlist/card/ST1-07_P5.png"alt="ST1-07Greymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  7472. </a>
  7473. <divclass="popup">
  7474. <divclass="card_detailcard_detail_red">
  7475. <divclass="card_detail_inner">
  7476. <ulclass="cardinfo_head">
  7477. <liclass="cardno">ST1-07</li>
  7478. <li>U</li>
  7479. <liclass="cardtype">Digimon</li>
  7480. <liclass="cardlv">Lv.4</li>
  7481. <liclass="cardtypecardParallel">AlternativeArt</li>
  7482. </ul>
  7483. <divclass="card_name">Greymon</div>
  7484. <divclass="cardinfo_top">
  7485. <divclass="card_img">
  7486. <imgsrc="../images/cardlist/card/ST1-07_P5.png"alt="ST1-07Greymon"></div>
  7487. <divclass="cardinfo_top_body">
  7488. <dl>
  7489. <dt>Form</dt>
  7490. <dd>Champion</dd>
  7491. </dl>
  7492. <dl>
  7493. <dt>Attribute</dt>
  7494. <dd>Vaccine</dd>
  7495. </dl>
  7496. <dl>
  7497. <dt>Type</dt>
  7498. <dd>Dinosaur</dd>
  7499. </dl>
  7500. <dl>
  7501. <dt>DP</dt>
  7502. <dd>4000</dl>
  7503. <dl>
  7504. <dt>PlayCost</dt>
  7505. <dd>5</dd>
  7506. </dl>
  7507. <dl>
  7508. <dt>DigivolveCost1</dt>
  7509. <dd>2fromLv.3</dd>
  7510. </dl>
  7511. <dl>
  7512. <dt>DigivolveCost2</dt>
  7513. <dd>-</dd>
  7514. </dl>
  7515. </div>
  7516. </div>
  7517. <divclass="cardinfo_bottom">
  7518. <dl>
  7519. <dt>Effect</dt>
  7520. <dd>-</dd>
  7521. </dl>
  7522. <dl>
  7523. <dt>Digivolveeffect</dt>
  7524. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)</dd>
  7525. </dl>
  7526. <dl>
  7527. <dt>Securityeffect</dt>
  7528. <dd>-</dd>
  7529. </dl>
  7530. <dl>
  7531. <dt>Notes</dt>
  7532. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7533. </div>
  7534. </div>
  7535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7536. </div>
  7537. </div>
  7538. </li>
  7539. <liclass="image_lists_itemdatapage-3">
  7540. <aclass="card_img">
  7541. <imgsrc="../images/cardlist/card/ST2-15_P1.png"alt="ST2-15KaiserNail"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7542. </a>
  7543. <divclass="popup">
  7544. <divclass="card_detailcard_detail_blue">
  7545. <divclass="card_detail_inner">
  7546. <ulclass="cardinfo_head">
  7547. <liclass="cardno">ST2-15</li>
  7548. <li>C</li>
  7549. <liclass="cardtype">Option</li>
  7550. <liclass="cardtypecardParallel">AlternativeArt</li>
  7551. </ul>
  7552. <divclass="card_name">KaiserNail</div>
  7553. <divclass="cardinfo_top">
  7554. <divclass="card_img">
  7555. <imgsrc="../images/cardlist/card/ST2-15_P1.png"alt="ST2-15KaiserNail"></div>
  7556. <divclass="cardinfo_top_body">
  7557. <dl>
  7558. <dt>Form</dt>
  7559. <dd>-</dd>
  7560. </dl>
  7561. <dl>
  7562. <dt>Attribute</dt>
  7563. <dd>-</dd>
  7564. </dl>
  7565. <dl>
  7566. <dt>Type</dt>
  7567. <dd>-</dd>
  7568. </dl>
  7569. <dl>
  7570. <dt>DP</dt>
  7571. <dd>-</dl>
  7572. <dl>
  7573. <dt>PlayCost</dt>
  7574. <dd>4</dd>
  7575. </dl>
  7576. <dl>
  7577. <dt>DigivolveCost1</dt>
  7578. <dd>-</dd>
  7579. </dl>
  7580. <dl>
  7581. <dt>DigivolveCost2</dt>
  7582. <dd>-</dd>
  7583. </dl>
  7584. </div>
  7585. </div>
  7586. <divclass="cardinfo_bottom">
  7587. <dl>
  7588. <dt>Effect</dt>
  7589. <dd>[Main] Choose a Digimon digivolution card placed under 1 of your Digimon and play it as another Digimon without paying its memory cost.</dd>
  7590. </dl>
  7591. <dl>
  7592. <dt>Digivolveeffect</dt>
  7593. <dd>-</dd>
  7594. </dl>
  7595. <dl>
  7596. <dt>Securityeffect</dt>
  7597. <dd>[Security] Activate this card's [Main] effect.</dd>
  7598. </dl>
  7599. <dl>
  7600. <dt>Notes</dt>
  7601. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7602. </div>
  7603. </div>
  7604. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7605. </div>
  7606. </div>
  7607. </li>
  7608. <liclass="image_lists_itemdatapage-3">
  7609. <aclass="card_img">
  7610. <imgsrc="../images/cardlist/card/ST2-16_P3.png"alt="ST2-16CocytusBreath"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7611. </a>
  7612. <divclass="popup">
  7613. <divclass="card_detailcard_detail_blue">
  7614. <divclass="card_detail_inner">
  7615. <ulclass="cardinfo_head">
  7616. <liclass="cardno">ST2-16</li>
  7617. <li>U</li>
  7618. <liclass="cardtype">Option</li>
  7619. <liclass="cardtypecardParallel">AlternativeArt</li>
  7620. </ul>
  7621. <divclass="card_name">CocytusBreath</div>
  7622. <divclass="cardinfo_top">
  7623. <divclass="card_img">
  7624. <imgsrc="../images/cardlist/card/ST2-16_P3.png"alt="ST2-16CocytusBreath"></div>
  7625. <divclass="cardinfo_top_body">
  7626. <dl>
  7627. <dt>Form</dt>
  7628. <dd>-</dd>
  7629. </dl>
  7630. <dl>
  7631. <dt>Attribute</dt>
  7632. <dd>-</dd>
  7633. </dl>
  7634. <dl>
  7635. <dt>Type</dt>
  7636. <dd>-</dd>
  7637. </dl>
  7638. <dl>
  7639. <dt>DP</dt>
  7640. <dd>-</dl>
  7641. <dl>
  7642. <dt>PlayCost</dt>
  7643. <dd>7</dd>
  7644. </dl>
  7645. <dl>
  7646. <dt>DigivolveCost1</dt>
  7647. <dd>-</dd>
  7648. </dl>
  7649. <dl>
  7650. <dt>DigivolveCost2</dt>
  7651. <dd>-</dd>
  7652. </dl>
  7653. </div>
  7654. </div>
  7655. <divclass="cardinfo_bottom">
  7656. <dl>
  7657. <dt>Effect</dt>
  7658. <dd>[Main] Return 1 of your opponent's Digimon to its owner's hand. (Trash all of the digivolution cards of that Digimon.)</dd>
  7659. </dl>
  7660. <dl>
  7661. <dt>Digivolveeffect</dt>
  7662. <dd>-</dd>
  7663. </dl>
  7664. <dl>
  7665. <dt>Securityeffect</dt>
  7666. <dd>[Security] Activate this card's [Main] effect.</dd>
  7667. </dl>
  7668. <dl>
  7669. <dt>Notes</dt>
  7670. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7671. </div>
  7672. </div>
  7673. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7674. </div>
  7675. </div>
  7676. </li>
  7677. <liclass="image_lists_itemdatapage-3">
  7678. <aclass="card_img">
  7679. <imgsrc="../images/cardlist/card/ST3-04_P5.png"alt="ST3-04Patamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  7680. </a>
  7681. <divclass="popup">
  7682. <divclass="card_detailcard_detail_yellow">
  7683. <divclass="card_detail_inner">
  7684. <ulclass="cardinfo_head">
  7685. <liclass="cardno">ST3-04</li>
  7686. <li>U</li>
  7687. <liclass="cardtype">Digimon</li>
  7688. <liclass="cardlv">Lv.3</li>
  7689. <liclass="cardtypecardParallel">AlternativeArt</li>
  7690. </ul>
  7691. <divclass="card_name">Patamon</div>
  7692. <divclass="cardinfo_top">
  7693. <divclass="card_img">
  7694. <imgsrc="../images/cardlist/card/ST3-04_P5.png"alt="ST3-04Patamon"></div>
  7695. <divclass="cardinfo_top_body">
  7696. <dl>
  7697. <dt>Form</dt>
  7698. <dd>Rookie</dd>
  7699. </dl>
  7700. <dl>
  7701. <dt>Attribute</dt>
  7702. <dd>Data</dd>
  7703. </dl>
  7704. <dl>
  7705. <dt>Type</dt>
  7706. <dd>Mammal</dd>
  7707. </dl>
  7708. <dl>
  7709. <dt>DP</dt>
  7710. <dd>1000</dl>
  7711. <dl>
  7712. <dt>PlayCost</dt>
  7713. <dd>3</dd>
  7714. </dl>
  7715. <dl>
  7716. <dt>DigivolveCost1</dt>
  7717. <dd>0fromLv.2</dd>
  7718. </dl>
  7719. <dl>
  7720. <dt>DigivolveCost2</dt>
  7721. <dd>-</dd>
  7722. </dl>
  7723. </div>
  7724. </div>
  7725. <divclass="cardinfo_bottom">
  7726. <dl>
  7727. <dt>Effect</dt>
  7728. <dd>-</dd>
  7729. </dl>
  7730. <dl>
  7731. <dt>Digivolveeffect</dt>
  7732. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon is deleted by dropping to 0 DP, gain 1 memory.</dd>
  7733. </dl>
  7734. <dl>
  7735. <dt>Securityeffect</dt>
  7736. <dd>-</dd>
  7737. </dl>
  7738. <dl>
  7739. <dt>Notes</dt>
  7740. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7741. </div>
  7742. </div>
  7743. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7744. </div>
  7745. </div>
  7746. </li>
  7747. <liclass="image_lists_itemdatapage-3">
  7748. <aclass="card_img">
  7749. <imgsrc="../images/cardlist/card/ST3-15_P1.png"alt="ST3-15HolyFlame"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  7750. </a>
  7751. <divclass="popup">
  7752. <divclass="card_detailcard_detail_yellow">
  7753. <divclass="card_detail_inner">
  7754. <ulclass="cardinfo_head">
  7755. <liclass="cardno">ST3-15</li>
  7756. <li>C</li>
  7757. <liclass="cardtype">Option</li>
  7758. <liclass="cardtypecardParallel">AlternativeArt</li>
  7759. </ul>
  7760. <divclass="card_name">HolyFlame</div>
  7761. <divclass="cardinfo_top">
  7762. <divclass="card_img">
  7763. <imgsrc="../images/cardlist/card/ST3-15_P1.png"alt="ST3-15HolyFlame"></div>
  7764. <divclass="cardinfo_top_body">
  7765. <dl>
  7766. <dt>Form</dt>
  7767. <dd>-</dd>
  7768. </dl>
  7769. <dl>
  7770. <dt>Attribute</dt>
  7771. <dd>-</dd>
  7772. </dl>
  7773. <dl>
  7774. <dt>Type</dt>
  7775. <dd>-</dd>
  7776. </dl>
  7777. <dl>
  7778. <dt>DP</dt>
  7779. <dd>-</dl>
  7780. <dl>
  7781. <dt>PlayCost</dt>
  7782. <dd>2</dd>
  7783. </dl>
  7784. <dl>
  7785. <dt>DigivolveCost1</dt>
  7786. <dd>-</dd>
  7787. </dl>
  7788. <dl>
  7789. <dt>DigivolveCost2</dt>
  7790. <dd>-</dd>
  7791. </dl>
  7792. </div>
  7793. </div>
  7794. <divclass="cardinfo_bottom">
  7795. <dl>
  7796. <dt>Effect</dt>
  7797. <dd>[Main] 1 of your opponent's Digimon gains <Security Attack -3> (This Digimon checks 3 fewer security cards) until the end of your opponent's next turn.</dd>
  7798. </dl>
  7799. <dl>
  7800. <dt>Digivolveeffect</dt>
  7801. <dd>-</dd>
  7802. </dl>
  7803. <dl>
  7804. <dt>Securityeffect</dt>
  7805. <dd>[Security] All of your opponent's Digimon gain <Security Attack -1> (This Digimon checks 1 fewer security card) for the turn. </dd>
  7806. </dl>
  7807. <dl>
  7808. <dt>Notes</dt>
  7809. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7810. </div>
  7811. </div>
  7812. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7813. </div>
  7814. </div>
  7815. </li>
  7816. <liclass="image_lists_itemdatapage-3">
  7817. <aclass="card_img">
  7818. <imgsrc="../images/cardlist/card/ST5-11_P2.png"alt="ST5-11Megadramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7819. </a>
  7820. <divclass="popup">
  7821. <divclass="card_detailcard_detail_black">
  7822. <divclass="card_detail_inner">
  7823. <ulclass="cardinfo_head">
  7824. <liclass="cardno">ST5-11</li>
  7825. <li>R</li>
  7826. <liclass="cardtype">Digimon</li>
  7827. <liclass="cardlv">Lv.5</li>
  7828. <liclass="cardtypecardParallel">AlternativeArt</li>
  7829. </ul>
  7830. <divclass="card_name">Megadramon</div>
  7831. <divclass="cardinfo_top">
  7832. <divclass="card_img">
  7833. <imgsrc="../images/cardlist/card/ST5-11_P2.png"alt="ST5-11Megadramon"></div>
  7834. <divclass="cardinfo_top_body">
  7835. <dl>
  7836. <dt>Form</dt>
  7837. <dd>Ultimate</dd>
  7838. </dl>
  7839. <dl>
  7840. <dt>Attribute</dt>
  7841. <dd>Virus</dd>
  7842. </dl>
  7843. <dl>
  7844. <dt>Type</dt>
  7845. <dd>Cyborg</dd>
  7846. </dl>
  7847. <dl>
  7848. <dt>DP</dt>
  7849. <dd>7000</dl>
  7850. <dl>
  7851. <dt>PlayCost</dt>
  7852. <dd>7</dd>
  7853. </dl>
  7854. <dl>
  7855. <dt>DigivolveCost1</dt>
  7856. <dd>3fromLv.4</dd>
  7857. </dl>
  7858. <dl>
  7859. <dt>DigivolveCost2</dt>
  7860. <dd>-</dd>
  7861. </dl>
  7862. </div>
  7863. </div>
  7864. <divclass="cardinfo_bottom">
  7865. <dl>
  7866. <dt>Effect</dt>
  7867. <dd>-</dd>
  7868. </dl>
  7869. <dl>
  7870. <dt>Digivolveeffect</dt>
  7871. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  7872. </dl>
  7873. <dl>
  7874. <dt>Securityeffect</dt>
  7875. <dd>-</dd>
  7876. </dl>
  7877. <dl>
  7878. <dt>Notes</dt>
  7879. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7880. </div>
  7881. </div>
  7882. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7883. </div>
  7884. </div>
  7885. </li>
  7886. <liclass="image_lists_itemdatapage-3">
  7887. <aclass="card_img">
  7888. <imgsrc="../images/cardlist/card/P-007_P2.png"alt="P-007Garurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7889. </a>
  7890. <divclass="popup">
  7891. <divclass="card_detailcard_detail_blue">
  7892. <divclass="card_detail_inner">
  7893. <ulclass="cardinfo_head">
  7894. <liclass="cardno">P-007</li>
  7895. <li>P</li>
  7896. <liclass="cardtype">Digimon</li>
  7897. <liclass="cardlv">Lv.4</li>
  7898. <liclass="cardtypecardParallel">AlternativeArt</li>
  7899. </ul>
  7900. <divclass="card_name">Garurumon</div>
  7901. <divclass="cardinfo_top">
  7902. <divclass="card_img">
  7903. <imgsrc="../images/cardlist/card/P-007_P2.png"alt="P-007Garurumon"></div>
  7904. <divclass="cardinfo_top_body">
  7905. <dl>
  7906. <dt>Form</dt>
  7907. <dd>Champion</dd>
  7908. </dl>
  7909. <dl>
  7910. <dt>Attribute</dt>
  7911. <dd>Vaccine</dd>
  7912. </dl>
  7913. <dl>
  7914. <dt>Type</dt>
  7915. <dd>Beast</dd>
  7916. </dl>
  7917. <dl>
  7918. <dt>DP</dt>
  7919. <dd>4000</dl>
  7920. <dl>
  7921. <dt>PlayCost</dt>
  7922. <dd>4</dd>
  7923. </dl>
  7924. <dl>
  7925. <dt>DigivolveCost1</dt>
  7926. <dd>2fromLv.3</dd>
  7927. </dl>
  7928. <dl>
  7929. <dt>DigivolveCost2</dt>
  7930. <dd>-</dd>
  7931. </dl>
  7932. </div>
  7933. </div>
  7934. <divclass="cardinfo_bottom">
  7935. <dl>
  7936. <dt>Effect</dt>
  7937. <dd>-</dd>
  7938. </dl>
  7939. <dl>
  7940. <dt>Digivolveeffect</dt>
  7941. <dd>[When Attacking] If this Digimon has [Garurumon] in its name, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  7942. </dl>
  7943. <dl>
  7944. <dt>Securityeffect</dt>
  7945. <dd>-</dd>
  7946. </dl>
  7947. <dl>
  7948. <dt>Notes</dt>
  7949. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  7950. </div>
  7951. </div>
  7952. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7953. </div>
  7954. </div>
  7955. </li>
  7956. <liclass="image_lists_itemdatapage-3">
  7957. <aclass="card_img">
  7958. <imgsrc="../images/cardlist/card/P-008_P5.png"alt="P-008WereGarurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7959. </a>
  7960. <divclass="popup">
  7961. <divclass="card_detailcard_detail_blue">
  7962. <divclass="card_detail_inner">
  7963. <ulclass="cardinfo_head">
  7964. <liclass="cardno">P-008</li>
  7965. <li>P</li>
  7966. <liclass="cardtype">Digimon</li>
  7967. <liclass="cardlv">Lv.5</li>
  7968. <liclass="cardtypecardParallel">AlternativeArt</li>
  7969. </ul>
  7970. <divclass="card_name">WereGarurumon</div>
  7971. <divclass="cardinfo_top">
  7972. <divclass="card_img">
  7973. <imgsrc="../images/cardlist/card/P-008_P5.png"alt="P-008WereGarurumon"></div>
  7974. <divclass="cardinfo_top_body">
  7975. <dl>
  7976. <dt>Form</dt>
  7977. <dd>Ultimate</dd>
  7978. </dl>
  7979. <dl>
  7980. <dt>Attribute</dt>
  7981. <dd>Vaccine</dd>
  7982. </dl>
  7983. <dl>
  7984. <dt>Type</dt>
  7985. <dd>Beastkin</dd>
  7986. </dl>
  7987. <dl>
  7988. <dt>DP</dt>
  7989. <dd>6000</dl>
  7990. <dl>
  7991. <dt>PlayCost</dt>
  7992. <dd>7</dd>
  7993. </dl>
  7994. <dl>
  7995. <dt>DigivolveCost1</dt>
  7996. <dd>3fromLv.4</dd>
  7997. </dl>
  7998. <dl>
  7999. <dt>DigivolveCost2</dt>
  8000. <dd>-</dd>
  8001. </dl>
  8002. </div>
  8003. </div>
  8004. <divclass="cardinfo_bottom">
  8005. <dl>
  8006. <dt>Effect</dt>
  8007. <dd>[When Attacking][Once Per Turn] If this Digimon has a [Garurumon] digivolution card, unsuspend this Digimon.</dd>
  8008. </dl>
  8009. <dl>
  8010. <dt>Digivolveeffect</dt>
  8011. <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>
  8012. </dl>
  8013. <dl>
  8014. <dt>Securityeffect</dt>
  8015. <dd>-</dd>
  8016. </dl>
  8017. <dl>
  8018. <dt>Notes</dt>
  8019. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8020. </div>
  8021. </div>
  8022. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8023. </div>
  8024. </div>
  8025. </li>
  8026. <liclass="image_lists_itemdatapage-3">
  8027. <aclass="card_img">
  8028. <imgsrc="../images/cardlist/card/P-011_P2.png"alt="P-011VeedramonZero"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8029. </a>
  8030. <divclass="popup">
  8031. <divclass="card_detailcard_detail_blue">
  8032. <divclass="card_detail_inner">
  8033. <ulclass="cardinfo_head">
  8034. <liclass="cardno">P-011</li>
  8035. <li>P</li>
  8036. <liclass="cardtype">Digimon</li>
  8037. <liclass="cardlv">Lv.4</li>
  8038. <liclass="cardtypecardParallel">AlternativeArt</li>
  8039. </ul>
  8040. <divclass="card_name">VeedramonZero</div>
  8041. <divclass="cardinfo_top">
  8042. <divclass="card_img">
  8043. <imgsrc="../images/cardlist/card/P-011_P2.png"alt="P-011VeedramonZero"></div>
  8044. <divclass="cardinfo_top_body">
  8045. <dl>
  8046. <dt>Form</dt>
  8047. <dd>Champion</dd>
  8048. </dl>
  8049. <dl>
  8050. <dt>Attribute</dt>
  8051. <dd>Vaccine</dd>
  8052. </dl>
  8053. <dl>
  8054. <dt>Type</dt>
  8055. <dd>MythicalDragon</dd>
  8056. </dl>
  8057. <dl>
  8058. <dt>DP</dt>
  8059. <dd>5000</dl>
  8060. <dl>
  8061. <dt>PlayCost</dt>
  8062. <dd>6</dd>
  8063. </dl>
  8064. <dl>
  8065. <dt>DigivolveCost1</dt>
  8066. <dd>2fromLv.3</dd>
  8067. </dl>
  8068. <dl>
  8069. <dt>DigivolveCost2</dt>
  8070. <dd>-</dd>
  8071. </dl>
  8072. </div>
  8073. </div>
  8074. <divclass="cardinfo_bottom">
  8075. <dl>
  8076. <dt>Effect</dt>
  8077. <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>
  8078. </dl>
  8079. <dl>
  8080. <dt>Digivolveeffect</dt>
  8081. <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>
  8082. </dl>
  8083. <dl>
  8084. <dt>Securityeffect</dt>
  8085. <dd>-</dd>
  8086. </dl>
  8087. <dl>
  8088. <dt>Notes</dt>
  8089. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8090. </div>
  8091. </div>
  8092. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8093. </div>
  8094. </div>
  8095. </li>
  8096. <liclass="image_lists_itemdatapage-3">
  8097. <aclass="card_img">
  8098. <imgsrc="../images/cardlist/card/P-012_P2.png"alt="P-012TaiKamiya(V-Tamer)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8099. </a>
  8100. <divclass="popup">
  8101. <divclass="card_detailcard_detail_blue">
  8102. <divclass="card_detail_inner">
  8103. <ulclass="cardinfo_head">
  8104. <liclass="cardno">P-012</li>
  8105. <li>P</li>
  8106. <liclass="cardtype">Tamer</li>
  8107. <liclass="cardtypecardParallel">AlternativeArt</li>
  8108. </ul>
  8109. <divclass="card_name">TaiKamiya(V-Tamer)</div>
  8110. <divclass="cardinfo_top">
  8111. <divclass="card_img">
  8112. <imgsrc="../images/cardlist/card/P-012_P2.png"alt="P-012TaiKamiya(V-Tamer)"></div>
  8113. <divclass="cardinfo_top_body">
  8114. <dl>
  8115. <dt>Form</dt>
  8116. <dd>-</dd>
  8117. </dl>
  8118. <dl>
  8119. <dt>Attribute</dt>
  8120. <dd>-</dd>
  8121. </dl>
  8122. <dl>
  8123. <dt>Type</dt>
  8124. <dd>-</dd>
  8125. </dl>
  8126. <dl>
  8127. <dt>DP</dt>
  8128. <dd>-</dl>
  8129. <dl>
  8130. <dt>PlayCost</dt>
  8131. <dd>2</dd>
  8132. </dl>
  8133. <dl>
  8134. <dt>DigivolveCost1</dt>
  8135. <dd>-</dd>
  8136. </dl>
  8137. <dl>
  8138. <dt>DigivolveCost2</dt>
  8139. <dd>-</dd>
  8140. </dl>
  8141. </div>
  8142. </div>
  8143. <divclass="cardinfo_bottom">
  8144. <dl>
  8145. <dt>Effect</dt>
  8146. <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>
  8147. </dl>
  8148. <dl>
  8149. <dt>Digivolveeffect</dt>
  8150. <dd>-</dd>
  8151. </dl>
  8152. <dl>
  8153. <dt>Securityeffect</dt>
  8154. <dd>[Security] Play this card without paying its memory cost.</dd>
  8155. </dl>
  8156. <dl>
  8157. <dt>Notes</dt>
  8158. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8159. </div>
  8160. </div>
  8161. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8162. </div>
  8163. </div>
  8164. </li>
  8165. <liclass="image_lists_itemdatapage-3">
  8166. <aclass="card_img">
  8167. <imgsrc="../images/cardlist/card/P-013_P2.png"alt="P-013Keramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8168. </a>
  8169. <divclass="popup">
  8170. <divclass="card_detailcard_detail_black">
  8171. <divclass="card_detail_inner">
  8172. <ulclass="cardinfo_head">
  8173. <liclass="cardno">P-013</li>
  8174. <li>P</li>
  8175. <liclass="cardtype">Digimon</li>
  8176. <liclass="cardlv">Lv.3</li>
  8177. <liclass="cardtypecardParallel">AlternativeArt</li>
  8178. </ul>
  8179. <divclass="card_name">Keramon</div>
  8180. <divclass="cardinfo_top">
  8181. <divclass="card_img">
  8182. <imgsrc="../images/cardlist/card/P-013_P2.png"alt="P-013Keramon"></div>
  8183. <divclass="cardinfo_top_body">
  8184. <dl>
  8185. <dt>Form</dt>
  8186. <dd>Rookie</dd>
  8187. </dl>
  8188. <dl>
  8189. <dt>Attribute</dt>
  8190. <dd>Unknown</dd>
  8191. </dl>
  8192. <dl>
  8193. <dt>Type</dt>
  8194. <dd>Unidentified</dd>
  8195. </dl>
  8196. <dl>
  8197. <dt>DP</dt>
  8198. <dd>2000</dl>
  8199. <dl>
  8200. <dt>PlayCost</dt>
  8201. <dd>3</dd>
  8202. </dl>
  8203. <dl>
  8204. <dt>DigivolveCost1</dt>
  8205. <dd>0fromLv.2</dd>
  8206. </dl>
  8207. <dl>
  8208. <dt>DigivolveCost2</dt>
  8209. <dd>-</dd>
  8210. </dl>
  8211. </div>
  8212. </div>
  8213. <divclass="cardinfo_bottom">
  8214. <dl>
  8215. <dt>Effect</dt>
  8216. <dd>-</dd>
  8217. </dl>
  8218. <dl>
  8219. <dt>Digivolveeffect</dt>
  8220. <dd>[Opponent's Turn] This Digimon gets +1000 DP.</dd>
  8221. </dl>
  8222. <dl>
  8223. <dt>Securityeffect</dt>
  8224. <dd>-</dd>
  8225. </dl>
  8226. <dl>
  8227. <dt>Notes</dt>
  8228. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8229. </div>
  8230. </div>
  8231. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8232. </div>
  8233. </div>
  8234. </li>
  8235. <liclass="image_lists_itemdatapage-3">
  8236. <aclass="card_img">
  8237. <imgsrc="../images/cardlist/card/P-016_P5.png"alt="P-016Diaboromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8238. </a>
  8239. <divclass="popup">
  8240. <divclass="card_detailcard_detail_black">
  8241. <divclass="card_detail_inner">
  8242. <ulclass="cardinfo_head">
  8243. <liclass="cardno">P-016</li>
  8244. <li>P</li>
  8245. <liclass="cardtype">Digimon</li>
  8246. <liclass="cardlv">Lv.6</li>
  8247. <liclass="cardtypecardParallel">AlternativeArt</li>
  8248. </ul>
  8249. <divclass="card_name">Diaboromon</div>
  8250. <divclass="cardinfo_top">
  8251. <divclass="card_img">
  8252. <imgsrc="../images/cardlist/card/P-016_P5.png"alt="P-016Diaboromon"></div>
  8253. <divclass="cardinfo_top_body">
  8254. <dl>
  8255. <dt>Form</dt>
  8256. <dd>Mega</dd>
  8257. </dl>
  8258. <dl>
  8259. <dt>Attribute</dt>
  8260. <dd>Unknown</dd>
  8261. </dl>
  8262. <dl>
  8263. <dt>Type</dt>
  8264. <dd>Unidentified</dd>
  8265. </dl>
  8266. <dl>
  8267. <dt>DP</dt>
  8268. <dd>11000</dl>
  8269. <dl>
  8270. <dt>PlayCost</dt>
  8271. <dd>11</dd>
  8272. </dl>
  8273. <dl>
  8274. <dt>DigivolveCost1</dt>
  8275. <dd>3fromLv.5</dd>
  8276. </dl>
  8277. <dl>
  8278. <dt>DigivolveCost2</dt>
  8279. <dd>-</dd>
  8280. </dl>
  8281. </div>
  8282. </div>
  8283. <divclass="cardinfo_bottom">
  8284. <dl>
  8285. <dt>Effect</dt>
  8286. <dd>[Your Turn] For each [Diaboromon] you have in play, this Digimon gets <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  8287. </dl>
  8288. <dl>
  8289. <dt>Digivolveeffect</dt>
  8290. <dd>-</dd>
  8291. </dl>
  8292. <dl>
  8293. <dt>Securityeffect</dt>
  8294. <dd>-</dd>
  8295. </dl>
  8296. <dl>
  8297. <dt>Notes</dt>
  8298. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8299. </div>
  8300. </div>
  8301. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8302. </div>
  8303. </div>
  8304. </li>
  8305. <liclass="image_lists_itemdatapage-4">
  8306. <aclass="card_img">
  8307. <imgsrc="../images/cardlist/card/P-017_P2.png"alt="P-017DemiDevimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8308. </a>
  8309. <divclass="popup">
  8310. <divclass="card_detailcard_detail_purple">
  8311. <divclass="card_detail_inner">
  8312. <ulclass="cardinfo_head">
  8313. <liclass="cardno">P-017</li>
  8314. <li>P</li>
  8315. <liclass="cardtype">Digimon</li>
  8316. <liclass="cardlv">Lv.3</li>
  8317. <liclass="cardtypecardParallel">AlternativeArt</li>
  8318. </ul>
  8319. <divclass="card_name">DemiDevimon</div>
  8320. <divclass="cardinfo_top">
  8321. <divclass="card_img">
  8322. <imgsrc="../images/cardlist/card/P-017_P2.png"alt="P-017DemiDevimon"></div>
  8323. <divclass="cardinfo_top_body">
  8324. <dl>
  8325. <dt>Form</dt>
  8326. <dd>Rookie</dd>
  8327. </dl>
  8328. <dl>
  8329. <dt>Attribute</dt>
  8330. <dd>Virus</dd>
  8331. </dl>
  8332. <dl>
  8333. <dt>Type</dt>
  8334. <dd>Evil</dd>
  8335. </dl>
  8336. <dl>
  8337. <dt>DP</dt>
  8338. <dd>2000</dl>
  8339. <dl>
  8340. <dt>PlayCost</dt>
  8341. <dd>3</dd>
  8342. </dl>
  8343. <dl>
  8344. <dt>DigivolveCost1</dt>
  8345. <dd>0fromLv.2</dd>
  8346. </dl>
  8347. <dl>
  8348. <dt>DigivolveCost2</dt>
  8349. <dd>-</dd>
  8350. </dl>
  8351. </div>
  8352. </div>
  8353. <divclass="cardinfo_bottom">
  8354. <dl>
  8355. <dt>Effect</dt>
  8356. <dd>[On Play] Trash the top 2 cards of your deck.</dd>
  8357. </dl>
  8358. <dl>
  8359. <dt>Digivolveeffect</dt>
  8360. <dd>-</dd>
  8361. </dl>
  8362. <dl>
  8363. <dt>Securityeffect</dt>
  8364. <dd>-</dd>
  8365. </dl>
  8366. <dl>
  8367. <dt>Notes</dt>
  8368. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8369. </div>
  8370. </div>
  8371. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8372. </div>
  8373. </div>
  8374. </li>
  8375. <liclass="image_lists_itemdatapage-4">
  8376. <aclass="card_img">
  8377. <imgsrc="../images/cardlist/card/P-028_P3.png"alt="P-028Pulsemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  8378. </a>
  8379. <divclass="popup">
  8380. <divclass="card_detailcard_detail_yellow">
  8381. <divclass="card_detail_inner">
  8382. <ulclass="cardinfo_head">
  8383. <liclass="cardno">P-028</li>
  8384. <li>P</li>
  8385. <liclass="cardtype">Digimon</li>
  8386. <liclass="cardlv">Lv.3</li>
  8387. <liclass="cardtypecardParallel">AlternativeArt</li>
  8388. </ul>
  8389. <divclass="card_name">Pulsemon</div>
  8390. <divclass="cardinfo_top">
  8391. <divclass="card_img">
  8392. <imgsrc="../images/cardlist/card/P-028_P3.png"alt="P-028Pulsemon"></div>
  8393. <divclass="cardinfo_top_body">
  8394. <dl>
  8395. <dt>Form</dt>
  8396. <dd>Rookie</dd>
  8397. </dl>
  8398. <dl>
  8399. <dt>Attribute</dt>
  8400. <dd>Vaccine</dd>
  8401. </dl>
  8402. <dl>
  8403. <dt>Type</dt>
  8404. <dd>Beastkin</dd>
  8405. </dl>
  8406. <dl>
  8407. <dt>DP</dt>
  8408. <dd>2000</dl>
  8409. <dl>
  8410. <dt>PlayCost</dt>
  8411. <dd>3</dd>
  8412. </dl>
  8413. <dl>
  8414. <dt>DigivolveCost1</dt>
  8415. <dd>0</dd>
  8416. </dl>
  8417. <dl>
  8418. <dt>DigivolveCost2</dt>
  8419. <dd>-</dd>
  8420. </dl>
  8421. </div>
  8422. </div>
  8423. <divclass="cardinfo_bottom">
  8424. <dl>
  8425. <dt>Effect</dt>
  8426. <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>
  8427. </dl>
  8428. <dl>
  8429. <dt>Digivolveeffect</dt>
  8430. <dd>-</dd>
  8431. </dl>
  8432. <dl>
  8433. <dt>Securityeffect</dt>
  8434. <dd>-</dd>
  8435. </dl>
  8436. <dl>
  8437. <dt>Notes</dt>
  8438. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8439. </div>
  8440. </div>
  8441. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8442. </div>
  8443. </div>
  8444. </li>
  8445. <liclass="image_lists_itemdatapage-4">
  8446. <aclass="card_img">
  8447. <imgsrc="../images/cardlist/card/P-032_P2.png"alt="P-032Palmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  8448. </a>
  8449. <divclass="popup">
  8450. <divclass="card_detailcard_detail_green">
  8451. <divclass="card_detail_inner">
  8452. <ulclass="cardinfo_head">
  8453. <liclass="cardno">P-032</li>
  8454. <li>P</li>
  8455. <liclass="cardtype">Digimon</li>
  8456. <liclass="cardlv">Lv.3</li>
  8457. <liclass="cardtypecardParallel">AlternativeArt</li>
  8458. </ul>
  8459. <divclass="card_name">Palmon</div>
  8460. <divclass="cardinfo_top">
  8461. <divclass="card_img">
  8462. <imgsrc="../images/cardlist/card/P-032_P2.png"alt="P-032Palmon"></div>
  8463. <divclass="cardinfo_top_body">
  8464. <dl>
  8465. <dt>Form</dt>
  8466. <dd>Rookie</dd>
  8467. </dl>
  8468. <dl>
  8469. <dt>Attribute</dt>
  8470. <dd>Data</dd>
  8471. </dl>
  8472. <dl>
  8473. <dt>Type</dt>
  8474. <dd>Vegetation</dd>
  8475. </dl>
  8476. <dl>
  8477. <dt>DP</dt>
  8478. <dd>2000</dl>
  8479. <dl>
  8480. <dt>PlayCost</dt>
  8481. <dd>3</dd>
  8482. </dl>
  8483. <dl>
  8484. <dt>DigivolveCost1</dt>
  8485. <dd>0fromLv.2</dd>
  8486. </dl>
  8487. <dl>
  8488. <dt>DigivolveCost2</dt>
  8489. <dd>-</dd>
  8490. </dl>
  8491. </div>
  8492. </div>
  8493. <divclass="cardinfo_bottom">
  8494. <dl>
  8495. <dt>Effect</dt>
  8496. <dd>-</dd>
  8497. </dl>
  8498. <dl>
  8499. <dt>Digivolveeffect</dt>
  8500. <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>
  8501. </dl>
  8502. <dl>
  8503. <dt>Securityeffect</dt>
  8504. <dd>-</dd>
  8505. </dl>
  8506. <dl>
  8507. <dt>Notes</dt>
  8508. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8509. </div>
  8510. </div>
  8511. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8512. </div>
  8513. </div>
  8514. </li>
  8515. <liclass="image_lists_itemdatapage-4">
  8516. <aclass="card_img">
  8517. <imgsrc="../images/cardlist/card/P-035_P4.png"alt="P-035RedMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  8518. </a>
  8519. <divclass="popup">
  8520. <divclass="card_detailcard_detail_red">
  8521. <divclass="card_detail_inner">
  8522. <ulclass="cardinfo_head">
  8523. <liclass="cardno">P-035</li>
  8524. <li>SR</li>
  8525. <liclass="cardtype">Option</li>
  8526. <liclass="cardtypecardParallel">AlternativeArt</li>
  8527. </ul>
  8528. <divclass="card_name">RedMemoryBoost!</div>
  8529. <divclass="cardinfo_top">
  8530. <divclass="card_img">
  8531. <imgsrc="../images/cardlist/card/P-035_P4.png"alt="P-035RedMemoryBoost!"></div>
  8532. <divclass="cardinfo_top_body">
  8533. <dl>
  8534. <dt>Form</dt>
  8535. <dd>-</dd>
  8536. </dl>
  8537. <dl>
  8538. <dt>Attribute</dt>
  8539. <dd>-</dd>
  8540. </dl>
  8541. <dl>
  8542. <dt>Type</dt>
  8543. <dd>-</dd>
  8544. </dl>
  8545. <dl>
  8546. <dt>DP</dt>
  8547. <dd>-</dl>
  8548. <dl>
  8549. <dt>PlayCost</dt>
  8550. <dd>3</dd>
  8551. </dl>
  8552. <dl>
  8553. <dt>DigivolveCost1</dt>
  8554. <dd>-</dd>
  8555. </dl>
  8556. <dl>
  8557. <dt>DigivolveCost2</dt>
  8558. <dd>-</dd>
  8559. </dl>
  8560. </div>
  8561. </div>
  8562. <divclass="cardinfo_bottom">
  8563. <dl>
  8564. <dt>Effect</dt>
  8565. <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>
  8566. </dl>
  8567. <dl>
  8568. <dt>Digivolveeffect</dt>
  8569. <dd>-</dd>
  8570. </dl>
  8571. <dl>
  8572. <dt>Securityeffect</dt>
  8573. <dd>[Security] Place this card in its owner's battle area.</dd>
  8574. </dl>
  8575. <dl>
  8576. <dt>Notes</dt>
  8577. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8578. </div>
  8579. </div>
  8580. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8581. </div>
  8582. </div>
  8583. </li>
  8584. <liclass="image_lists_itemdatapage-4">
  8585. <aclass="card_img">
  8586. <imgsrc="../images/cardlist/card/P-036_P4.png"alt="P-036BlueMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8587. </a>
  8588. <divclass="popup">
  8589. <divclass="card_detailcard_detail_blue">
  8590. <divclass="card_detail_inner">
  8591. <ulclass="cardinfo_head">
  8592. <liclass="cardno">P-036</li>
  8593. <li>SR</li>
  8594. <liclass="cardtype">Option</li>
  8595. <liclass="cardtypecardParallel">AlternativeArt</li>
  8596. </ul>
  8597. <divclass="card_name">BlueMemoryBoost!</div>
  8598. <divclass="cardinfo_top">
  8599. <divclass="card_img">
  8600. <imgsrc="../images/cardlist/card/P-036_P4.png"alt="P-036BlueMemoryBoost!"></div>
  8601. <divclass="cardinfo_top_body">
  8602. <dl>
  8603. <dt>Form</dt>
  8604. <dd>-</dd>
  8605. </dl>
  8606. <dl>
  8607. <dt>Attribute</dt>
  8608. <dd>-</dd>
  8609. </dl>
  8610. <dl>
  8611. <dt>Type</dt>
  8612. <dd>-</dd>
  8613. </dl>
  8614. <dl>
  8615. <dt>DP</dt>
  8616. <dd>-</dl>
  8617. <dl>
  8618. <dt>PlayCost</dt>
  8619. <dd>3</dd>
  8620. </dl>
  8621. <dl>
  8622. <dt>DigivolveCost1</dt>
  8623. <dd>-</dd>
  8624. </dl>
  8625. <dl>
  8626. <dt>DigivolveCost2</dt>
  8627. <dd>-</dd>
  8628. </dl>
  8629. </div>
  8630. </div>
  8631. <divclass="cardinfo_bottom">
  8632. <dl>
  8633. <dt>Effect</dt>
  8634. <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>
  8635. </dl>
  8636. <dl>
  8637. <dt>Digivolveeffect</dt>
  8638. <dd>-</dd>
  8639. </dl>
  8640. <dl>
  8641. <dt>Securityeffect</dt>
  8642. <dd>[Security] Place this card in its owner's battle area.</dd>
  8643. </dl>
  8644. <dl>
  8645. <dt>Notes</dt>
  8646. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8647. </div>
  8648. </div>
  8649. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8650. </div>
  8651. </div>
  8652. </li>
  8653. <liclass="image_lists_itemdatapage-4">
  8654. <aclass="card_img">
  8655. <imgsrc="../images/cardlist/card/P-037_P4.png"alt="P-037YellowMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  8656. </a>
  8657. <divclass="popup">
  8658. <divclass="card_detailcard_detail_yellow">
  8659. <divclass="card_detail_inner">
  8660. <ulclass="cardinfo_head">
  8661. <liclass="cardno">P-037</li>
  8662. <li>SR</li>
  8663. <liclass="cardtype">Option</li>
  8664. <liclass="cardtypecardParallel">AlternativeArt</li>
  8665. </ul>
  8666. <divclass="card_name">YellowMemoryBoost!</div>
  8667. <divclass="cardinfo_top">
  8668. <divclass="card_img">
  8669. <imgsrc="../images/cardlist/card/P-037_P4.png"alt="P-037YellowMemoryBoost!"></div>
  8670. <divclass="cardinfo_top_body">
  8671. <dl>
  8672. <dt>Form</dt>
  8673. <dd>-</dd>
  8674. </dl>
  8675. <dl>
  8676. <dt>Attribute</dt>
  8677. <dd>-</dd>
  8678. </dl>
  8679. <dl>
  8680. <dt>Type</dt>
  8681. <dd>-</dd>
  8682. </dl>
  8683. <dl>
  8684. <dt>DP</dt>
  8685. <dd>-</dl>
  8686. <dl>
  8687. <dt>PlayCost</dt>
  8688. <dd>3</dd>
  8689. </dl>
  8690. <dl>
  8691. <dt>DigivolveCost1</dt>
  8692. <dd>-</dd>
  8693. </dl>
  8694. <dl>
  8695. <dt>DigivolveCost2</dt>
  8696. <dd>-</dd>
  8697. </dl>
  8698. </div>
  8699. </div>
  8700. <divclass="cardinfo_bottom">
  8701. <dl>
  8702. <dt>Effect</dt>
  8703. <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>
  8704. </dl>
  8705. <dl>
  8706. <dt>Digivolveeffect</dt>
  8707. <dd>-</dd>
  8708. </dl>
  8709. <dl>
  8710. <dt>Securityeffect</dt>
  8711. <dd>[Security] Place this card in its owner's battle area.</dd>
  8712. </dl>
  8713. <dl>
  8714. <dt>Notes</dt>
  8715. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8716. </div>
  8717. </div>
  8718. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8719. </div>
  8720. </div>
  8721. </li>
  8722. <liclass="image_lists_itemdatapage-4">
  8723. <aclass="card_img">
  8724. <imgsrc="../images/cardlist/card/P-038_P4.png"alt="P-038GreenMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  8725. </a>
  8726. <divclass="popup">
  8727. <divclass="card_detailcard_detail_green">
  8728. <divclass="card_detail_inner">
  8729. <ulclass="cardinfo_head">
  8730. <liclass="cardno">P-038</li>
  8731. <li>SR</li>
  8732. <liclass="cardtype">Option</li>
  8733. <liclass="cardtypecardParallel">AlternativeArt</li>
  8734. </ul>
  8735. <divclass="card_name">GreenMemoryBoost!</div>
  8736. <divclass="cardinfo_top">
  8737. <divclass="card_img">
  8738. <imgsrc="../images/cardlist/card/P-038_P4.png"alt="P-038GreenMemoryBoost!"></div>
  8739. <divclass="cardinfo_top_body">
  8740. <dl>
  8741. <dt>Form</dt>
  8742. <dd>-</dd>
  8743. </dl>
  8744. <dl>
  8745. <dt>Attribute</dt>
  8746. <dd>-</dd>
  8747. </dl>
  8748. <dl>
  8749. <dt>Type</dt>
  8750. <dd>-</dd>
  8751. </dl>
  8752. <dl>
  8753. <dt>DP</dt>
  8754. <dd>-</dl>
  8755. <dl>
  8756. <dt>PlayCost</dt>
  8757. <dd>3</dd>
  8758. </dl>
  8759. <dl>
  8760. <dt>DigivolveCost1</dt>
  8761. <dd>-</dd>
  8762. </dl>
  8763. <dl>
  8764. <dt>DigivolveCost2</dt>
  8765. <dd>-</dd>
  8766. </dl>
  8767. </div>
  8768. </div>
  8769. <divclass="cardinfo_bottom">
  8770. <dl>
  8771. <dt>Effect</dt>
  8772. <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>
  8773. </dl>
  8774. <dl>
  8775. <dt>Digivolveeffect</dt>
  8776. <dd>-</dd>
  8777. </dl>
  8778. <dl>
  8779. <dt>Securityeffect</dt>
  8780. <dd>[Security] Place this card in its owner's battle area.</dd>
  8781. </dl>
  8782. <dl>
  8783. <dt>Notes</dt>
  8784. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8785. </div>
  8786. </div>
  8787. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8788. </div>
  8789. </div>
  8790. </li>
  8791. <liclass="image_lists_itemdatapage-4">
  8792. <aclass="card_img">
  8793. <imgsrc="../images/cardlist/card/P-039_P4.png"alt="P-039BlackMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8794. </a>
  8795. <divclass="popup">
  8796. <divclass="card_detailcard_detail_black">
  8797. <divclass="card_detail_inner">
  8798. <ulclass="cardinfo_head">
  8799. <liclass="cardno">P-039</li>
  8800. <li>SR</li>
  8801. <liclass="cardtype">Option</li>
  8802. <liclass="cardtypecardParallel">AlternativeArt</li>
  8803. </ul>
  8804. <divclass="card_name">BlackMemoryBoost!</div>
  8805. <divclass="cardinfo_top">
  8806. <divclass="card_img">
  8807. <imgsrc="../images/cardlist/card/P-039_P4.png"alt="P-039BlackMemoryBoost!"></div>
  8808. <divclass="cardinfo_top_body">
  8809. <dl>
  8810. <dt>Form</dt>
  8811. <dd>-</dd>
  8812. </dl>
  8813. <dl>
  8814. <dt>Attribute</dt>
  8815. <dd>-</dd>
  8816. </dl>
  8817. <dl>
  8818. <dt>Type</dt>
  8819. <dd>-</dd>
  8820. </dl>
  8821. <dl>
  8822. <dt>DP</dt>
  8823. <dd>-</dl>
  8824. <dl>
  8825. <dt>PlayCost</dt>
  8826. <dd>3</dd>
  8827. </dl>
  8828. <dl>
  8829. <dt>DigivolveCost1</dt>
  8830. <dd>-</dd>
  8831. </dl>
  8832. <dl>
  8833. <dt>DigivolveCost2</dt>
  8834. <dd>-</dd>
  8835. </dl>
  8836. </div>
  8837. </div>
  8838. <divclass="cardinfo_bottom">
  8839. <dl>
  8840. <dt>Effect</dt>
  8841. <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>
  8842. </dl>
  8843. <dl>
  8844. <dt>Digivolveeffect</dt>
  8845. <dd>-</dd>
  8846. </dl>
  8847. <dl>
  8848. <dt>Securityeffect</dt>
  8849. <dd>[Security] Place this card in its owner's battle area.</dd>
  8850. </dl>
  8851. <dl>
  8852. <dt>Notes</dt>
  8853. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8854. </div>
  8855. </div>
  8856. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8857. </div>
  8858. </div>
  8859. </li>
  8860. <liclass="image_lists_itemdatapage-4">
  8861. <aclass="card_img">
  8862. <imgsrc="../images/cardlist/card/P-040_P4.png"alt="P-040PurpleMemoryBoost!"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8863. </a>
  8864. <divclass="popup">
  8865. <divclass="card_detailcard_detail_purple">
  8866. <divclass="card_detail_inner">
  8867. <ulclass="cardinfo_head">
  8868. <liclass="cardno">P-040</li>
  8869. <li>SR</li>
  8870. <liclass="cardtype">Option</li>
  8871. <liclass="cardtypecardParallel">AlternativeArt</li>
  8872. </ul>
  8873. <divclass="card_name">PurpleMemoryBoost!</div>
  8874. <divclass="cardinfo_top">
  8875. <divclass="card_img">
  8876. <imgsrc="../images/cardlist/card/P-040_P4.png"alt="P-040PurpleMemoryBoost!"></div>
  8877. <divclass="cardinfo_top_body">
  8878. <dl>
  8879. <dt>Form</dt>
  8880. <dd>-</dd>
  8881. </dl>
  8882. <dl>
  8883. <dt>Attribute</dt>
  8884. <dd>-</dd>
  8885. </dl>
  8886. <dl>
  8887. <dt>Type</dt>
  8888. <dd>-</dd>
  8889. </dl>
  8890. <dl>
  8891. <dt>DP</dt>
  8892. <dd>-</dl>
  8893. <dl>
  8894. <dt>PlayCost</dt>
  8895. <dd>3</dd>
  8896. </dl>
  8897. <dl>
  8898. <dt>DigivolveCost1</dt>
  8899. <dd>-</dd>
  8900. </dl>
  8901. <dl>
  8902. <dt>DigivolveCost2</dt>
  8903. <dd>-</dd>
  8904. </dl>
  8905. </div>
  8906. </div>
  8907. <divclass="cardinfo_bottom">
  8908. <dl>
  8909. <dt>Effect</dt>
  8910. <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>
  8911. </dl>
  8912. <dl>
  8913. <dt>Digivolveeffect</dt>
  8914. <dd>-</dd>
  8915. </dl>
  8916. <dl>
  8917. <dt>Securityeffect</dt>
  8918. <dd>[Security] Place this card in its owner's battle area.</dd>
  8919. </dl>
  8920. <dl>
  8921. <dt>Notes</dt>
  8922. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8923. </div>
  8924. </div>
  8925. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8926. </div>
  8927. </div>
  8928. </li>
  8929. <liclass="image_lists_itemdatapage-4">
  8930. <aclass="card_img">
  8931. <imgsrc="../images/cardlist/card/P-047_P2.png"alt="P-047AeroVeedramonZero"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8932. </a>
  8933. <divclass="popup">
  8934. <divclass="card_detailcard_detail_blue">
  8935. <divclass="card_detail_inner">
  8936. <ulclass="cardinfo_head">
  8937. <liclass="cardno">P-047</li>
  8938. <li>P</li>
  8939. <liclass="cardtype">Digimon</li>
  8940. <liclass="cardlv">Lv.5</li>
  8941. <liclass="cardtypecardParallel">AlternativeArt</li>
  8942. </ul>
  8943. <divclass="card_name">AeroVeedramonZero</div>
  8944. <divclass="cardinfo_top">
  8945. <divclass="card_img">
  8946. <imgsrc="../images/cardlist/card/P-047_P2.png"alt="P-047AeroVeedramonZero"></div>
  8947. <divclass="cardinfo_top_body">
  8948. <dl>
  8949. <dt>Form</dt>
  8950. <dd>Ultimate</dd>
  8951. </dl>
  8952. <dl>
  8953. <dt>Attribute</dt>
  8954. <dd>Vaccine</dd>
  8955. </dl>
  8956. <dl>
  8957. <dt>Type</dt>
  8958. <dd>HolyDragon</dd>
  8959. </dl>
  8960. <dl>
  8961. <dt>DP</dt>
  8962. <dd>7000</dl>
  8963. <dl>
  8964. <dt>PlayCost</dt>
  8965. <dd>8</dd>
  8966. </dl>
  8967. <dl>
  8968. <dt>DigivolveCost1</dt>
  8969. <dd>3fromLv.4</dd>
  8970. </dl>
  8971. <dl>
  8972. <dt>DigivolveCost2</dt>
  8973. <dd>-</dd>
  8974. </dl>
  8975. </div>
  8976. </div>
  8977. <divclass="cardinfo_bottom">
  8978. <dl>
  8979. <dt>Effect</dt>
  8980. <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>
  8981. </dl>
  8982. <dl>
  8983. <dt>Digivolveeffect</dt>
  8984. <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>
  8985. </dl>
  8986. <dl>
  8987. <dt>Securityeffect</dt>
  8988. <dd>-</dd>
  8989. </dl>
  8990. <dl>
  8991. <dt>Notes</dt>
  8992. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  8993. </div>
  8994. </div>
  8995. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8996. </div>
  8997. </div>
  8998. </li>
  8999. <liclass="image_lists_itemdatapage-4">
  9000. <aclass="card_img">
  9001. <imgsrc="../images/cardlist/card/P-048_P2.png"alt="P-048UlforceVeedramonZero"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  9002. </a>
  9003. <divclass="popup">
  9004. <divclass="card_detailcard_detail_blue">
  9005. <divclass="card_detail_inner">
  9006. <ulclass="cardinfo_head">
  9007. <liclass="cardno">P-048</li>
  9008. <li>P</li>
  9009. <liclass="cardtype">Digimon</li>
  9010. <liclass="cardlv">Lv.6</li>
  9011. <liclass="cardtypecardParallel">AlternativeArt</li>
  9012. </ul>
  9013. <divclass="card_name">UlforceVeedramonZero</div>
  9014. <divclass="cardinfo_top">
  9015. <divclass="card_img">
  9016. <imgsrc="../images/cardlist/card/P-048_P2.png"alt="P-048UlforceVeedramonZero"></div>
  9017. <divclass="cardinfo_top_body">
  9018. <dl>
  9019. <dt>Form</dt>
  9020. <dd>Mega</dd>
  9021. </dl>
  9022. <dl>
  9023. <dt>Attribute</dt>
  9024. <dd>Vaccine</dd>
  9025. </dl>
  9026. <dl>
  9027. <dt>Type</dt>
  9028. <dd>HolyWarrior</dd>
  9029. </dl>
  9030. <dl>
  9031. <dt>DP</dt>
  9032. <dd>12000</dl>
  9033. <dl>
  9034. <dt>PlayCost</dt>
  9035. <dd>13</dd>
  9036. </dl>
  9037. <dl>
  9038. <dt>DigivolveCost1</dt>
  9039. <dd>4fromLv.5</dd>
  9040. </dl>
  9041. <dl>
  9042. <dt>DigivolveCost2</dt>
  9043. <dd>-</dd>
  9044. </dl>
  9045. </div>
  9046. </div>
  9047. <divclass="cardinfo_bottom">
  9048. <dl>
  9049. <dt>Effect</dt>
  9050. <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>
  9051. </dl>
  9052. <dl>
  9053. <dt>Digivolveeffect</dt>
  9054. <dd>-</dd>
  9055. </dl>
  9056. <dl>
  9057. <dt>Securityeffect</dt>
  9058. <dd>-</dd>
  9059. </dl>
  9060. <dl>
  9061. <dt>Notes</dt>
  9062. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9063. </div>
  9064. </div>
  9065. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9066. </div>
  9067. </div>
  9068. </li>
  9069. <liclass="image_lists_itemdatapage-4">
  9070. <aclass="card_img">
  9071. <imgsrc="../images/cardlist/card/P-062_P1.png"alt="P-062HiroAmanokawa"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  9072. </a>
  9073. <divclass="popup">
  9074. <divclass="card_detailcard_detail_red">
  9075. <divclass="card_detail_inner">
  9076. <ulclass="cardinfo_head">
  9077. <liclass="cardno">P-062</li>
  9078. <li>P</li>
  9079. <liclass="cardtype">Tamer</li>
  9080. <liclass="cardtypecardParallel">AlternativeArt</li>
  9081. </ul>
  9082. <divclass="card_name">HiroAmanokawa</div>
  9083. <divclass="cardinfo_top">
  9084. <divclass="card_img">
  9085. <imgsrc="../images/cardlist/card/P-062_P1.png"alt="P-062HiroAmanokawa"></div>
  9086. <divclass="cardinfo_top_body">
  9087. <dl>
  9088. <dt>Form</dt>
  9089. <dd>-</dd>
  9090. </dl>
  9091. <dl>
  9092. <dt>Attribute</dt>
  9093. <dd>-</dd>
  9094. </dl>
  9095. <dl>
  9096. <dt>Type</dt>
  9097. <dd>-</dd>
  9098. </dl>
  9099. <dl>
  9100. <dt>DP</dt>
  9101. <dd>-</dl>
  9102. <dl>
  9103. <dt>PlayCost</dt>
  9104. <dd>3</dd>
  9105. </dl>
  9106. <dl>
  9107. <dt>DigivolveCost1</dt>
  9108. <dd>-</dd>
  9109. </dl>
  9110. <dl>
  9111. <dt>DigivolveCost2</dt>
  9112. <dd>-</dd>
  9113. </dl>
  9114. </div>
  9115. </div>
  9116. <divclass="cardinfo_bottom">
  9117. <dl>
  9118. <dt>Effect</dt>
  9119. <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>
  9120. </dl>
  9121. <dl>
  9122. <dt>Digivolveeffect</dt>
  9123. <dd>[Security] Play this card without paying its memory cost.</dd>
  9124. </dl>
  9125. <dl>
  9126. <dt>Securityeffect</dt>
  9127. <dd>-</dd>
  9128. </dl>
  9129. <dl>
  9130. <dt>Notes</dt>
  9131. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9132. </div>
  9133. </div>
  9134. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9135. </div>
  9136. </div>
  9137. </li>
  9138. <liclass="image_lists_itemdatapage-4">
  9139. <aclass="card_img">
  9140. <imgsrc="../images/cardlist/card/P-063_P1.png"alt="P-063RuriTsukiyono"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  9141. </a>
  9142. <divclass="popup">
  9143. <divclass="card_detailcard_detail_green">
  9144. <divclass="card_detail_inner">
  9145. <ulclass="cardinfo_head">
  9146. <liclass="cardno">P-063</li>
  9147. <li>P</li>
  9148. <liclass="cardtype">Tamer</li>
  9149. <liclass="cardtypecardParallel">AlternativeArt</li>
  9150. </ul>
  9151. <divclass="card_name">RuriTsukiyono</div>
  9152. <divclass="cardinfo_top">
  9153. <divclass="card_img">
  9154. <imgsrc="../images/cardlist/card/P-063_P1.png"alt="P-063RuriTsukiyono"></div>
  9155. <divclass="cardinfo_top_body">
  9156. <dl>
  9157. <dt>Form</dt>
  9158. <dd>-</dd>
  9159. </dl>
  9160. <dl>
  9161. <dt>Attribute</dt>
  9162. <dd>-</dd>
  9163. </dl>
  9164. <dl>
  9165. <dt>Type</dt>
  9166. <dd>-</dd>
  9167. </dl>
  9168. <dl>
  9169. <dt>DP</dt>
  9170. <dd>-</dl>
  9171. <dl>
  9172. <dt>PlayCost</dt>
  9173. <dd>3</dd>
  9174. </dl>
  9175. <dl>
  9176. <dt>DigivolveCost1</dt>
  9177. <dd>-</dd>
  9178. </dl>
  9179. <dl>
  9180. <dt>DigivolveCost2</dt>
  9181. <dd>-</dd>
  9182. </dl>
  9183. </div>
  9184. </div>
  9185. <divclass="cardinfo_bottom">
  9186. <dl>
  9187. <dt>Effect</dt>
  9188. <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>
  9189. </dl>
  9190. <dl>
  9191. <dt>Digivolveeffect</dt>
  9192. <dd>[Security] Play this card without paying its memory cost.</dd>
  9193. </dl>
  9194. <dl>
  9195. <dt>Securityeffect</dt>
  9196. <dd>-</dd>
  9197. </dl>
  9198. <dl>
  9199. <dt>Notes</dt>
  9200. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9201. </div>
  9202. </div>
  9203. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9204. </div>
  9205. </div>
  9206. </li>
  9207. <liclass="image_lists_itemdatapage-4">
  9208. <aclass="card_img">
  9209. <imgsrc="../images/cardlist/card/P-064_P1.png"alt="P-064KiyoshiroHigashimitarai"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  9210. </a>
  9211. <divclass="popup">
  9212. <divclass="card_detailcard_detail_blue">
  9213. <divclass="card_detail_inner">
  9214. <ulclass="cardinfo_head">
  9215. <liclass="cardno">P-064</li>
  9216. <li>P</li>
  9217. <liclass="cardtype">Tamer</li>
  9218. <liclass="cardtypecardParallel">AlternativeArt</li>
  9219. </ul>
  9220. <divclass="card_name">KiyoshiroHigashimitarai</div>
  9221. <divclass="cardinfo_top">
  9222. <divclass="card_img">
  9223. <imgsrc="../images/cardlist/card/P-064_P1.png"alt="P-064KiyoshiroHigashimitarai"></div>
  9224. <divclass="cardinfo_top_body">
  9225. <dl>
  9226. <dt>Form</dt>
  9227. <dd>-</dd>
  9228. </dl>
  9229. <dl>
  9230. <dt>Attribute</dt>
  9231. <dd>-</dd>
  9232. </dl>
  9233. <dl>
  9234. <dt>Type</dt>
  9235. <dd>-</dd>
  9236. </dl>
  9237. <dl>
  9238. <dt>DP</dt>
  9239. <dd>-</dl>
  9240. <dl>
  9241. <dt>PlayCost</dt>
  9242. <dd>3</dd>
  9243. </dl>
  9244. <dl>
  9245. <dt>DigivolveCost1</dt>
  9246. <dd>-</dd>
  9247. </dl>
  9248. <dl>
  9249. <dt>DigivolveCost2</dt>
  9250. <dd>-</dd>
  9251. </dl>
  9252. </div>
  9253. </div>
  9254. <divclass="cardinfo_bottom">
  9255. <dl>
  9256. <dt>Effect</dt>
  9257. <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>
  9258. </dl>
  9259. <dl>
  9260. <dt>Digivolveeffect</dt>
  9261. <dd>[Security] Play this card without paying its memory cost.</dd>
  9262. </dl>
  9263. <dl>
  9264. <dt>Securityeffect</dt>
  9265. <dd>-</dd>
  9266. </dl>
  9267. <dl>
  9268. <dt>Notes</dt>
  9269. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9270. </div>
  9271. </div>
  9272. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9273. </div>
  9274. </div>
  9275. </li>
  9276. <liclass="image_lists_itemdatapage-4">
  9277. <aclass="card_img">
  9278. <imgsrc="../images/cardlist/card/P-088.png"alt="P-088Siriusmon"></a>
  9279. <divclass="popup">
  9280. <divclass="card_detailcard_detail_red">
  9281. <divclass="card_detail_inner">
  9282. <ulclass="cardinfo_head">
  9283. <liclass="cardno">P-088</li>
  9284. <li>P</li>
  9285. <liclass="cardtype">Digimon</li>
  9286. <liclass="cardlv">Lv.6</li>
  9287. </ul>
  9288. <divclass="card_name">Siriusmon</div>
  9289. <divclass="cardinfo_top">
  9290. <divclass="card_img">
  9291. <imgsrc="../images/cardlist/card/P-088.png"alt="P-088Siriusmon"></div>
  9292. <divclass="cardinfo_top_body">
  9293. <dl>
  9294. <dt>Form</dt>
  9295. <dd>Mega</dd>
  9296. </dl>
  9297. <dl>
  9298. <dt>Attribute</dt>
  9299. <dd>Vaccine</dd>
  9300. </dl>
  9301. <dl>
  9302. <dt>Type</dt>
  9303. <dd>LightDragon</dd>
  9304. </dl>
  9305. <dl>
  9306. <dt>DP</dt>
  9307. <dd>11000</dl>
  9308. <dl>
  9309. <dt>PlayCost</dt>
  9310. <dd>11</dd>
  9311. </dl>
  9312. <dl>
  9313. <dt>DigivolveCost1</dt>
  9314. <dd>-</dd>
  9315. </dl>
  9316. <dl>
  9317. <dt>DigivolveCost2</dt>
  9318. <dd>-</dd>
  9319. </dl>
  9320. </div>
  9321. </div>
  9322. <divclass="cardinfo_bottom">
  9323. <dl>
  9324. <dt>Effect</dt>
  9325. <dd>[When Digivolving] By placing a Digimon with [Gammamon] in its name under this Digimon as its bottom digivolution card, this card gets +2000 DP for the turn. [When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If this Digimon has 12000 DP or more, delete 2 of your opponent's Digimon with 6000 DP or less instead.</dd>
  9326. </dl>
  9327. <dl>
  9328. <dt>Digivolveeffect</dt>
  9329. <dd>-</dd>
  9330. </dl>
  9331. <dl>
  9332. <dt>Securityeffect</dt>
  9333. <dd>-</dd>
  9334. </dl>
  9335. <dl>
  9336. <dt>Notes</dt>
  9337. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9338. </div>
  9339. </div>
  9340. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9341. </div>
  9342. </div>
  9343. </li>
  9344. <liclass="image_lists_itemdatapage-4">
  9345. <aclass="card_img">
  9346. <imgsrc="../images/cardlist/card/P-089.png"alt="P-089Amphimon"></a>
  9347. <divclass="popup">
  9348. <divclass="card_detailcard_detail_blue">
  9349. <divclass="card_detail_inner">
  9350. <ulclass="cardinfo_head">
  9351. <liclass="cardno">P-089</li>
  9352. <li>P</li>
  9353. <liclass="cardtype">Digimon</li>
  9354. <liclass="cardlv">Lv.6</li>
  9355. </ul>
  9356. <divclass="card_name">Amphimon</div>
  9357. <divclass="cardinfo_top">
  9358. <divclass="card_img">
  9359. <imgsrc="../images/cardlist/card/P-089.png"alt="P-089Amphimon"></div>
  9360. <divclass="cardinfo_top_body">
  9361. <dl>
  9362. <dt>Form</dt>
  9363. <dd>Mega</dd>
  9364. </dl>
  9365. <dl>
  9366. <dt>Attribute</dt>
  9367. <dd>Data</dd>
  9368. </dl>
  9369. <dl>
  9370. <dt>Type</dt>
  9371. <dd>Cyborg</dd>
  9372. </dl>
  9373. <dl>
  9374. <dt>DP</dt>
  9375. <dd>11000</dl>
  9376. <dl>
  9377. <dt>PlayCost</dt>
  9378. <dd>11</dd>
  9379. </dl>
  9380. <dl>
  9381. <dt>DigivolveCost1</dt>
  9382. <dd>-</dd>
  9383. </dl>
  9384. <dl>
  9385. <dt>DigivolveCost2</dt>
  9386. <dd>-</dd>
  9387. </dl>
  9388. </div>
  9389. </div>
  9390. <divclass="cardinfo_bottom">
  9391. <dl>
  9392. <dt>Effect</dt>
  9393. <dd>[When Digivolving] You may trash up to 3 blue cards from your hand. For each card trashed by this effect, you may choose 1 of your opponent's Digimon or Tamers and trash it. Then, 1 of your opponent's Digimon or Tamers without cards under it can't suspend until the end of your opponent's turn. [Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, end that attack by returning 3 cards with [Jellymon] in their text from your trash to the bottom of your deck.</dd>
  9394. </dl>
  9395. <dl>
  9396. <dt>Digivolveeffect</dt>
  9397. <dd>-</dd>
  9398. </dl>
  9399. <dl>
  9400. <dt>Securityeffect</dt>
  9401. <dd>-</dd>
  9402. </dl>
  9403. <dl>
  9404. <dt>Notes</dt>
  9405. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9406. </div>
  9407. </div>
  9408. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9409. </div>
  9410. </div>
  9411. </li>
  9412. <liclass="image_lists_itemdatapage-4">
  9413. <aclass="card_img">
  9414. <imgsrc="../images/cardlist/card/P-090.png"alt="P-090Diarbbitmon"></a>
  9415. <divclass="popup">
  9416. <divclass="card_detailcard_detail_green">
  9417. <divclass="card_detail_inner">
  9418. <ulclass="cardinfo_head">
  9419. <liclass="cardno">P-090</li>
  9420. <li>P</li>
  9421. <liclass="cardtype">Digimon</li>
  9422. <liclass="cardlv">Lv.6</li>
  9423. </ul>
  9424. <divclass="card_name">Diarbbitmon</div>
  9425. <divclass="cardinfo_top">
  9426. <divclass="card_img">
  9427. <imgsrc="../images/cardlist/card/P-090.png"alt="P-090Diarbbitmon"></div>
  9428. <divclass="cardinfo_top_body">
  9429. <dl>
  9430. <dt>Form</dt>
  9431. <dd>Mega</dd>
  9432. </dl>
  9433. <dl>
  9434. <dt>Attribute</dt>
  9435. <dd>Vaccine</dd>
  9436. </dl>
  9437. <dl>
  9438. <dt>Type</dt>
  9439. <dd>BeastKnight</dd>
  9440. </dl>
  9441. <dl>
  9442. <dt>DP</dt>
  9443. <dd>11000</dl>
  9444. <dl>
  9445. <dt>PlayCost</dt>
  9446. <dd>11</dd>
  9447. </dl>
  9448. <dl>
  9449. <dt>DigivolveCost1</dt>
  9450. <dd>-</dd>
  9451. </dl>
  9452. <dl>
  9453. <dt>DigivolveCost2</dt>
  9454. <dd>-</dd>
  9455. </dl>
  9456. </div>
  9457. </div>
  9458. <divclass="cardinfo_bottom">
  9459. <dl>
  9460. <dt>Effect</dt>
  9461. <dd>[When Digivolving] Suspend 2 of your opponent's Digimon. [All Turns][Once Per Turn] When one of your Digimon deletes an opponent's Digimon in battle and survives, if [Angoramon] is in this Digimon's digivolution cards, unsuspend 1 of your Digimon.</dd>
  9462. </dl>
  9463. <dl>
  9464. <dt>Digivolveeffect</dt>
  9465. <dd>-</dd>
  9466. </dl>
  9467. <dl>
  9468. <dt>Securityeffect</dt>
  9469. <dd>-</dd>
  9470. </dl>
  9471. <dl>
  9472. <dt>Notes</dt>
  9473. <dd><ahref="/products/pack/rb-01.php">&rtri;RESURGENCEBOOSTER[RB01]</a></dd></dl>
  9474. </div>
  9475. </div>
  9476. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9477. </div>
  9478. </div>
  9479. </li>