522014.txt 231 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT12-001.png"alt="BT12-001Gigimon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT12-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Gigimon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT12-001.png"alt="BT12-001Gigimon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Form</dt>
  20. <dd>In-Training</dd>
  21. </dl>
  22. <dl>
  23. <dt>Attribute</dt>
  24. <dd>-</dd>
  25. </dl>
  26. <dl>
  27. <dt>Type</dt>
  28. <dd>Lesser</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>-</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>-</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>-</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[Your Turn] Add 1000 to the maximum DP you can choose with DP-based deletion effects.</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-001_P1.png"alt="BT12-001Gigimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  72. </a>
  73. <divclass="popup">
  74. <divclass="card_detailcard_detail_red">
  75. <divclass="card_detail_inner">
  76. <ulclass="cardinfo_head">
  77. <liclass="cardno">BT12-001</li>
  78. <li>U</li>
  79. <liclass="cardtype">Digi-Egg</li>
  80. <liclass="cardlv">Lv.2</li>
  81. <liclass="cardtypecardParallel">AlternativeArt</li>
  82. </ul>
  83. <divclass="card_name">Gigimon</div>
  84. <divclass="cardinfo_top">
  85. <divclass="card_img">
  86. <imgsrc="../images/cardlist/card/BT12-001_P1.png"alt="BT12-001Gigimon"></div>
  87. <divclass="cardinfo_top_body">
  88. <dl>
  89. <dt>Form</dt>
  90. <dd>In-Training</dd>
  91. </dl>
  92. <dl>
  93. <dt>Attribute</dt>
  94. <dd>-</dd>
  95. </dl>
  96. <dl>
  97. <dt>Type</dt>
  98. <dd>Lesser</dd>
  99. </dl>
  100. <dl>
  101. <dt>DP</dt>
  102. <dd>-</dl>
  103. <dl>
  104. <dt>PlayCost</dt>
  105. <dd>-</dd>
  106. </dl>
  107. <dl>
  108. <dt>DigivolveCost1</dt>
  109. <dd>-</dd>
  110. </dl>
  111. <dl>
  112. <dt>DigivolveCost2</dt>
  113. <dd>-</dd>
  114. </dl>
  115. </div>
  116. </div>
  117. <divclass="cardinfo_bottom">
  118. <dl>
  119. <dt>Effect</dt>
  120. <dd>-</dd>
  121. </dl>
  122. <dl>
  123. <dt>Digivolveeffect</dt>
  124. <dd>[Your Turn] Add 1000 to the maximum DP you can choose with DP-based deletion effects.</dd>
  125. </dl>
  126. <dl>
  127. <dt>Securityeffect</dt>
  128. <dd>-</dd>
  129. </dl>
  130. <dl>
  131. <dt>Notes</dt>
  132. <dd>UltimateCup2023</dd></dl>
  133. </div>
  134. </div>
  135. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  136. </div>
  137. </div>
  138. </li>
  139. <liclass="image_lists_itemdatapage-1">
  140. <aclass="card_img">
  141. <imgsrc="../images/cardlist/card/BT12-002.png"alt="BT12-002DemiVeemon"></a>
  142. <divclass="popup">
  143. <divclass="card_detailcard_detail_blue">
  144. <divclass="card_detail_inner">
  145. <ulclass="cardinfo_head">
  146. <liclass="cardno">BT12-002</li>
  147. <li>U</li>
  148. <liclass="cardtype">Digi-Egg</li>
  149. <liclass="cardlv">Lv.2</li>
  150. </ul>
  151. <divclass="card_name">DemiVeemon</div>
  152. <divclass="cardinfo_top">
  153. <divclass="card_img">
  154. <imgsrc="../images/cardlist/card/BT12-002.png"alt="BT12-002DemiVeemon"></div>
  155. <divclass="cardinfo_top_body">
  156. <dl>
  157. <dt>Form</dt>
  158. <dd>In-Training</dd>
  159. </dl>
  160. <dl>
  161. <dt>Attribute</dt>
  162. <dd>-</dd>
  163. </dl>
  164. <dl>
  165. <dt>Type</dt>
  166. <dd>BabyDragon</dd>
  167. </dl>
  168. <dl>
  169. <dt>DP</dt>
  170. <dd>-</dl>
  171. <dl>
  172. <dt>PlayCost</dt>
  173. <dd>-</dd>
  174. </dl>
  175. <dl>
  176. <dt>DigivolveCost1</dt>
  177. <dd>-</dd>
  178. </dl>
  179. <dl>
  180. <dt>DigivolveCost2</dt>
  181. <dd>-</dd>
  182. </dl>
  183. </div>
  184. </div>
  185. <divclass="cardinfo_bottom">
  186. <dl>
  187. <dt>Effect</dt>
  188. <dd>-</dd>
  189. </dl>
  190. <dl>
  191. <dt>Digivolveeffect</dt>
  192. <dd>[When Attacking][Once Per Turn] If you have a green Digimon in play, <Draw 1>. (Draw 1 card from your deck.)</dd>
  193. </dl>
  194. <dl>
  195. <dt>Securityeffect</dt>
  196. <dd>-</dd>
  197. </dl>
  198. <dl>
  199. <dt>Notes</dt>
  200. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  201. </div>
  202. </div>
  203. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  204. </div>
  205. </div>
  206. </li>
  207. <liclass="image_lists_itemdatapage-1">
  208. <aclass="card_img">
  209. <imgsrc="../images/cardlist/card/BT12-003.png"alt="BT12-003Koromon"></a>
  210. <divclass="popup">
  211. <divclass="card_detailcard_detail_yellow">
  212. <divclass="card_detail_inner">
  213. <ulclass="cardinfo_head">
  214. <liclass="cardno">BT12-003</li>
  215. <li>U</li>
  216. <liclass="cardtype">Digi-Egg</li>
  217. <liclass="cardlv">Lv.2</li>
  218. </ul>
  219. <divclass="card_name">Koromon</div>
  220. <divclass="cardinfo_top">
  221. <divclass="card_img">
  222. <imgsrc="../images/cardlist/card/BT12-003.png"alt="BT12-003Koromon"></div>
  223. <divclass="cardinfo_top_body">
  224. <dl>
  225. <dt>Form</dt>
  226. <dd>In-Training</dd>
  227. </dl>
  228. <dl>
  229. <dt>Attribute</dt>
  230. <dd>-</dd>
  231. </dl>
  232. <dl>
  233. <dt>Type</dt>
  234. <dd>Lesser</dd>
  235. </dl>
  236. <dl>
  237. <dt>DP</dt>
  238. <dd>-</dl>
  239. <dl>
  240. <dt>PlayCost</dt>
  241. <dd>-</dd>
  242. </dl>
  243. <dl>
  244. <dt>DigivolveCost1</dt>
  245. <dd>-</dd>
  246. </dl>
  247. <dl>
  248. <dt>DigivolveCost2</dt>
  249. <dd>-</dd>
  250. </dl>
  251. </div>
  252. </div>
  253. <divclass="cardinfo_bottom">
  254. <dl>
  255. <dt>Effect</dt>
  256. <dd>-</dd>
  257. </dl>
  258. <dl>
  259. <dt>Digivolveeffect</dt>
  260. <dd>[Your Turn][Once Per Turn] If one of your yellow or red Tamers becomes suspended, 1 of your opponent's Digimon gets -1000 DP for the turn.</dd>
  261. </dl>
  262. <dl>
  263. <dt>Securityeffect</dt>
  264. <dd>-</dd>
  265. </dl>
  266. <dl>
  267. <dt>Notes</dt>
  268. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  269. </div>
  270. </div>
  271. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  272. </div>
  273. </div>
  274. </li>
  275. <liclass="image_lists_itemdatapage-1">
  276. <aclass="card_img">
  277. <imgsrc="../images/cardlist/card/BT12-004.png"alt="BT12-004TorikaraBallmon"></a>
  278. <divclass="popup">
  279. <divclass="card_detailcard_detail_green">
  280. <divclass="card_detail_inner">
  281. <ulclass="cardinfo_head">
  282. <liclass="cardno">BT12-004</li>
  283. <li>U</li>
  284. <liclass="cardtype">Digi-Egg</li>
  285. <liclass="cardlv">Lv.2</li>
  286. </ul>
  287. <divclass="card_name">TorikaraBallmon</div>
  288. <divclass="cardinfo_top">
  289. <divclass="card_img">
  290. <imgsrc="../images/cardlist/card/BT12-004.png"alt="BT12-004TorikaraBallmon"></div>
  291. <divclass="cardinfo_top_body">
  292. <dl>
  293. <dt>Form</dt>
  294. <dd>In-Training</dd>
  295. </dl>
  296. <dl>
  297. <dt>Attribute</dt>
  298. <dd>-</dd>
  299. </dl>
  300. <dl>
  301. <dt>Type</dt>
  302. <dd>Food</dd>
  303. </dl>
  304. <dl>
  305. <dt>DP</dt>
  306. <dd>-</dl>
  307. <dl>
  308. <dt>PlayCost</dt>
  309. <dd>-</dd>
  310. </dl>
  311. <dl>
  312. <dt>DigivolveCost1</dt>
  313. <dd>-</dd>
  314. </dl>
  315. <dl>
  316. <dt>DigivolveCost2</dt>
  317. <dd>-</dd>
  318. </dl>
  319. </div>
  320. </div>
  321. <divclass="cardinfo_bottom">
  322. <dl>
  323. <dt>Effect</dt>
  324. <dd>-</dd>
  325. </dl>
  326. <dl>
  327. <dt>Digivolveeffect</dt>
  328. <dd>[Your Turn][Once Per Turn] If you play a green Digimon, this Digimon gets +2000 DP for the turn.</dd>
  329. </dl>
  330. <dl>
  331. <dt>Securityeffect</dt>
  332. <dd>-</dd>
  333. </dl>
  334. <dl>
  335. <dt>Notes</dt>
  336. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  337. </div>
  338. </div>
  339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  340. </div>
  341. </div>
  342. </li>
  343. <liclass="image_lists_itemdatapage-1">
  344. <aclass="card_img">
  345. <imgsrc="../images/cardlist/card/BT12-005.png"alt="BT12-005Kozenimon"></a>
  346. <divclass="popup">
  347. <divclass="card_detailcard_detail_black">
  348. <divclass="card_detail_inner">
  349. <ulclass="cardinfo_head">
  350. <liclass="cardno">BT12-005</li>
  351. <li>U</li>
  352. <liclass="cardtype">Digi-Egg</li>
  353. <liclass="cardlv">Lv.2</li>
  354. </ul>
  355. <divclass="card_name">Kozenimon</div>
  356. <divclass="cardinfo_top">
  357. <divclass="card_img">
  358. <imgsrc="../images/cardlist/card/BT12-005.png"alt="BT12-005Kozenimon"></div>
  359. <divclass="cardinfo_top_body">
  360. <dl>
  361. <dt>Form</dt>
  362. <dd>In-Training</dd>
  363. </dl>
  364. <dl>
  365. <dt>Attribute</dt>
  366. <dd>-</dd>
  367. </dl>
  368. <dl>
  369. <dt>Type</dt>
  370. <dd>Mutant</dd>
  371. </dl>
  372. <dl>
  373. <dt>DP</dt>
  374. <dd>-</dl>
  375. <dl>
  376. <dt>PlayCost</dt>
  377. <dd>-</dd>
  378. </dl>
  379. <dl>
  380. <dt>DigivolveCost1</dt>
  381. <dd>-</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>-</dd>
  393. </dl>
  394. <dl>
  395. <dt>Digivolveeffect</dt>
  396. <dd>[Your Turn][Once Per Turn] If you play a Digimon with <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-006.png"alt="BT12-006Monimon"></a>
  414. <divclass="popup">
  415. <divclass="card_detailcard_detail_purple">
  416. <divclass="card_detail_inner">
  417. <ulclass="cardinfo_head">
  418. <liclass="cardno">BT12-006</li>
  419. <li>U</li>
  420. <liclass="cardtype">Digi-Egg</li>
  421. <liclass="cardlv">Lv.2</li>
  422. </ul>
  423. <divclass="card_name">Monimon</div>
  424. <divclass="cardinfo_top">
  425. <divclass="card_img">
  426. <imgsrc="../images/cardlist/card/BT12-006.png"alt="BT12-006Monimon"></div>
  427. <divclass="cardinfo_top_body">
  428. <dl>
  429. <dt>Form</dt>
  430. <dd>In-Training</dd>
  431. </dl>
  432. <dl>
  433. <dt>Attribute</dt>
  434. <dd>-</dd>
  435. </dl>
  436. <dl>
  437. <dt>Type</dt>
  438. <dd>CRT</dd>
  439. </dl>
  440. <dl>
  441. <dt>DP</dt>
  442. <dd>-</dl>
  443. <dl>
  444. <dt>PlayCost</dt>
  445. <dd>-</dd>
  446. </dl>
  447. <dl>
  448. <dt>DigivolveCost1</dt>
  449. <dd>-</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>-</dd>
  461. </dl>
  462. <dl>
  463. <dt>Digivolveeffect</dt>
  464. <dd>[On Deletion] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-007.png"alt="BT12-007Guilmon"></a>
  482. <divclass="popup">
  483. <divclass="card_detailcard_detail_red">
  484. <divclass="card_detail_inner">
  485. <ulclass="cardinfo_head">
  486. <liclass="cardno">BT12-007</li>
  487. <li>C</li>
  488. <liclass="cardtype">Digimon</li>
  489. <liclass="cardlv">Lv.3</li>
  490. </ul>
  491. <divclass="card_name">Guilmon</div>
  492. <divclass="cardinfo_top">
  493. <divclass="card_img">
  494. <imgsrc="../images/cardlist/card/BT12-007.png"alt="BT12-007Guilmon"></div>
  495. <divclass="cardinfo_top_body">
  496. <dl>
  497. <dt>Form</dt>
  498. <dd>Rookie</dd>
  499. </dl>
  500. <dl>
  501. <dt>Attribute</dt>
  502. <dd>Virus</dd>
  503. </dl>
  504. <dl>
  505. <dt>Type</dt>
  506. <dd>Reptile</dd>
  507. </dl>
  508. <dl>
  509. <dt>DP</dt>
  510. <dd>2000</dl>
  511. <dl>
  512. <dt>PlayCost</dt>
  513. <dd>3</dd>
  514. </dl>
  515. <dl>
  516. <dt>DigivolveCost1</dt>
  517. <dd>0fromLv.2</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>[On Play] Reveal the top 4 cards of your deck. Add all of the [Takato Matsuki] cards among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  529. </dl>
  530. <dl>
  531. <dt>Digivolveeffect</dt>
  532. <dd>[Your Turn] While this Digimon has [Growlmon] or [Gallantmon] in its name, it gets +2000 DP.</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-007_P1.png"alt="BT12-007Guilmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  550. </a>
  551. <divclass="popup">
  552. <divclass="card_detailcard_detail_red">
  553. <divclass="card_detail_inner">
  554. <ulclass="cardinfo_head">
  555. <liclass="cardno">BT12-007</li>
  556. <li>C</li>
  557. <liclass="cardtype">Digimon</li>
  558. <liclass="cardlv">Lv.3</li>
  559. <liclass="cardtypecardParallel">AlternativeArt</li>
  560. </ul>
  561. <divclass="card_name">Guilmon</div>
  562. <divclass="cardinfo_top">
  563. <divclass="card_img">
  564. <imgsrc="../images/cardlist/card/BT12-007_P1.png"alt="BT12-007Guilmon"></div>
  565. <divclass="cardinfo_top_body">
  566. <dl>
  567. <dt>Form</dt>
  568. <dd>Rookie</dd>
  569. </dl>
  570. <dl>
  571. <dt>Attribute</dt>
  572. <dd>Virus</dd>
  573. </dl>
  574. <dl>
  575. <dt>Type</dt>
  576. <dd>Reptile</dd>
  577. </dl>
  578. <dl>
  579. <dt>DP</dt>
  580. <dd>2000</dl>
  581. <dl>
  582. <dt>PlayCost</dt>
  583. <dd>3</dd>
  584. </dl>
  585. <dl>
  586. <dt>DigivolveCost1</dt>
  587. <dd>0fromLv.2</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost2</dt>
  591. <dd>-</dd>
  592. </dl>
  593. </div>
  594. </div>
  595. <divclass="cardinfo_bottom">
  596. <dl>
  597. <dt>Effect</dt>
  598. <dd>[On Play] Reveal the top 4 cards of your deck. Add all of the [Takato Matsuki] cards among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  599. </dl>
  600. <dl>
  601. <dt>Digivolveeffect</dt>
  602. <dd>[Your Turn] While this Digimon has [Growlmon] or [Gallantmon] in its name, it gets +2000 DP.</dd>
  603. </dl>
  604. <dl>
  605. <dt>Securityeffect</dt>
  606. <dd>-</dd>
  607. </dl>
  608. <dl>
  609. <dt>Notes</dt>
  610. <dd>UltimateCup2023</dd></dl>
  611. </div>
  612. </div>
  613. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  614. </div>
  615. </div>
  616. </li>
  617. <liclass="image_lists_itemdatapage-1">
  618. <aclass="card_img">
  619. <imgsrc="../images/cardlist/card/BT12-008.png"alt="BT12-008Shoutmon"></a>
  620. <divclass="popup">
  621. <divclass="card_detailcard_detail_red">
  622. <divclass="card_detail_inner">
  623. <ulclass="cardinfo_head">
  624. <liclass="cardno">BT12-008</li>
  625. <li>C</li>
  626. <liclass="cardtype">Digimon</li>
  627. <liclass="cardlv">Lv.3</li>
  628. </ul>
  629. <divclass="card_name">Shoutmon</div>
  630. <divclass="cardinfo_top">
  631. <divclass="card_img">
  632. <imgsrc="../images/cardlist/card/BT12-008.png"alt="BT12-008Shoutmon"></div>
  633. <divclass="cardinfo_top_body">
  634. <dl>
  635. <dt>Form</dt>
  636. <dd>Rookie</dd>
  637. </dl>
  638. <dl>
  639. <dt>Attribute</dt>
  640. <dd>Data</dd>
  641. </dl>
  642. <dl>
  643. <dt>Type</dt>
  644. <dd>MiniDragon/XrosHeart</dd>
  645. </dl>
  646. <dl>
  647. <dt>DP</dt>
  648. <dd>1000</dl>
  649. <dl>
  650. <dt>PlayCost</dt>
  651. <dd>3</dd>
  652. </dl>
  653. <dl>
  654. <dt>DigivolveCost1</dt>
  655. <dd>0fromLv.2</dd>
  656. </dl>
  657. <dl>
  658. <dt>DigivolveCost2</dt>
  659. <dd>-</dd>
  660. </dl>
  661. </div>
  662. </div>
  663. <divclass="cardinfo_bottom">
  664. <dl>
  665. <dt>Effect</dt>
  666. <dd>Digivolve: 0 from Lv.2 w/<Save> in text [On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  667. </dl>
  668. <dl>
  669. <dt>Digivolveeffect</dt>
  670. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  671. </dl>
  672. <dl>
  673. <dt>Securityeffect</dt>
  674. <dd>-</dd>
  675. </dl>
  676. <dl>
  677. <dt>Notes</dt>
  678. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  679. </div>
  680. </div>
  681. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  682. </div>
  683. </div>
  684. </li>
  685. <liclass="image_lists_itemdatapage-1">
  686. <aclass="card_img">
  687. <imgsrc="../images/cardlist/card/BT12-009.png"alt="BT12-009Flamemon"></a>
  688. <divclass="popup">
  689. <divclass="card_detailcard_detail_red">
  690. <divclass="card_detail_inner">
  691. <ulclass="cardinfo_head">
  692. <liclass="cardno">BT12-009</li>
  693. <li>C</li>
  694. <liclass="cardtype">Digimon</li>
  695. <liclass="cardlv">Lv.3</li>
  696. </ul>
  697. <divclass="card_name">Flamemon</div>
  698. <divclass="cardinfo_top">
  699. <divclass="card_img">
  700. <imgsrc="../images/cardlist/card/BT12-009.png"alt="BT12-009Flamemon"></div>
  701. <divclass="cardinfo_top_body">
  702. <dl>
  703. <dt>Form</dt>
  704. <dd>Hybrid</dd>
  705. </dl>
  706. <dl>
  707. <dt>Attribute</dt>
  708. <dd>Variable</dd>
  709. </dl>
  710. <dl>
  711. <dt>Type</dt>
  712. <dd>Wizard</dd>
  713. </dl>
  714. <dl>
  715. <dt>DP</dt>
  716. <dd>1000</dl>
  717. <dl>
  718. <dt>PlayCost</dt>
  719. <dd>3</dd>
  720. </dl>
  721. <dl>
  722. <dt>DigivolveCost1</dt>
  723. <dd>0fromLv.2</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>[On Play] By trashing 1 Digimon card with a [Hybrid] trait, <Draw 2>. (Draw 2 cards from your deck.)</dd>
  735. </dl>
  736. <dl>
  737. <dt>Digivolveeffect</dt>
  738. <dd>[Your Turn] While this Digimon has a [Hybrid] or [Ten Warriors] trait, it gets +2000 DP.</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-010.png"alt="BT12-010Growlmon"></a>
  756. <divclass="popup">
  757. <divclass="card_detailcard_detail_red">
  758. <divclass="card_detail_inner">
  759. <ulclass="cardinfo_head">
  760. <liclass="cardno">BT12-010</li>
  761. <li>C</li>
  762. <liclass="cardtype">Digimon</li>
  763. <liclass="cardlv">Lv.4</li>
  764. </ul>
  765. <divclass="card_name">Growlmon</div>
  766. <divclass="cardinfo_top">
  767. <divclass="card_img">
  768. <imgsrc="../images/cardlist/card/BT12-010.png"alt="BT12-010Growlmon"></div>
  769. <divclass="cardinfo_top_body">
  770. <dl>
  771. <dt>Form</dt>
  772. <dd>Champion</dd>
  773. </dl>
  774. <dl>
  775. <dt>Attribute</dt>
  776. <dd>Virus</dd>
  777. </dl>
  778. <dl>
  779. <dt>Type</dt>
  780. <dd>DarkDragon</dd>
  781. </dl>
  782. <dl>
  783. <dt>DP</dt>
  784. <dd>5000</dl>
  785. <dl>
  786. <dt>PlayCost</dt>
  787. <dd>5</dd>
  788. </dl>
  789. <dl>
  790. <dt>DigivolveCost1</dt>
  791. <dd>2fromLv.3</dd>
  792. </dl>
  793. <dl>
  794. <dt>DigivolveCost2</dt>
  795. <dd>-</dd>
  796. </dl>
  797. </div>
  798. </div>
  799. <divclass="cardinfo_bottom">
  800. <dl>
  801. <dt>Effect</dt>
  802. <dd>[When Digivolving] If you don't have a [Takato Matsuki] in play, you may play 1 [Takato Matsuki] from your hand without paying its cost.</dd>
  803. </dl>
  804. <dl>
  805. <dt>Digivolveeffect</dt>
  806. <dd>[Your Turn] While this Digimon has [Growlmon] or [Gallantmon] in its name, it gets +2000 DP.</dd>
  807. </dl>
  808. <dl>
  809. <dt>Securityeffect</dt>
  810. <dd>-</dd>
  811. </dl>
  812. <dl>
  813. <dt>Notes</dt>
  814. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  815. </div>
  816. </div>
  817. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  818. </div>
  819. </div>
  820. </li>
  821. <liclass="image_lists_itemdatapage-1">
  822. <aclass="card_img">
  823. <imgsrc="../images/cardlist/card/BT12-010_P1.png"alt="BT12-010Growlmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  824. </a>
  825. <divclass="popup">
  826. <divclass="card_detailcard_detail_red">
  827. <divclass="card_detail_inner">
  828. <ulclass="cardinfo_head">
  829. <liclass="cardno">BT12-010</li>
  830. <li>C</li>
  831. <liclass="cardtype">Digimon</li>
  832. <liclass="cardlv">Lv.4</li>
  833. <liclass="cardtypecardParallel">AlternativeArt</li>
  834. </ul>
  835. <divclass="card_name">Growlmon</div>
  836. <divclass="cardinfo_top">
  837. <divclass="card_img">
  838. <imgsrc="../images/cardlist/card/BT12-010_P1.png"alt="BT12-010Growlmon"></div>
  839. <divclass="cardinfo_top_body">
  840. <dl>
  841. <dt>Form</dt>
  842. <dd>Champion</dd>
  843. </dl>
  844. <dl>
  845. <dt>Attribute</dt>
  846. <dd>Virus</dd>
  847. </dl>
  848. <dl>
  849. <dt>Type</dt>
  850. <dd>DarkDragon</dd>
  851. </dl>
  852. <dl>
  853. <dt>DP</dt>
  854. <dd>5000</dl>
  855. <dl>
  856. <dt>PlayCost</dt>
  857. <dd>5</dd>
  858. </dl>
  859. <dl>
  860. <dt>DigivolveCost1</dt>
  861. <dd>2fromLv.3</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>[When Digivolving] If you don't have a [Takato Matsuki] in play, you may play 1 [Takato Matsuki] from your hand without paying its cost.</dd>
  873. </dl>
  874. <dl>
  875. <dt>Digivolveeffect</dt>
  876. <dd>[Your Turn] While this Digimon has [Growlmon] or [Gallantmon] in its name, it gets +2000 DP.</dd>
  877. </dl>
  878. <dl>
  879. <dt>Securityeffect</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Notes</dt>
  884. <dd>UltimateCup2023</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/BT12-011.png"alt="BT12-011Shoutmon(KingVersion)."></a>
  894. <divclass="popup">
  895. <divclass="card_detailcard_detail_red">
  896. <divclass="card_detail_inner">
  897. <ulclass="cardinfo_head">
  898. <liclass="cardno">BT12-011</li>
  899. <li>U</li>
  900. <liclass="cardtype">Digimon</li>
  901. <liclass="cardlv">Lv.4</li>
  902. </ul>
  903. <divclass="card_name">Shoutmon(KingVersion).</div>
  904. <divclass="cardinfo_top">
  905. <divclass="card_img">
  906. <imgsrc="../images/cardlist/card/BT12-011.png"alt="BT12-011Shoutmon(KingVersion)."></div>
  907. <divclass="cardinfo_top_body">
  908. <dl>
  909. <dt>Form</dt>
  910. <dd>Champion</dd>
  911. </dl>
  912. <dl>
  913. <dt>Attribute</dt>
  914. <dd>Data</dd>
  915. </dl>
  916. <dl>
  917. <dt>Type</dt>
  918. <dd>MiniDragon/XrosHeart</dd>
  919. </dl>
  920. <dl>
  921. <dt>DP</dt>
  922. <dd>4000</dl>
  923. <dl>
  924. <dt>PlayCost</dt>
  925. <dd>5</dd>
  926. </dl>
  927. <dl>
  928. <dt>DigivolveCost1</dt>
  929. <dd>2fromLv.3</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>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text[On Play][When Digivolving] You may play 1 [Taiki Kudo], [Yuu Amano], or [Tagiru Akashi] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  941. </dl>
  942. <dl>
  943. <dt>Digivolveeffect</dt>
  944. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</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/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</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/BT12-011_P1.png"alt="BT12-011Shoutmon(KingVersion)."><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  962. </a>
  963. <divclass="popup">
  964. <divclass="card_detailcard_detail_red">
  965. <divclass="card_detail_inner">
  966. <ulclass="cardinfo_head">
  967. <liclass="cardno">BT12-011</li>
  968. <li>U</li>
  969. <liclass="cardtype">Digimon</li>
  970. <liclass="cardlv">Lv.4</li>
  971. <liclass="cardtypecardParallel">AlternativeArt</li>
  972. </ul>
  973. <divclass="card_name">Shoutmon(KingVersion).</div>
  974. <divclass="cardinfo_top">
  975. <divclass="card_img">
  976. <imgsrc="../images/cardlist/card/BT12-011_P1.png"alt="BT12-011Shoutmon(KingVersion)."></div>
  977. <divclass="cardinfo_top_body">
  978. <dl>
  979. <dt>Form</dt>
  980. <dd>Champion</dd>
  981. </dl>
  982. <dl>
  983. <dt>Attribute</dt>
  984. <dd>Data</dd>
  985. </dl>
  986. <dl>
  987. <dt>Type</dt>
  988. <dd>MiniDragon/XrosHeart</dd>
  989. </dl>
  990. <dl>
  991. <dt>DP</dt>
  992. <dd>4000</dl>
  993. <dl>
  994. <dt>PlayCost</dt>
  995. <dd>5</dd>
  996. </dl>
  997. <dl>
  998. <dt>DigivolveCost1</dt>
  999. <dd>2fromLv.3</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>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text[On Play][When Digivolving] You may play 1 [Taiki Kudo], [Yuu Amano], or [Tagiru Akashi] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  1011. </dl>
  1012. <dl>
  1013. <dt>Digivolveeffect</dt>
  1014. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1015. </dl>
  1016. <dl>
  1017. <dt>Securityeffect</dt>
  1018. <dd>-</dd>
  1019. </dl>
  1020. <dl>
  1021. <dt>Notes</dt>
  1022. <dd>2023RegionalsParticipationCardSet1</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/BT12-011_P2.png"alt="BT12-011Shoutmon(KingVersion)."><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1032. </a>
  1033. <divclass="popup">
  1034. <divclass="card_detailcard_detail_red">
  1035. <divclass="card_detail_inner">
  1036. <ulclass="cardinfo_head">
  1037. <liclass="cardno">BT12-011</li>
  1038. <li>U</li>
  1039. <liclass="cardtype">Digimon</li>
  1040. <liclass="cardlv">Lv.4</li>
  1041. <liclass="cardtypecardParallel">AlternativeArt</li>
  1042. </ul>
  1043. <divclass="card_name">Shoutmon(KingVersion).</div>
  1044. <divclass="cardinfo_top">
  1045. <divclass="card_img">
  1046. <imgsrc="../images/cardlist/card/BT12-011_P2.png"alt="BT12-011Shoutmon(KingVersion)."></div>
  1047. <divclass="cardinfo_top_body">
  1048. <dl>
  1049. <dt>Form</dt>
  1050. <dd>Champion</dd>
  1051. </dl>
  1052. <dl>
  1053. <dt>Attribute</dt>
  1054. <dd>Data</dd>
  1055. </dl>
  1056. <dl>
  1057. <dt>Type</dt>
  1058. <dd>MiniDragon/XrosHeart</dd>
  1059. </dl>
  1060. <dl>
  1061. <dt>DP</dt>
  1062. <dd>4000</dl>
  1063. <dl>
  1064. <dt>PlayCost</dt>
  1065. <dd>5</dd>
  1066. </dl>
  1067. <dl>
  1068. <dt>DigivolveCost1</dt>
  1069. <dd>2fromLv.3</dd>
  1070. </dl>
  1071. <dl>
  1072. <dt>DigivolveCost2</dt>
  1073. <dd>-</dd>
  1074. </dl>
  1075. </div>
  1076. </div>
  1077. <divclass="cardinfo_bottom">
  1078. <dl>
  1079. <dt>Effect</dt>
  1080. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text[On Play][When Digivolving] You may play 1 [Taiki Kudo], [Yuu Amano], or [Tagiru Akashi] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  1081. </dl>
  1082. <dl>
  1083. <dt>Digivolveeffect</dt>
  1084. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1085. </dl>
  1086. <dl>
  1087. <dt>Securityeffect</dt>
  1088. <dd>-</dd>
  1089. </dl>
  1090. <dl>
  1091. <dt>Notes</dt>
  1092. <dd>2023RegionalsFinalistSet1</dd></dl>
  1093. </div>
  1094. </div>
  1095. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1096. </div>
  1097. </div>
  1098. </li>
  1099. <liclass="image_lists_itemdatapage-1">
  1100. <aclass="card_img">
  1101. <imgsrc="../images/cardlist/card/BT12-011_P3.png"alt="BT12-011Shoutmon(KingVersion)."><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1102. </a>
  1103. <divclass="popup">
  1104. <divclass="card_detailcard_detail_red">
  1105. <divclass="card_detail_inner">
  1106. <ulclass="cardinfo_head">
  1107. <liclass="cardno">BT12-011</li>
  1108. <li>U</li>
  1109. <liclass="cardtype">Digimon</li>
  1110. <liclass="cardlv">Lv.4</li>
  1111. <liclass="cardtypecardParallel">AlternativeArt</li>
  1112. </ul>
  1113. <divclass="card_name">Shoutmon(KingVersion).</div>
  1114. <divclass="cardinfo_top">
  1115. <divclass="card_img">
  1116. <imgsrc="../images/cardlist/card/BT12-011_P3.png"alt="BT12-011Shoutmon(KingVersion)."></div>
  1117. <divclass="cardinfo_top_body">
  1118. <dl>
  1119. <dt>Form</dt>
  1120. <dd>Champion</dd>
  1121. </dl>
  1122. <dl>
  1123. <dt>Attribute</dt>
  1124. <dd>Data</dd>
  1125. </dl>
  1126. <dl>
  1127. <dt>Type</dt>
  1128. <dd>MiniDragon/XrosHeart</dd>
  1129. </dl>
  1130. <dl>
  1131. <dt>DP</dt>
  1132. <dd>4000</dl>
  1133. <dl>
  1134. <dt>PlayCost</dt>
  1135. <dd>5</dd>
  1136. </dl>
  1137. <dl>
  1138. <dt>DigivolveCost1</dt>
  1139. <dd>2fromLv.3</dd>
  1140. </dl>
  1141. <dl>
  1142. <dt>DigivolveCost2</dt>
  1143. <dd>-</dd>
  1144. </dl>
  1145. </div>
  1146. </div>
  1147. <divclass="cardinfo_bottom">
  1148. <dl>
  1149. <dt>Effect</dt>
  1150. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text[On Play][When Digivolving] You may play 1 [Taiki Kudo], [Yuu Amano], or [Tagiru Akashi] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  1151. </dl>
  1152. <dl>
  1153. <dt>Digivolveeffect</dt>
  1154. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1155. </dl>
  1156. <dl>
  1157. <dt>Securityeffect</dt>
  1158. <dd>-</dd>
  1159. </dl>
  1160. <dl>
  1161. <dt>Notes</dt>
  1162. <dd>2023RegionalsChampionCardSet1</dd></dl>
  1163. </div>
  1164. </div>
  1165. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1166. </div>
  1167. </div>
  1168. </li>
  1169. <liclass="image_lists_itemdatapage-1">
  1170. <aclass="card_img">
  1171. <imgsrc="../images/cardlist/card/BT12-012.png"alt="BT12-012Agunimon"></a>
  1172. <divclass="popup">
  1173. <divclass="card_detailcard_detail_red">
  1174. <divclass="card_detail_inner">
  1175. <ulclass="cardinfo_head">
  1176. <liclass="cardno">BT12-012</li>
  1177. <li>U</li>
  1178. <liclass="cardtype">Digimon</li>
  1179. <liclass="cardlv">Lv.4</li>
  1180. </ul>
  1181. <divclass="card_name">Agunimon</div>
  1182. <divclass="cardinfo_top">
  1183. <divclass="card_img">
  1184. <imgsrc="../images/cardlist/card/BT12-012.png"alt="BT12-012Agunimon"></div>
  1185. <divclass="cardinfo_top_body">
  1186. <dl>
  1187. <dt>Form</dt>
  1188. <dd>Hybrid</dd>
  1189. </dl>
  1190. <dl>
  1191. <dt>Attribute</dt>
  1192. <dd>Variable</dd>
  1193. </dl>
  1194. <dl>
  1195. <dt>Type</dt>
  1196. <dd>Wizard</dd>
  1197. </dl>
  1198. <dl>
  1199. <dt>DP</dt>
  1200. <dd>5000</dl>
  1201. <dl>
  1202. <dt>PlayCost</dt>
  1203. <dd>6</dd>
  1204. </dl>
  1205. <dl>
  1206. <dt>DigivolveCost1</dt>
  1207. <dd>2fromLv.3</dd>
  1208. </dl>
  1209. <dl>
  1210. <dt>DigivolveCost2</dt>
  1211. <dd>-</dd>
  1212. </dl>
  1213. </div>
  1214. </div>
  1215. <divclass="cardinfo_bottom">
  1216. <dl>
  1217. <dt>Effect</dt>
  1218. <dd>Digivolve: 1 from [BurningGreymon] You may digivolve this card from your hand onto one of your [Takuya Kanbara] cards as if the Tamer is a level 3 red Digimon.[On Deletion] You may play 1 [Flamemon] from your hand suspended without paying its cost.</dd>
  1219. </dl>
  1220. <dl>
  1221. <dt>Digivolveeffect</dt>
  1222. <dd>[On Deletion] You may play 1 [Takuya Kanbara] from your hand without paying its cost.</dd>
  1223. </dl>
  1224. <dl>
  1225. <dt>Securityeffect</dt>
  1226. <dd>-</dd>
  1227. </dl>
  1228. <dl>
  1229. <dt>Notes</dt>
  1230. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1231. </div>
  1232. </div>
  1233. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1234. </div>
  1235. </div>
  1236. </li>
  1237. <liclass="image_lists_itemdatapage-1">
  1238. <aclass="card_img">
  1239. <imgsrc="../images/cardlist/card/BT12-013.png"alt="BT12-013BurningGreymon"></a>
  1240. <divclass="popup">
  1241. <divclass="card_detailcard_detail_red">
  1242. <divclass="card_detail_inner">
  1243. <ulclass="cardinfo_head">
  1244. <liclass="cardno">BT12-013</li>
  1245. <li>U</li>
  1246. <liclass="cardtype">Digimon</li>
  1247. <liclass="cardlv">Lv.4</li>
  1248. </ul>
  1249. <divclass="card_name">BurningGreymon</div>
  1250. <divclass="cardinfo_top">
  1251. <divclass="card_img">
  1252. <imgsrc="../images/cardlist/card/BT12-013.png"alt="BT12-013BurningGreymon"></div>
  1253. <divclass="cardinfo_top_body">
  1254. <dl>
  1255. <dt>Form</dt>
  1256. <dd>Hybrid</dd>
  1257. </dl>
  1258. <dl>
  1259. <dt>Attribute</dt>
  1260. <dd>Variable</dd>
  1261. </dl>
  1262. <dl>
  1263. <dt>Type</dt>
  1264. <dd>DarkDragon</dd>
  1265. </dl>
  1266. <dl>
  1267. <dt>DP</dt>
  1268. <dd>6000</dl>
  1269. <dl>
  1270. <dt>PlayCost</dt>
  1271. <dd>6</dd>
  1272. </dl>
  1273. <dl>
  1274. <dt>DigivolveCost1</dt>
  1275. <dd>3fromLv.3</dd>
  1276. </dl>
  1277. <dl>
  1278. <dt>DigivolveCost2</dt>
  1279. <dd>-</dd>
  1280. </dl>
  1281. </div>
  1282. </div>
  1283. <divclass="cardinfo_bottom">
  1284. <dl>
  1285. <dt>Effect</dt>
  1286. <dd>Digivolve: 1 from [Agunimon] You may digivolve this card from your hand onto one of your [Takuya Kanbara] cards as if the Tamer is a level 3 red Digimon for a digivolution cost of 2.[When Digivolving] This Digimon gets +2000 DP for the turn.</dd>
  1287. </dl>
  1288. <dl>
  1289. <dt>Digivolveeffect</dt>
  1290. <dd>[Your Turn] While this Digimon has a [Hybrid] or [Ten Warriors] trait, it gets +2000 DP.</dd>
  1291. </dl>
  1292. <dl>
  1293. <dt>Securityeffect</dt>
  1294. <dd>-</dd>
  1295. </dl>
  1296. <dl>
  1297. <dt>Notes</dt>
  1298. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1299. </div>
  1300. </div>
  1301. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1302. </div>
  1303. </div>
  1304. </li>
  1305. <liclass="image_lists_itemdatapage-1">
  1306. <aclass="card_img">
  1307. <imgsrc="../images/cardlist/card/BT12-014.png"alt="BT12-014OmniShoutmon"></a>
  1308. <divclass="popup">
  1309. <divclass="card_detailcard_detail_red">
  1310. <divclass="card_detail_inner">
  1311. <ulclass="cardinfo_head">
  1312. <liclass="cardno">BT12-014</li>
  1313. <li>C</li>
  1314. <liclass="cardtype">Digimon</li>
  1315. <liclass="cardlv">Lv.5</li>
  1316. </ul>
  1317. <divclass="card_name">OmniShoutmon</div>
  1318. <divclass="cardinfo_top">
  1319. <divclass="card_img">
  1320. <imgsrc="../images/cardlist/card/BT12-014.png"alt="BT12-014OmniShoutmon"></div>
  1321. <divclass="cardinfo_top_body">
  1322. <dl>
  1323. <dt>Form</dt>
  1324. <dd>Ultimate</dd>
  1325. </dl>
  1326. <dl>
  1327. <dt>Attribute</dt>
  1328. <dd>Data</dd>
  1329. </dl>
  1330. <dl>
  1331. <dt>Type</dt>
  1332. <dd>Dragonkin/XrosHeart</dd>
  1333. </dl>
  1334. <dl>
  1335. <dt>DP</dt>
  1336. <dd>7000</dl>
  1337. <dl>
  1338. <dt>PlayCost</dt>
  1339. <dd>7</dd>
  1340. </dl>
  1341. <dl>
  1342. <dt>DigivolveCost1</dt>
  1343. <dd>3fromLv.4</dd>
  1344. </dl>
  1345. <dl>
  1346. <dt>DigivolveCost2</dt>
  1347. <dd>-</dd>
  1348. </dl>
  1349. </div>
  1350. </div>
  1351. <divclass="cardinfo_bottom">
  1352. <dl>
  1353. <dt>Effect</dt>
  1354. <dd>Digivolve: 3 from Lv.4 w/<Save> in text [When Digivolving] Choose any number of your opponent's Digimon whose total DP adds up to 4000 or less and delete them. For every 2 cards in this Digimon's digivolution cards, it gets +3000 to the maximum DP-based deletion effects.[Your Turn] If you have 4 or more digivolution cards under this Digimon, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  1355. </dl>
  1356. <dl>
  1357. <dt>Digivolveeffect</dt>
  1358. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1359. </dl>
  1360. <dl>
  1361. <dt>Securityeffect</dt>
  1362. <dd>-</dd>
  1363. </dl>
  1364. <dl>
  1365. <dt>Notes</dt>
  1366. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1367. </div>
  1368. </div>
  1369. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1370. </div>
  1371. </div>
  1372. </li>
  1373. <liclass="image_lists_itemdatapage-1">
  1374. <aclass="card_img">
  1375. <imgsrc="../images/cardlist/card/BT12-014_P1.png"alt="BT12-014OmniShoutmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1376. </a>
  1377. <divclass="popup">
  1378. <divclass="card_detailcard_detail_red">
  1379. <divclass="card_detail_inner">
  1380. <ulclass="cardinfo_head">
  1381. <liclass="cardno">BT12-014</li>
  1382. <li>C</li>
  1383. <liclass="cardtype">Digimon</li>
  1384. <liclass="cardlv">Lv.5</li>
  1385. <liclass="cardtypecardParallel">AlternativeArt</li>
  1386. </ul>
  1387. <divclass="card_name">OmniShoutmon</div>
  1388. <divclass="cardinfo_top">
  1389. <divclass="card_img">
  1390. <imgsrc="../images/cardlist/card/BT12-014_P1.png"alt="BT12-014OmniShoutmon"></div>
  1391. <divclass="cardinfo_top_body">
  1392. <dl>
  1393. <dt>Form</dt>
  1394. <dd>Ultimate</dd>
  1395. </dl>
  1396. <dl>
  1397. <dt>Attribute</dt>
  1398. <dd>Data</dd>
  1399. </dl>
  1400. <dl>
  1401. <dt>Type</dt>
  1402. <dd>Dragonkin/XrosHeart</dd>
  1403. </dl>
  1404. <dl>
  1405. <dt>DP</dt>
  1406. <dd>7000</dl>
  1407. <dl>
  1408. <dt>PlayCost</dt>
  1409. <dd>7</dd>
  1410. </dl>
  1411. <dl>
  1412. <dt>DigivolveCost1</dt>
  1413. <dd>3fromLv.4</dd>
  1414. </dl>
  1415. <dl>
  1416. <dt>DigivolveCost2</dt>
  1417. <dd>-</dd>
  1418. </dl>
  1419. </div>
  1420. </div>
  1421. <divclass="cardinfo_bottom">
  1422. <dl>
  1423. <dt>Effect</dt>
  1424. <dd>Digivolve: 3 from Lv.4 w/<Save> in text [When Digivolving] Choose any number of your opponent's Digimon whose total DP adds up to 4000 or less and delete them. For every 2 cards in this Digimon's digivolution cards, it gets +3000 to the maximum DP-based deletion effects.[Your Turn] If you have 4 or more digivolution cards under this Digimon, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  1425. </dl>
  1426. <dl>
  1427. <dt>Digivolveeffect</dt>
  1428. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1429. </dl>
  1430. <dl>
  1431. <dt>Securityeffect</dt>
  1432. <dd>-</dd>
  1433. </dl>
  1434. <dl>
  1435. <dt>Notes</dt>
  1436. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  1437. </div>
  1438. </div>
  1439. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1440. </div>
  1441. </div>
  1442. </li>
  1443. <liclass="image_lists_itemdatapage-1">
  1444. <aclass="card_img">
  1445. <imgsrc="../images/cardlist/card/BT12-015.png"alt="BT12-015Aldamon"></a>
  1446. <divclass="popup">
  1447. <divclass="card_detailcard_detail_red">
  1448. <divclass="card_detail_inner">
  1449. <ulclass="cardinfo_head">
  1450. <liclass="cardno">BT12-015</li>
  1451. <li>R</li>
  1452. <liclass="cardtype">Digimon</li>
  1453. <liclass="cardlv">Lv.5</li>
  1454. </ul>
  1455. <divclass="card_name">Aldamon</div>
  1456. <divclass="cardinfo_top">
  1457. <divclass="card_img">
  1458. <imgsrc="../images/cardlist/card/BT12-015.png"alt="BT12-015Aldamon"></div>
  1459. <divclass="cardinfo_top_body">
  1460. <dl>
  1461. <dt>Form</dt>
  1462. <dd>Hybrid</dd>
  1463. </dl>
  1464. <dl>
  1465. <dt>Attribute</dt>
  1466. <dd>Variable</dd>
  1467. </dl>
  1468. <dl>
  1469. <dt>Type</dt>
  1470. <dd>Wizard</dd>
  1471. </dl>
  1472. <dl>
  1473. <dt>DP</dt>
  1474. <dd>8000</dl>
  1475. <dl>
  1476. <dt>PlayCost</dt>
  1477. <dd>8</dd>
  1478. </dl>
  1479. <dl>
  1480. <dt>DigivolveCost1</dt>
  1481. <dd>3fromLv.4</dd>
  1482. </dl>
  1483. <dl>
  1484. <dt>DigivolveCost2</dt>
  1485. <dd>-</dd>
  1486. </dl>
  1487. </div>
  1488. </div>
  1489. <divclass="cardinfo_bottom">
  1490. <dl>
  1491. <dt>Effect</dt>
  1492. <dd>[Hand][Main] Place 1 [Agunimon] and 1 [BurningGreymon] from your trash under 1 of your [Takuya Kanbara] cards in any order and digivolve into this card as if the Tamer is a level 4 red Digimon for the digivolution cost.[On Deletion] Return 1 [Takuya Kanbara] card from your trash to your hand.</dd>
  1493. </dl>
  1494. <dl>
  1495. <dt>Digivolveeffect</dt>
  1496. <dd>-</dd>
  1497. </dl>
  1498. <dl>
  1499. <dt>Securityeffect</dt>
  1500. <dd>-</dd>
  1501. </dl>
  1502. <dl>
  1503. <dt>Notes</dt>
  1504. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1505. </div>
  1506. </div>
  1507. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1508. </div>
  1509. </div>
  1510. </li>
  1511. <liclass="image_lists_itemdatapage-1">
  1512. <aclass="card_img">
  1513. <imgsrc="../images/cardlist/card/BT12-016.png"alt="BT12-016WarGrowlmon"></a>
  1514. <divclass="popup">
  1515. <divclass="card_detailcard_detail_red">
  1516. <divclass="card_detail_inner">
  1517. <ulclass="cardinfo_head">
  1518. <liclass="cardno">BT12-016</li>
  1519. <li>R</li>
  1520. <liclass="cardtype">Digimon</li>
  1521. <liclass="cardlv">Lv.5</li>
  1522. </ul>
  1523. <divclass="card_name">WarGrowlmon</div>
  1524. <divclass="cardinfo_top">
  1525. <divclass="card_img">
  1526. <imgsrc="../images/cardlist/card/BT12-016.png"alt="BT12-016WarGrowlmon"></div>
  1527. <divclass="cardinfo_top_body">
  1528. <dl>
  1529. <dt>Form</dt>
  1530. <dd>Ultimate</dd>
  1531. </dl>
  1532. <dl>
  1533. <dt>Attribute</dt>
  1534. <dd>Virus</dd>
  1535. </dl>
  1536. <dl>
  1537. <dt>Type</dt>
  1538. <dd>Cyborg</dd>
  1539. </dl>
  1540. <dl>
  1541. <dt>DP</dt>
  1542. <dd>8000</dl>
  1543. <dl>
  1544. <dt>PlayCost</dt>
  1545. <dd>8</dd>
  1546. </dl>
  1547. <dl>
  1548. <dt>DigivolveCost1</dt>
  1549. <dd>3fromLv.4</dd>
  1550. </dl>
  1551. <dl>
  1552. <dt>DigivolveCost2</dt>
  1553. <dd>-</dd>
  1554. </dl>
  1555. </div>
  1556. </div>
  1557. <divclass="cardinfo_bottom">
  1558. <dl>
  1559. <dt>Effect</dt>
  1560. <dd>[When Digivolving] Delete 1 of your opponent's Digimon with 4000 DP or less. If an opponent's Digimon isn't deleted by this effect, you may digivolve this Digimon into a level 6 Digimon card with [Gallantmon] in its name in your hand for its digivolution cost. When this Digimon would digivolve with this effect, reduce the digivolution cost by 1.</dd>
  1561. </dl>
  1562. <dl>
  1563. <dt>Digivolveeffect</dt>
  1564. <dd>[End of Attack][Once Per Turn] When your opponent has no Digimon in play, if this Digimon has [Growlmon] or [Gallantmon] in its name, gain 2 memory.</dd>
  1565. </dl>
  1566. <dl>
  1567. <dt>Securityeffect</dt>
  1568. <dd>-</dd>
  1569. </dl>
  1570. <dl>
  1571. <dt>Notes</dt>
  1572. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1573. </div>
  1574. </div>
  1575. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1576. </div>
  1577. </div>
  1578. </li>
  1579. <liclass="image_lists_itemdatapage-1">
  1580. <aclass="card_img">
  1581. <imgsrc="../images/cardlist/card/BT12-016_P1.png"alt="BT12-016WarGrowlmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1582. </a>
  1583. <divclass="popup">
  1584. <divclass="card_detailcard_detail_red">
  1585. <divclass="card_detail_inner">
  1586. <ulclass="cardinfo_head">
  1587. <liclass="cardno">BT12-016</li>
  1588. <li>R</li>
  1589. <liclass="cardtype">Digimon</li>
  1590. <liclass="cardlv">Lv.5</li>
  1591. <liclass="cardtypecardParallel">AlternativeArt</li>
  1592. </ul>
  1593. <divclass="card_name">WarGrowlmon</div>
  1594. <divclass="cardinfo_top">
  1595. <divclass="card_img">
  1596. <imgsrc="../images/cardlist/card/BT12-016_P1.png"alt="BT12-016WarGrowlmon"></div>
  1597. <divclass="cardinfo_top_body">
  1598. <dl>
  1599. <dt>Form</dt>
  1600. <dd>Ultimate</dd>
  1601. </dl>
  1602. <dl>
  1603. <dt>Attribute</dt>
  1604. <dd>Virus</dd>
  1605. </dl>
  1606. <dl>
  1607. <dt>Type</dt>
  1608. <dd>Cyborg</dd>
  1609. </dl>
  1610. <dl>
  1611. <dt>DP</dt>
  1612. <dd>8000</dl>
  1613. <dl>
  1614. <dt>PlayCost</dt>
  1615. <dd>8</dd>
  1616. </dl>
  1617. <dl>
  1618. <dt>DigivolveCost1</dt>
  1619. <dd>3fromLv.4</dd>
  1620. </dl>
  1621. <dl>
  1622. <dt>DigivolveCost2</dt>
  1623. <dd>-</dd>
  1624. </dl>
  1625. </div>
  1626. </div>
  1627. <divclass="cardinfo_bottom">
  1628. <dl>
  1629. <dt>Effect</dt>
  1630. <dd>[When Digivolving] Delete 1 of your opponent's Digimon with 4000 DP or less. If an opponent's Digimon isn't deleted by this effect, you may digivolve this Digimon into a level 6 Digimon card with [Gallantmon] in its name in your hand for its digivolution cost. When this Digimon would digivolve with this effect, reduce the digivolution cost by 1.</dd>
  1631. </dl>
  1632. <dl>
  1633. <dt>Digivolveeffect</dt>
  1634. <dd>[End of Attack][Once Per Turn] When your opponent has no Digimon in play, if this Digimon has [Growlmon] or [Gallantmon] in its name, gain 2 memory.</dd>
  1635. </dl>
  1636. <dl>
  1637. <dt>Securityeffect</dt>
  1638. <dd>-</dd>
  1639. </dl>
  1640. <dl>
  1641. <dt>Notes</dt>
  1642. <dd>UltimateCup2023</dd></dl>
  1643. </div>
  1644. </div>
  1645. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1646. </div>
  1647. </div>
  1648. </li>
  1649. <liclass="image_lists_itemdatapage-1">
  1650. <aclass="card_img">
  1651. <imgsrc="../images/cardlist/card/BT12-017.png"alt="BT12-017EmperorGreymon"></a>
  1652. <divclass="popup">
  1653. <divclass="card_detailcard_detail_red">
  1654. <divclass="card_detail_inner">
  1655. <ulclass="cardinfo_head">
  1656. <liclass="cardno">BT12-017</li>
  1657. <li>SR</li>
  1658. <liclass="cardtype">Digimon</li>
  1659. <liclass="cardlv">Lv.6</li>
  1660. </ul>
  1661. <divclass="card_name">EmperorGreymon</div>
  1662. <divclass="cardinfo_top">
  1663. <divclass="card_img">
  1664. <imgsrc="../images/cardlist/card/BT12-017.png"alt="BT12-017EmperorGreymon"></div>
  1665. <divclass="cardinfo_top_body">
  1666. <dl>
  1667. <dt>Form</dt>
  1668. <dd>Hybrid</dd>
  1669. </dl>
  1670. <dl>
  1671. <dt>Attribute</dt>
  1672. <dd>Variable</dd>
  1673. </dl>
  1674. <dl>
  1675. <dt>Type</dt>
  1676. <dd>DragonWarrior</dd>
  1677. </dl>
  1678. <dl>
  1679. <dt>DP</dt>
  1680. <dd>11000</dl>
  1681. <dl>
  1682. <dt>PlayCost</dt>
  1683. <dd>11</dd>
  1684. </dl>
  1685. <dl>
  1686. <dt>DigivolveCost1</dt>
  1687. <dd>3fromLv.5</dd>
  1688. </dl>
  1689. <dl>
  1690. <dt>DigivolveCost2</dt>
  1691. <dd>-</dd>
  1692. </dl>
  1693. </div>
  1694. </div>
  1695. <divclass="cardinfo_bottom">
  1696. <dl>
  1697. <dt>Effect</dt>
  1698. <dd><Security Attack +1>. (This Digimon checks 1 additional security card.)[When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less. If this Digimon has a red Tamer in its digivolution cards, delete 1 of your opponent’s Digimon with DP less than or equal to this Digimon’s DP instead.[On Deletion] You may play 1 [Takuya Kanbara] from your hand or trash without paying its cost.</dd>
  1699. </dl>
  1700. <dl>
  1701. <dt>Digivolveeffect</dt>
  1702. <dd>-</dd>
  1703. </dl>
  1704. <dl>
  1705. <dt>Securityeffect</dt>
  1706. <dd>-</dd>
  1707. </dl>
  1708. <dl>
  1709. <dt>Notes</dt>
  1710. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1711. </div>
  1712. </div>
  1713. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1714. </div>
  1715. </div>
  1716. </li>
  1717. <liclass="image_lists_itemdatapage-1">
  1718. <aclass="card_img">
  1719. <imgsrc="../images/cardlist/card/BT12-017_P1.png"alt="BT12-017EmperorGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1720. </a>
  1721. <divclass="popup">
  1722. <divclass="card_detailcard_detail_red">
  1723. <divclass="card_detail_inner">
  1724. <ulclass="cardinfo_head">
  1725. <liclass="cardno">BT12-017</li>
  1726. <li>SR</li>
  1727. <liclass="cardtype">Digimon</li>
  1728. <liclass="cardlv">Lv.6</li>
  1729. <liclass="cardtypecardParallel">AlternativeArt</li>
  1730. </ul>
  1731. <divclass="card_name">EmperorGreymon</div>
  1732. <divclass="cardinfo_top">
  1733. <divclass="card_img">
  1734. <imgsrc="../images/cardlist/card/BT12-017_P1.png"alt="BT12-017EmperorGreymon"></div>
  1735. <divclass="cardinfo_top_body">
  1736. <dl>
  1737. <dt>Form</dt>
  1738. <dd>Hybrid</dd>
  1739. </dl>
  1740. <dl>
  1741. <dt>Attribute</dt>
  1742. <dd>Variable</dd>
  1743. </dl>
  1744. <dl>
  1745. <dt>Type</dt>
  1746. <dd>DragonWarrior</dd>
  1747. </dl>
  1748. <dl>
  1749. <dt>DP</dt>
  1750. <dd>11000</dl>
  1751. <dl>
  1752. <dt>PlayCost</dt>
  1753. <dd>11</dd>
  1754. </dl>
  1755. <dl>
  1756. <dt>DigivolveCost1</dt>
  1757. <dd>3fromLv.5</dd>
  1758. </dl>
  1759. <dl>
  1760. <dt>DigivolveCost2</dt>
  1761. <dd>-</dd>
  1762. </dl>
  1763. </div>
  1764. </div>
  1765. <divclass="cardinfo_bottom">
  1766. <dl>
  1767. <dt>Effect</dt>
  1768. <dd><Security Attack +1>. (This Digimon checks 1 additional security card.)[When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less. If this Digimon has a red Tamer in its digivolution cards, delete 1 of your opponent’s Digimon with DP less than or equal to this Digimon’s DP instead.[On Deletion] You may play 1 [Takuya Kanbara] from your hand or trash without paying its cost.</dd>
  1769. </dl>
  1770. <dl>
  1771. <dt>Digivolveeffect</dt>
  1772. <dd>-</dd>
  1773. </dl>
  1774. <dl>
  1775. <dt>Securityeffect</dt>
  1776. <dd>-</dd>
  1777. </dl>
  1778. <dl>
  1779. <dt>Notes</dt>
  1780. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1781. </div>
  1782. </div>
  1783. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1784. </div>
  1785. </div>
  1786. </li>
  1787. <liclass="image_lists_itemdatapage-1">
  1788. <aclass="card_img">
  1789. <imgsrc="../images/cardlist/card/BT12-018.png"alt="BT12-018Gallantmon"></a>
  1790. <divclass="popup">
  1791. <divclass="card_detailcard_detail_red">
  1792. <divclass="card_detail_inner">
  1793. <ulclass="cardinfo_head">
  1794. <liclass="cardno">BT12-018</li>
  1795. <li>SR</li>
  1796. <liclass="cardtype">Digimon</li>
  1797. <liclass="cardlv">Lv.6</li>
  1798. </ul>
  1799. <divclass="card_name">Gallantmon</div>
  1800. <divclass="cardinfo_top">
  1801. <divclass="card_img">
  1802. <imgsrc="../images/cardlist/card/BT12-018.png"alt="BT12-018Gallantmon"></div>
  1803. <divclass="cardinfo_top_body">
  1804. <dl>
  1805. <dt>Form</dt>
  1806. <dd>Mega</dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>Attribute</dt>
  1810. <dd>Virus</dd>
  1811. </dl>
  1812. <dl>
  1813. <dt>Type</dt>
  1814. <dd>HolyWarrior/RoyalKnight</dd>
  1815. </dl>
  1816. <dl>
  1817. <dt>DP</dt>
  1818. <dd>12000</dl>
  1819. <dl>
  1820. <dt>PlayCost</dt>
  1821. <dd>12</dd>
  1822. </dl>
  1823. <dl>
  1824. <dt>DigivolveCost1</dt>
  1825. <dd>4fromLv.5</dd>
  1826. </dl>
  1827. <dl>
  1828. <dt>DigivolveCost2</dt>
  1829. <dd>-</dd>
  1830. </dl>
  1831. </div>
  1832. </div>
  1833. <divclass="cardinfo_bottom">
  1834. <dl>
  1835. <dt>Effect</dt>
  1836. <dd><Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less.[When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If no Digimon was deleted by this effect, trash the top card of your opponent's security stack.</dd>
  1837. </dl>
  1838. <dl>
  1839. <dt>Digivolveeffect</dt>
  1840. <dd>-</dd>
  1841. </dl>
  1842. <dl>
  1843. <dt>Securityeffect</dt>
  1844. <dd>-</dd>
  1845. </dl>
  1846. <dl>
  1847. <dt>Notes</dt>
  1848. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1849. </div>
  1850. </div>
  1851. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1852. </div>
  1853. </div>
  1854. </li>
  1855. <liclass="image_lists_itemdatapage-1">
  1856. <aclass="card_img">
  1857. <imgsrc="../images/cardlist/card/BT12-018_P1.png"alt="BT12-018Gallantmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1858. </a>
  1859. <divclass="popup">
  1860. <divclass="card_detailcard_detail_red">
  1861. <divclass="card_detail_inner">
  1862. <ulclass="cardinfo_head">
  1863. <liclass="cardno">BT12-018</li>
  1864. <li>SR</li>
  1865. <liclass="cardtype">Digimon</li>
  1866. <liclass="cardlv">Lv.6</li>
  1867. <liclass="cardtypecardParallel">AlternativeArt</li>
  1868. </ul>
  1869. <divclass="card_name">Gallantmon</div>
  1870. <divclass="cardinfo_top">
  1871. <divclass="card_img">
  1872. <imgsrc="../images/cardlist/card/BT12-018_P1.png"alt="BT12-018Gallantmon"></div>
  1873. <divclass="cardinfo_top_body">
  1874. <dl>
  1875. <dt>Form</dt>
  1876. <dd>Mega</dd>
  1877. </dl>
  1878. <dl>
  1879. <dt>Attribute</dt>
  1880. <dd>Virus</dd>
  1881. </dl>
  1882. <dl>
  1883. <dt>Type</dt>
  1884. <dd>HolyWarrior/RoyalKnight</dd>
  1885. </dl>
  1886. <dl>
  1887. <dt>DP</dt>
  1888. <dd>12000</dl>
  1889. <dl>
  1890. <dt>PlayCost</dt>
  1891. <dd>12</dd>
  1892. </dl>
  1893. <dl>
  1894. <dt>DigivolveCost1</dt>
  1895. <dd>4fromLv.5</dd>
  1896. </dl>
  1897. <dl>
  1898. <dt>DigivolveCost2</dt>
  1899. <dd>-</dd>
  1900. </dl>
  1901. </div>
  1902. </div>
  1903. <divclass="cardinfo_bottom">
  1904. <dl>
  1905. <dt>Effect</dt>
  1906. <dd><Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less.[When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If no Digimon was deleted by this effect, trash the top card of your opponent's security stack.</dd>
  1907. </dl>
  1908. <dl>
  1909. <dt>Digivolveeffect</dt>
  1910. <dd>-</dd>
  1911. </dl>
  1912. <dl>
  1913. <dt>Securityeffect</dt>
  1914. <dd>-</dd>
  1915. </dl>
  1916. <dl>
  1917. <dt>Notes</dt>
  1918. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  1919. </div>
  1920. </div>
  1921. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1922. </div>
  1923. </div>
  1924. </li>
  1925. <liclass="image_lists_itemdatapage-1">
  1926. <aclass="card_img">
  1927. <imgsrc="../images/cardlist/card/BT12-018_P2.png"alt="BT12-018Gallantmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1928. </a>
  1929. <divclass="popup">
  1930. <divclass="card_detailcard_detail_red">
  1931. <divclass="card_detail_inner">
  1932. <ulclass="cardinfo_head">
  1933. <liclass="cardno">BT12-018</li>
  1934. <li>SR</li>
  1935. <liclass="cardtype">Digimon</li>
  1936. <liclass="cardlv">Lv.6</li>
  1937. <liclass="cardtypecardParallel">AlternativeArt</li>
  1938. </ul>
  1939. <divclass="card_name">Gallantmon</div>
  1940. <divclass="cardinfo_top">
  1941. <divclass="card_img">
  1942. <imgsrc="../images/cardlist/card/BT12-018_P2.png"alt="BT12-018Gallantmon"></div>
  1943. <divclass="cardinfo_top_body">
  1944. <dl>
  1945. <dt>Form</dt>
  1946. <dd>Mega</dd>
  1947. </dl>
  1948. <dl>
  1949. <dt>Attribute</dt>
  1950. <dd>Virus</dd>
  1951. </dl>
  1952. <dl>
  1953. <dt>Type</dt>
  1954. <dd>HolyWarrior/RoyalKnight</dd>
  1955. </dl>
  1956. <dl>
  1957. <dt>DP</dt>
  1958. <dd>12000</dl>
  1959. <dl>
  1960. <dt>PlayCost</dt>
  1961. <dd>12</dd>
  1962. </dl>
  1963. <dl>
  1964. <dt>DigivolveCost1</dt>
  1965. <dd>4fromLv.5</dd>
  1966. </dl>
  1967. <dl>
  1968. <dt>DigivolveCost2</dt>
  1969. <dd>-</dd>
  1970. </dl>
  1971. </div>
  1972. </div>
  1973. <divclass="cardinfo_bottom">
  1974. <dl>
  1975. <dt>Effect</dt>
  1976. <dd><Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less.[When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If no Digimon was deleted by this effect, trash the top card of your opponent's security stack.</dd>
  1977. </dl>
  1978. <dl>
  1979. <dt>Digivolveeffect</dt>
  1980. <dd>-</dd>
  1981. </dl>
  1982. <dl>
  1983. <dt>Securityeffect</dt>
  1984. <dd>-</dd>
  1985. </dl>
  1986. <dl>
  1987. <dt>Notes</dt>
  1988. <dd>UltimateCup2023</dd></dl>
  1989. </div>
  1990. </div>
  1991. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1992. </div>
  1993. </div>
  1994. </li>
  1995. <liclass="image_lists_itemdatapage-1">
  1996. <aclass="card_img">
  1997. <imgsrc="../images/cardlist/card/BT12-019.png"alt="BT12-019Otamamon"></a>
  1998. <divclass="popup">
  1999. <divclass="card_detailcard_detail_blue">
  2000. <divclass="card_detail_inner">
  2001. <ulclass="cardinfo_head">
  2002. <liclass="cardno">BT12-019</li>
  2003. <li>C</li>
  2004. <liclass="cardtype">Digimon</li>
  2005. <liclass="cardlv">Lv.3</li>
  2006. </ul>
  2007. <divclass="card_name">Otamamon</div>
  2008. <divclass="cardinfo_top">
  2009. <divclass="card_img">
  2010. <imgsrc="../images/cardlist/card/BT12-019.png"alt="BT12-019Otamamon"></div>
  2011. <divclass="cardinfo_top_body">
  2012. <dl>
  2013. <dt>Form</dt>
  2014. <dd>Rookie</dd>
  2015. </dl>
  2016. <dl>
  2017. <dt>Attribute</dt>
  2018. <dd>Virus</dd>
  2019. </dl>
  2020. <dl>
  2021. <dt>Type</dt>
  2022. <dd>Amphibian</dd>
  2023. </dl>
  2024. <dl>
  2025. <dt>DP</dt>
  2026. <dd>2000</dl>
  2027. <dl>
  2028. <dt>PlayCost</dt>
  2029. <dd>3</dd>
  2030. </dl>
  2031. <dl>
  2032. <dt>DigivolveCost1</dt>
  2033. <dd>0fromLv.2</dd>
  2034. </dl>
  2035. <dl>
  2036. <dt>DigivolveCost2</dt>
  2037. <dd>-</dd>
  2038. </dl>
  2039. </div>
  2040. </div>
  2041. <divclass="cardinfo_bottom">
  2042. <dl>
  2043. <dt>Effect</dt>
  2044. <dd>-</dd>
  2045. </dl>
  2046. <dl>
  2047. <dt>Digivolveeffect</dt>
  2048. <dd>[Opponent's Turn][Once Per Turn] If an opponent's Digimon attacks, trash the bottom digivolution card of 1 of your opponent's Digimon.</dd>
  2049. </dl>
  2050. <dl>
  2051. <dt>Securityeffect</dt>
  2052. <dd>-</dd>
  2053. </dl>
  2054. <dl>
  2055. <dt>Notes</dt>
  2056. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2057. </div>
  2058. </div>
  2059. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2060. </div>
  2061. </div>
  2062. </li>
  2063. <liclass="image_lists_itemdatapage-1">
  2064. <aclass="card_img">
  2065. <imgsrc="../images/cardlist/card/BT12-020.png"alt="BT12-020Swimmon"></a>
  2066. <divclass="popup">
  2067. <divclass="card_detailcard_detail_blue">
  2068. <divclass="card_detail_inner">
  2069. <ulclass="cardinfo_head">
  2070. <liclass="cardno">BT12-020</li>
  2071. <li>C</li>
  2072. <liclass="cardtype">Digimon</li>
  2073. <liclass="cardlv">Lv.3</li>
  2074. </ul>
  2075. <divclass="card_name">Swimmon</div>
  2076. <divclass="cardinfo_top">
  2077. <divclass="card_img">
  2078. <imgsrc="../images/cardlist/card/BT12-020.png"alt="BT12-020Swimmon"></div>
  2079. <divclass="cardinfo_top_body">
  2080. <dl>
  2081. <dt>Form</dt>
  2082. <dd>Rookie</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>Attribute</dt>
  2086. <dd>Vaccine</dd>
  2087. </dl>
  2088. <dl>
  2089. <dt>Type</dt>
  2090. <dd>TropicalFish</dd>
  2091. </dl>
  2092. <dl>
  2093. <dt>DP</dt>
  2094. <dd>4000</dl>
  2095. <dl>
  2096. <dt>PlayCost</dt>
  2097. <dd>3</dd>
  2098. </dl>
  2099. <dl>
  2100. <dt>DigivolveCost1</dt>
  2101. <dd>0fromLv.2</dd>
  2102. </dl>
  2103. <dl>
  2104. <dt>DigivolveCost2</dt>
  2105. <dd>-</dd>
  2106. </dl>
  2107. </div>
  2108. </div>
  2109. <divclass="cardinfo_bottom">
  2110. <dl>
  2111. <dt>Effect</dt>
  2112. <dd>-</dd>
  2113. </dl>
  2114. <dl>
  2115. <dt>Digivolveeffect</dt>
  2116. <dd>-</dd>
  2117. </dl>
  2118. <dl>
  2119. <dt>Securityeffect</dt>
  2120. <dd>-</dd>
  2121. </dl>
  2122. <dl>
  2123. <dt>Notes</dt>
  2124. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2125. </div>
  2126. </div>
  2127. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2128. </div>
  2129. </div>
  2130. </li>
  2131. <liclass="image_lists_itemdatapage-1">
  2132. <aclass="card_img">
  2133. <imgsrc="../images/cardlist/card/BT12-021.png"alt="BT12-021Veemon"></a>
  2134. <divclass="popup">
  2135. <divclass="card_detailcard_detail_blue">
  2136. <divclass="card_detail_inner">
  2137. <ulclass="cardinfo_head">
  2138. <liclass="cardno">BT12-021</li>
  2139. <li>C</li>
  2140. <liclass="cardtype">Digimon</li>
  2141. <liclass="cardlv">Lv.3</li>
  2142. </ul>
  2143. <divclass="card_name">Veemon</div>
  2144. <divclass="cardinfo_top">
  2145. <divclass="card_img">
  2146. <imgsrc="../images/cardlist/card/BT12-021.png"alt="BT12-021Veemon"></div>
  2147. <divclass="cardinfo_top_body">
  2148. <dl>
  2149. <dt>Form</dt>
  2150. <dd>Rookie</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>Attribute</dt>
  2154. <dd>Free</dd>
  2155. </dl>
  2156. <dl>
  2157. <dt>Type</dt>
  2158. <dd>MiniDragon</dd>
  2159. </dl>
  2160. <dl>
  2161. <dt>DP</dt>
  2162. <dd>1000</dl>
  2163. <dl>
  2164. <dt>PlayCost</dt>
  2165. <dd>3</dd>
  2166. </dl>
  2167. <dl>
  2168. <dt>DigivolveCost1</dt>
  2169. <dd>0fromLv.2</dd>
  2170. </dl>
  2171. <dl>
  2172. <dt>DigivolveCost2</dt>
  2173. <dd>0fromLv.2</dd>
  2174. </dl>
  2175. </div>
  2176. </div>
  2177. <divclass="cardinfo_bottom">
  2178. <dl>
  2179. <dt>Effect</dt>
  2180. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Imperialdramon] in its name or a [Free] trait and 1 card with [Davis Motomiya] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  2181. </dl>
  2182. <dl>
  2183. <dt>Digivolveeffect</dt>
  2184. <dd>[End of Your Turn] You may DNA digivolve this Digimon and one of your other Digimon into a Digimon card in your hand by paying its cost.</dd>
  2185. </dl>
  2186. <dl>
  2187. <dt>Securityeffect</dt>
  2188. <dd>-</dd>
  2189. </dl>
  2190. <dl>
  2191. <dt>Notes</dt>
  2192. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2193. </div>
  2194. </div>
  2195. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2196. </div>
  2197. </div>
  2198. </li>
  2199. <liclass="image_lists_itemdatapage-1">
  2200. <aclass="card_img">
  2201. <imgsrc="../images/cardlist/card/BT12-022.png"alt="BT12-022ExVeemon"></a>
  2202. <divclass="popup">
  2203. <divclass="card_detailcard_detail_blue">
  2204. <divclass="card_detail_inner">
  2205. <ulclass="cardinfo_head">
  2206. <liclass="cardno">BT12-022</li>
  2207. <li>U</li>
  2208. <liclass="cardtype">Digimon</li>
  2209. <liclass="cardlv">Lv.4</li>
  2210. </ul>
  2211. <divclass="card_name">ExVeemon</div>
  2212. <divclass="cardinfo_top">
  2213. <divclass="card_img">
  2214. <imgsrc="../images/cardlist/card/BT12-022.png"alt="BT12-022ExVeemon"></div>
  2215. <divclass="cardinfo_top_body">
  2216. <dl>
  2217. <dt>Form</dt>
  2218. <dd>Champion</dd>
  2219. </dl>
  2220. <dl>
  2221. <dt>Attribute</dt>
  2222. <dd>Free</dd>
  2223. </dl>
  2224. <dl>
  2225. <dt>Type</dt>
  2226. <dd>MythicalDragon</dd>
  2227. </dl>
  2228. <dl>
  2229. <dt>DP</dt>
  2230. <dd>4000</dl>
  2231. <dl>
  2232. <dt>PlayCost</dt>
  2233. <dd>4</dd>
  2234. </dl>
  2235. <dl>
  2236. <dt>DigivolveCost1</dt>
  2237. <dd>2fromLv.3</dd>
  2238. </dl>
  2239. <dl>
  2240. <dt>DigivolveCost2</dt>
  2241. <dd>2fromLv.3</dd>
  2242. </dl>
  2243. </div>
  2244. </div>
  2245. <divclass="cardinfo_bottom">
  2246. <dl>
  2247. <dt>Effect</dt>
  2248. <dd>[Your Turn] If this Digimon would DNA digivolve into a green Digimon card, gain 1 memory.</dd>
  2249. </dl>
  2250. <dl>
  2251. <dt>Digivolveeffect</dt>
  2252. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name or a [Free] trait, it gains <Jamming>.</dd>
  2253. </dl>
  2254. <dl>
  2255. <dt>Securityeffect</dt>
  2256. <dd>-</dd>
  2257. </dl>
  2258. <dl>
  2259. <dt>Notes</dt>
  2260. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2261. </div>
  2262. </div>
  2263. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2264. </div>
  2265. </div>
  2266. </li>
  2267. <liclass="image_lists_itemdatapage-1">
  2268. <aclass="card_img">
  2269. <imgsrc="../images/cardlist/card/BT12-023.png"alt="BT12-023Gekomon"></a>
  2270. <divclass="popup">
  2271. <divclass="card_detailcard_detail_blue">
  2272. <divclass="card_detail_inner">
  2273. <ulclass="cardinfo_head">
  2274. <liclass="cardno">BT12-023</li>
  2275. <li>C</li>
  2276. <liclass="cardtype">Digimon</li>
  2277. <liclass="cardlv">Lv.4</li>
  2278. </ul>
  2279. <divclass="card_name">Gekomon</div>
  2280. <divclass="cardinfo_top">
  2281. <divclass="card_img">
  2282. <imgsrc="../images/cardlist/card/BT12-023.png"alt="BT12-023Gekomon"></div>
  2283. <divclass="cardinfo_top_body">
  2284. <dl>
  2285. <dt>Form</dt>
  2286. <dd>Champion</dd>
  2287. </dl>
  2288. <dl>
  2289. <dt>Attribute</dt>
  2290. <dd>Virus</dd>
  2291. </dl>
  2292. <dl>
  2293. <dt>Type</dt>
  2294. <dd>Amphibian</dd>
  2295. </dl>
  2296. <dl>
  2297. <dt>DP</dt>
  2298. <dd>5000</dl>
  2299. <dl>
  2300. <dt>PlayCost</dt>
  2301. <dd>4</dd>
  2302. </dl>
  2303. <dl>
  2304. <dt>DigivolveCost1</dt>
  2305. <dd>2fromLv.3</dd>
  2306. </dl>
  2307. <dl>
  2308. <dt>DigivolveCost2</dt>
  2309. <dd>-</dd>
  2310. </dl>
  2311. </div>
  2312. </div>
  2313. <divclass="cardinfo_bottom">
  2314. <dl>
  2315. <dt>Effect</dt>
  2316. <dd>-</dd>
  2317. </dl>
  2318. <dl>
  2319. <dt>Digivolveeffect</dt>
  2320. <dd>[Opponent's Turn][Once Per Turn] If an opponent's Digimon attacks, trash the bottom digivolution card of 1 of your opponent's Digimon.</dd>
  2321. </dl>
  2322. <dl>
  2323. <dt>Securityeffect</dt>
  2324. <dd>-</dd>
  2325. </dl>
  2326. <dl>
  2327. <dt>Notes</dt>
  2328. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2329. </div>
  2330. </div>
  2331. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2332. </div>
  2333. </div>
  2334. </li>
  2335. <liclass="image_lists_itemdatapage-1">
  2336. <aclass="card_img">
  2337. <imgsrc="../images/cardlist/card/BT12-024.png"alt="BT12-024Lanamon"></a>
  2338. <divclass="popup">
  2339. <divclass="card_detailcard_detail_blue">
  2340. <divclass="card_detail_inner">
  2341. <ulclass="cardinfo_head">
  2342. <liclass="cardno">BT12-024</li>
  2343. <li>U</li>
  2344. <liclass="cardtype">Digimon</li>
  2345. <liclass="cardlv">Lv.4</li>
  2346. </ul>
  2347. <divclass="card_name">Lanamon</div>
  2348. <divclass="cardinfo_top">
  2349. <divclass="card_img">
  2350. <imgsrc="../images/cardlist/card/BT12-024.png"alt="BT12-024Lanamon"></div>
  2351. <divclass="cardinfo_top_body">
  2352. <dl>
  2353. <dt>Form</dt>
  2354. <dd>Hybrid</dd>
  2355. </dl>
  2356. <dl>
  2357. <dt>Attribute</dt>
  2358. <dd>Variable</dd>
  2359. </dl>
  2360. <dl>
  2361. <dt>Type</dt>
  2362. <dd>Fairy</dd>
  2363. </dl>
  2364. <dl>
  2365. <dt>DP</dt>
  2366. <dd>4000</dl>
  2367. <dl>
  2368. <dt>PlayCost</dt>
  2369. <dd>5</dd>
  2370. </dl>
  2371. <dl>
  2372. <dt>DigivolveCost1</dt>
  2373. <dd>2fromLv.3</dd>
  2374. </dl>
  2375. <dl>
  2376. <dt>DigivolveCost2</dt>
  2377. <dd>-</dd>
  2378. </dl>
  2379. </div>
  2380. </div>
  2381. <divclass="cardinfo_bottom">
  2382. <dl>
  2383. <dt>Effect</dt>
  2384. <dd>Digivolve: 0 from [Calmaramon] You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon.[When Digivolving] By placing a blue level 3 Digimon card from your hand under 1 of your blue Digimon as its bottom digivolution card, this Digimon gains <Jamming> for the turn. (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  2385. </dl>
  2386. <dl>
  2387. <dt>Digivolveeffect</dt>
  2388. <dd>-</dd>
  2389. </dl>
  2390. <dl>
  2391. <dt>Securityeffect</dt>
  2392. <dd>-</dd>
  2393. </dl>
  2394. <dl>
  2395. <dt>Notes</dt>
  2396. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2397. </div>
  2398. </div>
  2399. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2400. </div>
  2401. </div>
  2402. </li>
  2403. <liclass="image_lists_itemdatapage-1">
  2404. <aclass="card_img">
  2405. <imgsrc="../images/cardlist/card/BT12-025.png"alt="BT12-025Calmaramon"></a>
  2406. <divclass="popup">
  2407. <divclass="card_detailcard_detail_blue">
  2408. <divclass="card_detail_inner">
  2409. <ulclass="cardinfo_head">
  2410. <liclass="cardno">BT12-025</li>
  2411. <li>C</li>
  2412. <liclass="cardtype">Digimon</li>
  2413. <liclass="cardlv">Lv.4</li>
  2414. </ul>
  2415. <divclass="card_name">Calmaramon</div>
  2416. <divclass="cardinfo_top">
  2417. <divclass="card_img">
  2418. <imgsrc="../images/cardlist/card/BT12-025.png"alt="BT12-025Calmaramon"></div>
  2419. <divclass="cardinfo_top_body">
  2420. <dl>
  2421. <dt>Form</dt>
  2422. <dd>Hybrid</dd>
  2423. </dl>
  2424. <dl>
  2425. <dt>Attribute</dt>
  2426. <dd>Variable</dd>
  2427. </dl>
  2428. <dl>
  2429. <dt>Type</dt>
  2430. <dd>Aquatic</dd>
  2431. </dl>
  2432. <dl>
  2433. <dt>DP</dt>
  2434. <dd>6000</dl>
  2435. <dl>
  2436. <dt>PlayCost</dt>
  2437. <dd>6</dd>
  2438. </dl>
  2439. <dl>
  2440. <dt>DigivolveCost1</dt>
  2441. <dd>3fromLv.3</dd>
  2442. </dl>
  2443. <dl>
  2444. <dt>DigivolveCost2</dt>
  2445. <dd>-</dd>
  2446. </dl>
  2447. </div>
  2448. </div>
  2449. <divclass="cardinfo_bottom">
  2450. <dl>
  2451. <dt>Effect</dt>
  2452. <dd>Digivolve: 1 from [Lanamon] You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon.[When Attacking] You may play 1 blue level 3 Digimon card from one of your blue Digimon's digivolution cards without paying its cost. </dd>
  2453. </dl>
  2454. <dl>
  2455. <dt>Digivolveeffect</dt>
  2456. <dd>-</dd>
  2457. </dl>
  2458. <dl>
  2459. <dt>Securityeffect</dt>
  2460. <dd>-</dd>
  2461. </dl>
  2462. <dl>
  2463. <dt>Notes</dt>
  2464. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2465. </div>
  2466. </div>
  2467. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2468. </div>
  2469. </div>
  2470. </li>
  2471. <liclass="image_lists_itemdatapage-1">
  2472. <aclass="card_img">
  2473. <imgsrc="../images/cardlist/card/BT12-026.png"alt="BT12-026ShogunGekomon"></a>
  2474. <divclass="popup">
  2475. <divclass="card_detailcard_detail_blue">
  2476. <divclass="card_detail_inner">
  2477. <ulclass="cardinfo_head">
  2478. <liclass="cardno">BT12-026</li>
  2479. <li>U</li>
  2480. <liclass="cardtype">Digimon</li>
  2481. <liclass="cardlv">Lv.5</li>
  2482. </ul>
  2483. <divclass="card_name">ShogunGekomon</div>
  2484. <divclass="cardinfo_top">
  2485. <divclass="card_img">
  2486. <imgsrc="../images/cardlist/card/BT12-026.png"alt="BT12-026ShogunGekomon"></div>
  2487. <divclass="cardinfo_top_body">
  2488. <dl>
  2489. <dt>Form</dt>
  2490. <dd>Ultimate</dd>
  2491. </dl>
  2492. <dl>
  2493. <dt>Attribute</dt>
  2494. <dd>Virus</dd>
  2495. </dl>
  2496. <dl>
  2497. <dt>Type</dt>
  2498. <dd>Amphibian</dd>
  2499. </dl>
  2500. <dl>
  2501. <dt>DP</dt>
  2502. <dd>7000</dl>
  2503. <dl>
  2504. <dt>PlayCost</dt>
  2505. <dd>7</dd>
  2506. </dl>
  2507. <dl>
  2508. <dt>DigivolveCost1</dt>
  2509. <dd>3fromLv.4</dd>
  2510. </dl>
  2511. <dl>
  2512. <dt>DigivolveCost2</dt>
  2513. <dd>-</dd>
  2514. </dl>
  2515. </div>
  2516. </div>
  2517. <divclass="cardinfo_bottom">
  2518. <dl>
  2519. <dt>Effect</dt>
  2520. <dd>[When Digivolving] By placing 1 blue level 5 or lower Digimon card from your hand under this Digimon as its bottom digivolution card, trash the bottom 2 digivolution cards of 2 of your opponent's Digimon.[All Turns][Once Per Turn] If a digivolution card of an opponent's Digimon is trashed, gain 1 memory.</dd>
  2521. </dl>
  2522. <dl>
  2523. <dt>Digivolveeffect</dt>
  2524. <dd>-</dd>
  2525. </dl>
  2526. <dl>
  2527. <dt>Securityeffect</dt>
  2528. <dd>-</dd>
  2529. </dl>
  2530. <dl>
  2531. <dt>Notes</dt>
  2532. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2533. </div>
  2534. </div>
  2535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2536. </div>
  2537. </div>
  2538. </li>
  2539. <liclass="image_lists_itemdatapage-1">
  2540. <aclass="card_img">
  2541. <imgsrc="../images/cardlist/card/BT12-027.png"alt="BT12-027Mermaimon"></a>
  2542. <divclass="popup">
  2543. <divclass="card_detailcard_detail_blue">
  2544. <divclass="card_detail_inner">
  2545. <ulclass="cardinfo_head">
  2546. <liclass="cardno">BT12-027</li>
  2547. <li>C</li>
  2548. <liclass="cardtype">Digimon</li>
  2549. <liclass="cardlv">Lv.5</li>
  2550. </ul>
  2551. <divclass="card_name">Mermaimon</div>
  2552. <divclass="cardinfo_top">
  2553. <divclass="card_img">
  2554. <imgsrc="../images/cardlist/card/BT12-027.png"alt="BT12-027Mermaimon"></div>
  2555. <divclass="cardinfo_top_body">
  2556. <dl>
  2557. <dt>Form</dt>
  2558. <dd>Ultimate</dd>
  2559. </dl>
  2560. <dl>
  2561. <dt>Attribute</dt>
  2562. <dd>Data</dd>
  2563. </dl>
  2564. <dl>
  2565. <dt>Type</dt>
  2566. <dd>Aquabeast</dd>
  2567. </dl>
  2568. <dl>
  2569. <dt>DP</dt>
  2570. <dd>7000</dl>
  2571. <dl>
  2572. <dt>PlayCost</dt>
  2573. <dd>7</dd>
  2574. </dl>
  2575. <dl>
  2576. <dt>DigivolveCost1</dt>
  2577. <dd>3fromLv.4</dd>
  2578. </dl>
  2579. <dl>
  2580. <dt>DigivolveCost2</dt>
  2581. <dd>-</dd>
  2582. </dl>
  2583. </div>
  2584. </div>
  2585. <divclass="cardinfo_bottom">
  2586. <dl>
  2587. <dt>Effect</dt>
  2588. <dd>[On Play][When Digivolving] By placing another blue Digimon under this Digimon as its bottom digivolution card, gain 2 memory.</dd>
  2589. </dl>
  2590. <dl>
  2591. <dt>Digivolveeffect</dt>
  2592. <dd>-</dd>
  2593. </dl>
  2594. <dl>
  2595. <dt>Securityeffect</dt>
  2596. <dd>-</dd>
  2597. </dl>
  2598. <dl>
  2599. <dt>Notes</dt>
  2600. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2601. </div>
  2602. </div>
  2603. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2604. </div>
  2605. </div>
  2606. </li>
  2607. <liclass="image_lists_itemdatapage-1">
  2608. <aclass="card_img">
  2609. <imgsrc="../images/cardlist/card/BT12-028.png"alt="BT12-028Paildramon"></a>
  2610. <divclass="popup">
  2611. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2612. <divclass="card_detail_inner">
  2613. <ulclass="cardinfo_head">
  2614. <liclass="cardno">BT12-028</li>
  2615. <li>R</li>
  2616. <liclass="cardtype">Digimon</li>
  2617. <liclass="cardlv">Lv.5</li>
  2618. </ul>
  2619. <divclass="card_name">Paildramon</div>
  2620. <divclass="cardinfo_top">
  2621. <divclass="card_img">
  2622. <imgsrc="../images/cardlist/card/BT12-028.png"alt="BT12-028Paildramon"></div>
  2623. <divclass="cardinfo_top_body">
  2624. <dl>
  2625. <dt>Form</dt>
  2626. <dd>Ultimate</dd>
  2627. </dl>
  2628. <dl>
  2629. <dt>Attribute</dt>
  2630. <dd>Free</dd>
  2631. </dl>
  2632. <dl>
  2633. <dt>Type</dt>
  2634. <dd>Dragonkin</dd>
  2635. </dl>
  2636. <dl>
  2637. <dt>DP</dt>
  2638. <dd>8000</dl>
  2639. <dl>
  2640. <dt>PlayCost</dt>
  2641. <dd>8</dd>
  2642. </dl>
  2643. <dl>
  2644. <dt>DigivolveCost1</dt>
  2645. <dd>4fromLv.4</dd>
  2646. </dl>
  2647. <dl>
  2648. <dt>DigivolveCost2</dt>
  2649. <dd>4fromLv.4</dd>
  2650. </dl>
  2651. </div>
  2652. </div>
  2653. <divclass="cardinfo_bottom">
  2654. <dl>
  2655. <dt>Effect</dt>
  2656. <dd>DNA Digivolution: 0 from blue Lv.4 + green Lv.4Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.[When Digivolving] Trash the top 3 digivolution cards of all of your opponent's Digimon. Then, when DNA digivolving, 2 of your opponent's Digimon with no digivolution cards in play can't attack until the end of your opponent's turn.</dd>
  2657. </dl>
  2658. <dl>
  2659. <dt>Digivolveeffect</dt>
  2660. <dd>[End of Attack] If this Digimon has [Imperialdramon] in its name or a [Free] trait, gain 1 memory.</dd>
  2661. </dl>
  2662. <dl>
  2663. <dt>Securityeffect</dt>
  2664. <dd>-</dd>
  2665. </dl>
  2666. <dl>
  2667. <dt>Notes</dt>
  2668. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2669. </div>
  2670. </div>
  2671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2672. </div>
  2673. </div>
  2674. </li>
  2675. <liclass="image_lists_itemdatapage-1">
  2676. <aclass="card_img">
  2677. <imgsrc="../images/cardlist/card/BT12-029.png"alt="BT12-029UlforceVeedramon(XAntibody)"></a>
  2678. <divclass="popup">
  2679. <divclass="card_detailcard_detail_blue">
  2680. <divclass="card_detail_inner">
  2681. <ulclass="cardinfo_head">
  2682. <liclass="cardno">BT12-029</li>
  2683. <li>SR</li>
  2684. <liclass="cardtype">Digimon</li>
  2685. <liclass="cardlv">Lv.6</li>
  2686. </ul>
  2687. <divclass="card_name">UlforceVeedramon(XAntibody)</div>
  2688. <divclass="cardinfo_top">
  2689. <divclass="card_img">
  2690. <imgsrc="../images/cardlist/card/BT12-029.png"alt="BT12-029UlforceVeedramon(XAntibody)"></div>
  2691. <divclass="cardinfo_top_body">
  2692. <dl>
  2693. <dt>Form</dt>
  2694. <dd>Mega</dd>
  2695. </dl>
  2696. <dl>
  2697. <dt>Attribute</dt>
  2698. <dd>Vaccine</dd>
  2699. </dl>
  2700. <dl>
  2701. <dt>Type</dt>
  2702. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  2703. </dl>
  2704. <dl>
  2705. <dt>DP</dt>
  2706. <dd>12000</dl>
  2707. <dl>
  2708. <dt>PlayCost</dt>
  2709. <dd>12</dd>
  2710. </dl>
  2711. <dl>
  2712. <dt>DigivolveCost1</dt>
  2713. <dd>4fromLv.5</dd>
  2714. </dl>
  2715. <dl>
  2716. <dt>DigivolveCost2</dt>
  2717. <dd>-</dd>
  2718. </dl>
  2719. </div>
  2720. </div>
  2721. <divclass="cardinfo_bottom">
  2722. <dl>
  2723. <dt>Effect</dt>
  2724. <dd>Digivolve: 1 from [UlforceVeedramon][When Digivolving] Unsuspend this Digimon or 1 of your blue Tamers.[All Turns][Once Per Turn] If this Digimon becomes unsuspended, if you have a blue Tamer in play or this Digimon has [UlforceVeedramon] in its digivolution cards, return 1 of your opponent’s Digimon with the lowest level to its owner’s hand.</dd>
  2725. </dl>
  2726. <dl>
  2727. <dt>Digivolveeffect</dt>
  2728. <dd>-</dd>
  2729. </dl>
  2730. <dl>
  2731. <dt>Securityeffect</dt>
  2732. <dd>-</dd>
  2733. </dl>
  2734. <dl>
  2735. <dt>Notes</dt>
  2736. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2737. </div>
  2738. </div>
  2739. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2740. </div>
  2741. </div>
  2742. </li>
  2743. <liclass="image_lists_itemdatapage-2">
  2744. <aclass="card_img">
  2745. <imgsrc="../images/cardlist/card/BT12-029_P1.png"alt="BT12-029UlforceVeedramon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2746. </a>
  2747. <divclass="popup">
  2748. <divclass="card_detailcard_detail_blue">
  2749. <divclass="card_detail_inner">
  2750. <ulclass="cardinfo_head">
  2751. <liclass="cardno">BT12-029</li>
  2752. <li>SR</li>
  2753. <liclass="cardtype">Digimon</li>
  2754. <liclass="cardlv">Lv.6</li>
  2755. <liclass="cardtypecardParallel">AlternativeArt</li>
  2756. </ul>
  2757. <divclass="card_name">UlforceVeedramon(XAntibody)</div>
  2758. <divclass="cardinfo_top">
  2759. <divclass="card_img">
  2760. <imgsrc="../images/cardlist/card/BT12-029_P1.png"alt="BT12-029UlforceVeedramon(XAntibody)"></div>
  2761. <divclass="cardinfo_top_body">
  2762. <dl>
  2763. <dt>Form</dt>
  2764. <dd>Mega</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>Attribute</dt>
  2768. <dd>Vaccine</dd>
  2769. </dl>
  2770. <dl>
  2771. <dt>Type</dt>
  2772. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  2773. </dl>
  2774. <dl>
  2775. <dt>DP</dt>
  2776. <dd>12000</dl>
  2777. <dl>
  2778. <dt>PlayCost</dt>
  2779. <dd>12</dd>
  2780. </dl>
  2781. <dl>
  2782. <dt>DigivolveCost1</dt>
  2783. <dd>4fromLv.5</dd>
  2784. </dl>
  2785. <dl>
  2786. <dt>DigivolveCost2</dt>
  2787. <dd>-</dd>
  2788. </dl>
  2789. </div>
  2790. </div>
  2791. <divclass="cardinfo_bottom">
  2792. <dl>
  2793. <dt>Effect</dt>
  2794. <dd>Digivolve: 1 from [UlforceVeedramon][When Digivolving] Unsuspend this Digimon or 1 of your blue Tamers.[All Turns][Once Per Turn] If this Digimon becomes unsuspended, if you have a blue Tamer in play or this Digimon has [UlforceVeedramon] in its digivolution cards, return 1 of your opponent’s Digimon with the lowest level to its owner’s hand.</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Digivolveeffect</dt>
  2798. <dd>-</dd>
  2799. </dl>
  2800. <dl>
  2801. <dt>Securityeffect</dt>
  2802. <dd>-</dd>
  2803. </dl>
  2804. <dl>
  2805. <dt>Notes</dt>
  2806. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2807. </div>
  2808. </div>
  2809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2810. </div>
  2811. </div>
  2812. </li>
  2813. <liclass="image_lists_itemdatapage-2">
  2814. <aclass="card_img">
  2815. <imgsrc="../images/cardlist/card/BT12-030.png"alt="BT12-030Imperialdramon:DragonMode"></a>
  2816. <divclass="popup">
  2817. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2818. <divclass="card_detail_inner">
  2819. <ulclass="cardinfo_head">
  2820. <liclass="cardno">BT12-030</li>
  2821. <li>R</li>
  2822. <liclass="cardtype">Digimon</li>
  2823. <liclass="cardlv">Lv.6</li>
  2824. </ul>
  2825. <divclass="card_name">Imperialdramon:DragonMode</div>
  2826. <divclass="cardinfo_top">
  2827. <divclass="card_img">
  2828. <imgsrc="../images/cardlist/card/BT12-030.png"alt="BT12-030Imperialdramon:DragonMode"></div>
  2829. <divclass="cardinfo_top_body">
  2830. <dl>
  2831. <dt>Form</dt>
  2832. <dd>Mega</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>Attribute</dt>
  2836. <dd>Free</dd>
  2837. </dl>
  2838. <dl>
  2839. <dt>Type</dt>
  2840. <dd>AncientDragon</dd>
  2841. </dl>
  2842. <dl>
  2843. <dt>DP</dt>
  2844. <dd>12000</dl>
  2845. <dl>
  2846. <dt>PlayCost</dt>
  2847. <dd>12</dd>
  2848. </dl>
  2849. <dl>
  2850. <dt>DigivolveCost1</dt>
  2851. <dd>4fromLv.5</dd>
  2852. </dl>
  2853. <dl>
  2854. <dt>DigivolveCost2</dt>
  2855. <dd>4fromLv.5</dd>
  2856. </dl>
  2857. </div>
  2858. </div>
  2859. <divclass="cardinfo_bottom">
  2860. <dl>
  2861. <dt>Effect</dt>
  2862. <dd>Digivolve: 3 from [Paildramon] or [Dinobeemon][When Digivolving] If this Digimon has a blue card in its digivolution cards, unsuspend this Digimon. If there is a green card, suspend 1 of your opponent's Digimon. [End of Attack] You may digivolve this Digimon into a Digimon card with [Imperialdramon] in its name in your hand for its digivolution cost. If this Digimon would digivolve with this effect, reduce the digivolution cost by 2.</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Digivolveeffect</dt>
  2866. <dd>-</dd>
  2867. </dl>
  2868. <dl>
  2869. <dt>Securityeffect</dt>
  2870. <dd>-</dd>
  2871. </dl>
  2872. <dl>
  2873. <dt>Notes</dt>
  2874. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2875. </div>
  2876. </div>
  2877. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2878. </div>
  2879. </div>
  2880. </li>
  2881. <liclass="image_lists_itemdatapage-2">
  2882. <aclass="card_img">
  2883. <imgsrc="../images/cardlist/card/BT12-031.png"alt="BT12-031Imperialdramon:FighterMode"></a>
  2884. <divclass="popup">
  2885. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2886. <divclass="card_detail_inner">
  2887. <ulclass="cardinfo_head">
  2888. <liclass="cardno">BT12-031</li>
  2889. <li>SR</li>
  2890. <liclass="cardtype">Digimon</li>
  2891. <liclass="cardlv">Lv.6</li>
  2892. </ul>
  2893. <divclass="card_name">Imperialdramon:FighterMode</div>
  2894. <divclass="cardinfo_top">
  2895. <divclass="card_img">
  2896. <imgsrc="../images/cardlist/card/BT12-031.png"alt="BT12-031Imperialdramon:FighterMode"></div>
  2897. <divclass="cardinfo_top_body">
  2898. <dl>
  2899. <dt>Form</dt>
  2900. <dd>Mega</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>Attribute</dt>
  2904. <dd>Free</dd>
  2905. </dl>
  2906. <dl>
  2907. <dt>Type</dt>
  2908. <dd>AncientDragonkin</dd>
  2909. </dl>
  2910. <dl>
  2911. <dt>DP</dt>
  2912. <dd>13000</dl>
  2913. <dl>
  2914. <dt>PlayCost</dt>
  2915. <dd>13</dd>
  2916. </dl>
  2917. <dl>
  2918. <dt>DigivolveCost1</dt>
  2919. <dd>5fromLv.5</dd>
  2920. </dl>
  2921. <dl>
  2922. <dt>DigivolveCost2</dt>
  2923. <dd>5fromLv.5</dd>
  2924. </dl>
  2925. </div>
  2926. </div>
  2927. <divclass="cardinfo_bottom">
  2928. <dl>
  2929. <dt>Effect</dt>
  2930. <dd>Digivolve: 2 from [Imperialdramon: Dragon Mode][When Digivolving] Suspend all of your opponent's Digimon with no digivolution cards. Then, return 1 of your opponent's suspended Digimon to its owner's hand. By returning 1 [Imperialdramon: Dragon Mode] card from this Digimon's digivolution cards to its owner's hand, place all of your opponent's suspended Digimon at the bottom of their owners' decks instead.[All Turns] This Digimon gets +1000 DP for each of its digivolution card colors. While this Digimon has 2 or more colors, it gains <Security Attack +1> and <Blocker>.</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Digivolveeffect</dt>
  2934. <dd>-</dd>
  2935. </dl>
  2936. <dl>
  2937. <dt>Securityeffect</dt>
  2938. <dd>-</dd>
  2939. </dl>
  2940. <dl>
  2941. <dt>Notes</dt>
  2942. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  2943. </div>
  2944. </div>
  2945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2946. </div>
  2947. </div>
  2948. </li>
  2949. <liclass="image_lists_itemdatapage-2">
  2950. <aclass="card_img">
  2951. <imgsrc="../images/cardlist/card/BT12-031_P1.png"alt="BT12-031Imperialdramon:FighterMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  2952. </a>
  2953. <divclass="popup">
  2954. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2955. <divclass="card_detail_inner">
  2956. <ulclass="cardinfo_head">
  2957. <liclass="cardno">BT12-031</li>
  2958. <li>SR</li>
  2959. <liclass="cardtype">Digimon</li>
  2960. <liclass="cardlv">Lv.6</li>
  2961. <liclass="cardtypecardParallel">AlternativeArt</li>
  2962. </ul>
  2963. <divclass="card_name">Imperialdramon:FighterMode</div>
  2964. <divclass="cardinfo_top">
  2965. <divclass="card_img">
  2966. <imgsrc="../images/cardlist/card/BT12-031_P1.png"alt="BT12-031Imperialdramon:FighterMode"></div>
  2967. <divclass="cardinfo_top_body">
  2968. <dl>
  2969. <dt>Form</dt>
  2970. <dd>Mega</dd>
  2971. </dl>
  2972. <dl>
  2973. <dt>Attribute</dt>
  2974. <dd>Free</dd>
  2975. </dl>
  2976. <dl>
  2977. <dt>Type</dt>
  2978. <dd>AncientDragonkin</dd>
  2979. </dl>
  2980. <dl>
  2981. <dt>DP</dt>
  2982. <dd>13000</dl>
  2983. <dl>
  2984. <dt>PlayCost</dt>
  2985. <dd>13</dd>
  2986. </dl>
  2987. <dl>
  2988. <dt>DigivolveCost1</dt>
  2989. <dd>5fromLv.5</dd>
  2990. </dl>
  2991. <dl>
  2992. <dt>DigivolveCost2</dt>
  2993. <dd>5fromLv.5</dd>
  2994. </dl>
  2995. </div>
  2996. </div>
  2997. <divclass="cardinfo_bottom">
  2998. <dl>
  2999. <dt>Effect</dt>
  3000. <dd>Digivolve: 2 from [Imperialdramon: Dragon Mode][When Digivolving] Suspend all of your opponent's Digimon with no digivolution cards. Then, return 1 of your opponent's suspended Digimon to its owner's hand. By returning 1 [Imperialdramon: Dragon Mode] card from this Digimon's digivolution cards to its owner's hand, place all of your opponent's suspended Digimon at the bottom of their owners' decks instead.[All Turns] This Digimon gets +1000 DP for each of its digivolution card colors. While this Digimon has 2 or more colors, it gains <Security Attack +1> and <Blocker>.</dd>
  3001. </dl>
  3002. <dl>
  3003. <dt>Digivolveeffect</dt>
  3004. <dd>-</dd>
  3005. </dl>
  3006. <dl>
  3007. <dt>Securityeffect</dt>
  3008. <dd>-</dd>
  3009. </dl>
  3010. <dl>
  3011. <dt>Notes</dt>
  3012. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3013. </div>
  3014. </div>
  3015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3016. </div>
  3017. </div>
  3018. </li>
  3019. <liclass="image_lists_itemdatapage-2">
  3020. <aclass="card_img">
  3021. <imgsrc="../images/cardlist/card/BT12-032.png"alt="BT12-032AncientMermaimon"></a>
  3022. <divclass="popup">
  3023. <divclass="card_detailcard_detail_blue">
  3024. <divclass="card_detail_inner">
  3025. <ulclass="cardinfo_head">
  3026. <liclass="cardno">BT12-032</li>
  3027. <li>R</li>
  3028. <liclass="cardtype">Digimon</li>
  3029. <liclass="cardlv">Lv.6</li>
  3030. </ul>
  3031. <divclass="card_name">AncientMermaimon</div>
  3032. <divclass="cardinfo_top">
  3033. <divclass="card_img">
  3034. <imgsrc="../images/cardlist/card/BT12-032.png"alt="BT12-032AncientMermaimon"></div>
  3035. <divclass="cardinfo_top_body">
  3036. <dl>
  3037. <dt>Form</dt>
  3038. <dd>Mega</dd>
  3039. </dl>
  3040. <dl>
  3041. <dt>Attribute</dt>
  3042. <dd>Data</dd>
  3043. </dl>
  3044. <dl>
  3045. <dt>Type</dt>
  3046. <dd>AncientAquabeast/TenWarriors</dd>
  3047. </dl>
  3048. <dl>
  3049. <dt>DP</dt>
  3050. <dd>13000</dl>
  3051. <dl>
  3052. <dt>PlayCost</dt>
  3053. <dd>13</dd>
  3054. </dl>
  3055. <dl>
  3056. <dt>DigivolveCost1</dt>
  3057. <dd>5fromLv.5</dd>
  3058. </dl>
  3059. <dl>
  3060. <dt>DigivolveCost2</dt>
  3061. <dd>-</dd>
  3062. </dl>
  3063. </div>
  3064. </div>
  3065. <divclass="cardinfo_bottom">
  3066. <dl>
  3067. <dt>Effect</dt>
  3068. <dd>[When Digivolving] You may play 1 blue Digimon card with a [Hybrid], [Aqua], or [Sea Animal] trait from 1 of your blue Digimon's digivolution cards without paying its cost.[On Deletion] You may play 1 blue level 4 or lower Digimon card with a [Hybrid] trait from your hand without paying its cost.</dd>
  3069. </dl>
  3070. <dl>
  3071. <dt>Digivolveeffect</dt>
  3072. <dd>-</dd>
  3073. </dl>
  3074. <dl>
  3075. <dt>Securityeffect</dt>
  3076. <dd>-</dd>
  3077. </dl>
  3078. <dl>
  3079. <dt>Notes</dt>
  3080. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3081. </div>
  3082. </div>
  3083. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3084. </div>
  3085. </div>
  3086. </li>
  3087. <liclass="image_lists_itemdatapage-2">
  3088. <aclass="card_img">
  3089. <imgsrc="../images/cardlist/card/BT12-033.png"alt="BT12-033Pillomon"></a>
  3090. <divclass="popup">
  3091. <divclass="card_detailcard_detail_yellow">
  3092. <divclass="card_detail_inner">
  3093. <ulclass="cardinfo_head">
  3094. <liclass="cardno">BT12-033</li>
  3095. <li>C</li>
  3096. <liclass="cardtype">Digimon</li>
  3097. <liclass="cardlv">Lv.3</li>
  3098. </ul>
  3099. <divclass="card_name">Pillomon</div>
  3100. <divclass="cardinfo_top">
  3101. <divclass="card_img">
  3102. <imgsrc="../images/cardlist/card/BT12-033.png"alt="BT12-033Pillomon"></div>
  3103. <divclass="cardinfo_top_body">
  3104. <dl>
  3105. <dt>Form</dt>
  3106. <dd>Rookie</dd>
  3107. </dl>
  3108. <dl>
  3109. <dt>Attribute</dt>
  3110. <dd>Vaccine</dd>
  3111. </dl>
  3112. <dl>
  3113. <dt>Type</dt>
  3114. <dd>Mammal</dd>
  3115. </dl>
  3116. <dl>
  3117. <dt>DP</dt>
  3118. <dd>4000</dl>
  3119. <dl>
  3120. <dt>PlayCost</dt>
  3121. <dd>2</dd>
  3122. </dl>
  3123. <dl>
  3124. <dt>DigivolveCost1</dt>
  3125. <dd>1fromLv.2</dd>
  3126. </dl>
  3127. <dl>
  3128. <dt>DigivolveCost2</dt>
  3129. <dd>-</dd>
  3130. </dl>
  3131. </div>
  3132. </div>
  3133. <divclass="cardinfo_bottom">
  3134. <dl>
  3135. <dt>Effect</dt>
  3136. <dd>-</dd>
  3137. </dl>
  3138. <dl>
  3139. <dt>Digivolveeffect</dt>
  3140. <dd>-</dd>
  3141. </dl>
  3142. <dl>
  3143. <dt>Securityeffect</dt>
  3144. <dd>-</dd>
  3145. </dl>
  3146. <dl>
  3147. <dt>Notes</dt>
  3148. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3149. </div>
  3150. </div>
  3151. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3152. </div>
  3153. </div>
  3154. </li>
  3155. <liclass="image_lists_itemdatapage-2">
  3156. <aclass="card_img">
  3157. <imgsrc="../images/cardlist/card/BT12-034.png"alt="BT12-034Agumon"></a>
  3158. <divclass="popup">
  3159. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3160. <divclass="card_detail_inner">
  3161. <ulclass="cardinfo_head">
  3162. <liclass="cardno">BT12-034</li>
  3163. <li>C</li>
  3164. <liclass="cardtype">Digimon</li>
  3165. <liclass="cardlv">Lv.3</li>
  3166. </ul>
  3167. <divclass="card_name">Agumon</div>
  3168. <divclass="cardinfo_top">
  3169. <divclass="card_img">
  3170. <imgsrc="../images/cardlist/card/BT12-034.png"alt="BT12-034Agumon"></div>
  3171. <divclass="cardinfo_top_body">
  3172. <dl>
  3173. <dt>Form</dt>
  3174. <dd>Rookie</dd>
  3175. </dl>
  3176. <dl>
  3177. <dt>Attribute</dt>
  3178. <dd>Vaccine</dd>
  3179. </dl>
  3180. <dl>
  3181. <dt>Type</dt>
  3182. <dd>Dinosaur</dd>
  3183. </dl>
  3184. <dl>
  3185. <dt>DP</dt>
  3186. <dd>2000</dl>
  3187. <dl>
  3188. <dt>PlayCost</dt>
  3189. <dd>3</dd>
  3190. </dl>
  3191. <dl>
  3192. <dt>DigivolveCost1</dt>
  3193. <dd>1fromLv.2</dd>
  3194. </dl>
  3195. <dl>
  3196. <dt>DigivolveCost2</dt>
  3197. <dd>1fromLv.2</dd>
  3198. </dl>
  3199. </div>
  3200. </div>
  3201. <divclass="cardinfo_bottom">
  3202. <dl>
  3203. <dt>Effect</dt>
  3204. <dd>Digivolve: 0 from Koromon [On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Greymon] in its name and 1 [Marcus Damon] card among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  3205. </dl>
  3206. <dl>
  3207. <dt>Digivolveeffect</dt>
  3208. <dd>[Your Turn][Once Per Turn] If one of your yellow or red Tamers becomes suspended, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3209. </dl>
  3210. <dl>
  3211. <dt>Securityeffect</dt>
  3212. <dd>-</dd>
  3213. </dl>
  3214. <dl>
  3215. <dt>Notes</dt>
  3216. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3217. </div>
  3218. </div>
  3219. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3220. </div>
  3221. </div>
  3222. </li>
  3223. <liclass="image_lists_itemdatapage-2">
  3224. <aclass="card_img">
  3225. <imgsrc="../images/cardlist/card/BT12-035.png"alt="BT12-035Ekakimon"></a>
  3226. <divclass="popup">
  3227. <divclass="card_detailcard_detail_yellow">
  3228. <divclass="card_detail_inner">
  3229. <ulclass="cardinfo_head">
  3230. <liclass="cardno">BT12-035</li>
  3231. <li>U</li>
  3232. <liclass="cardtype">Digimon</li>
  3233. <liclass="cardlv">Lv.3</li>
  3234. </ul>
  3235. <divclass="card_name">Ekakimon</div>
  3236. <divclass="cardinfo_top">
  3237. <divclass="card_img">
  3238. <imgsrc="../images/cardlist/card/BT12-035.png"alt="BT12-035Ekakimon"></div>
  3239. <divclass="cardinfo_top_body">
  3240. <dl>
  3241. <dt>Form</dt>
  3242. <dd>Rookie</dd>
  3243. </dl>
  3244. <dl>
  3245. <dt>Attribute</dt>
  3246. <dd>Data</dd>
  3247. </dl>
  3248. <dl>
  3249. <dt>Type</dt>
  3250. <dd>Mutant</dd>
  3251. </dl>
  3252. <dl>
  3253. <dt>DP</dt>
  3254. <dd>1000</dl>
  3255. <dl>
  3256. <dt>PlayCost</dt>
  3257. <dd>3</dd>
  3258. </dl>
  3259. <dl>
  3260. <dt>DigivolveCost1</dt>
  3261. <dd>0fromLv.2</dd>
  3262. </dl>
  3263. <dl>
  3264. <dt>DigivolveCost2</dt>
  3265. <dd>-</dd>
  3266. </dl>
  3267. </div>
  3268. </div>
  3269. <divclass="cardinfo_bottom">
  3270. <dl>
  3271. <dt>Effect</dt>
  3272. <dd>Digivolve: 0 from Lv.2 w/<Save> in text</dd>
  3273. </dl>
  3274. <dl>
  3275. <dt>Digivolveeffect</dt>
  3276. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3277. </dl>
  3278. <dl>
  3279. <dt>Securityeffect</dt>
  3280. <dd>-</dd>
  3281. </dl>
  3282. <dl>
  3283. <dt>Notes</dt>
  3284. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3285. </div>
  3286. </div>
  3287. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3288. </div>
  3289. </div>
  3290. </li>
  3291. <liclass="image_lists_itemdatapage-2">
  3292. <aclass="card_img">
  3293. <imgsrc="../images/cardlist/card/BT12-036.png"alt="BT12-036Mikemon"></a>
  3294. <divclass="popup">
  3295. <divclass="card_detailcard_detail_yellow_greenmulticolor">
  3296. <divclass="card_detail_inner">
  3297. <ulclass="cardinfo_head">
  3298. <liclass="cardno">BT12-036</li>
  3299. <li>C</li>
  3300. <liclass="cardtype">Digimon</li>
  3301. <liclass="cardlv">Lv.4</li>
  3302. </ul>
  3303. <divclass="card_name">Mikemon</div>
  3304. <divclass="cardinfo_top">
  3305. <divclass="card_img">
  3306. <imgsrc="../images/cardlist/card/BT12-036.png"alt="BT12-036Mikemon"></div>
  3307. <divclass="cardinfo_top_body">
  3308. <dl>
  3309. <dt>Form</dt>
  3310. <dd>Champion</dd>
  3311. </dl>
  3312. <dl>
  3313. <dt>Attribute</dt>
  3314. <dd>Data</dd>
  3315. </dl>
  3316. <dl>
  3317. <dt>Type</dt>
  3318. <dd>Beast</dd>
  3319. </dl>
  3320. <dl>
  3321. <dt>DP</dt>
  3322. <dd>4000</dl>
  3323. <dl>
  3324. <dt>PlayCost</dt>
  3325. <dd>4</dd>
  3326. </dl>
  3327. <dl>
  3328. <dt>DigivolveCost1</dt>
  3329. <dd>2fromLv.3</dd>
  3330. </dl>
  3331. <dl>
  3332. <dt>DigivolveCost2</dt>
  3333. <dd>2fromLv.3</dd>
  3334. </dl>
  3335. </div>
  3336. </div>
  3337. <divclass="cardinfo_bottom">
  3338. <dl>
  3339. <dt>Effect</dt>
  3340. <dd>-</dd>
  3341. </dl>
  3342. <dl>
  3343. <dt>Digivolveeffect</dt>
  3344. <dd>[Your Turn][Once Per Turn] If this Digimon deletes an opponent's Digimon in battle, gain 1 memory.</dd>
  3345. </dl>
  3346. <dl>
  3347. <dt>Securityeffect</dt>
  3348. <dd>-</dd>
  3349. </dl>
  3350. <dl>
  3351. <dt>Notes</dt>
  3352. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3353. </div>
  3354. </div>
  3355. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3356. </div>
  3357. </div>
  3358. </li>
  3359. <liclass="image_lists_itemdatapage-2">
  3360. <aclass="card_img">
  3361. <imgsrc="../images/cardlist/card/BT12-037.png"alt="BT12-037Opossummon"></a>
  3362. <divclass="popup">
  3363. <divclass="card_detailcard_detail_yellow">
  3364. <divclass="card_detail_inner">
  3365. <ulclass="cardinfo_head">
  3366. <liclass="cardno">BT12-037</li>
  3367. <li>U</li>
  3368. <liclass="cardtype">Digimon</li>
  3369. <liclass="cardlv">Lv.4</li>
  3370. </ul>
  3371. <divclass="card_name">Opossummon</div>
  3372. <divclass="cardinfo_top">
  3373. <divclass="card_img">
  3374. <imgsrc="../images/cardlist/card/BT12-037.png"alt="BT12-037Opossummon"></div>
  3375. <divclass="cardinfo_top_body">
  3376. <dl>
  3377. <dt>Form</dt>
  3378. <dd>ArmorForm</dd>
  3379. </dl>
  3380. <dl>
  3381. <dt>Attribute</dt>
  3382. <dd>Free</dd>
  3383. </dl>
  3384. <dl>
  3385. <dt>Type</dt>
  3386. <dd>Beast</dd>
  3387. </dl>
  3388. <dl>
  3389. <dt>DP</dt>
  3390. <dd>4000</dl>
  3391. <dl>
  3392. <dt>PlayCost</dt>
  3393. <dd>5</dd>
  3394. </dl>
  3395. <dl>
  3396. <dt>DigivolveCost1</dt>
  3397. <dd>2fromLv.3</dd>
  3398. </dl>
  3399. <dl>
  3400. <dt>DigivolveCost2</dt>
  3401. <dd>-</dd>
  3402. </dl>
  3403. </div>
  3404. </div>
  3405. <divclass="cardinfo_bottom">
  3406. <dl>
  3407. <dt>Effect</dt>
  3408. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text [On Play][When Digivolving] Reveal the top 3 cards of your deck. You may play 1 [Airu Suzaki], [Ren Tobari], or [Ryouma Mogami] card among them without paying its cost. Place the remaining cards at the bottom of your deck in any order.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  3409. </dl>
  3410. <dl>
  3411. <dt>Digivolveeffect</dt>
  3412. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3413. </dl>
  3414. <dl>
  3415. <dt>Securityeffect</dt>
  3416. <dd>-</dd>
  3417. </dl>
  3418. <dl>
  3419. <dt>Notes</dt>
  3420. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3421. </div>
  3422. </div>
  3423. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3424. </div>
  3425. </div>
  3426. </li>
  3427. <liclass="image_lists_itemdatapage-2">
  3428. <aclass="card_img">
  3429. <imgsrc="../images/cardlist/card/BT12-038.png"alt="BT12-038GeoGreymon"></a>
  3430. <divclass="popup">
  3431. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3432. <divclass="card_detail_inner">
  3433. <ulclass="cardinfo_head">
  3434. <liclass="cardno">BT12-038</li>
  3435. <li>C</li>
  3436. <liclass="cardtype">Digimon</li>
  3437. <liclass="cardlv">Lv.4</li>
  3438. </ul>
  3439. <divclass="card_name">GeoGreymon</div>
  3440. <divclass="cardinfo_top">
  3441. <divclass="card_img">
  3442. <imgsrc="../images/cardlist/card/BT12-038.png"alt="BT12-038GeoGreymon"></div>
  3443. <divclass="cardinfo_top_body">
  3444. <dl>
  3445. <dt>Form</dt>
  3446. <dd>Champion</dd>
  3447. </dl>
  3448. <dl>
  3449. <dt>Attribute</dt>
  3450. <dd>Vaccine</dd>
  3451. </dl>
  3452. <dl>
  3453. <dt>Type</dt>
  3454. <dd>Dinosaur</dd>
  3455. </dl>
  3456. <dl>
  3457. <dt>DP</dt>
  3458. <dd>5000</dl>
  3459. <dl>
  3460. <dt>PlayCost</dt>
  3461. <dd>5</dd>
  3462. </dl>
  3463. <dl>
  3464. <dt>DigivolveCost1</dt>
  3465. <dd>3fromLv.3</dd>
  3466. </dl>
  3467. <dl>
  3468. <dt>DigivolveCost2</dt>
  3469. <dd>3fromLv.3</dd>
  3470. </dl>
  3471. </div>
  3472. </div>
  3473. <divclass="cardinfo_bottom">
  3474. <dl>
  3475. <dt>Effect</dt>
  3476. <dd>Digivolve: 2 from Lv.3 w/[Agumon] in name and [Dinosaur] trait [When Digivolving] If you don't have a [Marcus Damon] in play, you may play 1 [Marcus Damon] from your hand without paying its cost.</dd>
  3477. </dl>
  3478. <dl>
  3479. <dt>Digivolveeffect</dt>
  3480. <dd>[Your Turn][Once Per Turn] If one of your yellow or red Tamers becomes suspended, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3481. </dl>
  3482. <dl>
  3483. <dt>Securityeffect</dt>
  3484. <dd>-</dd>
  3485. </dl>
  3486. <dl>
  3487. <dt>Notes</dt>
  3488. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3489. </div>
  3490. </div>
  3491. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3492. </div>
  3493. </div>
  3494. </li>
  3495. <liclass="image_lists_itemdatapage-2">
  3496. <aclass="card_img">
  3497. <imgsrc="../images/cardlist/card/BT12-039.png"alt="BT12-039Gokuumon"></a>
  3498. <divclass="popup">
  3499. <divclass="card_detailcard_detail_yellow">
  3500. <divclass="card_detail_inner">
  3501. <ulclass="cardinfo_head">
  3502. <liclass="cardno">BT12-039</li>
  3503. <li>C</li>
  3504. <liclass="cardtype">Digimon</li>
  3505. <liclass="cardlv">Lv.5</li>
  3506. </ul>
  3507. <divclass="card_name">Gokuumon</div>
  3508. <divclass="cardinfo_top">
  3509. <divclass="card_img">
  3510. <imgsrc="../images/cardlist/card/BT12-039.png"alt="BT12-039Gokuumon"></div>
  3511. <divclass="cardinfo_top_body">
  3512. <dl>
  3513. <dt>Form</dt>
  3514. <dd>Ultimate</dd>
  3515. </dl>
  3516. <dl>
  3517. <dt>Attribute</dt>
  3518. <dd>Virus</dd>
  3519. </dl>
  3520. <dl>
  3521. <dt>Type</dt>
  3522. <dd>Beastkin</dd>
  3523. </dl>
  3524. <dl>
  3525. <dt>DP</dt>
  3526. <dd>6000</dl>
  3527. <dl>
  3528. <dt>PlayCost</dt>
  3529. <dd>6</dd>
  3530. </dl>
  3531. <dl>
  3532. <dt>DigivolveCost1</dt>
  3533. <dd>3fromLv.4</dd>
  3534. </dl>
  3535. <dl>
  3536. <dt>DigivolveCost2</dt>
  3537. <dd>-</dd>
  3538. </dl>
  3539. </div>
  3540. </div>
  3541. <divclass="cardinfo_bottom">
  3542. <dl>
  3543. <dt>Effect</dt>
  3544. <dd>Digivolve: 3 from Lv.4 w/<Save> in text When you would play this card from your hand, if your opponent has a Digimon with <Security Attack> in play, reduce its play cost by 3.</dd>
  3545. </dl>
  3546. <dl>
  3547. <dt>Digivolveeffect</dt>
  3548. <dd>[When Attacking][Once Per Turn] Until the end of your opponent's turn, 1 of your opponent's Digimon gains <Security Attack -1>. (This Digimon checks 1 fewer security cards.)</dd>
  3549. </dl>
  3550. <dl>
  3551. <dt>Securityeffect</dt>
  3552. <dd>-</dd>
  3553. </dl>
  3554. <dl>
  3555. <dt>Notes</dt>
  3556. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3557. </div>
  3558. </div>
  3559. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3560. </div>
  3561. </div>
  3562. </li>
  3563. <liclass="image_lists_itemdatapage-2">
  3564. <aclass="card_img">
  3565. <imgsrc="../images/cardlist/card/BT12-040.png"alt="BT12-040Sagomon"></a>
  3566. <divclass="popup">
  3567. <divclass="card_detailcard_detail_yellow">
  3568. <divclass="card_detail_inner">
  3569. <ulclass="cardinfo_head">
  3570. <liclass="cardno">BT12-040</li>
  3571. <li>C</li>
  3572. <liclass="cardtype">Digimon</li>
  3573. <liclass="cardlv">Lv.5</li>
  3574. </ul>
  3575. <divclass="card_name">Sagomon</div>
  3576. <divclass="cardinfo_top">
  3577. <divclass="card_img">
  3578. <imgsrc="../images/cardlist/card/BT12-040.png"alt="BT12-040Sagomon"></div>
  3579. <divclass="cardinfo_top_body">
  3580. <dl>
  3581. <dt>Form</dt>
  3582. <dd>Ultimate</dd>
  3583. </dl>
  3584. <dl>
  3585. <dt>Attribute</dt>
  3586. <dd>Virus</dd>
  3587. </dl>
  3588. <dl>
  3589. <dt>Type</dt>
  3590. <dd>Wizard</dd>
  3591. </dl>
  3592. <dl>
  3593. <dt>DP</dt>
  3594. <dd>7000</dl>
  3595. <dl>
  3596. <dt>PlayCost</dt>
  3597. <dd>7</dd>
  3598. </dl>
  3599. <dl>
  3600. <dt>DigivolveCost1</dt>
  3601. <dd>3fromLv.4</dd>
  3602. </dl>
  3603. <dl>
  3604. <dt>DigivolveCost2</dt>
  3605. <dd>-</dd>
  3606. </dl>
  3607. </div>
  3608. </div>
  3609. <divclass="cardinfo_bottom">
  3610. <dl>
  3611. <dt>Effect</dt>
  3612. <dd>Digivolve: 3 from Lv.4 w/<Save> in text When you would play this card from your hand, if your opponent has a Digimon with <Security Attack> in play, reduce its play cost by 3.</dd>
  3613. </dl>
  3614. <dl>
  3615. <dt>Digivolveeffect</dt>
  3616. <dd>[When Attacking][Once Per Turn] Until the end of your opponent's turn, 1 of your opponent's Digimon gains <Security Attack -1>. (This Digimon checks 1 fewer security cards.)</dd>
  3617. </dl>
  3618. <dl>
  3619. <dt>Securityeffect</dt>
  3620. <dd>-</dd>
  3621. </dl>
  3622. <dl>
  3623. <dt>Notes</dt>
  3624. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3625. </div>
  3626. </div>
  3627. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3628. </div>
  3629. </div>
  3630. </li>
  3631. <liclass="image_lists_itemdatapage-2">
  3632. <aclass="card_img">
  3633. <imgsrc="../images/cardlist/card/BT12-041.png"alt="BT12-041Cho-Hakkaimon"></a>
  3634. <divclass="popup">
  3635. <divclass="card_detailcard_detail_yellow">
  3636. <divclass="card_detail_inner">
  3637. <ulclass="cardinfo_head">
  3638. <liclass="cardno">BT12-041</li>
  3639. <li>C</li>
  3640. <liclass="cardtype">Digimon</li>
  3641. <liclass="cardlv">Lv.5</li>
  3642. </ul>
  3643. <divclass="card_name">Cho-Hakkaimon</div>
  3644. <divclass="cardinfo_top">
  3645. <divclass="card_img">
  3646. <imgsrc="../images/cardlist/card/BT12-041.png"alt="BT12-041Cho-Hakkaimon"></div>
  3647. <divclass="cardinfo_top_body">
  3648. <dl>
  3649. <dt>Form</dt>
  3650. <dd>Ultimate</dd>
  3651. </dl>
  3652. <dl>
  3653. <dt>Attribute</dt>
  3654. <dd>Data</dd>
  3655. </dl>
  3656. <dl>
  3657. <dt>Type</dt>
  3658. <dd>Puppet</dd>
  3659. </dl>
  3660. <dl>
  3661. <dt>DP</dt>
  3662. <dd>7000</dl>
  3663. <dl>
  3664. <dt>PlayCost</dt>
  3665. <dd>7</dd>
  3666. </dl>
  3667. <dl>
  3668. <dt>DigivolveCost1</dt>
  3669. <dd>3fromLv.4</dd>
  3670. </dl>
  3671. <dl>
  3672. <dt>DigivolveCost2</dt>
  3673. <dd>-</dd>
  3674. </dl>
  3675. </div>
  3676. </div>
  3677. <divclass="cardinfo_bottom">
  3678. <dl>
  3679. <dt>Effect</dt>
  3680. <dd>Digivolve: 3 from Lv.4 w/<Save> in text [When Digivolving] For every 2 cards in this Digimon's digivolution cards, activate the following effect:・1 of your opponent's Digimon gets -3000 DP for the turn.[Your Turn] If an opponent's Digimon is deleted by dropping to 0 DP, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3681. </dl>
  3682. <dl>
  3683. <dt>Digivolveeffect</dt>
  3684. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3685. </dl>
  3686. <dl>
  3687. <dt>Securityeffect</dt>
  3688. <dd>-</dd>
  3689. </dl>
  3690. <dl>
  3691. <dt>Notes</dt>
  3692. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3693. </div>
  3694. </div>
  3695. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3696. </div>
  3697. </div>
  3698. </li>
  3699. <liclass="image_lists_itemdatapage-2">
  3700. <aclass="card_img">
  3701. <imgsrc="../images/cardlist/card/BT12-041_P1.png"alt="BT12-041Cho-Hakkaimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3702. </a>
  3703. <divclass="popup">
  3704. <divclass="card_detailcard_detail_yellow">
  3705. <divclass="card_detail_inner">
  3706. <ulclass="cardinfo_head">
  3707. <liclass="cardno">BT12-041</li>
  3708. <li>C</li>
  3709. <liclass="cardtype">Digimon</li>
  3710. <liclass="cardlv">Lv.5</li>
  3711. <liclass="cardtypecardParallel">AlternativeArt</li>
  3712. </ul>
  3713. <divclass="card_name">Cho-Hakkaimon</div>
  3714. <divclass="cardinfo_top">
  3715. <divclass="card_img">
  3716. <imgsrc="../images/cardlist/card/BT12-041_P1.png"alt="BT12-041Cho-Hakkaimon"></div>
  3717. <divclass="cardinfo_top_body">
  3718. <dl>
  3719. <dt>Form</dt>
  3720. <dd>Ultimate</dd>
  3721. </dl>
  3722. <dl>
  3723. <dt>Attribute</dt>
  3724. <dd>Data</dd>
  3725. </dl>
  3726. <dl>
  3727. <dt>Type</dt>
  3728. <dd>Puppet</dd>
  3729. </dl>
  3730. <dl>
  3731. <dt>DP</dt>
  3732. <dd>7000</dl>
  3733. <dl>
  3734. <dt>PlayCost</dt>
  3735. <dd>7</dd>
  3736. </dl>
  3737. <dl>
  3738. <dt>DigivolveCost1</dt>
  3739. <dd>3fromLv.4</dd>
  3740. </dl>
  3741. <dl>
  3742. <dt>DigivolveCost2</dt>
  3743. <dd>-</dd>
  3744. </dl>
  3745. </div>
  3746. </div>
  3747. <divclass="cardinfo_bottom">
  3748. <dl>
  3749. <dt>Effect</dt>
  3750. <dd>Digivolve: 3 from Lv.4 w/<Save> in text [When Digivolving] For every 2 cards in this Digimon's digivolution cards, activate the following effect:・1 of your opponent's Digimon gets -3000 DP for the turn.[Your Turn] If an opponent's Digimon is deleted by dropping to 0 DP, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3751. </dl>
  3752. <dl>
  3753. <dt>Digivolveeffect</dt>
  3754. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3755. </dl>
  3756. <dl>
  3757. <dt>Securityeffect</dt>
  3758. <dd>-</dd>
  3759. </dl>
  3760. <dl>
  3761. <dt>Notes</dt>
  3762. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  3763. </div>
  3764. </div>
  3765. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3766. </div>
  3767. </div>
  3768. </li>
  3769. <liclass="image_lists_itemdatapage-2">
  3770. <aclass="card_img">
  3771. <imgsrc="../images/cardlist/card/BT12-042.png"alt="BT12-042RizeGreymon"></a>
  3772. <divclass="popup">
  3773. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3774. <divclass="card_detail_inner">
  3775. <ulclass="cardinfo_head">
  3776. <liclass="cardno">BT12-042</li>
  3777. <li>R</li>
  3778. <liclass="cardtype">Digimon</li>
  3779. <liclass="cardlv">Lv.5</li>
  3780. </ul>
  3781. <divclass="card_name">RizeGreymon</div>
  3782. <divclass="cardinfo_top">
  3783. <divclass="card_img">
  3784. <imgsrc="../images/cardlist/card/BT12-042.png"alt="BT12-042RizeGreymon"></div>
  3785. <divclass="cardinfo_top_body">
  3786. <dl>
  3787. <dt>Form</dt>
  3788. <dd>Ultimate</dd>
  3789. </dl>
  3790. <dl>
  3791. <dt>Attribute</dt>
  3792. <dd>Vaccine</dd>
  3793. </dl>
  3794. <dl>
  3795. <dt>Type</dt>
  3796. <dd>Cyborg</dd>
  3797. </dl>
  3798. <dl>
  3799. <dt>DP</dt>
  3800. <dd>7000</dl>
  3801. <dl>
  3802. <dt>PlayCost</dt>
  3803. <dd>7</dd>
  3804. </dl>
  3805. <dl>
  3806. <dt>DigivolveCost1</dt>
  3807. <dd>4fromLv.4</dd>
  3808. </dl>
  3809. <dl>
  3810. <dt>DigivolveCost2</dt>
  3811. <dd>4fromLv.4</dd>
  3812. </dl>
  3813. </div>
  3814. </div>
  3815. <divclass="cardinfo_bottom">
  3816. <dl>
  3817. <dt>Effect</dt>
  3818. <dd>Digivolve: 3 from [GeoGreymon][When Digivolving] If you have a yellow or red Tamer in play, gain 1 memory.[All Turns][Once Per Turn] If one of your Tamers is deleted, place 1 [Marcus Damon] from your trash on top of your security stack face down.</dd>
  3819. </dl>
  3820. <dl>
  3821. <dt>Digivolveeffect</dt>
  3822. <dd>[All Turns][Once Per Turn] If one of your Tamers is deleted, place 1 [Marcus Damon] from your trash on top of your security stack face down.</dd>
  3823. </dl>
  3824. <dl>
  3825. <dt>Securityeffect</dt>
  3826. <dd>-</dd>
  3827. </dl>
  3828. <dl>
  3829. <dt>Notes</dt>
  3830. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3831. </div>
  3832. </div>
  3833. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3834. </div>
  3835. </div>
  3836. </li>
  3837. <liclass="image_lists_itemdatapage-2">
  3838. <aclass="card_img">
  3839. <imgsrc="../images/cardlist/card/BT12-043.png"alt="BT12-043ShineGreymon"></a>
  3840. <divclass="popup">
  3841. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3842. <divclass="card_detail_inner">
  3843. <ulclass="cardinfo_head">
  3844. <liclass="cardno">BT12-043</li>
  3845. <li>SR</li>
  3846. <liclass="cardtype">Digimon</li>
  3847. <liclass="cardlv">Lv.6</li>
  3848. </ul>
  3849. <divclass="card_name">ShineGreymon</div>
  3850. <divclass="cardinfo_top">
  3851. <divclass="card_img">
  3852. <imgsrc="../images/cardlist/card/BT12-043.png"alt="BT12-043ShineGreymon"></div>
  3853. <divclass="cardinfo_top_body">
  3854. <dl>
  3855. <dt>Form</dt>
  3856. <dd>Mega</dd>
  3857. </dl>
  3858. <dl>
  3859. <dt>Attribute</dt>
  3860. <dd>Vaccine</dd>
  3861. </dl>
  3862. <dl>
  3863. <dt>Type</dt>
  3864. <dd>LightDragon</dd>
  3865. </dl>
  3866. <dl>
  3867. <dt>DP</dt>
  3868. <dd>12000</dl>
  3869. <dl>
  3870. <dt>PlayCost</dt>
  3871. <dd>12</dd>
  3872. </dl>
  3873. <dl>
  3874. <dt>DigivolveCost1</dt>
  3875. <dd>4fromLv.5</dd>
  3876. </dl>
  3877. <dl>
  3878. <dt>DigivolveCost2</dt>
  3879. <dd>4fromLv.5</dd>
  3880. </dl>
  3881. </div>
  3882. </div>
  3883. <divclass="cardinfo_bottom">
  3884. <dl>
  3885. <dt>Effect</dt>
  3886. <dd>Digivolve: 3 from Lv.5 w/[RizeGreymon] in name [When Digivolving] For each yellow or red Tamer you have in play, 1 of your opponent's Digimon and all of your opponent's Security Digimon get -3000 DP for the turn.[Your Turn] All of your [Marcus Damon] cards in play get +3000 DP and <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  3887. </dl>
  3888. <dl>
  3889. <dt>Digivolveeffect</dt>
  3890. <dd>-</dd>
  3891. </dl>
  3892. <dl>
  3893. <dt>Securityeffect</dt>
  3894. <dd>-</dd>
  3895. </dl>
  3896. <dl>
  3897. <dt>Notes</dt>
  3898. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3899. </div>
  3900. </div>
  3901. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3902. </div>
  3903. </div>
  3904. </li>
  3905. <liclass="image_lists_itemdatapage-2">
  3906. <aclass="card_img">
  3907. <imgsrc="../images/cardlist/card/BT12-043_P1.png"alt="BT12-043ShineGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3908. </a>
  3909. <divclass="popup">
  3910. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3911. <divclass="card_detail_inner">
  3912. <ulclass="cardinfo_head">
  3913. <liclass="cardno">BT12-043</li>
  3914. <li>SR</li>
  3915. <liclass="cardtype">Digimon</li>
  3916. <liclass="cardlv">Lv.6</li>
  3917. <liclass="cardtypecardParallel">AlternativeArt</li>
  3918. </ul>
  3919. <divclass="card_name">ShineGreymon</div>
  3920. <divclass="cardinfo_top">
  3921. <divclass="card_img">
  3922. <imgsrc="../images/cardlist/card/BT12-043_P1.png"alt="BT12-043ShineGreymon"></div>
  3923. <divclass="cardinfo_top_body">
  3924. <dl>
  3925. <dt>Form</dt>
  3926. <dd>Mega</dd>
  3927. </dl>
  3928. <dl>
  3929. <dt>Attribute</dt>
  3930. <dd>Vaccine</dd>
  3931. </dl>
  3932. <dl>
  3933. <dt>Type</dt>
  3934. <dd>LightDragon</dd>
  3935. </dl>
  3936. <dl>
  3937. <dt>DP</dt>
  3938. <dd>12000</dl>
  3939. <dl>
  3940. <dt>PlayCost</dt>
  3941. <dd>12</dd>
  3942. </dl>
  3943. <dl>
  3944. <dt>DigivolveCost1</dt>
  3945. <dd>4fromLv.5</dd>
  3946. </dl>
  3947. <dl>
  3948. <dt>DigivolveCost2</dt>
  3949. <dd>4fromLv.5</dd>
  3950. </dl>
  3951. </div>
  3952. </div>
  3953. <divclass="cardinfo_bottom">
  3954. <dl>
  3955. <dt>Effect</dt>
  3956. <dd>Digivolve: 3 from Lv.5 w/[RizeGreymon] in name [When Digivolving] For each yellow or red Tamer you have in play, 1 of your opponent's Digimon and all of your opponent's Security Digimon get -3000 DP for the turn.[Your Turn] All of your [Marcus Damon] cards in play get +3000 DP and <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  3957. </dl>
  3958. <dl>
  3959. <dt>Digivolveeffect</dt>
  3960. <dd>-</dd>
  3961. </dl>
  3962. <dl>
  3963. <dt>Securityeffect</dt>
  3964. <dd>-</dd>
  3965. </dl>
  3966. <dl>
  3967. <dt>Notes</dt>
  3968. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  3969. </div>
  3970. </div>
  3971. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3972. </div>
  3973. </div>
  3974. </li>
  3975. <liclass="image_lists_itemdatapage-2">
  3976. <aclass="card_img">
  3977. <imgsrc="../images/cardlist/card/BT12-044.png"alt="BT12-044Lampmon"></a>
  3978. <divclass="popup">
  3979. <divclass="card_detailcard_detail_yellow">
  3980. <divclass="card_detail_inner">
  3981. <ulclass="cardinfo_head">
  3982. <liclass="cardno">BT12-044</li>
  3983. <li>U</li>
  3984. <liclass="cardtype">Digimon</li>
  3985. <liclass="cardlv">Lv.6</li>
  3986. </ul>
  3987. <divclass="card_name">Lampmon</div>
  3988. <divclass="cardinfo_top">
  3989. <divclass="card_img">
  3990. <imgsrc="../images/cardlist/card/BT12-044.png"alt="BT12-044Lampmon"></div>
  3991. <divclass="cardinfo_top_body">
  3992. <dl>
  3993. <dt>Form</dt>
  3994. <dd>Mega</dd>
  3995. </dl>
  3996. <dl>
  3997. <dt>Attribute</dt>
  3998. <dd>Data</dd>
  3999. </dl>
  4000. <dl>
  4001. <dt>Type</dt>
  4002. <dd>Wizard</dd>
  4003. </dl>
  4004. <dl>
  4005. <dt>DP</dt>
  4006. <dd>11000</dl>
  4007. <dl>
  4008. <dt>PlayCost</dt>
  4009. <dd>12</dd>
  4010. </dl>
  4011. <dl>
  4012. <dt>DigivolveCost1</dt>
  4013. <dd>3fromLv.5</dd>
  4014. </dl>
  4015. <dl>
  4016. <dt>DigivolveCost2</dt>
  4017. <dd>-</dd>
  4018. </dl>
  4019. </div>
  4020. </div>
  4021. <divclass="cardinfo_bottom">
  4022. <dl>
  4023. <dt>Effect</dt>
  4024. <dd>[When Digivolving] Until the end of your opponent's turn, 1 of your opponent's Digimon gains <Security Attack -2>. (This Digimon checks 2 fewer security cards.)[Your Turn] This Digimon gains <Security Attack +1> (This Digimon checks 1 additional security card) for each of your opponent's Digimon with <Security Attack>. </dd>
  4025. </dl>
  4026. <dl>
  4027. <dt>Digivolveeffect</dt>
  4028. <dd>-</dd>
  4029. </dl>
  4030. <dl>
  4031. <dt>Securityeffect</dt>
  4032. <dd>-</dd>
  4033. </dl>
  4034. <dl>
  4035. <dt>Notes</dt>
  4036. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4037. </div>
  4038. </div>
  4039. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4040. </div>
  4041. </div>
  4042. </li>
  4043. <liclass="image_lists_itemdatapage-2">
  4044. <aclass="card_img">
  4045. <imgsrc="../images/cardlist/card/BT12-045.png"alt="BT12-045EbiBurgamon"></a>
  4046. <divclass="popup">
  4047. <divclass="card_detailcard_detail_green">
  4048. <divclass="card_detail_inner">
  4049. <ulclass="cardinfo_head">
  4050. <liclass="cardno">BT12-045</li>
  4051. <li>C</li>
  4052. <liclass="cardtype">Digimon</li>
  4053. <liclass="cardlv">Lv.3</li>
  4054. </ul>
  4055. <divclass="card_name">EbiBurgamon</div>
  4056. <divclass="cardinfo_top">
  4057. <divclass="card_img">
  4058. <imgsrc="../images/cardlist/card/BT12-045.png"alt="BT12-045EbiBurgamon"></div>
  4059. <divclass="cardinfo_top_body">
  4060. <dl>
  4061. <dt>Form</dt>
  4062. <dd>Rookie</dd>
  4063. </dl>
  4064. <dl>
  4065. <dt>Attribute</dt>
  4066. <dd>Data</dd>
  4067. </dl>
  4068. <dl>
  4069. <dt>Type</dt>
  4070. <dd>Food</dd>
  4071. </dl>
  4072. <dl>
  4073. <dt>DP</dt>
  4074. <dd>2000</dl>
  4075. <dl>
  4076. <dt>PlayCost</dt>
  4077. <dd>3</dd>
  4078. </dl>
  4079. <dl>
  4080. <dt>DigivolveCost1</dt>
  4081. <dd>0fromLv.2</dd>
  4082. </dl>
  4083. <dl>
  4084. <dt>DigivolveCost2</dt>
  4085. <dd>-</dd>
  4086. </dl>
  4087. </div>
  4088. </div>
  4089. <divclass="cardinfo_bottom">
  4090. <dl>
  4091. <dt>Effect</dt>
  4092. <dd>[On Play] Reveal 1 card from the top of your deck. Add it to your hand if it's a green Digimon card. Otherwise, place it at the bottom of your deck.</dd>
  4093. </dl>
  4094. <dl>
  4095. <dt>Digivolveeffect</dt>
  4096. <dd>-</dd>
  4097. </dl>
  4098. <dl>
  4099. <dt>Securityeffect</dt>
  4100. <dd>-</dd>
  4101. </dl>
  4102. <dl>
  4103. <dt>Notes</dt>
  4104. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4105. </div>
  4106. </div>
  4107. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4108. </div>
  4109. </div>
  4110. </li>
  4111. <liclass="image_lists_itemdatapage-2">
  4112. <aclass="card_img">
  4113. <imgsrc="../images/cardlist/card/BT12-046.png"alt="BT12-046Burgamon"></a>
  4114. <divclass="popup">
  4115. <divclass="card_detailcard_detail_green">
  4116. <divclass="card_detail_inner">
  4117. <ulclass="cardinfo_head">
  4118. <liclass="cardno">BT12-046</li>
  4119. <li>C</li>
  4120. <liclass="cardtype">Digimon</li>
  4121. <liclass="cardlv">Lv.3</li>
  4122. </ul>
  4123. <divclass="card_name">Burgamon</div>
  4124. <divclass="cardinfo_top">
  4125. <divclass="card_img">
  4126. <imgsrc="../images/cardlist/card/BT12-046.png"alt="BT12-046Burgamon"></div>
  4127. <divclass="cardinfo_top_body">
  4128. <dl>
  4129. <dt>Form</dt>
  4130. <dd>Rookie</dd>
  4131. </dl>
  4132. <dl>
  4133. <dt>Attribute</dt>
  4134. <dd>Vaccine</dd>
  4135. </dl>
  4136. <dl>
  4137. <dt>Type</dt>
  4138. <dd>Food</dd>
  4139. </dl>
  4140. <dl>
  4141. <dt>DP</dt>
  4142. <dd>4000</dl>
  4143. <dl>
  4144. <dt>PlayCost</dt>
  4145. <dd>3</dd>
  4146. </dl>
  4147. <dl>
  4148. <dt>DigivolveCost1</dt>
  4149. <dd>0fromLv.2</dd>
  4150. </dl>
  4151. <dl>
  4152. <dt>DigivolveCost2</dt>
  4153. <dd>-</dd>
  4154. </dl>
  4155. </div>
  4156. </div>
  4157. <divclass="cardinfo_bottom">
  4158. <dl>
  4159. <dt>Effect</dt>
  4160. <dd>-</dd>
  4161. </dl>
  4162. <dl>
  4163. <dt>Digivolveeffect</dt>
  4164. <dd>-</dd>
  4165. </dl>
  4166. <dl>
  4167. <dt>Securityeffect</dt>
  4168. <dd>-</dd>
  4169. </dl>
  4170. <dl>
  4171. <dt>Notes</dt>
  4172. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4173. </div>
  4174. </div>
  4175. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4176. </div>
  4177. </div>
  4178. </li>
  4179. <liclass="image_lists_itemdatapage-2">
  4180. <aclass="card_img">
  4181. <imgsrc="../images/cardlist/card/BT12-047.png"alt="BT12-047Wormmon"></a>
  4182. <divclass="popup">
  4183. <divclass="card_detailcard_detail_green">
  4184. <divclass="card_detail_inner">
  4185. <ulclass="cardinfo_head">
  4186. <liclass="cardno">BT12-047</li>
  4187. <li>U</li>
  4188. <liclass="cardtype">Digimon</li>
  4189. <liclass="cardlv">Lv.3</li>
  4190. </ul>
  4191. <divclass="card_name">Wormmon</div>
  4192. <divclass="cardinfo_top">
  4193. <divclass="card_img">
  4194. <imgsrc="../images/cardlist/card/BT12-047.png"alt="BT12-047Wormmon"></div>
  4195. <divclass="cardinfo_top_body">
  4196. <dl>
  4197. <dt>Form</dt>
  4198. <dd>Rookie</dd>
  4199. </dl>
  4200. <dl>
  4201. <dt>Attribute</dt>
  4202. <dd>Free</dd>
  4203. </dl>
  4204. <dl>
  4205. <dt>Type</dt>
  4206. <dd>Larva</dd>
  4207. </dl>
  4208. <dl>
  4209. <dt>DP</dt>
  4210. <dd>1000</dl>
  4211. <dl>
  4212. <dt>PlayCost</dt>
  4213. <dd>3</dd>
  4214. </dl>
  4215. <dl>
  4216. <dt>DigivolveCost1</dt>
  4217. <dd>0fromLv.2</dd>
  4218. </dl>
  4219. <dl>
  4220. <dt>DigivolveCost2</dt>
  4221. <dd>0fromLv.2</dd>
  4222. </dl>
  4223. </div>
  4224. </div>
  4225. <divclass="cardinfo_bottom">
  4226. <dl>
  4227. <dt>Effect</dt>
  4228. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [Imperialdramon] in its name or a [Free] trait and 1 Tamer card with [Ken Ichijoji] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4229. </dl>
  4230. <dl>
  4231. <dt>Digivolveeffect</dt>
  4232. <dd>[End of Your Turn] You may DNA digivolve this Digimon and one of your other Digimon into a Digimon card in your hand by paying its cost.</dd>
  4233. </dl>
  4234. <dl>
  4235. <dt>Securityeffect</dt>
  4236. <dd>-</dd>
  4237. </dl>
  4238. <dl>
  4239. <dt>Notes</dt>
  4240. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4241. </div>
  4242. </div>
  4243. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4244. </div>
  4245. </div>
  4246. </li>
  4247. <liclass="image_lists_itemdatapage-2">
  4248. <aclass="card_img">
  4249. <imgsrc="../images/cardlist/card/BT12-048.png"alt="BT12-048Dracmon"></a>
  4250. <divclass="popup">
  4251. <divclass="card_detailcard_detail_green">
  4252. <divclass="card_detail_inner">
  4253. <ulclass="cardinfo_head">
  4254. <liclass="cardno">BT12-048</li>
  4255. <li>U</li>
  4256. <liclass="cardtype">Digimon</li>
  4257. <liclass="cardlv">Lv.3</li>
  4258. </ul>
  4259. <divclass="card_name">Dracmon</div>
  4260. <divclass="cardinfo_top">
  4261. <divclass="card_img">
  4262. <imgsrc="../images/cardlist/card/BT12-048.png"alt="BT12-048Dracmon"></div>
  4263. <divclass="cardinfo_top_body">
  4264. <dl>
  4265. <dt>Form</dt>
  4266. <dd>Rookie</dd>
  4267. </dl>
  4268. <dl>
  4269. <dt>Attribute</dt>
  4270. <dd>Virus</dd>
  4271. </dl>
  4272. <dl>
  4273. <dt>Type</dt>
  4274. <dd>Undead</dd>
  4275. </dl>
  4276. <dl>
  4277. <dt>DP</dt>
  4278. <dd>1000</dl>
  4279. <dl>
  4280. <dt>PlayCost</dt>
  4281. <dd>4</dd>
  4282. </dl>
  4283. <dl>
  4284. <dt>DigivolveCost1</dt>
  4285. <dd>0fromLv.2</dd>
  4286. </dl>
  4287. <dl>
  4288. <dt>DigivolveCost2</dt>
  4289. <dd>-</dd>
  4290. </dl>
  4291. </div>
  4292. </div>
  4293. <divclass="cardinfo_bottom">
  4294. <dl>
  4295. <dt>Effect</dt>
  4296. <dd>Digivolve: 0 from Lv.2 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text [On Play] By revealing up to 3 Tamer cards from your hand and placing all of the revealed cards at the bottom of your deck in any order, <Draw 1> for each card placed.[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  4297. </dl>
  4298. <dl>
  4299. <dt>Digivolveeffect</dt>
  4300. <dd>[Your Turn] While this Digimon has <Save> in its text, it gets +2000 DP.</dd>
  4301. </dl>
  4302. <dl>
  4303. <dt>Securityeffect</dt>
  4304. <dd>-</dd>
  4305. </dl>
  4306. <dl>
  4307. <dt>Notes</dt>
  4308. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4309. </div>
  4310. </div>
  4311. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4312. </div>
  4313. </div>
  4314. </li>
  4315. <liclass="image_lists_itemdatapage-2">
  4316. <aclass="card_img">
  4317. <imgsrc="../images/cardlist/card/BT12-049.png"alt="BT12-049Yakiimon"></a>
  4318. <divclass="popup">
  4319. <divclass="card_detailcard_detail_green">
  4320. <divclass="card_detail_inner">
  4321. <ulclass="cardinfo_head">
  4322. <liclass="cardno">BT12-049</li>
  4323. <li>C</li>
  4324. <liclass="cardtype">Digimon</li>
  4325. <liclass="cardlv">Lv.4</li>
  4326. </ul>
  4327. <divclass="card_name">Yakiimon</div>
  4328. <divclass="cardinfo_top">
  4329. <divclass="card_img">
  4330. <imgsrc="../images/cardlist/card/BT12-049.png"alt="BT12-049Yakiimon"></div>
  4331. <divclass="cardinfo_top_body">
  4332. <dl>
  4333. <dt>Form</dt>
  4334. <dd>Champion</dd>
  4335. </dl>
  4336. <dl>
  4337. <dt>Attribute</dt>
  4338. <dd>Vaccine</dd>
  4339. </dl>
  4340. <dl>
  4341. <dt>Type</dt>
  4342. <dd>Vegetation</dd>
  4343. </dl>
  4344. <dl>
  4345. <dt>DP</dt>
  4346. <dd>3000</dl>
  4347. <dl>
  4348. <dt>PlayCost</dt>
  4349. <dd>3</dd>
  4350. </dl>
  4351. <dl>
  4352. <dt>DigivolveCost1</dt>
  4353. <dd>2fromLv.3</dd>
  4354. </dl>
  4355. <dl>
  4356. <dt>DigivolveCost2</dt>
  4357. <dd>-</dd>
  4358. </dl>
  4359. </div>
  4360. </div>
  4361. <divclass="cardinfo_bottom">
  4362. <dl>
  4363. <dt>Effect</dt>
  4364. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  4365. </dl>
  4366. <dl>
  4367. <dt>Digivolveeffect</dt>
  4368. <dd>-</dd>
  4369. </dl>
  4370. <dl>
  4371. <dt>Securityeffect</dt>
  4372. <dd>-</dd>
  4373. </dl>
  4374. <dl>
  4375. <dt>Notes</dt>
  4376. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4377. </div>
  4378. </div>
  4379. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4380. </div>
  4381. </div>
  4382. </li>
  4383. <liclass="image_lists_itemdatapage-2">
  4384. <aclass="card_img">
  4385. <imgsrc="../images/cardlist/card/BT12-050.png"alt="BT12-050Stingmon"></a>
  4386. <divclass="popup">
  4387. <divclass="card_detailcard_detail_green">
  4388. <divclass="card_detail_inner">
  4389. <ulclass="cardinfo_head">
  4390. <liclass="cardno">BT12-050</li>
  4391. <li>U</li>
  4392. <liclass="cardtype">Digimon</li>
  4393. <liclass="cardlv">Lv.4</li>
  4394. </ul>
  4395. <divclass="card_name">Stingmon</div>
  4396. <divclass="cardinfo_top">
  4397. <divclass="card_img">
  4398. <imgsrc="../images/cardlist/card/BT12-050.png"alt="BT12-050Stingmon"></div>
  4399. <divclass="cardinfo_top_body">
  4400. <dl>
  4401. <dt>Form</dt>
  4402. <dd>Champion</dd>
  4403. </dl>
  4404. <dl>
  4405. <dt>Attribute</dt>
  4406. <dd>Free</dd>
  4407. </dl>
  4408. <dl>
  4409. <dt>Type</dt>
  4410. <dd>Insectoid</dd>
  4411. </dl>
  4412. <dl>
  4413. <dt>DP</dt>
  4414. <dd>4000</dl>
  4415. <dl>
  4416. <dt>PlayCost</dt>
  4417. <dd>4</dd>
  4418. </dl>
  4419. <dl>
  4420. <dt>DigivolveCost1</dt>
  4421. <dd>2fromLv.3</dd>
  4422. </dl>
  4423. <dl>
  4424. <dt>DigivolveCost2</dt>
  4425. <dd>2fromLv.3</dd>
  4426. </dl>
  4427. </div>
  4428. </div>
  4429. <divclass="cardinfo_bottom">
  4430. <dl>
  4431. <dt>Effect</dt>
  4432. <dd>[Your Turn] If this Digimon DNA digivolves into a blue Digimon card, gain 1 memory.</dd>
  4433. </dl>
  4434. <dl>
  4435. <dt>Digivolveeffect</dt>
  4436. <dd>[Your Turn] While this Digimon has [Imperialdramon] in its name or a [Free] trait, it gains <Piercing>.</dd>
  4437. </dl>
  4438. <dl>
  4439. <dt>Securityeffect</dt>
  4440. <dd>-</dd>
  4441. </dl>
  4442. <dl>
  4443. <dt>Notes</dt>
  4444. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4445. </div>
  4446. </div>
  4447. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4448. </div>
  4449. </div>
  4450. </li>
  4451. <liclass="image_lists_itemdatapage-2">
  4452. <aclass="card_img">
  4453. <imgsrc="../images/cardlist/card/BT12-051.png"alt="BT12-051Yasyamon"></a>
  4454. <divclass="popup">
  4455. <divclass="card_detailcard_detail_green">
  4456. <divclass="card_detail_inner">
  4457. <ulclass="cardinfo_head">
  4458. <liclass="cardno">BT12-051</li>
  4459. <li>C</li>
  4460. <liclass="cardtype">Digimon</li>
  4461. <liclass="cardlv">Lv.4</li>
  4462. </ul>
  4463. <divclass="card_name">Yasyamon</div>
  4464. <divclass="cardinfo_top">
  4465. <divclass="card_img">
  4466. <imgsrc="../images/cardlist/card/BT12-051.png"alt="BT12-051Yasyamon"></div>
  4467. <divclass="cardinfo_top_body">
  4468. <dl>
  4469. <dt>Form</dt>
  4470. <dd>ArmorForm</dd>
  4471. </dl>
  4472. <dl>
  4473. <dt>Attribute</dt>
  4474. <dd>Free</dd>
  4475. </dl>
  4476. <dl>
  4477. <dt>Type</dt>
  4478. <dd>Wizard</dd>
  4479. </dl>
  4480. <dl>
  4481. <dt>DP</dt>
  4482. <dd>4000</dl>
  4483. <dl>
  4484. <dt>PlayCost</dt>
  4485. <dd>5</dd>
  4486. </dl>
  4487. <dl>
  4488. <dt>DigivolveCost1</dt>
  4489. <dd>2fromLv.3</dd>
  4490. </dl>
  4491. <dl>
  4492. <dt>DigivolveCost2</dt>
  4493. <dd>-</dd>
  4494. </dl>
  4495. </div>
  4496. </div>
  4497. <divclass="cardinfo_bottom">
  4498. <dl>
  4499. <dt>Effect</dt>
  4500. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text [On Play][When Digivolving] You may play 1 [Airu Suzaki], [Ren Tobari], or [Ryouma Mogami] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  4501. </dl>
  4502. <dl>
  4503. <dt>Digivolveeffect</dt>
  4504. <dd>[Your Turn] While this Digimon has <Save> in its text, it gets +2000 DP.</dd>
  4505. </dl>
  4506. <dl>
  4507. <dt>Securityeffect</dt>
  4508. <dd>-</dd>
  4509. </dl>
  4510. <dl>
  4511. <dt>Notes</dt>
  4512. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4513. </div>
  4514. </div>
  4515. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4516. </div>
  4517. </div>
  4518. </li>
  4519. <liclass="image_lists_itemdatapage-2">
  4520. <aclass="card_img">
  4521. <imgsrc="../images/cardlist/card/BT12-051_P1.png"alt="BT12-051Yasyamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4522. </a>
  4523. <divclass="popup">
  4524. <divclass="card_detailcard_detail_green">
  4525. <divclass="card_detail_inner">
  4526. <ulclass="cardinfo_head">
  4527. <liclass="cardno">BT12-051</li>
  4528. <li>C</li>
  4529. <liclass="cardtype">Digimon</li>
  4530. <liclass="cardlv">Lv.4</li>
  4531. <liclass="cardtypecardParallel">AlternativeArt</li>
  4532. </ul>
  4533. <divclass="card_name">Yasyamon</div>
  4534. <divclass="cardinfo_top">
  4535. <divclass="card_img">
  4536. <imgsrc="../images/cardlist/card/BT12-051_P1.png"alt="BT12-051Yasyamon"></div>
  4537. <divclass="cardinfo_top_body">
  4538. <dl>
  4539. <dt>Form</dt>
  4540. <dd>ArmorForm</dd>
  4541. </dl>
  4542. <dl>
  4543. <dt>Attribute</dt>
  4544. <dd>Free</dd>
  4545. </dl>
  4546. <dl>
  4547. <dt>Type</dt>
  4548. <dd>Wizard</dd>
  4549. </dl>
  4550. <dl>
  4551. <dt>DP</dt>
  4552. <dd>4000</dl>
  4553. <dl>
  4554. <dt>PlayCost</dt>
  4555. <dd>5</dd>
  4556. </dl>
  4557. <dl>
  4558. <dt>DigivolveCost1</dt>
  4559. <dd>2fromLv.3</dd>
  4560. </dl>
  4561. <dl>
  4562. <dt>DigivolveCost2</dt>
  4563. <dd>-</dd>
  4564. </dl>
  4565. </div>
  4566. </div>
  4567. <divclass="cardinfo_bottom">
  4568. <dl>
  4569. <dt>Effect</dt>
  4570. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text [On Play][When Digivolving] You may play 1 [Airu Suzaki], [Ren Tobari], or [Ryouma Mogami] card from your hand without paying its cost.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  4571. </dl>
  4572. <dl>
  4573. <dt>Digivolveeffect</dt>
  4574. <dd>[Your Turn] While this Digimon has <Save> in its text, it gets +2000 DP.</dd>
  4575. </dl>
  4576. <dl>
  4577. <dt>Securityeffect</dt>
  4578. <dd>-</dd>
  4579. </dl>
  4580. <dl>
  4581. <dt>Notes</dt>
  4582. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  4583. </div>
  4584. </div>
  4585. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4586. </div>
  4587. </div>
  4588. </li>
  4589. <liclass="image_lists_itemdatapage-2">
  4590. <aclass="card_img">
  4591. <imgsrc="../images/cardlist/card/BT12-052.png"alt="BT12-052Potamon"></a>
  4592. <divclass="popup">
  4593. <divclass="card_detailcard_detail_green">
  4594. <divclass="card_detail_inner">
  4595. <ulclass="cardinfo_head">
  4596. <liclass="cardno">BT12-052</li>
  4597. <li>C</li>
  4598. <liclass="cardtype">Digimon</li>
  4599. <liclass="cardlv">Lv.4</li>
  4600. </ul>
  4601. <divclass="card_name">Potamon</div>
  4602. <divclass="cardinfo_top">
  4603. <divclass="card_img">
  4604. <imgsrc="../images/cardlist/card/BT12-052.png"alt="BT12-052Potamon"></div>
  4605. <divclass="cardinfo_top_body">
  4606. <dl>
  4607. <dt>Form</dt>
  4608. <dd>Champion</dd>
  4609. </dl>
  4610. <dl>
  4611. <dt>Attribute</dt>
  4612. <dd>Vaccine</dd>
  4613. </dl>
  4614. <dl>
  4615. <dt>Type</dt>
  4616. <dd>Food</dd>
  4617. </dl>
  4618. <dl>
  4619. <dt>DP</dt>
  4620. <dd>6000</dl>
  4621. <dl>
  4622. <dt>PlayCost</dt>
  4623. <dd>6</dd>
  4624. </dl>
  4625. <dl>
  4626. <dt>DigivolveCost1</dt>
  4627. <dd>1fromLv.3</dd>
  4628. </dl>
  4629. <dl>
  4630. <dt>DigivolveCost2</dt>
  4631. <dd>-</dd>
  4632. </dl>
  4633. </div>
  4634. </div>
  4635. <divclass="cardinfo_bottom">
  4636. <dl>
  4637. <dt>Effect</dt>
  4638. <dd>-</dd>
  4639. </dl>
  4640. <dl>
  4641. <dt>Digivolveeffect</dt>
  4642. <dd>-</dd>
  4643. </dl>
  4644. <dl>
  4645. <dt>Securityeffect</dt>
  4646. <dd>-</dd>
  4647. </dl>
  4648. <dl>
  4649. <dt>Notes</dt>
  4650. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4651. </div>
  4652. </div>
  4653. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4654. </div>
  4655. </div>
  4656. </li>
  4657. <liclass="image_lists_itemdatapage-2">
  4658. <aclass="card_img">
  4659. <imgsrc="../images/cardlist/card/BT12-053.png"alt="BT12-053MetallifeKuwagamon"></a>
  4660. <divclass="popup">
  4661. <divclass="card_detailcard_detail_green">
  4662. <divclass="card_detail_inner">
  4663. <ulclass="cardinfo_head">
  4664. <liclass="cardno">BT12-053</li>
  4665. <li>C</li>
  4666. <liclass="cardtype">Digimon</li>
  4667. <liclass="cardlv">Lv.5</li>
  4668. </ul>
  4669. <divclass="card_name">MetallifeKuwagamon</div>
  4670. <divclass="cardinfo_top">
  4671. <divclass="card_img">
  4672. <imgsrc="../images/cardlist/card/BT12-053.png"alt="BT12-053MetallifeKuwagamon"></div>
  4673. <divclass="cardinfo_top_body">
  4674. <dl>
  4675. <dt>Form</dt>
  4676. <dd>Ultimate</dd>
  4677. </dl>
  4678. <dl>
  4679. <dt>Attribute</dt>
  4680. <dd>Virus</dd>
  4681. </dl>
  4682. <dl>
  4683. <dt>Type</dt>
  4684. <dd>Insectoid</dd>
  4685. </dl>
  4686. <dl>
  4687. <dt>DP</dt>
  4688. <dd>7000</dl>
  4689. <dl>
  4690. <dt>PlayCost</dt>
  4691. <dd>6</dd>
  4692. </dl>
  4693. <dl>
  4694. <dt>DigivolveCost1</dt>
  4695. <dd>3fromLv.4</dd>
  4696. </dl>
  4697. <dl>
  4698. <dt>DigivolveCost2</dt>
  4699. <dd>-</dd>
  4700. </dl>
  4701. </div>
  4702. </div>
  4703. <divclass="cardinfo_bottom">
  4704. <dl>
  4705. <dt>Effect</dt>
  4706. <dd>Digivolve: 3 from Lv.4 w/<Save> in text</dd>
  4707. </dl>
  4708. <dl>
  4709. <dt>Digivolveeffect</dt>
  4710. <dd>[Your Turn][Once Per Turn] If this Digimon deletes an opponent's Digimon in battle, gain 1 memory.</dd>
  4711. </dl>
  4712. <dl>
  4713. <dt>Securityeffect</dt>
  4714. <dd>-</dd>
  4715. </dl>
  4716. <dl>
  4717. <dt>Notes</dt>
  4718. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4719. </div>
  4720. </div>
  4721. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4722. </div>
  4723. </div>
  4724. </li>
  4725. <liclass="image_lists_itemdatapage-2">
  4726. <aclass="card_img">
  4727. <imgsrc="../images/cardlist/card/BT12-054.png"alt="BT12-054Jagamon"></a>
  4728. <divclass="popup">
  4729. <divclass="card_detailcard_detail_green">
  4730. <divclass="card_detail_inner">
  4731. <ulclass="cardinfo_head">
  4732. <liclass="cardno">BT12-054</li>
  4733. <li>C</li>
  4734. <liclass="cardtype">Digimon</li>
  4735. <liclass="cardlv">Lv.5</li>
  4736. </ul>
  4737. <divclass="card_name">Jagamon</div>
  4738. <divclass="cardinfo_top">
  4739. <divclass="card_img">
  4740. <imgsrc="../images/cardlist/card/BT12-054.png"alt="BT12-054Jagamon"></div>
  4741. <divclass="cardinfo_top_body">
  4742. <dl>
  4743. <dt>Form</dt>
  4744. <dd>Ultimate</dd>
  4745. </dl>
  4746. <dl>
  4747. <dt>Attribute</dt>
  4748. <dd>Vaccine</dd>
  4749. </dl>
  4750. <dl>
  4751. <dt>Type</dt>
  4752. <dd>Vegetation</dd>
  4753. </dl>
  4754. <dl>
  4755. <dt>DP</dt>
  4756. <dd>7000</dl>
  4757. <dl>
  4758. <dt>PlayCost</dt>
  4759. <dd>7</dd>
  4760. </dl>
  4761. <dl>
  4762. <dt>DigivolveCost1</dt>
  4763. <dd>3fromLv.4</dd>
  4764. </dl>
  4765. <dl>
  4766. <dt>DigivolveCost2</dt>
  4767. <dd>-</dd>
  4768. </dl>
  4769. </div>
  4770. </div>
  4771. <divclass="cardinfo_bottom">
  4772. <dl>
  4773. <dt>Effect</dt>
  4774. <dd>[On Deletion] You may play up to 2 [Yakiimon] or [Potamon] cards from your hand without paying their costs.</dd>
  4775. </dl>
  4776. <dl>
  4777. <dt>Digivolveeffect</dt>
  4778. <dd>-</dd>
  4779. </dl>
  4780. <dl>
  4781. <dt>Securityeffect</dt>
  4782. <dd>-</dd>
  4783. </dl>
  4784. <dl>
  4785. <dt>Notes</dt>
  4786. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4787. </div>
  4788. </div>
  4789. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4790. </div>
  4791. </div>
  4792. </li>
  4793. <liclass="image_lists_itemdatapage-2">
  4794. <aclass="card_img">
  4795. <imgsrc="../images/cardlist/card/BT12-055.png"alt="BT12-055Dinobeemon"></a>
  4796. <divclass="popup">
  4797. <divclass="card_detailcard_detail_green_bluemulticolor">
  4798. <divclass="card_detail_inner">
  4799. <ulclass="cardinfo_head">
  4800. <liclass="cardno">BT12-055</li>
  4801. <li>R</li>
  4802. <liclass="cardtype">Digimon</li>
  4803. <liclass="cardlv">Lv.5</li>
  4804. </ul>
  4805. <divclass="card_name">Dinobeemon</div>
  4806. <divclass="cardinfo_top">
  4807. <divclass="card_img">
  4808. <imgsrc="../images/cardlist/card/BT12-055.png"alt="BT12-055Dinobeemon"></div>
  4809. <divclass="cardinfo_top_body">
  4810. <dl>
  4811. <dt>Form</dt>
  4812. <dd>Ultimate</dd>
  4813. </dl>
  4814. <dl>
  4815. <dt>Attribute</dt>
  4816. <dd>Free</dd>
  4817. </dl>
  4818. <dl>
  4819. <dt>Type</dt>
  4820. <dd>Mutant</dd>
  4821. </dl>
  4822. <dl>
  4823. <dt>DP</dt>
  4824. <dd>8000</dl>
  4825. <dl>
  4826. <dt>PlayCost</dt>
  4827. <dd>8</dd>
  4828. </dl>
  4829. <dl>
  4830. <dt>DigivolveCost1</dt>
  4831. <dd>4fromLv.4</dd>
  4832. </dl>
  4833. <dl>
  4834. <dt>DigivolveCost2</dt>
  4835. <dd>4fromLv.4</dd>
  4836. </dl>
  4837. </div>
  4838. </div>
  4839. <divclass="cardinfo_bottom">
  4840. <dl>
  4841. <dt>Effect</dt>
  4842. <dd>DNA Digivolution: 0 from blue Lv.4 + green Lv.4 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.[When Digivolving] If DNA digivolving, suspend 1 of your opponent’s Digimon, and this Digimon gets +3000 DP for the turn. Then, you may attack your opponent's Digimon with this Digimon.</dd>
  4843. </dl>
  4844. <dl>
  4845. <dt>Digivolveeffect</dt>
  4846. <dd>[Your Turn][Once Per Turn] If one of your Digimon that has [Imperialdramon] in its name or a [Free] trait deletes an opponent's Digimon in battle, trash the top card of your opponent's security stack.</dd>
  4847. </dl>
  4848. <dl>
  4849. <dt>Securityeffect</dt>
  4850. <dd>-</dd>
  4851. </dl>
  4852. <dl>
  4853. <dt>Notes</dt>
  4854. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4855. </div>
  4856. </div>
  4857. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4858. </div>
  4859. </div>
  4860. </li>
  4861. <liclass="image_lists_itemdatapage-2">
  4862. <aclass="card_img">
  4863. <imgsrc="../images/cardlist/card/BT12-056.png"alt="BT12-056GranKuwagamon"></a>
  4864. <divclass="popup">
  4865. <divclass="card_detailcard_detail_green">
  4866. <divclass="card_detail_inner">
  4867. <ulclass="cardinfo_head">
  4868. <liclass="cardno">BT12-056</li>
  4869. <li>R</li>
  4870. <liclass="cardtype">Digimon</li>
  4871. <liclass="cardlv">Lv.6</li>
  4872. </ul>
  4873. <divclass="card_name">GranKuwagamon</div>
  4874. <divclass="cardinfo_top">
  4875. <divclass="card_img">
  4876. <imgsrc="../images/cardlist/card/BT12-056.png"alt="BT12-056GranKuwagamon"></div>
  4877. <divclass="cardinfo_top_body">
  4878. <dl>
  4879. <dt>Form</dt>
  4880. <dd>Mega</dd>
  4881. </dl>
  4882. <dl>
  4883. <dt>Attribute</dt>
  4884. <dd>Free</dd>
  4885. </dl>
  4886. <dl>
  4887. <dt>Type</dt>
  4888. <dd>Insectoid</dd>
  4889. </dl>
  4890. <dl>
  4891. <dt>DP</dt>
  4892. <dd>12000</dl>
  4893. <dl>
  4894. <dt>PlayCost</dt>
  4895. <dd>12</dd>
  4896. </dl>
  4897. <dl>
  4898. <dt>DigivolveCost1</dt>
  4899. <dd>4fromLv.5</dd>
  4900. </dl>
  4901. <dl>
  4902. <dt>DigivolveCost2</dt>
  4903. <dd>4fromLv.5</dd>
  4904. </dl>
  4905. </div>
  4906. </div>
  4907. <divclass="cardinfo_bottom">
  4908. <dl>
  4909. <dt>Effect</dt>
  4910. <dd>Digivolve: 3 from [Dinobeemon][When Digivolving] Suspend 1 of your opponent’s Digimon. Then, you may attack your opponent's Digimon with this Digimon.[Your Turn][Once Per Turn] If an opponent's Digimon becomes suspended, gain 1 memory.</dd>
  4911. </dl>
  4912. <dl>
  4913. <dt>Digivolveeffect</dt>
  4914. <dd>-</dd>
  4915. </dl>
  4916. <dl>
  4917. <dt>Securityeffect</dt>
  4918. <dd>-</dd>
  4919. </dl>
  4920. <dl>
  4921. <dt>Notes</dt>
  4922. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4923. </div>
  4924. </div>
  4925. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4926. </div>
  4927. </div>
  4928. </li>
  4929. <liclass="image_lists_itemdatapage-2">
  4930. <aclass="card_img">
  4931. <imgsrc="../images/cardlist/card/BT12-057.png"alt="BT12-057Quartzmon"></a>
  4932. <divclass="popup">
  4933. <divclass="card_detailcard_detail_green">
  4934. <divclass="card_detail_inner">
  4935. <ulclass="cardinfo_head">
  4936. <liclass="cardno">BT12-057</li>
  4937. <li>SR</li>
  4938. <liclass="cardtype">Digimon</li>
  4939. <liclass="cardlv">Lv.7</li>
  4940. </ul>
  4941. <divclass="card_name">Quartzmon</div>
  4942. <divclass="cardinfo_top">
  4943. <divclass="card_img">
  4944. <imgsrc="../images/cardlist/card/BT12-057.png"alt="BT12-057Quartzmon"></div>
  4945. <divclass="cardinfo_top_body">
  4946. <dl>
  4947. <dt>Form</dt>
  4948. <dd>Mega</dd>
  4949. </dl>
  4950. <dl>
  4951. <dt>Attribute</dt>
  4952. <dd>Unidentified</dd>
  4953. </dl>
  4954. <dl>
  4955. <dt>Type</dt>
  4956. <dd>Unknown</dd>
  4957. </dl>
  4958. <dl>
  4959. <dt>DP</dt>
  4960. <dd>15000</dl>
  4961. <dl>
  4962. <dt>PlayCost</dt>
  4963. <dd>16</dd>
  4964. </dl>
  4965. <dl>
  4966. <dt>DigivolveCost1</dt>
  4967. <dd>6fromLv.6</dd>
  4968. </dl>
  4969. <dl>
  4970. <dt>DigivolveCost2</dt>
  4971. <dd>6fromLv.6</dd>
  4972. </dl>
  4973. </div>
  4974. </div>
  4975. <divclass="cardinfo_bottom">
  4976. <dl>
  4977. <dt>Effect</dt>
  4978. <dd>Digivolve: 9 from Lv.5 w/<Save> in text [When Digivolving] Suspend all Digimon except this one, and suspend all of you and your opponent's Tamers. Then, for every 2 suspended Digimon and Tamers, gain 1 memory.[All Turns] Other than this Digimon, all Digimon and Tamers don't unsuspend.[When Attacking] Suspend 1 of your opponent's Digimon or Tamers. Then, trash 1 card from the top of your opponent’s security stack for every 5 suspended Digimon and Tamers.</dd>
  4979. </dl>
  4980. <dl>
  4981. <dt>Digivolveeffect</dt>
  4982. <dd>-</dd>
  4983. </dl>
  4984. <dl>
  4985. <dt>Securityeffect</dt>
  4986. <dd>-</dd>
  4987. </dl>
  4988. <dl>
  4989. <dt>Notes</dt>
  4990. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  4991. </div>
  4992. </div>
  4993. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4994. </div>
  4995. </div>
  4996. </li>
  4997. <liclass="image_lists_itemdatapage-2">
  4998. <aclass="card_img">
  4999. <imgsrc="../images/cardlist/card/BT12-057_P1.png"alt="BT12-057Quartzmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5000. </a>
  5001. <divclass="popup">
  5002. <divclass="card_detailcard_detail_green">
  5003. <divclass="card_detail_inner">
  5004. <ulclass="cardinfo_head">
  5005. <liclass="cardno">BT12-057</li>
  5006. <li>SR</li>
  5007. <liclass="cardtype">Digimon</li>
  5008. <liclass="cardlv">Lv.7</li>
  5009. <liclass="cardtypecardParallel">AlternativeArt</li>
  5010. </ul>
  5011. <divclass="card_name">Quartzmon</div>
  5012. <divclass="cardinfo_top">
  5013. <divclass="card_img">
  5014. <imgsrc="../images/cardlist/card/BT12-057_P1.png"alt="BT12-057Quartzmon"></div>
  5015. <divclass="cardinfo_top_body">
  5016. <dl>
  5017. <dt>Form</dt>
  5018. <dd>Mega</dd>
  5019. </dl>
  5020. <dl>
  5021. <dt>Attribute</dt>
  5022. <dd>Unidentified</dd>
  5023. </dl>
  5024. <dl>
  5025. <dt>Type</dt>
  5026. <dd>Unknown</dd>
  5027. </dl>
  5028. <dl>
  5029. <dt>DP</dt>
  5030. <dd>15000</dl>
  5031. <dl>
  5032. <dt>PlayCost</dt>
  5033. <dd>16</dd>
  5034. </dl>
  5035. <dl>
  5036. <dt>DigivolveCost1</dt>
  5037. <dd>6fromLv.6</dd>
  5038. </dl>
  5039. <dl>
  5040. <dt>DigivolveCost2</dt>
  5041. <dd>6fromLv.6</dd>
  5042. </dl>
  5043. </div>
  5044. </div>
  5045. <divclass="cardinfo_bottom">
  5046. <dl>
  5047. <dt>Effect</dt>
  5048. <dd>Digivolve: 9 from Lv.5 w/<Save> in text [When Digivolving] Suspend all Digimon except this one, and suspend all of you and your opponent's Tamers. Then, for every 2 suspended Digimon and Tamers, gain 1 memory.[All Turns] Other than this Digimon, all Digimon and Tamers don't unsuspend.[When Attacking] Suspend 1 of your opponent's Digimon or Tamers. Then, trash 1 card from the top of your opponent’s security stack for every 5 suspended Digimon and Tamers.</dd>
  5049. </dl>
  5050. <dl>
  5051. <dt>Digivolveeffect</dt>
  5052. <dd>-</dd>
  5053. </dl>
  5054. <dl>
  5055. <dt>Securityeffect</dt>
  5056. <dd>-</dd>
  5057. </dl>
  5058. <dl>
  5059. <dt>Notes</dt>
  5060. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5061. </div>
  5062. </div>
  5063. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5064. </div>
  5065. </div>
  5066. </li>
  5067. <liclass="image_lists_itemdatapage-2">
  5068. <aclass="card_img">
  5069. <imgsrc="../images/cardlist/card/BT12-058.png"alt="BT12-058Zenimon"></a>
  5070. <divclass="popup">
  5071. <divclass="card_detailcard_detail_black">
  5072. <divclass="card_detail_inner">
  5073. <ulclass="cardinfo_head">
  5074. <liclass="cardno">BT12-058</li>
  5075. <li>C</li>
  5076. <liclass="cardtype">Digimon</li>
  5077. <liclass="cardlv">Lv.3</li>
  5078. </ul>
  5079. <divclass="card_name">Zenimon</div>
  5080. <divclass="cardinfo_top">
  5081. <divclass="card_img">
  5082. <imgsrc="../images/cardlist/card/BT12-058.png"alt="BT12-058Zenimon"></div>
  5083. <divclass="cardinfo_top_body">
  5084. <dl>
  5085. <dt>Form</dt>
  5086. <dd>Rookie</dd>
  5087. </dl>
  5088. <dl>
  5089. <dt>Attribute</dt>
  5090. <dd>Vaccine</dd>
  5091. </dl>
  5092. <dl>
  5093. <dt>Type</dt>
  5094. <dd>Mutant</dd>
  5095. </dl>
  5096. <dl>
  5097. <dt>DP</dt>
  5098. <dd>3000</dl>
  5099. <dl>
  5100. <dt>PlayCost</dt>
  5101. <dd>2</dd>
  5102. </dl>
  5103. <dl>
  5104. <dt>DigivolveCost1</dt>
  5105. <dd>0fromLv.2</dd>
  5106. </dl>
  5107. <dl>
  5108. <dt>DigivolveCost2</dt>
  5109. <dd>-</dd>
  5110. </dl>
  5111. </div>
  5112. </div>
  5113. <divclass="cardinfo_bottom">
  5114. <dl>
  5115. <dt>Effect</dt>
  5116. <dd>Digivolve: 0 from Lv.2 w/<Save> in text</dd>
  5117. </dl>
  5118. <dl>
  5119. <dt>Digivolveeffect</dt>
  5120. <dd>-</dd>
  5121. </dl>
  5122. <dl>
  5123. <dt>Securityeffect</dt>
  5124. <dd>-</dd>
  5125. </dl>
  5126. <dl>
  5127. <dt>Notes</dt>
  5128. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5129. </div>
  5130. </div>
  5131. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5132. </div>
  5133. </div>
  5134. </li>
  5135. <liclass="image_lists_itemdatapage-2">
  5136. <aclass="card_img">
  5137. <imgsrc="../images/cardlist/card/BT12-059.png"alt="BT12-059Agumon"></a>
  5138. <divclass="popup">
  5139. <divclass="card_detailcard_detail_black_redmulticolor">
  5140. <divclass="card_detail_inner">
  5141. <ulclass="cardinfo_head">
  5142. <liclass="cardno">BT12-059</li>
  5143. <li>C</li>
  5144. <liclass="cardtype">Digimon</li>
  5145. <liclass="cardlv">Lv.3</li>
  5146. </ul>
  5147. <divclass="card_name">Agumon</div>
  5148. <divclass="cardinfo_top">
  5149. <divclass="card_img">
  5150. <imgsrc="../images/cardlist/card/BT12-059.png"alt="BT12-059Agumon"></div>
  5151. <divclass="cardinfo_top_body">
  5152. <dl>
  5153. <dt>Form</dt>
  5154. <dd>Rookie</dd>
  5155. </dl>
  5156. <dl>
  5157. <dt>Attribute</dt>
  5158. <dd>Vaccine</dd>
  5159. </dl>
  5160. <dl>
  5161. <dt>Type</dt>
  5162. <dd>Reptile</dd>
  5163. </dl>
  5164. <dl>
  5165. <dt>DP</dt>
  5166. <dd>2000</dl>
  5167. <dl>
  5168. <dt>PlayCost</dt>
  5169. <dd>3</dd>
  5170. </dl>
  5171. <dl>
  5172. <dt>DigivolveCost1</dt>
  5173. <dd>1fromLv.2</dd>
  5174. </dl>
  5175. <dl>
  5176. <dt>DigivolveCost2</dt>
  5177. <dd>-</dd>
  5178. </dl>
  5179. </div>
  5180. </div>
  5181. <divclass="cardinfo_bottom">
  5182. <dl>
  5183. <dt>Effect</dt>
  5184. <dd>Digivolve: 0 from [Koromon][On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Greymon] or [Omnimon] in its name and 1 Tamer card with [Tai Kamiya] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5185. </dl>
  5186. <dl>
  5187. <dt>Digivolveeffect</dt>
  5188. <dd>[All Turns] While this Digimon has [Greymon] or [Omnimon] in its name, it gets +1000 DP.</dd>
  5189. </dl>
  5190. <dl>
  5191. <dt>Securityeffect</dt>
  5192. <dd>-</dd>
  5193. </dl>
  5194. <dl>
  5195. <dt>Notes</dt>
  5196. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5197. </div>
  5198. </div>
  5199. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5200. </div>
  5201. </div>
  5202. </li>
  5203. <liclass="image_lists_itemdatapage-2">
  5204. <aclass="card_img">
  5205. <imgsrc="../images/cardlist/card/BT12-060.png"alt="BT12-060ChuuChuumon"></a>
  5206. <divclass="popup">
  5207. <divclass="card_detailcard_detail_black">
  5208. <divclass="card_detail_inner">
  5209. <ulclass="cardinfo_head">
  5210. <liclass="cardno">BT12-060</li>
  5211. <li>C</li>
  5212. <liclass="cardtype">Digimon</li>
  5213. <liclass="cardlv">Lv.3</li>
  5214. </ul>
  5215. <divclass="card_name">ChuuChuumon</div>
  5216. <divclass="cardinfo_top">
  5217. <divclass="card_img">
  5218. <imgsrc="../images/cardlist/card/BT12-060.png"alt="BT12-060ChuuChuumon"></div>
  5219. <divclass="cardinfo_top_body">
  5220. <dl>
  5221. <dt>Form</dt>
  5222. <dd>Rookie</dd>
  5223. </dl>
  5224. <dl>
  5225. <dt>Attribute</dt>
  5226. <dd>Virus</dd>
  5227. </dl>
  5228. <dl>
  5229. <dt>Type</dt>
  5230. <dd>Beast</dd>
  5231. </dl>
  5232. <dl>
  5233. <dt>DP</dt>
  5234. <dd>1000</dl>
  5235. <dl>
  5236. <dt>PlayCost</dt>
  5237. <dd>3</dd>
  5238. </dl>
  5239. <dl>
  5240. <dt>DigivolveCost1</dt>
  5241. <dd>0fromLv.2</dd>
  5242. </dl>
  5243. <dl>
  5244. <dt>DigivolveCost2</dt>
  5245. <dd>-</dd>
  5246. </dl>
  5247. </div>
  5248. </div>
  5249. <divclass="cardinfo_bottom">
  5250. <dl>
  5251. <dt>Effect</dt>
  5252. <dd>Digivolve: 0 from Lv.2 w/<Save> in text [On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  5253. </dl>
  5254. <dl>
  5255. <dt>Digivolveeffect</dt>
  5256. <dd>[Your Turn] While this Digimon has <Save> in its text, it gains <Blocker>.</dd>
  5257. </dl>
  5258. <dl>
  5259. <dt>Securityeffect</dt>
  5260. <dd>-</dd>
  5261. </dl>
  5262. <dl>
  5263. <dt>Notes</dt>
  5264. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5265. </div>
  5266. </div>
  5267. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5268. </div>
  5269. </div>
  5270. </li>
  5271. <liclass="image_lists_itemdatapage-2">
  5272. <aclass="card_img">
  5273. <imgsrc="../images/cardlist/card/BT12-061.png"alt="BT12-061Ganemon"></a>
  5274. <divclass="popup">
  5275. <divclass="card_detailcard_detail_black">
  5276. <divclass="card_detail_inner">
  5277. <ulclass="cardinfo_head">
  5278. <liclass="cardno">BT12-061</li>
  5279. <li>C</li>
  5280. <liclass="cardtype">Digimon</li>
  5281. <liclass="cardlv">Lv.4</li>
  5282. </ul>
  5283. <divclass="card_name">Ganemon</div>
  5284. <divclass="cardinfo_top">
  5285. <divclass="card_img">
  5286. <imgsrc="../images/cardlist/card/BT12-061.png"alt="BT12-061Ganemon"></div>
  5287. <divclass="cardinfo_top_body">
  5288. <dl>
  5289. <dt>Form</dt>
  5290. <dd>Champion</dd>
  5291. </dl>
  5292. <dl>
  5293. <dt>Attribute</dt>
  5294. <dd>Vaccine</dd>
  5295. </dl>
  5296. <dl>
  5297. <dt>Type</dt>
  5298. <dd>Mutant</dd>
  5299. </dl>
  5300. <dl>
  5301. <dt>DP</dt>
  5302. <dd>4000</dl>
  5303. <dl>
  5304. <dt>PlayCost</dt>
  5305. <dd>4</dd>
  5306. </dl>
  5307. <dl>
  5308. <dt>DigivolveCost1</dt>
  5309. <dd>2fromLv.3</dd>
  5310. </dl>
  5311. <dl>
  5312. <dt>DigivolveCost2</dt>
  5313. <dd>-</dd>
  5314. </dl>
  5315. </div>
  5316. </div>
  5317. <divclass="cardinfo_bottom">
  5318. <dl>
  5319. <dt>Effect</dt>
  5320. <dd>Digivolve: 2 from Lv.3 w/<Save> in text</dd>
  5321. </dl>
  5322. <dl>
  5323. <dt>Digivolveeffect</dt>
  5324. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase)</dd>
  5325. </dl>
  5326. <dl>
  5327. <dt>Securityeffect</dt>
  5328. <dd>-</dd>
  5329. </dl>
  5330. <dl>
  5331. <dt>Notes</dt>
  5332. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5333. </div>
  5334. </div>
  5335. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5336. </div>
  5337. </div>
  5338. </li>
  5339. <liclass="image_lists_itemdatapage-2">
  5340. <aclass="card_img">
  5341. <imgsrc="../images/cardlist/card/BT12-062.png"alt="BT12-062Greymon"></a>
  5342. <divclass="popup">
  5343. <divclass="card_detailcard_detail_black_redmulticolor">
  5344. <divclass="card_detail_inner">
  5345. <ulclass="cardinfo_head">
  5346. <liclass="cardno">BT12-062</li>
  5347. <li>C</li>
  5348. <liclass="cardtype">Digimon</li>
  5349. <liclass="cardlv">Lv.4</li>
  5350. </ul>
  5351. <divclass="card_name">Greymon</div>
  5352. <divclass="cardinfo_top">
  5353. <divclass="card_img">
  5354. <imgsrc="../images/cardlist/card/BT12-062.png"alt="BT12-062Greymon"></div>
  5355. <divclass="cardinfo_top_body">
  5356. <dl>
  5357. <dt>Form</dt>
  5358. <dd>Champion</dd>
  5359. </dl>
  5360. <dl>
  5361. <dt>Attribute</dt>
  5362. <dd>Vaccine</dd>
  5363. </dl>
  5364. <dl>
  5365. <dt>Type</dt>
  5366. <dd>Dinosaur</dd>
  5367. </dl>
  5368. <dl>
  5369. <dt>DP</dt>
  5370. <dd>5000</dl>
  5371. <dl>
  5372. <dt>PlayCost</dt>
  5373. <dd>5</dd>
  5374. </dl>
  5375. <dl>
  5376. <dt>DigivolveCost1</dt>
  5377. <dd>3fromLv.3</dd>
  5378. </dl>
  5379. <dl>
  5380. <dt>DigivolveCost2</dt>
  5381. <dd>-</dd>
  5382. </dl>
  5383. </div>
  5384. </div>
  5385. <divclass="cardinfo_bottom">
  5386. <dl>
  5387. <dt>Effect</dt>
  5388. <dd>Digivolve: 2 from Lv.3 w/[Agumon] in name [When Digivolving] If you don't have a Tamer with [Tai Kamiya] in its name in play, you may play 1 Tamer card with [Tai Kamiya] in its name from your hand without paying its cost.</dd>
  5389. </dl>
  5390. <dl>
  5391. <dt>Digivolveeffect</dt>
  5392. <dd>[All Turns] While this Digimon has [Greymon] or [Omnimon] in its name, it gets +1000 DP.</dd>
  5393. </dl>
  5394. <dl>
  5395. <dt>Securityeffect</dt>
  5396. <dd>-</dd>
  5397. </dl>
  5398. <dl>
  5399. <dt>Notes</dt>
  5400. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5401. </div>
  5402. </div>
  5403. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5404. </div>
  5405. </div>
  5406. </li>
  5407. <liclass="image_lists_itemdatapage-2">
  5408. <aclass="card_img">
  5409. <imgsrc="../images/cardlist/card/BT12-063.png"alt="BT12-063Damemon"></a>
  5410. <divclass="popup">
  5411. <divclass="card_detailcard_detail_black">
  5412. <divclass="card_detail_inner">
  5413. <ulclass="cardinfo_head">
  5414. <liclass="cardno">BT12-063</li>
  5415. <li>U</li>
  5416. <liclass="cardtype">Digimon</li>
  5417. <liclass="cardlv">Lv.4</li>
  5418. </ul>
  5419. <divclass="card_name">Damemon</div>
  5420. <divclass="cardinfo_top">
  5421. <divclass="card_img">
  5422. <imgsrc="../images/cardlist/card/BT12-063.png"alt="BT12-063Damemon"></div>
  5423. <divclass="cardinfo_top_body">
  5424. <dl>
  5425. <dt>Form</dt>
  5426. <dd>Champion</dd>
  5427. </dl>
  5428. <dl>
  5429. <dt>Attribute</dt>
  5430. <dd>Virus</dd>
  5431. </dl>
  5432. <dl>
  5433. <dt>Type</dt>
  5434. <dd>Mutant/XrosHeart</dd>
  5435. </dl>
  5436. <dl>
  5437. <dt>DP</dt>
  5438. <dd>4000</dl>
  5439. <dl>
  5440. <dt>PlayCost</dt>
  5441. <dd>5</dd>
  5442. </dl>
  5443. <dl>
  5444. <dt>DigivolveCost1</dt>
  5445. <dd>2fromLv.3</dd>
  5446. </dl>
  5447. <dl>
  5448. <dt>DigivolveCost2</dt>
  5449. <dd>-</dd>
  5450. </dl>
  5451. </div>
  5452. </div>
  5453. <divclass="cardinfo_bottom">
  5454. <dl>
  5455. <dt>Effect</dt>
  5456. <dd>Digivolve: 2 from Lv.3 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text[On Play][When Digivolving] Reveal the top 3 cards of your deck. You may play 1 [Taiki Kudo], [Yuu Amano], or [Tagiru Akashi] card among them without paying its cost. Place the remaining cards at the bottom of your deck in any order.[On Deletion] <Save>. Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  5457. </dl>
  5458. <dl>
  5459. <dt>Digivolveeffect</dt>
  5460. <dd>[Your Turn] While this Digimon has <Save> in its text, it gains <Blocker>.</dd>
  5461. </dl>
  5462. <dl>
  5463. <dt>Securityeffect</dt>
  5464. <dd>-</dd>
  5465. </dl>
  5466. <dl>
  5467. <dt>Notes</dt>
  5468. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5469. </div>
  5470. </div>
  5471. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5472. </div>
  5473. </div>
  5474. </li>
  5475. <liclass="image_lists_itemdatapage-3">
  5476. <aclass="card_img">
  5477. <imgsrc="../images/cardlist/card/BT12-064.png"alt="BT12-064Tuwarmon"></a>
  5478. <divclass="popup">
  5479. <divclass="card_detailcard_detail_black">
  5480. <divclass="card_detail_inner">
  5481. <ulclass="cardinfo_head">
  5482. <liclass="cardno">BT12-064</li>
  5483. <li>C</li>
  5484. <liclass="cardtype">Digimon</li>
  5485. <liclass="cardlv">Lv.4</li>
  5486. </ul>
  5487. <divclass="card_name">Tuwarmon</div>
  5488. <divclass="cardinfo_top">
  5489. <divclass="card_img">
  5490. <imgsrc="../images/cardlist/card/BT12-064.png"alt="BT12-064Tuwarmon"></div>
  5491. <divclass="cardinfo_top_body">
  5492. <dl>
  5493. <dt>Form</dt>
  5494. <dd>Champion</dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>Attribute</dt>
  5498. <dd>Virus</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>Type</dt>
  5502. <dd>Mutant/XrosHeart</dd>
  5503. </dl>
  5504. <dl>
  5505. <dt>DP</dt>
  5506. <dd>6000</dl>
  5507. <dl>
  5508. <dt>PlayCost</dt>
  5509. <dd>5</dd>
  5510. </dl>
  5511. <dl>
  5512. <dt>DigivolveCost1</dt>
  5513. <dd>3fromLv.3</dd>
  5514. </dl>
  5515. <dl>
  5516. <dt>DigivolveCost2</dt>
  5517. <dd>1fromLv.4</dd>
  5518. </dl>
  5519. </div>
  5520. </div>
  5521. <divclass="cardinfo_bottom">
  5522. <dl>
  5523. <dt>Effect</dt>
  5524. <dd>Digivolve: 3 from Lv.3 w/<Save> in text [When Digivolving] <De-Digivolve 1> on 1 of your opponent's level 5 or lower Digimon. For every 2 cards in this Digimon's digivolution cards, add 1 to the max level of the Digimon you can choose with this effect.[On Deletion] <Save> (You may place this card under one of your Tamers.) Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>Digivolveeffect</dt>
  5528. <dd>[Your Turn] While this Digimon has <Save> in its text, it gains <Blocker>.</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>Securityeffect</dt>
  5532. <dd>-</dd>
  5533. </dl>
  5534. <dl>
  5535. <dt>Notes</dt>
  5536. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5537. </div>
  5538. </div>
  5539. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5540. </div>
  5541. </div>
  5542. </li>
  5543. <liclass="image_lists_itemdatapage-3">
  5544. <aclass="card_img">
  5545. <imgsrc="../images/cardlist/card/BT12-064_P1.png"alt="BT12-064Tuwarmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5546. </a>
  5547. <divclass="popup">
  5548. <divclass="card_detailcard_detail_black">
  5549. <divclass="card_detail_inner">
  5550. <ulclass="cardinfo_head">
  5551. <liclass="cardno">BT12-064</li>
  5552. <li>C</li>
  5553. <liclass="cardtype">Digimon</li>
  5554. <liclass="cardlv">Lv.4</li>
  5555. <liclass="cardtypecardParallel">AlternativeArt</li>
  5556. </ul>
  5557. <divclass="card_name">Tuwarmon</div>
  5558. <divclass="cardinfo_top">
  5559. <divclass="card_img">
  5560. <imgsrc="../images/cardlist/card/BT12-064_P1.png"alt="BT12-064Tuwarmon"></div>
  5561. <divclass="cardinfo_top_body">
  5562. <dl>
  5563. <dt>Form</dt>
  5564. <dd>Champion</dd>
  5565. </dl>
  5566. <dl>
  5567. <dt>Attribute</dt>
  5568. <dd>Virus</dd>
  5569. </dl>
  5570. <dl>
  5571. <dt>Type</dt>
  5572. <dd>Mutant/XrosHeart</dd>
  5573. </dl>
  5574. <dl>
  5575. <dt>DP</dt>
  5576. <dd>6000</dl>
  5577. <dl>
  5578. <dt>PlayCost</dt>
  5579. <dd>5</dd>
  5580. </dl>
  5581. <dl>
  5582. <dt>DigivolveCost1</dt>
  5583. <dd>3fromLv.3</dd>
  5584. </dl>
  5585. <dl>
  5586. <dt>DigivolveCost2</dt>
  5587. <dd>1fromLv.4</dd>
  5588. </dl>
  5589. </div>
  5590. </div>
  5591. <divclass="cardinfo_bottom">
  5592. <dl>
  5593. <dt>Effect</dt>
  5594. <dd>Digivolve: 3 from Lv.3 w/<Save> in text [When Digivolving] <De-Digivolve 1> on 1 of your opponent's level 5 or lower Digimon. For every 2 cards in this Digimon's digivolution cards, add 1 to the max level of the Digimon you can choose with this effect.[On Deletion] <Save> (You may place this card under one of your Tamers.) Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  5595. </dl>
  5596. <dl>
  5597. <dt>Digivolveeffect</dt>
  5598. <dd>[Your Turn] While this Digimon has <Save> in its text, it gains <Blocker>.</dd>
  5599. </dl>
  5600. <dl>
  5601. <dt>Securityeffect</dt>
  5602. <dd>-</dd>
  5603. </dl>
  5604. <dl>
  5605. <dt>Notes</dt>
  5606. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  5607. </div>
  5608. </div>
  5609. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5610. </div>
  5611. </div>
  5612. </li>
  5613. <liclass="image_lists_itemdatapage-3">
  5614. <aclass="card_img">
  5615. <imgsrc="../images/cardlist/card/BT12-065.png"alt="BT12-065Sephirothmon"></a>
  5616. <divclass="popup">
  5617. <divclass="card_detailcard_detail_black">
  5618. <divclass="card_detail_inner">
  5619. <ulclass="cardinfo_head">
  5620. <liclass="cardno">BT12-065</li>
  5621. <li>U</li>
  5622. <liclass="cardtype">Digimon</li>
  5623. <liclass="cardlv">Lv.4</li>
  5624. </ul>
  5625. <divclass="card_name">Sephirothmon</div>
  5626. <divclass="cardinfo_top">
  5627. <divclass="card_img">
  5628. <imgsrc="../images/cardlist/card/BT12-065.png"alt="BT12-065Sephirothmon"></div>
  5629. <divclass="cardinfo_top_body">
  5630. <dl>
  5631. <dt>Form</dt>
  5632. <dd>Hybrid</dd>
  5633. </dl>
  5634. <dl>
  5635. <dt>Attribute</dt>
  5636. <dd>Variable</dd>
  5637. </dl>
  5638. <dl>
  5639. <dt>Type</dt>
  5640. <dd>Mutant</dd>
  5641. </dl>
  5642. <dl>
  5643. <dt>DP</dt>
  5644. <dd>6000</dl>
  5645. <dl>
  5646. <dt>PlayCost</dt>
  5647. <dd>6</dd>
  5648. </dl>
  5649. <dl>
  5650. <dt>DigivolveCost1</dt>
  5651. <dd>3fromLv.3</dd>
  5652. </dl>
  5653. <dl>
  5654. <dt>DigivolveCost2</dt>
  5655. <dd>-</dd>
  5656. </dl>
  5657. </div>
  5658. </div>
  5659. <divclass="cardinfo_bottom">
  5660. <dl>
  5661. <dt>Effect</dt>
  5662. <dd>Digivolve: 1 from [Mercurymon] You may digivolve this card from your hand onto one of your black Tamers as if the Tamer is a level 3 black Digimon.[When Digivolving] Until the end of your opponent's turn, 1 of your opponent's Digimon gains "[Start of Your Main Phase] Attack with this Digimon."</dd>
  5663. </dl>
  5664. <dl>
  5665. <dt>Digivolveeffect</dt>
  5666. <dd>-</dd>
  5667. </dl>
  5668. <dl>
  5669. <dt>Securityeffect</dt>
  5670. <dd>-</dd>
  5671. </dl>
  5672. <dl>
  5673. <dt>Notes</dt>
  5674. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5675. </div>
  5676. </div>
  5677. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5678. </div>
  5679. </div>
  5680. </li>
  5681. <liclass="image_lists_itemdatapage-3">
  5682. <aclass="card_img">
  5683. <imgsrc="../images/cardlist/card/BT12-066.png"alt="BT12-066Mercurymon"></a>
  5684. <divclass="popup">
  5685. <divclass="card_detailcard_detail_black">
  5686. <divclass="card_detail_inner">
  5687. <ulclass="cardinfo_head">
  5688. <liclass="cardno">BT12-066</li>
  5689. <li>C</li>
  5690. <liclass="cardtype">Digimon</li>
  5691. <liclass="cardlv">Lv.4</li>
  5692. </ul>
  5693. <divclass="card_name">Mercurymon</div>
  5694. <divclass="cardinfo_top">
  5695. <divclass="card_img">
  5696. <imgsrc="../images/cardlist/card/BT12-066.png"alt="BT12-066Mercurymon"></div>
  5697. <divclass="cardinfo_top_body">
  5698. <dl>
  5699. <dt>Form</dt>
  5700. <dd>Hybrid</dd>
  5701. </dl>
  5702. <dl>
  5703. <dt>Attribute</dt>
  5704. <dd>Variable</dd>
  5705. </dl>
  5706. <dl>
  5707. <dt>Type</dt>
  5708. <dd>Mutant</dd>
  5709. </dl>
  5710. <dl>
  5711. <dt>DP</dt>
  5712. <dd>5000</dl>
  5713. <dl>
  5714. <dt>PlayCost</dt>
  5715. <dd>6</dd>
  5716. </dl>
  5717. <dl>
  5718. <dt>DigivolveCost1</dt>
  5719. <dd>2fromLv.3</dd>
  5720. </dl>
  5721. <dl>
  5722. <dt>DigivolveCost2</dt>
  5723. <dd>-</dd>
  5724. </dl>
  5725. </div>
  5726. </div>
  5727. <divclass="cardinfo_bottom">
  5728. <dl>
  5729. <dt>Effect</dt>
  5730. <dd>Digivolve: 0 from [Sephirothmon] You may digivolve this card from your hand onto one of your black Tamers as if the Tamer is a level 3 black Digimon.[On Play][When Digivolving] 1 of your Digimon gains <Blocker> until the end of your opponent's turn.</dd>
  5731. </dl>
  5732. <dl>
  5733. <dt>Digivolveeffect</dt>
  5734. <dd>-</dd>
  5735. </dl>
  5736. <dl>
  5737. <dt>Securityeffect</dt>
  5738. <dd>-</dd>
  5739. </dl>
  5740. <dl>
  5741. <dt>Notes</dt>
  5742. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5743. </div>
  5744. </div>
  5745. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5746. </div>
  5747. </div>
  5748. </li>
  5749. <liclass="image_lists_itemdatapage-3">
  5750. <aclass="card_img">
  5751. <imgsrc="../images/cardlist/card/BT12-067.png"alt="BT12-067Betsumon"></a>
  5752. <divclass="popup">
  5753. <divclass="card_detailcard_detail_black">
  5754. <divclass="card_detail_inner">
  5755. <ulclass="cardinfo_head">
  5756. <liclass="cardno">BT12-067</li>
  5757. <li>C</li>
  5758. <liclass="cardtype">Digimon</li>
  5759. <liclass="cardlv">Lv.5</li>
  5760. </ul>
  5761. <divclass="card_name">Betsumon</div>
  5762. <divclass="cardinfo_top">
  5763. <divclass="card_img">
  5764. <imgsrc="../images/cardlist/card/BT12-067.png"alt="BT12-067Betsumon"></div>
  5765. <divclass="cardinfo_top_body">
  5766. <dl>
  5767. <dt>Form</dt>
  5768. <dd>Ultimate</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>Attribute</dt>
  5772. <dd>Data</dd>
  5773. </dl>
  5774. <dl>
  5775. <dt>Type</dt>
  5776. <dd>Puppet</dd>
  5777. </dl>
  5778. <dl>
  5779. <dt>DP</dt>
  5780. <dd>6000</dl>
  5781. <dl>
  5782. <dt>PlayCost</dt>
  5783. <dd>6</dd>
  5784. </dl>
  5785. <dl>
  5786. <dt>DigivolveCost1</dt>
  5787. <dd>3fromLv.4</dd>
  5788. </dl>
  5789. <dl>
  5790. <dt>DigivolveCost2</dt>
  5791. <dd>-</dd>
  5792. </dl>
  5793. </div>
  5794. </div>
  5795. <divclass="cardinfo_bottom">
  5796. <dl>
  5797. <dt>Effect</dt>
  5798. <dd>Digivolve: 3 from Lv.4 w/<Save> in text</dd>
  5799. </dl>
  5800. <dl>
  5801. <dt>Digivolveeffect</dt>
  5802. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5803. </dl>
  5804. <dl>
  5805. <dt>Securityeffect</dt>
  5806. <dd>-</dd>
  5807. </dl>
  5808. <dl>
  5809. <dt>Notes</dt>
  5810. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5811. </div>
  5812. </div>
  5813. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5814. </div>
  5815. </div>
  5816. </li>
  5817. <liclass="image_lists_itemdatapage-3">
  5818. <aclass="card_img">
  5819. <imgsrc="../images/cardlist/card/BT12-068.png"alt="BT12-068MetalGreymon"></a>
  5820. <divclass="popup">
  5821. <divclass="card_detailcard_detail_black_redmulticolor">
  5822. <divclass="card_detail_inner">
  5823. <ulclass="cardinfo_head">
  5824. <liclass="cardno">BT12-068</li>
  5825. <li>R</li>
  5826. <liclass="cardtype">Digimon</li>
  5827. <liclass="cardlv">Lv.5</li>
  5828. </ul>
  5829. <divclass="card_name">MetalGreymon</div>
  5830. <divclass="cardinfo_top">
  5831. <divclass="card_img">
  5832. <imgsrc="../images/cardlist/card/BT12-068.png"alt="BT12-068MetalGreymon"></div>
  5833. <divclass="cardinfo_top_body">
  5834. <dl>
  5835. <dt>Form</dt>
  5836. <dd>Ultimate</dd>
  5837. </dl>
  5838. <dl>
  5839. <dt>Attribute</dt>
  5840. <dd>Vaccine</dd>
  5841. </dl>
  5842. <dl>
  5843. <dt>Type</dt>
  5844. <dd>Cyborg</dd>
  5845. </dl>
  5846. <dl>
  5847. <dt>DP</dt>
  5848. <dd>7000</dl>
  5849. <dl>
  5850. <dt>PlayCost</dt>
  5851. <dd>7</dd>
  5852. </dl>
  5853. <dl>
  5854. <dt>DigivolveCost1</dt>
  5855. <dd>4fromLv.4</dd>
  5856. </dl>
  5857. <dl>
  5858. <dt>DigivolveCost2</dt>
  5859. <dd>-</dd>
  5860. </dl>
  5861. </div>
  5862. </div>
  5863. <divclass="cardinfo_bottom">
  5864. <dl>
  5865. <dt>Effect</dt>
  5866. <dd>Digivolve: 3 from Lv.4 w/[Greymon] in name <Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[All Turns][Once Per Turn] If an attack target is switched, you may play 1 black or red Tamer card with a play cost of 4 or less from your hand without paying its cost.</dd>
  5867. </dl>
  5868. <dl>
  5869. <dt>Digivolveeffect</dt>
  5870. <dd>[Your Turn] While this Digimon has [Greymon] or [Omnimon] in its name, it gains <Piercing>.</dd>
  5871. </dl>
  5872. <dl>
  5873. <dt>Securityeffect</dt>
  5874. <dd>-</dd>
  5875. </dl>
  5876. <dl>
  5877. <dt>Notes</dt>
  5878. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5879. </div>
  5880. </div>
  5881. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5882. </div>
  5883. </div>
  5884. </li>
  5885. <liclass="image_lists_itemdatapage-3">
  5886. <aclass="card_img">
  5887. <imgsrc="../images/cardlist/card/BT12-069.png"alt="BT12-069Footmon"></a>
  5888. <divclass="popup">
  5889. <divclass="card_detailcard_detail_black">
  5890. <divclass="card_detail_inner">
  5891. <ulclass="cardinfo_head">
  5892. <liclass="cardno">BT12-069</li>
  5893. <li>C</li>
  5894. <liclass="cardtype">Digimon</li>
  5895. <liclass="cardlv">Lv.5</li>
  5896. </ul>
  5897. <divclass="card_name">Footmon</div>
  5898. <divclass="cardinfo_top">
  5899. <divclass="card_img">
  5900. <imgsrc="../images/cardlist/card/BT12-069.png"alt="BT12-069Footmon"></div>
  5901. <divclass="cardinfo_top_body">
  5902. <dl>
  5903. <dt>Form</dt>
  5904. <dd>Ultimate</dd>
  5905. </dl>
  5906. <dl>
  5907. <dt>Attribute</dt>
  5908. <dd>Vaccine</dd>
  5909. </dl>
  5910. <dl>
  5911. <dt>Type</dt>
  5912. <dd>Cyborg</dd>
  5913. </dl>
  5914. <dl>
  5915. <dt>DP</dt>
  5916. <dd>9000</dl>
  5917. <dl>
  5918. <dt>PlayCost</dt>
  5919. <dd>8</dd>
  5920. </dl>
  5921. <dl>
  5922. <dt>DigivolveCost1</dt>
  5923. <dd>2fromLv.4</dd>
  5924. </dl>
  5925. <dl>
  5926. <dt>DigivolveCost2</dt>
  5927. <dd>-</dd>
  5928. </dl>
  5929. </div>
  5930. </div>
  5931. <divclass="cardinfo_bottom">
  5932. <dl>
  5933. <dt>Effect</dt>
  5934. <dd>-</dd>
  5935. </dl>
  5936. <dl>
  5937. <dt>Digivolveeffect</dt>
  5938. <dd>-</dd>
  5939. </dl>
  5940. <dl>
  5941. <dt>Securityeffect</dt>
  5942. <dd>-</dd>
  5943. </dl>
  5944. <dl>
  5945. <dt>Notes</dt>
  5946. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  5947. </div>
  5948. </div>
  5949. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5950. </div>
  5951. </div>
  5952. </li>
  5953. <liclass="image_lists_itemdatapage-3">
  5954. <aclass="card_img">
  5955. <imgsrc="../images/cardlist/card/BT12-070.png"alt="BT12-070WarGreymon"></a>
  5956. <divclass="popup">
  5957. <divclass="card_detailcard_detail_black_redmulticolor">
  5958. <divclass="card_detail_inner">
  5959. <ulclass="cardinfo_head">
  5960. <liclass="cardno">BT12-070</li>
  5961. <li>SR</li>
  5962. <liclass="cardtype">Digimon</li>
  5963. <liclass="cardlv">Lv.6</li>
  5964. </ul>
  5965. <divclass="card_name">WarGreymon</div>
  5966. <divclass="cardinfo_top">
  5967. <divclass="card_img">
  5968. <imgsrc="../images/cardlist/card/BT12-070.png"alt="BT12-070WarGreymon"></div>
  5969. <divclass="cardinfo_top_body">
  5970. <dl>
  5971. <dt>Form</dt>
  5972. <dd>Mega</dd>
  5973. </dl>
  5974. <dl>
  5975. <dt>Attribute</dt>
  5976. <dd>Vaccine</dd>
  5977. </dl>
  5978. <dl>
  5979. <dt>Type</dt>
  5980. <dd>Dragonkin</dd>
  5981. </dl>
  5982. <dl>
  5983. <dt>DP</dt>
  5984. <dd>12000</dl>
  5985. <dl>
  5986. <dt>PlayCost</dt>
  5987. <dd>12</dd>
  5988. </dl>
  5989. <dl>
  5990. <dt>DigivolveCost1</dt>
  5991. <dd>4fromLv.5</dd>
  5992. </dl>
  5993. <dl>
  5994. <dt>DigivolveCost2</dt>
  5995. <dd>-</dd>
  5996. </dl>
  5997. </div>
  5998. </div>
  5999. <divclass="cardinfo_bottom">
  6000. <dl>
  6001. <dt>Effect</dt>
  6002. <dd>Digivolve: 3 from Lv.5 w/[MetalGreymon] in name <Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[When Digivolving] This Digimon gets +3000 DP and <Reboot> until the end of your opponent's turn.[All Turns][Once Per Turn] If an attack target is switched, unsuspend this Digimon.</dd>
  6003. </dl>
  6004. <dl>
  6005. <dt>Digivolveeffect</dt>
  6006. <dd>-</dd>
  6007. </dl>
  6008. <dl>
  6009. <dt>Securityeffect</dt>
  6010. <dd>-</dd>
  6011. </dl>
  6012. <dl>
  6013. <dt>Notes</dt>
  6014. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6015. </div>
  6016. </div>
  6017. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6018. </div>
  6019. </div>
  6020. </li>
  6021. <liclass="image_lists_itemdatapage-3">
  6022. <aclass="card_img">
  6023. <imgsrc="../images/cardlist/card/BT12-070_P1.png"alt="BT12-070WarGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  6024. </a>
  6025. <divclass="popup">
  6026. <divclass="card_detailcard_detail_black_redmulticolor">
  6027. <divclass="card_detail_inner">
  6028. <ulclass="cardinfo_head">
  6029. <liclass="cardno">BT12-070</li>
  6030. <li>SR</li>
  6031. <liclass="cardtype">Digimon</li>
  6032. <liclass="cardlv">Lv.6</li>
  6033. <liclass="cardtypecardParallel">AlternativeArt</li>
  6034. </ul>
  6035. <divclass="card_name">WarGreymon</div>
  6036. <divclass="cardinfo_top">
  6037. <divclass="card_img">
  6038. <imgsrc="../images/cardlist/card/BT12-070_P1.png"alt="BT12-070WarGreymon"></div>
  6039. <divclass="cardinfo_top_body">
  6040. <dl>
  6041. <dt>Form</dt>
  6042. <dd>Mega</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>Attribute</dt>
  6046. <dd>Vaccine</dd>
  6047. </dl>
  6048. <dl>
  6049. <dt>Type</dt>
  6050. <dd>Dragonkin</dd>
  6051. </dl>
  6052. <dl>
  6053. <dt>DP</dt>
  6054. <dd>12000</dl>
  6055. <dl>
  6056. <dt>PlayCost</dt>
  6057. <dd>12</dd>
  6058. </dl>
  6059. <dl>
  6060. <dt>DigivolveCost1</dt>
  6061. <dd>4fromLv.5</dd>
  6062. </dl>
  6063. <dl>
  6064. <dt>DigivolveCost2</dt>
  6065. <dd>-</dd>
  6066. </dl>
  6067. </div>
  6068. </div>
  6069. <divclass="cardinfo_bottom">
  6070. <dl>
  6071. <dt>Effect</dt>
  6072. <dd>Digivolve: 3 from Lv.5 w/[MetalGreymon] in name <Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest DP.)[When Digivolving] This Digimon gets +3000 DP and <Reboot> until the end of your opponent's turn.[All Turns][Once Per Turn] If an attack target is switched, unsuspend this Digimon.</dd>
  6073. </dl>
  6074. <dl>
  6075. <dt>Digivolveeffect</dt>
  6076. <dd>-</dd>
  6077. </dl>
  6078. <dl>
  6079. <dt>Securityeffect</dt>
  6080. <dd>-</dd>
  6081. </dl>
  6082. <dl>
  6083. <dt>Notes</dt>
  6084. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6085. </div>
  6086. </div>
  6087. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6088. </div>
  6089. </div>
  6090. </li>
  6091. <liclass="image_lists_itemdatapage-3">
  6092. <aclass="card_img">
  6093. <imgsrc="../images/cardlist/card/BT12-071.png"alt="BT12-071AncientWisemon"></a>
  6094. <divclass="popup">
  6095. <divclass="card_detailcard_detail_black">
  6096. <divclass="card_detail_inner">
  6097. <ulclass="cardinfo_head">
  6098. <liclass="cardno">BT12-071</li>
  6099. <li>R</li>
  6100. <liclass="cardtype">Digimon</li>
  6101. <liclass="cardlv">Lv.6</li>
  6102. </ul>
  6103. <divclass="card_name">AncientWisemon</div>
  6104. <divclass="cardinfo_top">
  6105. <divclass="card_img">
  6106. <imgsrc="../images/cardlist/card/BT12-071.png"alt="BT12-071AncientWisemon"></div>
  6107. <divclass="cardinfo_top_body">
  6108. <dl>
  6109. <dt>Form</dt>
  6110. <dd>Mega</dd>
  6111. </dl>
  6112. <dl>
  6113. <dt>Attribute</dt>
  6114. <dd>Virus</dd>
  6115. </dl>
  6116. <dl>
  6117. <dt>Type</dt>
  6118. <dd>AncientMutant/TenWarriors</dd>
  6119. </dl>
  6120. <dl>
  6121. <dt>DP</dt>
  6122. <dd>13000</dl>
  6123. <dl>
  6124. <dt>PlayCost</dt>
  6125. <dd>13</dd>
  6126. </dl>
  6127. <dl>
  6128. <dt>DigivolveCost1</dt>
  6129. <dd>5fromLv.5</dd>
  6130. </dl>
  6131. <dl>
  6132. <dt>DigivolveCost2</dt>
  6133. <dd>-</dd>
  6134. </dl>
  6135. </div>
  6136. </div>
  6137. <divclass="cardinfo_bottom">
  6138. <dl>
  6139. <dt>Effect</dt>
  6140. <dd>[Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, you may reveal the top 3 cards of your deck. Play 1 black card with a play cost of 6 or less among them without paying its cost. Trash the rest.[On Deletion] You may play 1 black level 4 or lower card with a [Hybrid] trait from your hand without paying its cost.</dd>
  6141. </dl>
  6142. <dl>
  6143. <dt>Digivolveeffect</dt>
  6144. <dd>-</dd>
  6145. </dl>
  6146. <dl>
  6147. <dt>Securityeffect</dt>
  6148. <dd>-</dd>
  6149. </dl>
  6150. <dl>
  6151. <dt>Notes</dt>
  6152. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6153. </div>
  6154. </div>
  6155. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6156. </div>
  6157. </div>
  6158. </li>
  6159. <liclass="image_lists_itemdatapage-3">
  6160. <aclass="card_img">
  6161. <imgsrc="../images/cardlist/card/BT12-072.png"alt="BT12-072Chaosdramon(XAntibody)"></a>
  6162. <divclass="popup">
  6163. <divclass="card_detailcard_detail_black_redmulticolor">
  6164. <divclass="card_detail_inner">
  6165. <ulclass="cardinfo_head">
  6166. <liclass="cardno">BT12-072</li>
  6167. <li>SR</li>
  6168. <liclass="cardtype">Digimon</li>
  6169. <liclass="cardlv">Lv.6</li>
  6170. </ul>
  6171. <divclass="card_name">Chaosdramon(XAntibody)</div>
  6172. <divclass="cardinfo_top">
  6173. <divclass="card_img">
  6174. <imgsrc="../images/cardlist/card/BT12-072.png"alt="BT12-072Chaosdramon(XAntibody)"></div>
  6175. <divclass="cardinfo_top_body">
  6176. <dl>
  6177. <dt>Form</dt>
  6178. <dd>Mega</dd>
  6179. </dl>
  6180. <dl>
  6181. <dt>Attribute</dt>
  6182. <dd>Virus</dd>
  6183. </dl>
  6184. <dl>
  6185. <dt>Type</dt>
  6186. <dd>Machine/XAntibody</dd>
  6187. </dl>
  6188. <dl>
  6189. <dt>DP</dt>
  6190. <dd>13000</dl>
  6191. <dl>
  6192. <dt>PlayCost</dt>
  6193. <dd>13</dd>
  6194. </dl>
  6195. <dl>
  6196. <dt>DigivolveCost1</dt>
  6197. <dd>5fromLv.5</dd>
  6198. </dl>
  6199. <dl>
  6200. <dt>DigivolveCost2</dt>
  6201. <dd>5fromLv.5</dd>
  6202. </dl>
  6203. </div>
  6204. </div>
  6205. <divclass="cardinfo_bottom">
  6206. <dl>
  6207. <dt>Effect</dt>
  6208. <dd>Digivolve: 2 from [Machinedramon] or [Chaosdramon][Start of Your Main Phase] Place 1 Digimon card with a [Cyborg] or [Machine] trait from your trash under this Digimon as its bottom digivolution card.[All Turns] This Digimon gains all effects of cards with [Machinedramon] and [Chaosdramon] in their names in this Digimon's digivolution cards.[All Turns][Once Per Turn] If this Digimon is deleted, trash the top card of your opponent's security stack.</dd>
  6209. </dl>
  6210. <dl>
  6211. <dt>Digivolveeffect</dt>
  6212. <dd>-</dd>
  6213. </dl>
  6214. <dl>
  6215. <dt>Securityeffect</dt>
  6216. <dd>-</dd>
  6217. </dl>
  6218. <dl>
  6219. <dt>Notes</dt>
  6220. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6221. </div>
  6222. </div>
  6223. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6224. </div>
  6225. </div>
  6226. </li>
  6227. <liclass="image_lists_itemdatapage-3">
  6228. <aclass="card_img">
  6229. <imgsrc="../images/cardlist/card/BT12-073.png"alt="BT12-073Impmon(XAntibody)"></a>
  6230. <divclass="popup">
  6231. <divclass="card_detailcard_detail_purple">
  6232. <divclass="card_detail_inner">
  6233. <ulclass="cardinfo_head">
  6234. <liclass="cardno">BT12-073</li>
  6235. <li>C</li>
  6236. <liclass="cardtype">Digimon</li>
  6237. <liclass="cardlv">Lv.3</li>
  6238. </ul>
  6239. <divclass="card_name">Impmon(XAntibody)</div>
  6240. <divclass="cardinfo_top">
  6241. <divclass="card_img">
  6242. <imgsrc="../images/cardlist/card/BT12-073.png"alt="BT12-073Impmon(XAntibody)"></div>
  6243. <divclass="cardinfo_top_body">
  6244. <dl>
  6245. <dt>Form</dt>
  6246. <dd>Rookie</dd>
  6247. </dl>
  6248. <dl>
  6249. <dt>Attribute</dt>
  6250. <dd>Virus</dd>
  6251. </dl>
  6252. <dl>
  6253. <dt>Type</dt>
  6254. <dd>Evil/XAntibody</dd>
  6255. </dl>
  6256. <dl>
  6257. <dt>DP</dt>
  6258. <dd>2000</dl>
  6259. <dl>
  6260. <dt>PlayCost</dt>
  6261. <dd>4</dd>
  6262. </dl>
  6263. <dl>
  6264. <dt>DigivolveCost1</dt>
  6265. <dd>0fromLv.2</dd>
  6266. </dl>
  6267. <dl>
  6268. <dt>DigivolveCost2</dt>
  6269. <dd>-</dd>
  6270. </dl>
  6271. </div>
  6272. </div>
  6273. <divclass="cardinfo_bottom">
  6274. <dl>
  6275. <dt>Effect</dt>
  6276. <dd>Digivolve: 0 from [Impmon][On Play][When Digivolving] By trashing 1 Option card in your hand, you may return 1 Digimon card with an [Evil], [Wizard], or [Demon Lord] trait from your trash to your hand.</dd>
  6277. </dl>
  6278. <dl>
  6279. <dt>Digivolveeffect</dt>
  6280. <dd>[When Attacking][Once Per Turn] Trash the top 2 cards of your deck.</dd>
  6281. </dl>
  6282. <dl>
  6283. <dt>Securityeffect</dt>
  6284. <dd>-</dd>
  6285. </dl>
  6286. <dl>
  6287. <dt>Notes</dt>
  6288. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6289. </div>
  6290. </div>
  6291. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6292. </div>
  6293. </div>
  6294. </li>
  6295. <liclass="image_lists_itemdatapage-3">
  6296. <aclass="card_img">
  6297. <imgsrc="../images/cardlist/card/BT12-074.png"alt="BT12-074Gumdramon"></a>
  6298. <divclass="popup">
  6299. <divclass="card_detailcard_detail_purple">
  6300. <divclass="card_detail_inner">
  6301. <ulclass="cardinfo_head">
  6302. <liclass="cardno">BT12-074</li>
  6303. <li>U</li>
  6304. <liclass="cardtype">Digimon</li>
  6305. <liclass="cardlv">Lv.3</li>
  6306. </ul>
  6307. <divclass="card_name">Gumdramon</div>
  6308. <divclass="cardinfo_top">
  6309. <divclass="card_img">
  6310. <imgsrc="../images/cardlist/card/BT12-074.png"alt="BT12-074Gumdramon"></div>
  6311. <divclass="cardinfo_top_body">
  6312. <dl>
  6313. <dt>Form</dt>
  6314. <dd>Rookie</dd>
  6315. </dl>
  6316. <dl>
  6317. <dt>Attribute</dt>
  6318. <dd>Vaccine</dd>
  6319. </dl>
  6320. <dl>
  6321. <dt>Type</dt>
  6322. <dd>MiniDragon</dd>
  6323. </dl>
  6324. <dl>
  6325. <dt>DP</dt>
  6326. <dd>2000</dl>
  6327. <dl>
  6328. <dt>PlayCost</dt>
  6329. <dd>4</dd>
  6330. </dl>
  6331. <dl>
  6332. <dt>DigivolveCost1</dt>
  6333. <dd>0fromLv.2</dd>
  6334. </dl>
  6335. <dl>
  6336. <dt>DigivolveCost2</dt>
  6337. <dd>-</dd>
  6338. </dl>
  6339. </div>
  6340. </div>
  6341. <divclass="cardinfo_bottom">
  6342. <dl>
  6343. <dt>Effect</dt>
  6344. <dd>Digivolve: 0 from Lv.2 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play] By placing 1 Digimon card with <Save> in its text from your hand under one of your Tamers, <Draw 1>.[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6345. </dl>
  6346. <dl>
  6347. <dt>Digivolveeffect</dt>
  6348. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6349. </dl>
  6350. <dl>
  6351. <dt>Securityeffect</dt>
  6352. <dd>-</dd>
  6353. </dl>
  6354. <dl>
  6355. <dt>Notes</dt>
  6356. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6357. </div>
  6358. </div>
  6359. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6360. </div>
  6361. </div>
  6362. </li>
  6363. <liclass="image_lists_itemdatapage-3">
  6364. <aclass="card_img">
  6365. <imgsrc="../images/cardlist/card/BT12-075.png"alt="BT12-075Psychemon"></a>
  6366. <divclass="popup">
  6367. <divclass="card_detailcard_detail_purple">
  6368. <divclass="card_detail_inner">
  6369. <ulclass="cardinfo_head">
  6370. <liclass="cardno">BT12-075</li>
  6371. <li>U</li>
  6372. <liclass="cardtype">Digimon</li>
  6373. <liclass="cardlv">Lv.3</li>
  6374. </ul>
  6375. <divclass="card_name">Psychemon</div>
  6376. <divclass="cardinfo_top">
  6377. <divclass="card_img">
  6378. <imgsrc="../images/cardlist/card/BT12-075.png"alt="BT12-075Psychemon"></div>
  6379. <divclass="cardinfo_top_body">
  6380. <dl>
  6381. <dt>Form</dt>
  6382. <dd>Rookie</dd>
  6383. </dl>
  6384. <dl>
  6385. <dt>Attribute</dt>
  6386. <dd>Data</dd>
  6387. </dl>
  6388. <dl>
  6389. <dt>Type</dt>
  6390. <dd>Reptile</dd>
  6391. </dl>
  6392. <dl>
  6393. <dt>DP</dt>
  6394. <dd>2000</dl>
  6395. <dl>
  6396. <dt>PlayCost</dt>
  6397. <dd>4</dd>
  6398. </dl>
  6399. <dl>
  6400. <dt>DigivolveCost1</dt>
  6401. <dd>0fromLv.2</dd>
  6402. </dl>
  6403. <dl>
  6404. <dt>DigivolveCost2</dt>
  6405. <dd>-</dd>
  6406. </dl>
  6407. </div>
  6408. </div>
  6409. <divclass="cardinfo_bottom">
  6410. <dl>
  6411. <dt>Effect</dt>
  6412. <dd>Digivolve: 0 from Lv.2 w/<Save> in text DigiXros -2: 1 Digimon card w/<Save> in text When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play] You may return 1 Digimon card with <Save> in its text from under one of your Tamers to your hand.[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6413. </dl>
  6414. <dl>
  6415. <dt>Digivolveeffect</dt>
  6416. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6417. </dl>
  6418. <dl>
  6419. <dt>Securityeffect</dt>
  6420. <dd>-</dd>
  6421. </dl>
  6422. <dl>
  6423. <dt>Notes</dt>
  6424. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6425. </div>
  6426. </div>
  6427. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6428. </div>
  6429. </div>
  6430. </li>
  6431. <liclass="image_lists_itemdatapage-3">
  6432. <aclass="card_img">
  6433. <imgsrc="../images/cardlist/card/BT12-076.png"alt="BT12-076Dobermon"></a>
  6434. <divclass="popup">
  6435. <divclass="card_detailcard_detail_purple">
  6436. <divclass="card_detail_inner">
  6437. <ulclass="cardinfo_head">
  6438. <liclass="cardno">BT12-076</li>
  6439. <li>C</li>
  6440. <liclass="cardtype">Digimon</li>
  6441. <liclass="cardlv">Lv.4</li>
  6442. </ul>
  6443. <divclass="card_name">Dobermon</div>
  6444. <divclass="cardinfo_top">
  6445. <divclass="card_img">
  6446. <imgsrc="../images/cardlist/card/BT12-076.png"alt="BT12-076Dobermon"></div>
  6447. <divclass="cardinfo_top_body">
  6448. <dl>
  6449. <dt>Form</dt>
  6450. <dd>Champion</dd>
  6451. </dl>
  6452. <dl>
  6453. <dt>Attribute</dt>
  6454. <dd>Vaccine</dd>
  6455. </dl>
  6456. <dl>
  6457. <dt>Type</dt>
  6458. <dd>DarkAnimal</dd>
  6459. </dl>
  6460. <dl>
  6461. <dt>DP</dt>
  6462. <dd>5000</dl>
  6463. <dl>
  6464. <dt>PlayCost</dt>
  6465. <dd>4</dd>
  6466. </dl>
  6467. <dl>
  6468. <dt>DigivolveCost1</dt>
  6469. <dd>2fromLv.3</dd>
  6470. </dl>
  6471. <dl>
  6472. <dt>DigivolveCost2</dt>
  6473. <dd>-</dd>
  6474. </dl>
  6475. </div>
  6476. </div>
  6477. <divclass="cardinfo_bottom">
  6478. <dl>
  6479. <dt>Effect</dt>
  6480. <dd>Digivolve: 2 from Lv.3 w/<Save> in text</dd>
  6481. </dl>
  6482. <dl>
  6483. <dt>Digivolveeffect</dt>
  6484. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  6485. </dl>
  6486. <dl>
  6487. <dt>Securityeffect</dt>
  6488. <dd>-</dd>
  6489. </dl>
  6490. <dl>
  6491. <dt>Notes</dt>
  6492. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6493. </div>
  6494. </div>
  6495. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6496. </div>
  6497. </div>
  6498. </li>
  6499. <liclass="image_lists_itemdatapage-3">
  6500. <aclass="card_img">
  6501. <imgsrc="../images/cardlist/card/BT12-077.png"alt="BT12-077Arresterdramon"></a>
  6502. <divclass="popup">
  6503. <divclass="card_detailcard_detail_purple">
  6504. <divclass="card_detail_inner">
  6505. <ulclass="cardinfo_head">
  6506. <liclass="cardno">BT12-077</li>
  6507. <li>U</li>
  6508. <liclass="cardtype">Digimon</li>
  6509. <liclass="cardlv">Lv.4</li>
  6510. </ul>
  6511. <divclass="card_name">Arresterdramon</div>
  6512. <divclass="cardinfo_top">
  6513. <divclass="card_img">
  6514. <imgsrc="../images/cardlist/card/BT12-077.png"alt="BT12-077Arresterdramon"></div>
  6515. <divclass="cardinfo_top_body">
  6516. <dl>
  6517. <dt>Form</dt>
  6518. <dd>Champion</dd>
  6519. </dl>
  6520. <dl>
  6521. <dt>Attribute</dt>
  6522. <dd>Vaccine</dd>
  6523. </dl>
  6524. <dl>
  6525. <dt>Type</dt>
  6526. <dd>Dragon</dd>
  6527. </dl>
  6528. <dl>
  6529. <dt>DP</dt>
  6530. <dd>5000</dl>
  6531. <dl>
  6532. <dt>PlayCost</dt>
  6533. <dd>6</dd>
  6534. </dl>
  6535. <dl>
  6536. <dt>DigivolveCost1</dt>
  6537. <dd>2fromLv.3</dd>
  6538. </dl>
  6539. <dl>
  6540. <dt>DigivolveCost2</dt>
  6541. <dd>-</dd>
  6542. </dl>
  6543. </div>
  6544. </div>
  6545. <divclass="cardinfo_bottom">
  6546. <dl>
  6547. <dt>Effect</dt>
  6548. <dd>Digivolve: 2 from Lv.3 w/<Save> in text [When Digivolving] If there are 2 or more digivolution cards under this Digimon, this Digimon gains <Rush> for the turn.[On Deletion] <Save> (You may place this card under one of your Tamers.) Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  6549. </dl>
  6550. <dl>
  6551. <dt>Digivolveeffect</dt>
  6552. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6553. </dl>
  6554. <dl>
  6555. <dt>Securityeffect</dt>
  6556. <dd>-</dd>
  6557. </dl>
  6558. <dl>
  6559. <dt>Notes</dt>
  6560. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6561. </div>
  6562. </div>
  6563. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6564. </div>
  6565. </div>
  6566. </li>
  6567. <liclass="image_lists_itemdatapage-3">
  6568. <aclass="card_img">
  6569. <imgsrc="../images/cardlist/card/BT12-077_P1.png"alt="BT12-077Arresterdramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6570. </a>
  6571. <divclass="popup">
  6572. <divclass="card_detailcard_detail_purple">
  6573. <divclass="card_detail_inner">
  6574. <ulclass="cardinfo_head">
  6575. <liclass="cardno">BT12-077</li>
  6576. <li>U</li>
  6577. <liclass="cardtype">Digimon</li>
  6578. <liclass="cardlv">Lv.4</li>
  6579. <liclass="cardtypecardParallel">AlternativeArt</li>
  6580. </ul>
  6581. <divclass="card_name">Arresterdramon</div>
  6582. <divclass="cardinfo_top">
  6583. <divclass="card_img">
  6584. <imgsrc="../images/cardlist/card/BT12-077_P1.png"alt="BT12-077Arresterdramon"></div>
  6585. <divclass="cardinfo_top_body">
  6586. <dl>
  6587. <dt>Form</dt>
  6588. <dd>Champion</dd>
  6589. </dl>
  6590. <dl>
  6591. <dt>Attribute</dt>
  6592. <dd>Vaccine</dd>
  6593. </dl>
  6594. <dl>
  6595. <dt>Type</dt>
  6596. <dd>Dragon</dd>
  6597. </dl>
  6598. <dl>
  6599. <dt>DP</dt>
  6600. <dd>5000</dl>
  6601. <dl>
  6602. <dt>PlayCost</dt>
  6603. <dd>6</dd>
  6604. </dl>
  6605. <dl>
  6606. <dt>DigivolveCost1</dt>
  6607. <dd>2fromLv.3</dd>
  6608. </dl>
  6609. <dl>
  6610. <dt>DigivolveCost2</dt>
  6611. <dd>-</dd>
  6612. </dl>
  6613. </div>
  6614. </div>
  6615. <divclass="cardinfo_bottom">
  6616. <dl>
  6617. <dt>Effect</dt>
  6618. <dd>Digivolve: 2 from Lv.3 w/<Save> in text [When Digivolving] If there are 2 or more digivolution cards under this Digimon, this Digimon gains <Rush> for the turn.[On Deletion] <Save> (You may place this card under one of your Tamers.) Then, place 1 Digimon card with <Save> in its text from your trash under 1 of your Tamers.</dd>
  6619. </dl>
  6620. <dl>
  6621. <dt>Digivolveeffect</dt>
  6622. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6623. </dl>
  6624. <dl>
  6625. <dt>Securityeffect</dt>
  6626. <dd>-</dd>
  6627. </dl>
  6628. <dl>
  6629. <dt>Notes</dt>
  6630. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  6631. </div>
  6632. </div>
  6633. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6634. </div>
  6635. </div>
  6636. </li>
  6637. <liclass="image_lists_itemdatapage-3">
  6638. <aclass="card_img">
  6639. <imgsrc="../images/cardlist/card/BT12-078.png"alt="BT12-078Wizardmon(XAntibody)"></a>
  6640. <divclass="popup">
  6641. <divclass="card_detailcard_detail_purple">
  6642. <divclass="card_detail_inner">
  6643. <ulclass="cardinfo_head">
  6644. <liclass="cardno">BT12-078</li>
  6645. <li>C</li>
  6646. <liclass="cardtype">Digimon</li>
  6647. <liclass="cardlv">Lv.4</li>
  6648. </ul>
  6649. <divclass="card_name">Wizardmon(XAntibody)</div>
  6650. <divclass="cardinfo_top">
  6651. <divclass="card_img">
  6652. <imgsrc="../images/cardlist/card/BT12-078.png"alt="BT12-078Wizardmon(XAntibody)"></div>
  6653. <divclass="cardinfo_top_body">
  6654. <dl>
  6655. <dt>Form</dt>
  6656. <dd>Champion</dd>
  6657. </dl>
  6658. <dl>
  6659. <dt>Attribute</dt>
  6660. <dd>Data</dd>
  6661. </dl>
  6662. <dl>
  6663. <dt>Type</dt>
  6664. <dd>Wizard/XAntibody</dd>
  6665. </dl>
  6666. <dl>
  6667. <dt>DP</dt>
  6668. <dd>6000</dl>
  6669. <dl>
  6670. <dt>PlayCost</dt>
  6671. <dd>6</dd>
  6672. </dl>
  6673. <dl>
  6674. <dt>DigivolveCost1</dt>
  6675. <dd>2fromLv.3</dd>
  6676. </dl>
  6677. <dl>
  6678. <dt>DigivolveCost2</dt>
  6679. <dd>-</dd>
  6680. </dl>
  6681. </div>
  6682. </div>
  6683. <divclass="cardinfo_bottom">
  6684. <dl>
  6685. <dt>Effect</dt>
  6686. <dd>Digivolve: 0 from [Wizardmon][When Digivolving] Trash the top 2 cards of your deck. If [Wizardmon] or [X Antibody] is in this Digimon's digivolution cards, it gains <Blocker> until the end of your opponent's turn instead.</dd>
  6687. </dl>
  6688. <dl>
  6689. <dt>Digivolveeffect</dt>
  6690. <dd>[When Attacking][Once Per Turn] Trash the top 2 cards of your deck.</dd>
  6691. </dl>
  6692. <dl>
  6693. <dt>Securityeffect</dt>
  6694. <dd>-</dd>
  6695. </dl>
  6696. <dl>
  6697. <dt>Notes</dt>
  6698. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6699. </div>
  6700. </div>
  6701. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6702. </div>
  6703. </div>
  6704. </li>
  6705. <liclass="image_lists_itemdatapage-3">
  6706. <aclass="card_img">
  6707. <imgsrc="../images/cardlist/card/BT12-079.png"alt="BT12-079Jokermon"></a>
  6708. <divclass="popup">
  6709. <divclass="card_detailcard_detail_purple">
  6710. <divclass="card_detail_inner">
  6711. <ulclass="cardinfo_head">
  6712. <liclass="cardno">BT12-079</li>
  6713. <li>C</li>
  6714. <liclass="cardtype">Digimon</li>
  6715. <liclass="cardlv">Lv.5</li>
  6716. </ul>
  6717. <divclass="card_name">Jokermon</div>
  6718. <divclass="cardinfo_top">
  6719. <divclass="card_img">
  6720. <imgsrc="../images/cardlist/card/BT12-079.png"alt="BT12-079Jokermon"></div>
  6721. <divclass="cardinfo_top_body">
  6722. <dl>
  6723. <dt>Form</dt>
  6724. <dd>Ultimate</dd>
  6725. </dl>
  6726. <dl>
  6727. <dt>Attribute</dt>
  6728. <dd>Virus</dd>
  6729. </dl>
  6730. <dl>
  6731. <dt>Type</dt>
  6732. <dd>Wizard</dd>
  6733. </dl>
  6734. <dl>
  6735. <dt>DP</dt>
  6736. <dd>6000</dl>
  6737. <dl>
  6738. <dt>PlayCost</dt>
  6739. <dd>5</dd>
  6740. </dl>
  6741. <dl>
  6742. <dt>DigivolveCost1</dt>
  6743. <dd>2fromLv.4</dd>
  6744. </dl>
  6745. <dl>
  6746. <dt>DigivolveCost2</dt>
  6747. <dd>-</dd>
  6748. </dl>
  6749. </div>
  6750. </div>
  6751. <divclass="cardinfo_bottom">
  6752. <dl>
  6753. <dt>Effect</dt>
  6754. <dd>-</dd>
  6755. </dl>
  6756. <dl>
  6757. <dt>Digivolveeffect</dt>
  6758. <dd>-</dd>
  6759. </dl>
  6760. <dl>
  6761. <dt>Securityeffect</dt>
  6762. <dd>-</dd>
  6763. </dl>
  6764. <dl>
  6765. <dt>Notes</dt>
  6766. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6767. </div>
  6768. </div>
  6769. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6770. </div>
  6771. </div>
  6772. </li>
  6773. <liclass="image_lists_itemdatapage-3">
  6774. <aclass="card_img">
  6775. <imgsrc="../images/cardlist/card/BT12-080.png"alt="BT12-080Wisemon"></a>
  6776. <divclass="popup">
  6777. <divclass="card_detailcard_detail_purple_blackmulticolor">
  6778. <divclass="card_detail_inner">
  6779. <ulclass="cardinfo_head">
  6780. <liclass="cardno">BT12-080</li>
  6781. <li>C</li>
  6782. <liclass="cardtype">Digimon</li>
  6783. <liclass="cardlv">Lv.5</li>
  6784. </ul>
  6785. <divclass="card_name">Wisemon</div>
  6786. <divclass="cardinfo_top">
  6787. <divclass="card_img">
  6788. <imgsrc="../images/cardlist/card/BT12-080.png"alt="BT12-080Wisemon"></div>
  6789. <divclass="cardinfo_top_body">
  6790. <dl>
  6791. <dt>Form</dt>
  6792. <dd>Ultimate</dd>
  6793. </dl>
  6794. <dl>
  6795. <dt>Attribute</dt>
  6796. <dd>Virus</dd>
  6797. </dl>
  6798. <dl>
  6799. <dt>Type</dt>
  6800. <dd>Wizard</dd>
  6801. </dl>
  6802. <dl>
  6803. <dt>DP</dt>
  6804. <dd>6000</dl>
  6805. <dl>
  6806. <dt>PlayCost</dt>
  6807. <dd>6</dd>
  6808. </dl>
  6809. <dl>
  6810. <dt>DigivolveCost1</dt>
  6811. <dd>4fromLv.4</dd>
  6812. </dl>
  6813. <dl>
  6814. <dt>DigivolveCost2</dt>
  6815. <dd>4fromLv.4</dd>
  6816. </dl>
  6817. </div>
  6818. </div>
  6819. <divclass="cardinfo_bottom">
  6820. <dl>
  6821. <dt>Effect</dt>
  6822. <dd>[On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 purple or black Digimon card among them to your hand. Place the rest at the top or bottom of your deck in any order.</dd>
  6823. </dl>
  6824. <dl>
  6825. <dt>Digivolveeffect</dt>
  6826. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6827. </dl>
  6828. <dl>
  6829. <dt>Securityeffect</dt>
  6830. <dd>-</dd>
  6831. </dl>
  6832. <dl>
  6833. <dt>Notes</dt>
  6834. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6835. </div>
  6836. </div>
  6837. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6838. </div>
  6839. </div>
  6840. </li>
  6841. <liclass="image_lists_itemdatapage-3">
  6842. <aclass="card_img">
  6843. <imgsrc="../images/cardlist/card/BT12-081.png"alt="BT12-081Astamon"></a>
  6844. <divclass="popup">
  6845. <divclass="card_detailcard_detail_purple">
  6846. <divclass="card_detail_inner">
  6847. <ulclass="cardinfo_head">
  6848. <liclass="cardno">BT12-081</li>
  6849. <li>U</li>
  6850. <liclass="cardtype">Digimon</li>
  6851. <liclass="cardlv">Lv.5</li>
  6852. </ul>
  6853. <divclass="card_name">Astamon</div>
  6854. <divclass="cardinfo_top">
  6855. <divclass="card_img">
  6856. <imgsrc="../images/cardlist/card/BT12-081.png"alt="BT12-081Astamon"></div>
  6857. <divclass="cardinfo_top_body">
  6858. <dl>
  6859. <dt>Form</dt>
  6860. <dd>Ultimate</dd>
  6861. </dl>
  6862. <dl>
  6863. <dt>Attribute</dt>
  6864. <dd>Virus</dd>
  6865. </dl>
  6866. <dl>
  6867. <dt>Type</dt>
  6868. <dd>Wizard</dd>
  6869. </dl>
  6870. <dl>
  6871. <dt>DP</dt>
  6872. <dd>7000</dl>
  6873. <dl>
  6874. <dt>PlayCost</dt>
  6875. <dd>7</dd>
  6876. </dl>
  6877. <dl>
  6878. <dt>DigivolveCost1</dt>
  6879. <dd>3fromLv.4</dd>
  6880. </dl>
  6881. <dl>
  6882. <dt>DigivolveCost2</dt>
  6883. <dd>-</dd>
  6884. </dl>
  6885. </div>
  6886. </div>
  6887. <divclass="cardinfo_bottom">
  6888. <dl>
  6889. <dt>Effect</dt>
  6890. <dd>Digivolve: 5 from [Psychemon]/3 from yellow, green, or purple Lv.4 w/<Save> text [When Digivolving] You may play 1 level 4 or lower Digimon card with <Save> from under one of your Tamers without paying its cost. If there are 4 or more digivolution cards under this Digimon, it can be digivolved into a [Quartzmon] in your hand or under one of your Tamers with the digivolution cost reduced by 3 instead.</dd>
  6891. </dl>
  6892. <dl>
  6893. <dt>Digivolveeffect</dt>
  6894. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6895. </dl>
  6896. <dl>
  6897. <dt>Securityeffect</dt>
  6898. <dd>-</dd>
  6899. </dl>
  6900. <dl>
  6901. <dt>Notes</dt>
  6902. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  6903. </div>
  6904. </div>
  6905. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6906. </div>
  6907. </div>
  6908. </li>
  6909. <liclass="image_lists_itemdatapage-3">
  6910. <aclass="card_img">
  6911. <imgsrc="../images/cardlist/card/BT12-081_P1.png"alt="BT12-081Astamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6912. </a>
  6913. <divclass="popup">
  6914. <divclass="card_detailcard_detail_purple">
  6915. <divclass="card_detail_inner">
  6916. <ulclass="cardinfo_head">
  6917. <liclass="cardno">BT12-081</li>
  6918. <li>U</li>
  6919. <liclass="cardtype">Digimon</li>
  6920. <liclass="cardlv">Lv.5</li>
  6921. <liclass="cardtypecardParallel">AlternativeArt</li>
  6922. </ul>
  6923. <divclass="card_name">Astamon</div>
  6924. <divclass="cardinfo_top">
  6925. <divclass="card_img">
  6926. <imgsrc="../images/cardlist/card/BT12-081_P1.png"alt="BT12-081Astamon"></div>
  6927. <divclass="cardinfo_top_body">
  6928. <dl>
  6929. <dt>Form</dt>
  6930. <dd>Ultimate</dd>
  6931. </dl>
  6932. <dl>
  6933. <dt>Attribute</dt>
  6934. <dd>Virus</dd>
  6935. </dl>
  6936. <dl>
  6937. <dt>Type</dt>
  6938. <dd>Wizard</dd>
  6939. </dl>
  6940. <dl>
  6941. <dt>DP</dt>
  6942. <dd>7000</dl>
  6943. <dl>
  6944. <dt>PlayCost</dt>
  6945. <dd>7</dd>
  6946. </dl>
  6947. <dl>
  6948. <dt>DigivolveCost1</dt>
  6949. <dd>3fromLv.4</dd>
  6950. </dl>
  6951. <dl>
  6952. <dt>DigivolveCost2</dt>
  6953. <dd>-</dd>
  6954. </dl>
  6955. </div>
  6956. </div>
  6957. <divclass="cardinfo_bottom">
  6958. <dl>
  6959. <dt>Effect</dt>
  6960. <dd>Digivolve: 5 from [Psychemon]/3 from yellow, green, or purple Lv.4 w/<Save> text [When Digivolving] You may play 1 level 4 or lower Digimon card with <Save> from under one of your Tamers without paying its cost. If there are 4 or more digivolution cards under this Digimon, it can be digivolved into a [Quartzmon] in your hand or under one of your Tamers with the digivolution cost reduced by 3 instead.</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>Digivolveeffect</dt>
  6964. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  6965. </dl>
  6966. <dl>
  6967. <dt>Securityeffect</dt>
  6968. <dd>-</dd>
  6969. </dl>
  6970. <dl>
  6971. <dt>Notes</dt>
  6972. <dd>BoxPromotionPack-ACROSSTIME-</dd></dl>
  6973. </div>
  6974. </div>
  6975. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6976. </div>
  6977. </div>
  6978. </li>
  6979. <liclass="image_lists_itemdatapage-3">
  6980. <aclass="card_img">
  6981. <imgsrc="../images/cardlist/card/BT12-082.png"alt="BT12-082Baalmon(XAntibody)"></a>
  6982. <divclass="popup">
  6983. <divclass="card_detailcard_detail_purple">
  6984. <divclass="card_detail_inner">
  6985. <ulclass="cardinfo_head">
  6986. <liclass="cardno">BT12-082</li>
  6987. <li>R</li>
  6988. <liclass="cardtype">Digimon</li>
  6989. <liclass="cardlv">Lv.5</li>
  6990. </ul>
  6991. <divclass="card_name">Baalmon(XAntibody)</div>
  6992. <divclass="cardinfo_top">
  6993. <divclass="card_img">
  6994. <imgsrc="../images/cardlist/card/BT12-082.png"alt="BT12-082Baalmon(XAntibody)"></div>
  6995. <divclass="cardinfo_top_body">
  6996. <dl>
  6997. <dt>Form</dt>
  6998. <dd>Ultimate</dd>
  6999. </dl>
  7000. <dl>
  7001. <dt>Attribute</dt>
  7002. <dd>Free</dd>
  7003. </dl>
  7004. <dl>
  7005. <dt>Type</dt>
  7006. <dd>Wizard/XAntibody</dd>
  7007. </dl>
  7008. <dl>
  7009. <dt>DP</dt>
  7010. <dd>8000</dl>
  7011. <dl>
  7012. <dt>PlayCost</dt>
  7013. <dd>8</dd>
  7014. </dl>
  7015. <dl>
  7016. <dt>DigivolveCost1</dt>
  7017. <dd>3fromLv.4</dd>
  7018. </dl>
  7019. <dl>
  7020. <dt>DigivolveCost2</dt>
  7021. <dd>-</dd>
  7022. </dl>
  7023. </div>
  7024. </div>
  7025. <divclass="cardinfo_bottom">
  7026. <dl>
  7027. <dt>Effect</dt>
  7028. <dd>Digivolve: 0 from [Baalmon][When Digivolving] Return 1 [X Antibody] card from your trash to your hand.[When Digivolving] Trash the top 3 cards of your deck. If this Digimon has [Baalmon] or [X Antibody] in its digivolution cards, delete 1 of your opponent's level 4 or lower Digimon instead.</dd>
  7029. </dl>
  7030. <dl>
  7031. <dt>Digivolveeffect</dt>
  7032. <dd>[Your Turn] While this Digimon has a [Wizard] or [Demon Lord] trait, it gets +2000 DP.</dd>
  7033. </dl>
  7034. <dl>
  7035. <dt>Securityeffect</dt>
  7036. <dd>-</dd>
  7037. </dl>
  7038. <dl>
  7039. <dt>Notes</dt>
  7040. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7041. </div>
  7042. </div>
  7043. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7044. </div>
  7045. </div>
  7046. </li>
  7047. <liclass="image_lists_itemdatapage-3">
  7048. <aclass="card_img">
  7049. <imgsrc="../images/cardlist/card/BT12-083.png"alt="BT12-083Arresterdramon:SuperiorMode"></a>
  7050. <divclass="popup">
  7051. <divclass="card_detailcard_detail_purple">
  7052. <divclass="card_detail_inner">
  7053. <ulclass="cardinfo_head">
  7054. <liclass="cardno">BT12-083</li>
  7055. <li>SR</li>
  7056. <liclass="cardtype">Digimon</li>
  7057. <liclass="cardlv">Lv.5</li>
  7058. </ul>
  7059. <divclass="card_name">Arresterdramon:SuperiorMode</div>
  7060. <divclass="cardinfo_top">
  7061. <divclass="card_img">
  7062. <imgsrc="../images/cardlist/card/BT12-083.png"alt="BT12-083Arresterdramon:SuperiorMode"></div>
  7063. <divclass="cardinfo_top_body">
  7064. <dl>
  7065. <dt>Form</dt>
  7066. <dd>Ultimate</dd>
  7067. </dl>
  7068. <dl>
  7069. <dt>Attribute</dt>
  7070. <dd>Vaccine</dd>
  7071. </dl>
  7072. <dl>
  7073. <dt>Type</dt>
  7074. <dd>Dragon</dd>
  7075. </dl>
  7076. <dl>
  7077. <dt>DP</dt>
  7078. <dd>10000</dl>
  7079. <dl>
  7080. <dt>PlayCost</dt>
  7081. <dd>9</dd>
  7082. </dl>
  7083. <dl>
  7084. <dt>DigivolveCost1</dt>
  7085. <dd>4fromLv.4</dd>
  7086. </dl>
  7087. <dl>
  7088. <dt>DigivolveCost2</dt>
  7089. <dd>-</dd>
  7090. </dl>
  7091. </div>
  7092. </div>
  7093. <divclass="cardinfo_bottom">
  7094. <dl>
  7095. <dt>Effect</dt>
  7096. <dd>Digivolve: 4 from red, black, or purple Lv.4 w/<Save> text [When Digivolving] Place one of your opponent's level 3 or lower Digimon under another of your opponent's Digimon as its bottom digivolution card or under an opponent's Tamer. Add 1 to the max level of the Digimon you can choose with this effect for each differently colored Tamer you have in play.[End of Your Turn][Once Per Turn] If there are 4 or more digivolution cards under this Digimon, you may attack with this Digimon without suspending it.</dd>
  7097. </dl>
  7098. <dl>
  7099. <dt>Digivolveeffect</dt>
  7100. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7101. </dl>
  7102. <dl>
  7103. <dt>Securityeffect</dt>
  7104. <dd>-</dd>
  7105. </dl>
  7106. <dl>
  7107. <dt>Notes</dt>
  7108. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7109. </div>
  7110. </div>
  7111. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7112. </div>
  7113. </div>
  7114. </li>
  7115. <liclass="image_lists_itemdatapage-3">
  7116. <aclass="card_img">
  7117. <imgsrc="../images/cardlist/card/BT12-083_P1.png"alt="BT12-083Arresterdramon:SuperiorMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7118. </a>
  7119. <divclass="popup">
  7120. <divclass="card_detailcard_detail_purple">
  7121. <divclass="card_detail_inner">
  7122. <ulclass="cardinfo_head">
  7123. <liclass="cardno">BT12-083</li>
  7124. <li>SR</li>
  7125. <liclass="cardtype">Digimon</li>
  7126. <liclass="cardlv">Lv.5</li>
  7127. <liclass="cardtypecardParallel">AlternativeArt</li>
  7128. </ul>
  7129. <divclass="card_name">Arresterdramon:SuperiorMode</div>
  7130. <divclass="cardinfo_top">
  7131. <divclass="card_img">
  7132. <imgsrc="../images/cardlist/card/BT12-083_P1.png"alt="BT12-083Arresterdramon:SuperiorMode"></div>
  7133. <divclass="cardinfo_top_body">
  7134. <dl>
  7135. <dt>Form</dt>
  7136. <dd>Ultimate</dd>
  7137. </dl>
  7138. <dl>
  7139. <dt>Attribute</dt>
  7140. <dd>Vaccine</dd>
  7141. </dl>
  7142. <dl>
  7143. <dt>Type</dt>
  7144. <dd>Dragon</dd>
  7145. </dl>
  7146. <dl>
  7147. <dt>DP</dt>
  7148. <dd>10000</dl>
  7149. <dl>
  7150. <dt>PlayCost</dt>
  7151. <dd>9</dd>
  7152. </dl>
  7153. <dl>
  7154. <dt>DigivolveCost1</dt>
  7155. <dd>4fromLv.4</dd>
  7156. </dl>
  7157. <dl>
  7158. <dt>DigivolveCost2</dt>
  7159. <dd>-</dd>
  7160. </dl>
  7161. </div>
  7162. </div>
  7163. <divclass="cardinfo_bottom">
  7164. <dl>
  7165. <dt>Effect</dt>
  7166. <dd>Digivolve: 4 from red, black, or purple Lv.4 w/<Save> text [When Digivolving] Place one of your opponent's level 3 or lower Digimon under another of your opponent's Digimon as its bottom digivolution card or under an opponent's Tamer. Add 1 to the max level of the Digimon you can choose with this effect for each differently colored Tamer you have in play.[End of Your Turn][Once Per Turn] If there are 4 or more digivolution cards under this Digimon, you may attack with this Digimon without suspending it.</dd>
  7167. </dl>
  7168. <dl>
  7169. <dt>Digivolveeffect</dt>
  7170. <dd>[When Attacking][Once Per Turn] If this Digimon has <Save> in its text, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7171. </dl>
  7172. <dl>
  7173. <dt>Securityeffect</dt>
  7174. <dd>-</dd>
  7175. </dl>
  7176. <dl>
  7177. <dt>Notes</dt>
  7178. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7179. </div>
  7180. </div>
  7181. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7182. </div>
  7183. </div>
  7184. </li>
  7185. <liclass="image_lists_itemdatapage-3">
  7186. <aclass="card_img">
  7187. <imgsrc="../images/cardlist/card/BT12-084.png"alt="BT12-084JetMervamon"></a>
  7188. <divclass="popup">
  7189. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7190. <divclass="card_detail_inner">
  7191. <ulclass="cardinfo_head">
  7192. <liclass="cardno">BT12-084</li>
  7193. <li>U</li>
  7194. <liclass="cardtype">Digimon</li>
  7195. <liclass="cardlv">Lv.6</li>
  7196. </ul>
  7197. <divclass="card_name">JetMervamon</div>
  7198. <divclass="cardinfo_top">
  7199. <divclass="card_img">
  7200. <imgsrc="../images/cardlist/card/BT12-084.png"alt="BT12-084JetMervamon"></div>
  7201. <divclass="cardinfo_top_body">
  7202. <dl>
  7203. <dt>Form</dt>
  7204. <dd>Mega</dd>
  7205. </dl>
  7206. <dl>
  7207. <dt>Attribute</dt>
  7208. <dd>Virus</dd>
  7209. </dl>
  7210. <dl>
  7211. <dt>Type</dt>
  7212. <dd>Enhancement/XrosHeart</dd>
  7213. </dl>
  7214. <dl>
  7215. <dt>DP</dt>
  7216. <dd>13000</dl>
  7217. <dl>
  7218. <dt>PlayCost</dt>
  7219. <dd>13</dd>
  7220. </dl>
  7221. <dl>
  7222. <dt>DigivolveCost1</dt>
  7223. <dd>5fromLv.5</dd>
  7224. </dl>
  7225. <dl>
  7226. <dt>DigivolveCost2</dt>
  7227. <dd>2fromLv.6</dd>
  7228. </dl>
  7229. </div>
  7230. </div>
  7231. <divclass="cardinfo_bottom">
  7232. <dl>
  7233. <dt>Effect</dt>
  7234. <dd>DigiXros -3: [Mervamon] × [Sparrowmon]<Armor Purge>[On Play][When Digivolving] You may place 1 Digimon card with a [Xros Heart] trait from your hand or from under one of your Tamers under this Digimon as its bottom digivolution card. Then, if this Digimon has [Sparrowmon] in its digivolution cards, until the end of your opponent's turn, all of your Digimon gain <Blocker> and can't be returned to hands or decks.[All Turns][Once Per Turn] If one of your other Digimon is deleted, unsuspend this Digimon.</dd>
  7235. </dl>
  7236. <dl>
  7237. <dt>Digivolveeffect</dt>
  7238. <dd>-</dd>
  7239. </dl>
  7240. <dl>
  7241. <dt>Securityeffect</dt>
  7242. <dd>-</dd>
  7243. </dl>
  7244. <dl>
  7245. <dt>Notes</dt>
  7246. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7247. </div>
  7248. </div>
  7249. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7250. </div>
  7251. </div>
  7252. </li>
  7253. <liclass="image_lists_itemdatapage-3">
  7254. <aclass="card_img">
  7255. <imgsrc="../images/cardlist/card/BT12-085.png"alt="BT12-085Beelzemon(XAntibody)"></a>
  7256. <divclass="popup">
  7257. <divclass="card_detailcard_detail_purple">
  7258. <divclass="card_detail_inner">
  7259. <ulclass="cardinfo_head">
  7260. <liclass="cardno">BT12-085</li>
  7261. <li>SR</li>
  7262. <liclass="cardtype">Digimon</li>
  7263. <liclass="cardlv">Lv.6</li>
  7264. </ul>
  7265. <divclass="card_name">Beelzemon(XAntibody)</div>
  7266. <divclass="cardinfo_top">
  7267. <divclass="card_img">
  7268. <imgsrc="../images/cardlist/card/BT12-085.png"alt="BT12-085Beelzemon(XAntibody)"></div>
  7269. <divclass="cardinfo_top_body">
  7270. <dl>
  7271. <dt>Form</dt>
  7272. <dd>Mega</dd>
  7273. </dl>
  7274. <dl>
  7275. <dt>Attribute</dt>
  7276. <dd>Virus</dd>
  7277. </dl>
  7278. <dl>
  7279. <dt>Type</dt>
  7280. <dd>DemonLord/SevenGreatDemonLords/XAntibody</dd>
  7281. </dl>
  7282. <dl>
  7283. <dt>DP</dt>
  7284. <dd>12000</dl>
  7285. <dl>
  7286. <dt>PlayCost</dt>
  7287. <dd>13</dd>
  7288. </dl>
  7289. <dl>
  7290. <dt>DigivolveCost1</dt>
  7291. <dd>4fromLv.5</dd>
  7292. </dl>
  7293. <dl>
  7294. <dt>DigivolveCost2</dt>
  7295. <dd>-</dd>
  7296. </dl>
  7297. </div>
  7298. </div>
  7299. <divclass="cardinfo_bottom">
  7300. <dl>
  7301. <dt>Effect</dt>
  7302. <dd>Digivolve: 1 from [Beelzemon][When Digivolving] If this Digimon has [Beelzemon] or [X Antibody] in its digivolution cards, trash 1 card from the top of your opponent’s security stack for every 10 cards in your trash.[On Deletion] You may play 1 Digimon card with [Impmon] in its name from your trash without paying its cost.</dd>
  7303. </dl>
  7304. <dl>
  7305. <dt>Digivolveeffect</dt>
  7306. <dd>-</dd>
  7307. </dl>
  7308. <dl>
  7309. <dt>Securityeffect</dt>
  7310. <dd>-</dd>
  7311. </dl>
  7312. <dl>
  7313. <dt>Notes</dt>
  7314. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7315. </div>
  7316. </div>
  7317. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7318. </div>
  7319. </div>
  7320. </li>
  7321. <liclass="image_lists_itemdatapage-3">
  7322. <aclass="card_img">
  7323. <imgsrc="../images/cardlist/card/BT12-085_P1.png"alt="BT12-085Beelzemon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7324. </a>
  7325. <divclass="popup">
  7326. <divclass="card_detailcard_detail_purple">
  7327. <divclass="card_detail_inner">
  7328. <ulclass="cardinfo_head">
  7329. <liclass="cardno">BT12-085</li>
  7330. <li>SR</li>
  7331. <liclass="cardtype">Digimon</li>
  7332. <liclass="cardlv">Lv.6</li>
  7333. <liclass="cardtypecardParallel">AlternativeArt</li>
  7334. </ul>
  7335. <divclass="card_name">Beelzemon(XAntibody)</div>
  7336. <divclass="cardinfo_top">
  7337. <divclass="card_img">
  7338. <imgsrc="../images/cardlist/card/BT12-085_P1.png"alt="BT12-085Beelzemon(XAntibody)"></div>
  7339. <divclass="cardinfo_top_body">
  7340. <dl>
  7341. <dt>Form</dt>
  7342. <dd>Mega</dd>
  7343. </dl>
  7344. <dl>
  7345. <dt>Attribute</dt>
  7346. <dd>Virus</dd>
  7347. </dl>
  7348. <dl>
  7349. <dt>Type</dt>
  7350. <dd>DemonLord/SevenGreatDemonLords/XAntibody</dd>
  7351. </dl>
  7352. <dl>
  7353. <dt>DP</dt>
  7354. <dd>12000</dl>
  7355. <dl>
  7356. <dt>PlayCost</dt>
  7357. <dd>13</dd>
  7358. </dl>
  7359. <dl>
  7360. <dt>DigivolveCost1</dt>
  7361. <dd>4fromLv.5</dd>
  7362. </dl>
  7363. <dl>
  7364. <dt>DigivolveCost2</dt>
  7365. <dd>-</dd>
  7366. </dl>
  7367. </div>
  7368. </div>
  7369. <divclass="cardinfo_bottom">
  7370. <dl>
  7371. <dt>Effect</dt>
  7372. <dd>Digivolve: 1 from [Beelzemon][When Digivolving] If this Digimon has [Beelzemon] or [X Antibody] in its digivolution cards, trash 1 card from the top of your opponent’s security stack for every 10 cards in your trash.[On Deletion] You may play 1 Digimon card with [Impmon] in its name from your trash without paying its cost.</dd>
  7373. </dl>
  7374. <dl>
  7375. <dt>Digivolveeffect</dt>
  7376. <dd>-</dd>
  7377. </dl>
  7378. <dl>
  7379. <dt>Securityeffect</dt>
  7380. <dd>-</dd>
  7381. </dl>
  7382. <dl>
  7383. <dt>Notes</dt>
  7384. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7385. </div>
  7386. </div>
  7387. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7388. </div>
  7389. </div>
  7390. </li>
  7391. <liclass="image_lists_itemdatapage-3">
  7392. <aclass="card_img">
  7393. <imgsrc="../images/cardlist/card/BT12-086.png"alt="BT12-086Clockmon"></a>
  7394. <divclass="popup">
  7395. <divclass="card_detailcard_detail_white">
  7396. <divclass="card_detail_inner">
  7397. <ulclass="cardinfo_head">
  7398. <liclass="cardno">BT12-086</li>
  7399. <li>R</li>
  7400. <liclass="cardtype">Digimon</li>
  7401. <liclass="cardlv">Lv.4</li>
  7402. </ul>
  7403. <divclass="card_name">Clockmon</div>
  7404. <divclass="cardinfo_top">
  7405. <divclass="card_img">
  7406. <imgsrc="../images/cardlist/card/BT12-086.png"alt="BT12-086Clockmon"></div>
  7407. <divclass="cardinfo_top_body">
  7408. <dl>
  7409. <dt>Form</dt>
  7410. <dd>Champion</dd>
  7411. </dl>
  7412. <dl>
  7413. <dt>Attribute</dt>
  7414. <dd>Data</dd>
  7415. </dl>
  7416. <dl>
  7417. <dt>Type</dt>
  7418. <dd>Machine</dd>
  7419. </dl>
  7420. <dl>
  7421. <dt>DP</dt>
  7422. <dd>4000</dl>
  7423. <dl>
  7424. <dt>PlayCost</dt>
  7425. <dd>4</dd>
  7426. </dl>
  7427. <dl>
  7428. <dt>DigivolveCost1</dt>
  7429. <dd>-</dd>
  7430. </dl>
  7431. <dl>
  7432. <dt>DigivolveCost2</dt>
  7433. <dd>-</dd>
  7434. </dl>
  7435. </div>
  7436. </div>
  7437. <divclass="cardinfo_bottom">
  7438. <dl>
  7439. <dt>Effect</dt>
  7440. <dd><Blocker>[On Play] Reveal the top 3 cards of your deck. Add up to 2 differently colored Digimon cards with <Save> in their text among them to your hand. Place the remaining cards at the bottom of your deck in any order.[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  7441. </dl>
  7442. <dl>
  7443. <dt>Digivolveeffect</dt>
  7444. <dd>[Your Turn] While this Digimon has <Save> in its text, it gains <Jamming>. (This Digimon can't be deleted in battles against Security Digimon).</dd>
  7445. </dl>
  7446. <dl>
  7447. <dt>Securityeffect</dt>
  7448. <dd>-</dd>
  7449. </dl>
  7450. <dl>
  7451. <dt>Notes</dt>
  7452. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7453. </div>
  7454. </div>
  7455. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7456. </div>
  7457. </div>
  7458. </li>
  7459. <liclass="image_lists_itemdatapage-3">
  7460. <aclass="card_img">
  7461. <imgsrc="../images/cardlist/card/BT12-111.png"alt="BT12-111DarknessBagramon"></a>
  7462. <divclass="popup">
  7463. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7464. <divclass="card_detail_inner">
  7465. <ulclass="cardinfo_head">
  7466. <liclass="cardno">BT12-111</li>
  7467. <li>SEC</li>
  7468. <liclass="cardtype">Digimon</li>
  7469. <liclass="cardlv">Lv.7</li>
  7470. </ul>
  7471. <divclass="card_name">DarknessBagramon</div>
  7472. <divclass="cardinfo_top">
  7473. <divclass="card_img">
  7474. <imgsrc="../images/cardlist/card/BT12-111.png"alt="BT12-111DarknessBagramon"></div>
  7475. <divclass="cardinfo_top_body">
  7476. <dl>
  7477. <dt>Form</dt>
  7478. <dd>Mega</dd>
  7479. </dl>
  7480. <dl>
  7481. <dt>Attribute</dt>
  7482. <dd>Virus</dd>
  7483. </dl>
  7484. <dl>
  7485. <dt>Type</dt>
  7486. <dd>Composite/BagraArmy</dd>
  7487. </dl>
  7488. <dl>
  7489. <dt>DP</dt>
  7490. <dd>15000</dl>
  7491. <dl>
  7492. <dt>PlayCost</dt>
  7493. <dd>16</dd>
  7494. </dl>
  7495. <dl>
  7496. <dt>DigivolveCost1</dt>
  7497. <dd>6fromLv.6</dd>
  7498. </dl>
  7499. <dl>
  7500. <dt>DigivolveCost2</dt>
  7501. <dd>9fromLv.5</dd>
  7502. </dl>
  7503. </div>
  7504. </div>
  7505. <divclass="cardinfo_bottom">
  7506. <dl>
  7507. <dt>Effect</dt>
  7508. <dd>DigiXros -3: [DarkKnightmon] × [Bagramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play][When Digivolving] Delete 1 of your opponent's Digimon. Then, you may place up to 5 Digimon cards with a [Bagra Army] trait from your trash into this Digimon's digivolution cards.[Opponent's Turn] If an opponent's Digimon digivolves or attacks, by trashing 5 cards in this Digimon's digivolution cards, return all Tamers to their owners' hands.</dd>
  7509. </dl>
  7510. <dl>
  7511. <dt>Digivolveeffect</dt>
  7512. <dd>-</dd>
  7513. </dl>
  7514. <dl>
  7515. <dt>Securityeffect</dt>
  7516. <dd>-</dd>
  7517. </dl>
  7518. <dl>
  7519. <dt>Notes</dt>
  7520. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7521. </div>
  7522. </div>
  7523. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7524. </div>
  7525. </div>
  7526. </li>
  7527. <liclass="image_lists_itemdatapage-3">
  7528. <aclass="card_img">
  7529. <imgsrc="../images/cardlist/card/BT12-111_P1.png"alt="BT12-111DarknessBagramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7530. </a>
  7531. <divclass="popup">
  7532. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7533. <divclass="card_detail_inner">
  7534. <ulclass="cardinfo_head">
  7535. <liclass="cardno">BT12-111</li>
  7536. <li>SEC</li>
  7537. <liclass="cardtype">Digimon</li>
  7538. <liclass="cardlv">Lv.7</li>
  7539. <liclass="cardtypecardParallel">AlternativeArt</li>
  7540. </ul>
  7541. <divclass="card_name">DarknessBagramon</div>
  7542. <divclass="cardinfo_top">
  7543. <divclass="card_img">
  7544. <imgsrc="../images/cardlist/card/BT12-111_P1.png"alt="BT12-111DarknessBagramon"></div>
  7545. <divclass="cardinfo_top_body">
  7546. <dl>
  7547. <dt>Form</dt>
  7548. <dd>Mega</dd>
  7549. </dl>
  7550. <dl>
  7551. <dt>Attribute</dt>
  7552. <dd>Virus</dd>
  7553. </dl>
  7554. <dl>
  7555. <dt>Type</dt>
  7556. <dd>Composite/BagraArmy</dd>
  7557. </dl>
  7558. <dl>
  7559. <dt>DP</dt>
  7560. <dd>15000</dl>
  7561. <dl>
  7562. <dt>PlayCost</dt>
  7563. <dd>16</dd>
  7564. </dl>
  7565. <dl>
  7566. <dt>DigivolveCost1</dt>
  7567. <dd>6fromLv.6</dd>
  7568. </dl>
  7569. <dl>
  7570. <dt>DigivolveCost2</dt>
  7571. <dd>9fromLv.5</dd>
  7572. </dl>
  7573. </div>
  7574. </div>
  7575. <divclass="cardinfo_bottom">
  7576. <dl>
  7577. <dt>Effect</dt>
  7578. <dd>DigiXros -3: [DarkKnightmon] × [Bagramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play][When Digivolving] Delete 1 of your opponent's Digimon. Then, you may place up to 5 Digimon cards with a [Bagra Army] trait from your trash into this Digimon's digivolution cards.[Opponent's Turn] If an opponent's Digimon digivolves or attacks, by trashing 5 cards in this Digimon's digivolution cards, return all Tamers to their owners' hands.</dd>
  7579. </dl>
  7580. <dl>
  7581. <dt>Digivolveeffect</dt>
  7582. <dd>-</dd>
  7583. </dl>
  7584. <dl>
  7585. <dt>Securityeffect</dt>
  7586. <dd>-</dd>
  7587. </dl>
  7588. <dl>
  7589. <dt>Notes</dt>
  7590. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7591. </div>
  7592. </div>
  7593. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7594. </div>
  7595. </div>
  7596. </li>
  7597. <liclass="image_lists_itemdatapage-3">
  7598. <aclass="card_img">
  7599. <imgsrc="../images/cardlist/card/BT12-112.png"alt="BT12-112ShoutmonX7:SuperiorMode"></a>
  7600. <divclass="popup">
  7601. <divclass="card_detailcard_detail_white_redmulticolor">
  7602. <divclass="card_detail_inner">
  7603. <ulclass="cardinfo_head">
  7604. <liclass="cardno">BT12-112</li>
  7605. <li>SEC</li>
  7606. <liclass="cardtype">Digimon</li>
  7607. <liclass="cardlv">Lv.7</li>
  7608. </ul>
  7609. <divclass="card_name">ShoutmonX7:SuperiorMode</div>
  7610. <divclass="cardinfo_top">
  7611. <divclass="card_img">
  7612. <imgsrc="../images/cardlist/card/BT12-112.png"alt="BT12-112ShoutmonX7:SuperiorMode"></div>
  7613. <divclass="cardinfo_top_body">
  7614. <dl>
  7615. <dt>Form</dt>
  7616. <dd>Mega</dd>
  7617. </dl>
  7618. <dl>
  7619. <dt>Attribute</dt>
  7620. <dd>Data</dd>
  7621. </dl>
  7622. <dl>
  7623. <dt>Type</dt>
  7624. <dd>Composite/XrosHeart/BlueFlare</dd>
  7625. </dl>
  7626. <dl>
  7627. <dt>DP</dt>
  7628. <dd>17000</dl>
  7629. <dl>
  7630. <dt>PlayCost</dt>
  7631. <dd>15</dd>
  7632. </dl>
  7633. <dl>
  7634. <dt>DigivolveCost1</dt>
  7635. <dd>-</dd>
  7636. </dl>
  7637. <dl>
  7638. <dt>DigivolveCost2</dt>
  7639. <dd>-</dd>
  7640. </dl>
  7641. </div>
  7642. </div>
  7643. <divclass="cardinfo_bottom">
  7644. <dl>
  7645. <dt>Effect</dt>
  7646. <dd>DigiXros -1: ∞ Digimon cards w/[Xros Heart] or [Blue Flare] trait & different card numbers When you would play this card from your hand, by placing 1 of your [Shoutmon] as a digivolution card under this Digimon, reduce its play cost by 1 and place the cards in your trash as digivolution cards for a DigiXros.[On Play] Return all of the digivolution cards under 1 of your opponent's Digimon to their owner's deck in any order, and return that Digimon to the bottom of its owner's deck.[Your Turn] All of your opponent's [Security] effects on Option cards don't activate.</dd>
  7647. </dl>
  7648. <dl>
  7649. <dt>Digivolveeffect</dt>
  7650. <dd>-</dd>
  7651. </dl>
  7652. <dl>
  7653. <dt>Securityeffect</dt>
  7654. <dd>-</dd>
  7655. </dl>
  7656. <dl>
  7657. <dt>Notes</dt>
  7658. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7659. </div>
  7660. </div>
  7661. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7662. </div>
  7663. </div>
  7664. </li>
  7665. <liclass="image_lists_itemdatapage-3">
  7666. <aclass="card_img">
  7667. <imgsrc="../images/cardlist/card/BT12-112_P1.png"alt="BT12-112ShoutmonX7:SuperiorMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7668. </a>
  7669. <divclass="popup">
  7670. <divclass="card_detailcard_detail_white_redmulticolor">
  7671. <divclass="card_detail_inner">
  7672. <ulclass="cardinfo_head">
  7673. <liclass="cardno">BT12-112</li>
  7674. <li>SEC</li>
  7675. <liclass="cardtype">Digimon</li>
  7676. <liclass="cardlv">Lv.7</li>
  7677. <liclass="cardtypecardParallel">AlternativeArt</li>
  7678. </ul>
  7679. <divclass="card_name">ShoutmonX7:SuperiorMode</div>
  7680. <divclass="cardinfo_top">
  7681. <divclass="card_img">
  7682. <imgsrc="../images/cardlist/card/BT12-112_P1.png"alt="BT12-112ShoutmonX7:SuperiorMode"></div>
  7683. <divclass="cardinfo_top_body">
  7684. <dl>
  7685. <dt>Form</dt>
  7686. <dd>Mega</dd>
  7687. </dl>
  7688. <dl>
  7689. <dt>Attribute</dt>
  7690. <dd>Data</dd>
  7691. </dl>
  7692. <dl>
  7693. <dt>Type</dt>
  7694. <dd>Composite/XrosHeart/BlueFlare</dd>
  7695. </dl>
  7696. <dl>
  7697. <dt>DP</dt>
  7698. <dd>17000</dl>
  7699. <dl>
  7700. <dt>PlayCost</dt>
  7701. <dd>15</dd>
  7702. </dl>
  7703. <dl>
  7704. <dt>DigivolveCost1</dt>
  7705. <dd>-</dd>
  7706. </dl>
  7707. <dl>
  7708. <dt>DigivolveCost2</dt>
  7709. <dd>-</dd>
  7710. </dl>
  7711. </div>
  7712. </div>
  7713. <divclass="cardinfo_bottom">
  7714. <dl>
  7715. <dt>Effect</dt>
  7716. <dd>DigiXros -1: ∞ Digimon cards w/[Xros Heart] or [Blue Flare] trait & different card numbers When you would play this card from your hand, by placing 1 of your [Shoutmon] as a digivolution card under this Digimon, reduce its play cost by 1 and place the cards in your trash as digivolution cards for a DigiXros.[On Play] Return all of the digivolution cards under 1 of your opponent's Digimon to their owner's deck in any order, and return that Digimon to the bottom of its owner's deck.[Your Turn] All of your opponent's [Security] effects on Option cards don't activate.</dd>
  7717. </dl>
  7718. <dl>
  7719. <dt>Digivolveeffect</dt>
  7720. <dd>-</dd>
  7721. </dl>
  7722. <dl>
  7723. <dt>Securityeffect</dt>
  7724. <dd>-</dd>
  7725. </dl>
  7726. <dl>
  7727. <dt>Notes</dt>
  7728. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7729. </div>
  7730. </div>
  7731. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7732. </div>
  7733. </div>
  7734. </li>
  7735. <liclass="image_lists_itemdatapage-3">
  7736. <aclass="card_img">
  7737. <imgsrc="../images/cardlist/card/BT12-111_P2.png"alt="BT12-111DarknessBagramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7738. </a>
  7739. <divclass="popup">
  7740. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7741. <divclass="card_detail_inner">
  7742. <ulclass="cardinfo_head">
  7743. <liclass="cardno">BT12-111</li>
  7744. <li>SEC</li>
  7745. <liclass="cardtype">Digimon</li>
  7746. <liclass="cardlv">Lv.7</li>
  7747. <liclass="cardtypecardParallel">AlternativeArt</li>
  7748. </ul>
  7749. <divclass="card_name">DarknessBagramon</div>
  7750. <divclass="cardinfo_top">
  7751. <divclass="card_img">
  7752. <imgsrc="../images/cardlist/card/BT12-111_P2.png"alt="BT12-111DarknessBagramon"></div>
  7753. <divclass="cardinfo_top_body">
  7754. <dl>
  7755. <dt>Form</dt>
  7756. <dd>Mega</dd>
  7757. </dl>
  7758. <dl>
  7759. <dt>Attribute</dt>
  7760. <dd>Virus</dd>
  7761. </dl>
  7762. <dl>
  7763. <dt>Type</dt>
  7764. <dd>Composite/BagraArmy</dd>
  7765. </dl>
  7766. <dl>
  7767. <dt>DP</dt>
  7768. <dd>15000</dl>
  7769. <dl>
  7770. <dt>PlayCost</dt>
  7771. <dd>16</dd>
  7772. </dl>
  7773. <dl>
  7774. <dt>DigivolveCost1</dt>
  7775. <dd>6fromLv.6</dd>
  7776. </dl>
  7777. <dl>
  7778. <dt>DigivolveCost2</dt>
  7779. <dd>9fromLv.5</dd>
  7780. </dl>
  7781. </div>
  7782. </div>
  7783. <divclass="cardinfo_bottom">
  7784. <dl>
  7785. <dt>Effect</dt>
  7786. <dd>DigiXros -3: [DarkKnightmon] × [Bagramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play][When Digivolving] Delete 1 of your opponent's Digimon. Then, place up to 5 Digimon cards with a [Bagra Army] trait from your trash into this Digimon's digivolution cards.[Opponent's Turn] If an opponent's Digimon digivolves or attacks, by trashing 5 cards in this Digimon's digivolution cards, return all Tamers to their owners' hands.</dd>
  7787. </dl>
  7788. <dl>
  7789. <dt>Digivolveeffect</dt>
  7790. <dd>-</dd>
  7791. </dl>
  7792. <dl>
  7793. <dt>Securityeffect</dt>
  7794. <dd>-</dd>
  7795. </dl>
  7796. <dl>
  7797. <dt>Notes</dt>
  7798. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7799. </div>
  7800. </div>
  7801. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7802. </div>
  7803. </div>
  7804. </li>
  7805. <liclass="image_lists_itemdatapage-3">
  7806. <aclass="card_img">
  7807. <imgsrc="../images/cardlist/card/BT12-112_P2.png"alt="BT12-112ShoutmonX7:SuperiorMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7808. </a>
  7809. <divclass="popup">
  7810. <divclass="card_detailcard_detail_white_redmulticolor">
  7811. <divclass="card_detail_inner">
  7812. <ulclass="cardinfo_head">
  7813. <liclass="cardno">BT12-112</li>
  7814. <li>SEC</li>
  7815. <liclass="cardtype">Digimon</li>
  7816. <liclass="cardlv">Lv.7</li>
  7817. <liclass="cardtypecardParallel">AlternativeArt</li>
  7818. </ul>
  7819. <divclass="card_name">ShoutmonX7:SuperiorMode</div>
  7820. <divclass="cardinfo_top">
  7821. <divclass="card_img">
  7822. <imgsrc="../images/cardlist/card/BT12-112_P2.png"alt="BT12-112ShoutmonX7:SuperiorMode"></div>
  7823. <divclass="cardinfo_top_body">
  7824. <dl>
  7825. <dt>Form</dt>
  7826. <dd>Mega</dd>
  7827. </dl>
  7828. <dl>
  7829. <dt>Attribute</dt>
  7830. <dd>Data</dd>
  7831. </dl>
  7832. <dl>
  7833. <dt>Type</dt>
  7834. <dd>Composite/XrosHeart/BlueFlare</dd>
  7835. </dl>
  7836. <dl>
  7837. <dt>DP</dt>
  7838. <dd>17000</dl>
  7839. <dl>
  7840. <dt>PlayCost</dt>
  7841. <dd>15</dd>
  7842. </dl>
  7843. <dl>
  7844. <dt>DigivolveCost1</dt>
  7845. <dd>-</dd>
  7846. </dl>
  7847. <dl>
  7848. <dt>DigivolveCost2</dt>
  7849. <dd>-</dd>
  7850. </dl>
  7851. </div>
  7852. </div>
  7853. <divclass="cardinfo_bottom">
  7854. <dl>
  7855. <dt>Effect</dt>
  7856. <dd>DigiXros -1: ∞ Digimon cards w/[Xros Heart] or [Blue Flare] trait & different card numbers When you would play this card from your hand, by placing 1 of your [Shoutmon] as a digivolution card under this Digimon, reduce its play cost by 1 and place the cards in your trash as digivolution cards for a DigiXros.[On Play] Return all of the digivolution cards under 1 of your opponent's Digimon to their owner's deck in any order, and return that Digimon to the bottom of its owner's deck.[Your Turn] All of your opponent's [Security] effects on Option cards don't activate.</dd>
  7857. </dl>
  7858. <dl>
  7859. <dt>Digivolveeffect</dt>
  7860. <dd>-</dd>
  7861. </dl>
  7862. <dl>
  7863. <dt>Securityeffect</dt>
  7864. <dd>-</dd>
  7865. </dl>
  7866. <dl>
  7867. <dt>Notes</dt>
  7868. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7869. </div>
  7870. </div>
  7871. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7872. </div>
  7873. </div>
  7874. </li>
  7875. <liclass="image_lists_itemdatapage-3">
  7876. <aclass="card_img">
  7877. <imgsrc="../images/cardlist/card/BT12-087.png"alt="BT12-087TaikiKudo"></a>
  7878. <divclass="popup">
  7879. <divclass="card_detailcard_detail_red">
  7880. <divclass="card_detail_inner">
  7881. <ulclass="cardinfo_head">
  7882. <liclass="cardno">BT12-087</li>
  7883. <li>R</li>
  7884. <liclass="cardtype">Tamer</li>
  7885. </ul>
  7886. <divclass="card_name">TaikiKudo</div>
  7887. <divclass="cardinfo_top">
  7888. <divclass="card_img">
  7889. <imgsrc="../images/cardlist/card/BT12-087.png"alt="BT12-087TaikiKudo"></div>
  7890. <divclass="cardinfo_top_body">
  7891. <dl>
  7892. <dt>Form</dt>
  7893. <dd>-</dd>
  7894. </dl>
  7895. <dl>
  7896. <dt>Attribute</dt>
  7897. <dd>-</dd>
  7898. </dl>
  7899. <dl>
  7900. <dt>Type</dt>
  7901. <dd>Hunter/XrosHeart</dd>
  7902. </dl>
  7903. <dl>
  7904. <dt>DP</dt>
  7905. <dd>-</dl>
  7906. <dl>
  7907. <dt>PlayCost</dt>
  7908. <dd>3</dd>
  7909. </dl>
  7910. <dl>
  7911. <dt>DigivolveCost1</dt>
  7912. <dd>-</dd>
  7913. </dl>
  7914. <dl>
  7915. <dt>DigivolveCost2</dt>
  7916. <dd>-</dd>
  7917. </dl>
  7918. </div>
  7919. </div>
  7920. <divclass="cardinfo_bottom">
  7921. <dl>
  7922. <dt>Effect</dt>
  7923. <dd>[Start of Your Main Phase] By placing 1 of your Digimon cards with <Save> in its text from your hand under this Tamer, <Draw 1>. (Draw 1 card from your deck.)[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  7924. </dl>
  7925. <dl>
  7926. <dt>Digivolveeffect</dt>
  7927. <dd>-</dd>
  7928. </dl>
  7929. <dl>
  7930. <dt>Securityeffect</dt>
  7931. <dd>[Security] Play this card without paying its memory cost.</dd>
  7932. </dl>
  7933. <dl>
  7934. <dt>Notes</dt>
  7935. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  7936. </div>
  7937. </div>
  7938. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7939. </div>
  7940. </div>
  7941. </li>
  7942. <liclass="image_lists_itemdatapage-3">
  7943. <aclass="card_img">
  7944. <imgsrc="../images/cardlist/card/BT12-087_P1.png"alt="BT12-087TaikiKudo"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  7945. </a>
  7946. <divclass="popup">
  7947. <divclass="card_detailcard_detail_red">
  7948. <divclass="card_detail_inner">
  7949. <ulclass="cardinfo_head">
  7950. <liclass="cardno">BT12-087</li>
  7951. <li>R</li>
  7952. <liclass="cardtype">Tamer</li>
  7953. <liclass="cardtypecardParallel">AlternativeArt</li>
  7954. </ul>
  7955. <divclass="card_name">TaikiKudo</div>
  7956. <divclass="cardinfo_top">
  7957. <divclass="card_img">
  7958. <imgsrc="../images/cardlist/card/BT12-087_P1.png"alt="BT12-087TaikiKudo"></div>
  7959. <divclass="cardinfo_top_body">
  7960. <dl>
  7961. <dt>Form</dt>
  7962. <dd>-</dd>
  7963. </dl>
  7964. <dl>
  7965. <dt>Attribute</dt>
  7966. <dd>-</dd>
  7967. </dl>
  7968. <dl>
  7969. <dt>Type</dt>
  7970. <dd>Hunter/XrosHeart</dd>
  7971. </dl>
  7972. <dl>
  7973. <dt>DP</dt>
  7974. <dd>-</dl>
  7975. <dl>
  7976. <dt>PlayCost</dt>
  7977. <dd>3</dd>
  7978. </dl>
  7979. <dl>
  7980. <dt>DigivolveCost1</dt>
  7981. <dd>-</dd>
  7982. </dl>
  7983. <dl>
  7984. <dt>DigivolveCost2</dt>
  7985. <dd>-</dd>
  7986. </dl>
  7987. </div>
  7988. </div>
  7989. <divclass="cardinfo_bottom">
  7990. <dl>
  7991. <dt>Effect</dt>
  7992. <dd>[Start of Your Main Phase] By placing 1 of your Digimon cards with <Save> in its text from your hand under this Tamer, <Draw 1>. (Draw 1 card from your deck.)[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  7993. </dl>
  7994. <dl>
  7995. <dt>Digivolveeffect</dt>
  7996. <dd>-</dd>
  7997. </dl>
  7998. <dl>
  7999. <dt>Securityeffect</dt>
  8000. <dd>[Security] Play this card without paying its memory cost.</dd>
  8001. </dl>
  8002. <dl>
  8003. <dt>Notes</dt>
  8004. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8005. </div>
  8006. </div>
  8007. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8008. </div>
  8009. </div>
  8010. </li>
  8011. <liclass="image_lists_itemdatapage-3">
  8012. <aclass="card_img">
  8013. <imgsrc="../images/cardlist/card/BT12-088.png"alt="BT12-088TakuyaKanbara"></a>
  8014. <divclass="popup">
  8015. <divclass="card_detailcard_detail_red">
  8016. <divclass="card_detail_inner">
  8017. <ulclass="cardinfo_head">
  8018. <liclass="cardno">BT12-088</li>
  8019. <li>R</li>
  8020. <liclass="cardtype">Tamer</li>
  8021. </ul>
  8022. <divclass="card_name">TakuyaKanbara</div>
  8023. <divclass="cardinfo_top">
  8024. <divclass="card_img">
  8025. <imgsrc="../images/cardlist/card/BT12-088.png"alt="BT12-088TakuyaKanbara"></div>
  8026. <divclass="cardinfo_top_body">
  8027. <dl>
  8028. <dt>Form</dt>
  8029. <dd>-</dd>
  8030. </dl>
  8031. <dl>
  8032. <dt>Attribute</dt>
  8033. <dd>-</dd>
  8034. </dl>
  8035. <dl>
  8036. <dt>Type</dt>
  8037. <dd>-</dd>
  8038. </dl>
  8039. <dl>
  8040. <dt>DP</dt>
  8041. <dd>-</dl>
  8042. <dl>
  8043. <dt>PlayCost</dt>
  8044. <dd>4</dd>
  8045. </dl>
  8046. <dl>
  8047. <dt>DigivolveCost1</dt>
  8048. <dd>-</dd>
  8049. </dl>
  8050. <dl>
  8051. <dt>DigivolveCost2</dt>
  8052. <dd>-</dd>
  8053. </dl>
  8054. </div>
  8055. </div>
  8056. <divclass="cardinfo_bottom">
  8057. <dl>
  8058. <dt>Effect</dt>
  8059. <dd>[Security] Play this card without paying its memory cost.[Start of Your Turn] If you have 2 memory or less, set your memory to 3.</dd>
  8060. </dl>
  8061. <dl>
  8062. <dt>Digivolveeffect</dt>
  8063. <dd>-</dd>
  8064. </dl>
  8065. <dl>
  8066. <dt>Securityeffect</dt>
  8067. <dd>-</dd>
  8068. </dl>
  8069. <dl>
  8070. <dt>Notes</dt>
  8071. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8072. </div>
  8073. </div>
  8074. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8075. </div>
  8076. </div>
  8077. </li>
  8078. <liclass="image_lists_itemdatapage-3">
  8079. <aclass="card_img">
  8080. <imgsrc="../images/cardlist/card/BT12-088_P1.png"alt="BT12-088TakuyaKanbara"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  8081. </a>
  8082. <divclass="popup">
  8083. <divclass="card_detailcard_detail_red">
  8084. <divclass="card_detail_inner">
  8085. <ulclass="cardinfo_head">
  8086. <liclass="cardno">BT12-088</li>
  8087. <li>R</li>
  8088. <liclass="cardtype">Tamer</li>
  8089. <liclass="cardtypecardParallel">AlternativeArt</li>
  8090. </ul>
  8091. <divclass="card_name">TakuyaKanbara</div>
  8092. <divclass="cardinfo_top">
  8093. <divclass="card_img">
  8094. <imgsrc="../images/cardlist/card/BT12-088_P1.png"alt="BT12-088TakuyaKanbara"></div>
  8095. <divclass="cardinfo_top_body">
  8096. <dl>
  8097. <dt>Form</dt>
  8098. <dd>-</dd>
  8099. </dl>
  8100. <dl>
  8101. <dt>Attribute</dt>
  8102. <dd>-</dd>
  8103. </dl>
  8104. <dl>
  8105. <dt>Type</dt>
  8106. <dd>-</dd>
  8107. </dl>
  8108. <dl>
  8109. <dt>DP</dt>
  8110. <dd>-</dl>
  8111. <dl>
  8112. <dt>PlayCost</dt>
  8113. <dd>4</dd>
  8114. </dl>
  8115. <dl>
  8116. <dt>DigivolveCost1</dt>
  8117. <dd>-</dd>
  8118. </dl>
  8119. <dl>
  8120. <dt>DigivolveCost2</dt>
  8121. <dd>-</dd>
  8122. </dl>
  8123. </div>
  8124. </div>
  8125. <divclass="cardinfo_bottom">
  8126. <dl>
  8127. <dt>Effect</dt>
  8128. <dd>[Security] Play this card without paying its memory cost.[Start of Your Turn] If you have 2 memory or less, set your memory to 3.</dd>
  8129. </dl>
  8130. <dl>
  8131. <dt>Digivolveeffect</dt>
  8132. <dd>-</dd>
  8133. </dl>
  8134. <dl>
  8135. <dt>Securityeffect</dt>
  8136. <dd>-</dd>
  8137. </dl>
  8138. <dl>
  8139. <dt>Notes</dt>
  8140. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8141. </div>
  8142. </div>
  8143. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8144. </div>
  8145. </div>
  8146. </li>
  8147. <liclass="image_lists_itemdatapage-3">
  8148. <aclass="card_img">
  8149. <imgsrc="../images/cardlist/card/BT12-089.png"alt="BT12-089TakatoMatsuki"></a>
  8150. <divclass="popup">
  8151. <divclass="card_detailcard_detail_red">
  8152. <divclass="card_detail_inner">
  8153. <ulclass="cardinfo_head">
  8154. <liclass="cardno">BT12-089</li>
  8155. <li>R</li>
  8156. <liclass="cardtype">Tamer</li>
  8157. </ul>
  8158. <divclass="card_name">TakatoMatsuki</div>
  8159. <divclass="cardinfo_top">
  8160. <divclass="card_img">
  8161. <imgsrc="../images/cardlist/card/BT12-089.png"alt="BT12-089TakatoMatsuki"></div>
  8162. <divclass="cardinfo_top_body">
  8163. <dl>
  8164. <dt>Form</dt>
  8165. <dd>-</dd>
  8166. </dl>
  8167. <dl>
  8168. <dt>Attribute</dt>
  8169. <dd>-</dd>
  8170. </dl>
  8171. <dl>
  8172. <dt>Type</dt>
  8173. <dd>-</dd>
  8174. </dl>
  8175. <dl>
  8176. <dt>DP</dt>
  8177. <dd>-</dl>
  8178. <dl>
  8179. <dt>PlayCost</dt>
  8180. <dd>4</dd>
  8181. </dl>
  8182. <dl>
  8183. <dt>DigivolveCost1</dt>
  8184. <dd>-</dd>
  8185. </dl>
  8186. <dl>
  8187. <dt>DigivolveCost2</dt>
  8188. <dd>-</dd>
  8189. </dl>
  8190. </div>
  8191. </div>
  8192. <divclass="cardinfo_bottom">
  8193. <dl>
  8194. <dt>Effect</dt>
  8195. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[Main][Once Per Turn] By placing this Tamer along with 1 each of [Growlmon] and [WarGrowlmon] from your trash under one of your [Guilmon] in any order as its bottom digivolution cards, you may digivolve that Digimon into a [Gallantmon] in your hand for its cost, ignoring its level. The Digimon that digivolved with this effect gets +2000 DP for the turn.</dd>
  8196. </dl>
  8197. <dl>
  8198. <dt>Digivolveeffect</dt>
  8199. <dd>-</dd>
  8200. </dl>
  8201. <dl>
  8202. <dt>Securityeffect</dt>
  8203. <dd>[Security] Play this card without paying its memory cost.</dd>
  8204. </dl>
  8205. <dl>
  8206. <dt>Notes</dt>
  8207. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8208. </div>
  8209. </div>
  8210. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8211. </div>
  8212. </div>
  8213. </li>
  8214. <liclass="image_lists_itemdatapage-4">
  8215. <aclass="card_img">
  8216. <imgsrc="../images/cardlist/card/BT12-089_P1.png"alt="BT12-089TakatoMatsuki"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  8217. </a>
  8218. <divclass="popup">
  8219. <divclass="card_detailcard_detail_red">
  8220. <divclass="card_detail_inner">
  8221. <ulclass="cardinfo_head">
  8222. <liclass="cardno">BT12-089</li>
  8223. <li>R</li>
  8224. <liclass="cardtype">Tamer</li>
  8225. <liclass="cardtypecardParallel">AlternativeArt</li>
  8226. </ul>
  8227. <divclass="card_name">TakatoMatsuki</div>
  8228. <divclass="cardinfo_top">
  8229. <divclass="card_img">
  8230. <imgsrc="../images/cardlist/card/BT12-089_P1.png"alt="BT12-089TakatoMatsuki"></div>
  8231. <divclass="cardinfo_top_body">
  8232. <dl>
  8233. <dt>Form</dt>
  8234. <dd>-</dd>
  8235. </dl>
  8236. <dl>
  8237. <dt>Attribute</dt>
  8238. <dd>-</dd>
  8239. </dl>
  8240. <dl>
  8241. <dt>Type</dt>
  8242. <dd>-</dd>
  8243. </dl>
  8244. <dl>
  8245. <dt>DP</dt>
  8246. <dd>-</dl>
  8247. <dl>
  8248. <dt>PlayCost</dt>
  8249. <dd>4</dd>
  8250. </dl>
  8251. <dl>
  8252. <dt>DigivolveCost1</dt>
  8253. <dd>-</dd>
  8254. </dl>
  8255. <dl>
  8256. <dt>DigivolveCost2</dt>
  8257. <dd>-</dd>
  8258. </dl>
  8259. </div>
  8260. </div>
  8261. <divclass="cardinfo_bottom">
  8262. <dl>
  8263. <dt>Effect</dt>
  8264. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[Main][Once Per Turn] By placing this Tamer along with 1 each of [Growlmon] and [WarGrowlmon] from your trash under one of your [Guilmon] in any order as its bottom digivolution cards, you may digivolve that Digimon into a [Gallantmon] in your hand for its cost, ignoring its level. The Digimon that digivolved with this effect gets +2000 DP for the turn.</dd>
  8265. </dl>
  8266. <dl>
  8267. <dt>Digivolveeffect</dt>
  8268. <dd>-</dd>
  8269. </dl>
  8270. <dl>
  8271. <dt>Securityeffect</dt>
  8272. <dd>[Security] Play this card without paying its memory cost.</dd>
  8273. </dl>
  8274. <dl>
  8275. <dt>Notes</dt>
  8276. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8277. </div>
  8278. </div>
  8279. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8280. </div>
  8281. </div>
  8282. </li>
  8283. <liclass="image_lists_itemdatapage-4">
  8284. <aclass="card_img">
  8285. <imgsrc="../images/cardlist/card/BT12-090.png"alt="BT12-090DavisMotomiya"></a>
  8286. <divclass="popup">
  8287. <divclass="card_detailcard_detail_blue">
  8288. <divclass="card_detail_inner">
  8289. <ulclass="cardinfo_head">
  8290. <liclass="cardno">BT12-090</li>
  8291. <li>R</li>
  8292. <liclass="cardtype">Tamer</li>
  8293. </ul>
  8294. <divclass="card_name">DavisMotomiya</div>
  8295. <divclass="cardinfo_top">
  8296. <divclass="card_img">
  8297. <imgsrc="../images/cardlist/card/BT12-090.png"alt="BT12-090DavisMotomiya"></div>
  8298. <divclass="cardinfo_top_body">
  8299. <dl>
  8300. <dt>Form</dt>
  8301. <dd>-</dd>
  8302. </dl>
  8303. <dl>
  8304. <dt>Attribute</dt>
  8305. <dd>-</dd>
  8306. </dl>
  8307. <dl>
  8308. <dt>Type</dt>
  8309. <dd>-</dd>
  8310. </dl>
  8311. <dl>
  8312. <dt>DP</dt>
  8313. <dd>-</dl>
  8314. <dl>
  8315. <dt>PlayCost</dt>
  8316. <dd>3</dd>
  8317. </dl>
  8318. <dl>
  8319. <dt>DigivolveCost1</dt>
  8320. <dd>-</dd>
  8321. </dl>
  8322. <dl>
  8323. <dt>DigivolveCost2</dt>
  8324. <dd>-</dd>
  8325. </dl>
  8326. </div>
  8327. </div>
  8328. <divclass="cardinfo_bottom">
  8329. <dl>
  8330. <dt>Effect</dt>
  8331. <dd>[Start of Your Main Phase] If you have a Digimon with a [Free] trait or a Tamer with [Ken Ichijoji] in its name in play, gain 1 memory.[Your Turn] If one of your 2-color blue and green Digimon attacks, by suspending this Tamer, digivolve that Digimon into a Digimon card with [Imperialdramon] in its name in your hand for its cost.</dd>
  8332. </dl>
  8333. <dl>
  8334. <dt>Digivolveeffect</dt>
  8335. <dd>-</dd>
  8336. </dl>
  8337. <dl>
  8338. <dt>Securityeffect</dt>
  8339. <dd>[Security] Play this card without paying its memory cost.</dd>
  8340. </dl>
  8341. <dl>
  8342. <dt>Notes</dt>
  8343. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8344. </div>
  8345. </div>
  8346. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8347. </div>
  8348. </div>
  8349. </li>
  8350. <liclass="image_lists_itemdatapage-4">
  8351. <aclass="card_img">
  8352. <imgsrc="../images/cardlist/card/BT12-090_P1.png"alt="BT12-090DavisMotomiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8353. </a>
  8354. <divclass="popup">
  8355. <divclass="card_detailcard_detail_blue">
  8356. <divclass="card_detail_inner">
  8357. <ulclass="cardinfo_head">
  8358. <liclass="cardno">BT12-090</li>
  8359. <li>R</li>
  8360. <liclass="cardtype">Tamer</li>
  8361. <liclass="cardtypecardParallel">AlternativeArt</li>
  8362. </ul>
  8363. <divclass="card_name">DavisMotomiya</div>
  8364. <divclass="cardinfo_top">
  8365. <divclass="card_img">
  8366. <imgsrc="../images/cardlist/card/BT12-090_P1.png"alt="BT12-090DavisMotomiya"></div>
  8367. <divclass="cardinfo_top_body">
  8368. <dl>
  8369. <dt>Form</dt>
  8370. <dd>-</dd>
  8371. </dl>
  8372. <dl>
  8373. <dt>Attribute</dt>
  8374. <dd>-</dd>
  8375. </dl>
  8376. <dl>
  8377. <dt>Type</dt>
  8378. <dd>-</dd>
  8379. </dl>
  8380. <dl>
  8381. <dt>DP</dt>
  8382. <dd>-</dl>
  8383. <dl>
  8384. <dt>PlayCost</dt>
  8385. <dd>3</dd>
  8386. </dl>
  8387. <dl>
  8388. <dt>DigivolveCost1</dt>
  8389. <dd>-</dd>
  8390. </dl>
  8391. <dl>
  8392. <dt>DigivolveCost2</dt>
  8393. <dd>-</dd>
  8394. </dl>
  8395. </div>
  8396. </div>
  8397. <divclass="cardinfo_bottom">
  8398. <dl>
  8399. <dt>Effect</dt>
  8400. <dd>[Start of Your Main Phase] If you have a Digimon with a [Free] trait or a Tamer with [Ken Ichijoji] in its name in play, gain 1 memory.[Your Turn] If one of your 2-color blue and green Digimon attacks, by suspending this Tamer, digivolve that Digimon into a Digimon card with [Imperialdramon] in its name in your hand for its cost.</dd>
  8401. </dl>
  8402. <dl>
  8403. <dt>Digivolveeffect</dt>
  8404. <dd>-</dd>
  8405. </dl>
  8406. <dl>
  8407. <dt>Securityeffect</dt>
  8408. <dd>[Security] Play this card without paying its memory cost.</dd>
  8409. </dl>
  8410. <dl>
  8411. <dt>Notes</dt>
  8412. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8413. </div>
  8414. </div>
  8415. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8416. </div>
  8417. </div>
  8418. </li>
  8419. <liclass="image_lists_itemdatapage-4">
  8420. <aclass="card_img">
  8421. <imgsrc="../images/cardlist/card/BT12-091.png"alt="BT12-091AiruSuzaki"></a>
  8422. <divclass="popup">
  8423. <divclass="card_detailcard_detail_yellow">
  8424. <divclass="card_detail_inner">
  8425. <ulclass="cardinfo_head">
  8426. <liclass="cardno">BT12-091</li>
  8427. <li>U</li>
  8428. <liclass="cardtype">Tamer</li>
  8429. </ul>
  8430. <divclass="card_name">AiruSuzaki</div>
  8431. <divclass="cardinfo_top">
  8432. <divclass="card_img">
  8433. <imgsrc="../images/cardlist/card/BT12-091.png"alt="BT12-091AiruSuzaki"></div>
  8434. <divclass="cardinfo_top_body">
  8435. <dl>
  8436. <dt>Form</dt>
  8437. <dd>-</dd>
  8438. </dl>
  8439. <dl>
  8440. <dt>Attribute</dt>
  8441. <dd>-</dd>
  8442. </dl>
  8443. <dl>
  8444. <dt>Type</dt>
  8445. <dd>Hunter</dd>
  8446. </dl>
  8447. <dl>
  8448. <dt>DP</dt>
  8449. <dd>-</dl>
  8450. <dl>
  8451. <dt>PlayCost</dt>
  8452. <dd>3</dd>
  8453. </dl>
  8454. <dl>
  8455. <dt>DigivolveCost1</dt>
  8456. <dd>-</dd>
  8457. </dl>
  8458. <dl>
  8459. <dt>DigivolveCost2</dt>
  8460. <dd>-</dd>
  8461. </dl>
  8462. </div>
  8463. </div>
  8464. <divclass="cardinfo_bottom">
  8465. <dl>
  8466. <dt>Effect</dt>
  8467. <dd>[Start of Your Main Phase] By placing 1 Digimon card with <Save> in its text from your hand under this Tamer, 1 of your opponent's Digimon gets -2000 DP for the turn.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  8468. </dl>
  8469. <dl>
  8470. <dt>Digivolveeffect</dt>
  8471. <dd>-</dd>
  8472. </dl>
  8473. <dl>
  8474. <dt>Securityeffect</dt>
  8475. <dd>[Security] Play this card without paying its memory cost.</dd>
  8476. </dl>
  8477. <dl>
  8478. <dt>Notes</dt>
  8479. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8480. </div>
  8481. </div>
  8482. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8483. </div>
  8484. </div>
  8485. </li>
  8486. <liclass="image_lists_itemdatapage-4">
  8487. <aclass="card_img">
  8488. <imgsrc="../images/cardlist/card/BT12-092.png"alt="BT12-092MarcusDamon"></a>
  8489. <divclass="popup">
  8490. <divclass="card_detailcard_detail_yellow_redmulticolor">
  8491. <divclass="card_detail_inner">
  8492. <ulclass="cardinfo_head">
  8493. <liclass="cardno">BT12-092</li>
  8494. <li>R</li>
  8495. <liclass="cardtype">Tamer</li>
  8496. </ul>
  8497. <divclass="card_name">MarcusDamon</div>
  8498. <divclass="cardinfo_top">
  8499. <divclass="card_img">
  8500. <imgsrc="../images/cardlist/card/BT12-092.png"alt="BT12-092MarcusDamon"></div>
  8501. <divclass="cardinfo_top_body">
  8502. <dl>
  8503. <dt>Form</dt>
  8504. <dd>-</dd>
  8505. </dl>
  8506. <dl>
  8507. <dt>Attribute</dt>
  8508. <dd>-</dd>
  8509. </dl>
  8510. <dl>
  8511. <dt>Type</dt>
  8512. <dd>-</dd>
  8513. </dl>
  8514. <dl>
  8515. <dt>DP</dt>
  8516. <dd>-</dl>
  8517. <dl>
  8518. <dt>PlayCost</dt>
  8519. <dd>4</dd>
  8520. </dl>
  8521. <dl>
  8522. <dt>DigivolveCost1</dt>
  8523. <dd>-</dd>
  8524. </dl>
  8525. <dl>
  8526. <dt>DigivolveCost2</dt>
  8527. <dd>-</dd>
  8528. </dl>
  8529. </div>
  8530. </div>
  8531. <divclass="cardinfo_bottom">
  8532. <dl>
  8533. <dt>Effect</dt>
  8534. <dd>[Start of Your Main Phase] If you have a Digimon with [Agumon] or [Greymon] in its name in play, by paying 1 memory, for the turn, treat this Tamer as a 3000 DP Digimon that can't digivolve.[Your Turn] If this Tamer becomes suspended, you may digivolve 1 of your Digimon into a yellow card with [Greymon] in its name in your hand without paying its cost.</dd>
  8535. </dl>
  8536. <dl>
  8537. <dt>Digivolveeffect</dt>
  8538. <dd>-</dd>
  8539. </dl>
  8540. <dl>
  8541. <dt>Securityeffect</dt>
  8542. <dd>[Security] Play this card without paying its memory cost.</dd>
  8543. </dl>
  8544. <dl>
  8545. <dt>Notes</dt>
  8546. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8547. </div>
  8548. </div>
  8549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8550. </div>
  8551. </div>
  8552. </li>
  8553. <liclass="image_lists_itemdatapage-4">
  8554. <aclass="card_img">
  8555. <imgsrc="../images/cardlist/card/BT12-092_P1.png"alt="BT12-092MarcusDamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  8556. </a>
  8557. <divclass="popup">
  8558. <divclass="card_detailcard_detail_yellow_redmulticolor">
  8559. <divclass="card_detail_inner">
  8560. <ulclass="cardinfo_head">
  8561. <liclass="cardno">BT12-092</li>
  8562. <li>R</li>
  8563. <liclass="cardtype">Tamer</li>
  8564. <liclass="cardtypecardParallel">AlternativeArt</li>
  8565. </ul>
  8566. <divclass="card_name">MarcusDamon</div>
  8567. <divclass="cardinfo_top">
  8568. <divclass="card_img">
  8569. <imgsrc="../images/cardlist/card/BT12-092_P1.png"alt="BT12-092MarcusDamon"></div>
  8570. <divclass="cardinfo_top_body">
  8571. <dl>
  8572. <dt>Form</dt>
  8573. <dd>-</dd>
  8574. </dl>
  8575. <dl>
  8576. <dt>Attribute</dt>
  8577. <dd>-</dd>
  8578. </dl>
  8579. <dl>
  8580. <dt>Type</dt>
  8581. <dd>-</dd>
  8582. </dl>
  8583. <dl>
  8584. <dt>DP</dt>
  8585. <dd>-</dl>
  8586. <dl>
  8587. <dt>PlayCost</dt>
  8588. <dd>4</dd>
  8589. </dl>
  8590. <dl>
  8591. <dt>DigivolveCost1</dt>
  8592. <dd>-</dd>
  8593. </dl>
  8594. <dl>
  8595. <dt>DigivolveCost2</dt>
  8596. <dd>-</dd>
  8597. </dl>
  8598. </div>
  8599. </div>
  8600. <divclass="cardinfo_bottom">
  8601. <dl>
  8602. <dt>Effect</dt>
  8603. <dd>[Start of Your Main Phase] If you have a Digimon with [Agumon] or [Greymon] in its name in play, by paying 1 memory, for the turn, treat this Tamer as a 3000 DP Digimon that can't digivolve.[Your Turn] If this Tamer becomes suspended, you may digivolve 1 of your Digimon into a yellow card with [Greymon] in its name in your hand without paying its cost.</dd>
  8604. </dl>
  8605. <dl>
  8606. <dt>Digivolveeffect</dt>
  8607. <dd>-</dd>
  8608. </dl>
  8609. <dl>
  8610. <dt>Securityeffect</dt>
  8611. <dd>[Security] Play this card without paying its memory cost.</dd>
  8612. </dl>
  8613. <dl>
  8614. <dt>Notes</dt>
  8615. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8616. </div>
  8617. </div>
  8618. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8619. </div>
  8620. </div>
  8621. </li>
  8622. <liclass="image_lists_itemdatapage-4">
  8623. <aclass="card_img">
  8624. <imgsrc="../images/cardlist/card/BT12-093.png"alt="BT12-093RenTobari"></a>
  8625. <divclass="popup">
  8626. <divclass="card_detailcard_detail_green">
  8627. <divclass="card_detail_inner">
  8628. <ulclass="cardinfo_head">
  8629. <liclass="cardno">BT12-093</li>
  8630. <li>U</li>
  8631. <liclass="cardtype">Tamer</li>
  8632. </ul>
  8633. <divclass="card_name">RenTobari</div>
  8634. <divclass="cardinfo_top">
  8635. <divclass="card_img">
  8636. <imgsrc="../images/cardlist/card/BT12-093.png"alt="BT12-093RenTobari"></div>
  8637. <divclass="cardinfo_top_body">
  8638. <dl>
  8639. <dt>Form</dt>
  8640. <dd>-</dd>
  8641. </dl>
  8642. <dl>
  8643. <dt>Attribute</dt>
  8644. <dd>-</dd>
  8645. </dl>
  8646. <dl>
  8647. <dt>Type</dt>
  8648. <dd>Hunter</dd>
  8649. </dl>
  8650. <dl>
  8651. <dt>DP</dt>
  8652. <dd>-</dl>
  8653. <dl>
  8654. <dt>PlayCost</dt>
  8655. <dd>3</dd>
  8656. </dl>
  8657. <dl>
  8658. <dt>DigivolveCost1</dt>
  8659. <dd>-</dd>
  8660. </dl>
  8661. <dl>
  8662. <dt>DigivolveCost2</dt>
  8663. <dd>-</dd>
  8664. </dl>
  8665. </div>
  8666. </div>
  8667. <divclass="cardinfo_bottom">
  8668. <dl>
  8669. <dt>Effect</dt>
  8670. <dd>[Start of Your Main Phase] By placing 1 Digimon card with <Save> in its text from your hand under this Tamer, 1 of your Digimon gets +2000 DP for the turn.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  8671. </dl>
  8672. <dl>
  8673. <dt>Digivolveeffect</dt>
  8674. <dd>-</dd>
  8675. </dl>
  8676. <dl>
  8677. <dt>Securityeffect</dt>
  8678. <dd>[Security] Play this card without paying its memory cost.</dd>
  8679. </dl>
  8680. <dl>
  8681. <dt>Notes</dt>
  8682. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8683. </div>
  8684. </div>
  8685. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8686. </div>
  8687. </div>
  8688. </li>
  8689. <liclass="image_lists_itemdatapage-4">
  8690. <aclass="card_img">
  8691. <imgsrc="../images/cardlist/card/BT12-094.png"alt="BT12-094YuuAmano"></a>
  8692. <divclass="popup">
  8693. <divclass="card_detailcard_detail_black">
  8694. <divclass="card_detail_inner">
  8695. <ulclass="cardinfo_head">
  8696. <liclass="cardno">BT12-094</li>
  8697. <li>U</li>
  8698. <liclass="cardtype">Tamer</li>
  8699. </ul>
  8700. <divclass="card_name">YuuAmano</div>
  8701. <divclass="cardinfo_top">
  8702. <divclass="card_img">
  8703. <imgsrc="../images/cardlist/card/BT12-094.png"alt="BT12-094YuuAmano"></div>
  8704. <divclass="cardinfo_top_body">
  8705. <dl>
  8706. <dt>Form</dt>
  8707. <dd>-</dd>
  8708. </dl>
  8709. <dl>
  8710. <dt>Attribute</dt>
  8711. <dd>-</dd>
  8712. </dl>
  8713. <dl>
  8714. <dt>Type</dt>
  8715. <dd>Hunter/XrosHeart</dd>
  8716. </dl>
  8717. <dl>
  8718. <dt>DP</dt>
  8719. <dd>-</dl>
  8720. <dl>
  8721. <dt>PlayCost</dt>
  8722. <dd>3</dd>
  8723. </dl>
  8724. <dl>
  8725. <dt>DigivolveCost1</dt>
  8726. <dd>-</dd>
  8727. </dl>
  8728. <dl>
  8729. <dt>DigivolveCost2</dt>
  8730. <dd>-</dd>
  8731. </dl>
  8732. </div>
  8733. </div>
  8734. <divclass="cardinfo_bottom">
  8735. <dl>
  8736. <dt>Effect</dt>
  8737. <dd>[Start of Your Main Phase] By placing 1 Digimon card with <Save> in its text from your hand under this Tamer, gain 1 memory.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  8738. </dl>
  8739. <dl>
  8740. <dt>Digivolveeffect</dt>
  8741. <dd>-</dd>
  8742. </dl>
  8743. <dl>
  8744. <dt>Securityeffect</dt>
  8745. <dd>[Security] Play this card without paying its memory cost.</dd>
  8746. </dl>
  8747. <dl>
  8748. <dt>Notes</dt>
  8749. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8750. </div>
  8751. </div>
  8752. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8753. </div>
  8754. </div>
  8755. </li>
  8756. <liclass="image_lists_itemdatapage-4">
  8757. <aclass="card_img">
  8758. <imgsrc="../images/cardlist/card/BT12-095.png"alt="BT12-095TaiKamiya"></a>
  8759. <divclass="popup">
  8760. <divclass="card_detailcard_detail_black">
  8761. <divclass="card_detail_inner">
  8762. <ulclass="cardinfo_head">
  8763. <liclass="cardno">BT12-095</li>
  8764. <li>R</li>
  8765. <liclass="cardtype">Tamer</li>
  8766. </ul>
  8767. <divclass="card_name">TaiKamiya</div>
  8768. <divclass="cardinfo_top">
  8769. <divclass="card_img">
  8770. <imgsrc="../images/cardlist/card/BT12-095.png"alt="BT12-095TaiKamiya"></div>
  8771. <divclass="cardinfo_top_body">
  8772. <dl>
  8773. <dt>Form</dt>
  8774. <dd>-</dd>
  8775. </dl>
  8776. <dl>
  8777. <dt>Attribute</dt>
  8778. <dd>-</dd>
  8779. </dl>
  8780. <dl>
  8781. <dt>Type</dt>
  8782. <dd>-</dd>
  8783. </dl>
  8784. <dl>
  8785. <dt>DP</dt>
  8786. <dd>-</dl>
  8787. <dl>
  8788. <dt>PlayCost</dt>
  8789. <dd>3</dd>
  8790. </dl>
  8791. <dl>
  8792. <dt>DigivolveCost1</dt>
  8793. <dd>-</dd>
  8794. </dl>
  8795. <dl>
  8796. <dt>DigivolveCost2</dt>
  8797. <dd>-</dd>
  8798. </dl>
  8799. </div>
  8800. </div>
  8801. <divclass="cardinfo_bottom">
  8802. <dl>
  8803. <dt>Effect</dt>
  8804. <dd>[Start of Your Main Phase][On Play] 1 of your Digimon with [Agumon] or [Greymon] in its name gets +1000 DP and <Blocker> until the end of your opponent's turn.[Your Turn] If one of your Digimon digivolves into a Digimon with [Greymon] or [Omnimon] in its name, by suspending this Tamer, gain 1 memory.</dd>
  8805. </dl>
  8806. <dl>
  8807. <dt>Digivolveeffect</dt>
  8808. <dd>-</dd>
  8809. </dl>
  8810. <dl>
  8811. <dt>Securityeffect</dt>
  8812. <dd>[Security] Play this card without paying its memory cost.</dd>
  8813. </dl>
  8814. <dl>
  8815. <dt>Notes</dt>
  8816. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8817. </div>
  8818. </div>
  8819. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8820. </div>
  8821. </div>
  8822. </li>
  8823. <liclass="image_lists_itemdatapage-4">
  8824. <aclass="card_img">
  8825. <imgsrc="../images/cardlist/card/BT12-095_P1.png"alt="BT12-095TaiKamiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8826. </a>
  8827. <divclass="popup">
  8828. <divclass="card_detailcard_detail_black">
  8829. <divclass="card_detail_inner">
  8830. <ulclass="cardinfo_head">
  8831. <liclass="cardno">BT12-095</li>
  8832. <li>R</li>
  8833. <liclass="cardtype">Tamer</li>
  8834. <liclass="cardtypecardParallel">AlternativeArt</li>
  8835. </ul>
  8836. <divclass="card_name">TaiKamiya</div>
  8837. <divclass="cardinfo_top">
  8838. <divclass="card_img">
  8839. <imgsrc="../images/cardlist/card/BT12-095_P1.png"alt="BT12-095TaiKamiya"></div>
  8840. <divclass="cardinfo_top_body">
  8841. <dl>
  8842. <dt>Form</dt>
  8843. <dd>-</dd>
  8844. </dl>
  8845. <dl>
  8846. <dt>Attribute</dt>
  8847. <dd>-</dd>
  8848. </dl>
  8849. <dl>
  8850. <dt>Type</dt>
  8851. <dd>-</dd>
  8852. </dl>
  8853. <dl>
  8854. <dt>DP</dt>
  8855. <dd>-</dl>
  8856. <dl>
  8857. <dt>PlayCost</dt>
  8858. <dd>3</dd>
  8859. </dl>
  8860. <dl>
  8861. <dt>DigivolveCost1</dt>
  8862. <dd>-</dd>
  8863. </dl>
  8864. <dl>
  8865. <dt>DigivolveCost2</dt>
  8866. <dd>-</dd>
  8867. </dl>
  8868. </div>
  8869. </div>
  8870. <divclass="cardinfo_bottom">
  8871. <dl>
  8872. <dt>Effect</dt>
  8873. <dd>[Start of Your Main Phase][On Play] 1 of your Digimon with [Agumon] or [Greymon] in its name gets +1000 DP and <Blocker> until the end of your opponent's turn.[Your Turn] If one of your Digimon digivolves into a Digimon with [Greymon] or [Omnimon] in its name, by suspending this Tamer, gain 1 memory.</dd>
  8874. </dl>
  8875. <dl>
  8876. <dt>Digivolveeffect</dt>
  8877. <dd>-</dd>
  8878. </dl>
  8879. <dl>
  8880. <dt>Securityeffect</dt>
  8881. <dd>[Security] Play this card without paying its memory cost.</dd>
  8882. </dl>
  8883. <dl>
  8884. <dt>Notes</dt>
  8885. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8886. </div>
  8887. </div>
  8888. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8889. </div>
  8890. </div>
  8891. </li>
  8892. <liclass="image_lists_itemdatapage-4">
  8893. <aclass="card_img">
  8894. <imgsrc="../images/cardlist/card/BT12-096.png"alt="BT12-096TagiruAkashi"></a>
  8895. <divclass="popup">
  8896. <divclass="card_detailcard_detail_purple">
  8897. <divclass="card_detail_inner">
  8898. <ulclass="cardinfo_head">
  8899. <liclass="cardno">BT12-096</li>
  8900. <li>R</li>
  8901. <liclass="cardtype">Tamer</li>
  8902. </ul>
  8903. <divclass="card_name">TagiruAkashi</div>
  8904. <divclass="cardinfo_top">
  8905. <divclass="card_img">
  8906. <imgsrc="../images/cardlist/card/BT12-096.png"alt="BT12-096TagiruAkashi"></div>
  8907. <divclass="cardinfo_top_body">
  8908. <dl>
  8909. <dt>Form</dt>
  8910. <dd>-</dd>
  8911. </dl>
  8912. <dl>
  8913. <dt>Attribute</dt>
  8914. <dd>-</dd>
  8915. </dl>
  8916. <dl>
  8917. <dt>Type</dt>
  8918. <dd>Hunter</dd>
  8919. </dl>
  8920. <dl>
  8921. <dt>DP</dt>
  8922. <dd>-</dl>
  8923. <dl>
  8924. <dt>PlayCost</dt>
  8925. <dd>4</dd>
  8926. </dl>
  8927. <dl>
  8928. <dt>DigivolveCost1</dt>
  8929. <dd>-</dd>
  8930. </dl>
  8931. <dl>
  8932. <dt>DigivolveCost2</dt>
  8933. <dd>-</dd>
  8934. </dl>
  8935. </div>
  8936. </div>
  8937. <divclass="cardinfo_bottom">
  8938. <dl>
  8939. <dt>Effect</dt>
  8940. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  8941. </dl>
  8942. <dl>
  8943. <dt>Digivolveeffect</dt>
  8944. <dd>-</dd>
  8945. </dl>
  8946. <dl>
  8947. <dt>Securityeffect</dt>
  8948. <dd>[Security] Play this card without paying its memory cost.</dd>
  8949. </dl>
  8950. <dl>
  8951. <dt>Notes</dt>
  8952. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  8953. </div>
  8954. </div>
  8955. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8956. </div>
  8957. </div>
  8958. </li>
  8959. <liclass="image_lists_itemdatapage-4">
  8960. <aclass="card_img">
  8961. <imgsrc="../images/cardlist/card/BT12-096_P1.png"alt="BT12-096TagiruAkashi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8962. </a>
  8963. <divclass="popup">
  8964. <divclass="card_detailcard_detail_purple">
  8965. <divclass="card_detail_inner">
  8966. <ulclass="cardinfo_head">
  8967. <liclass="cardno">BT12-096</li>
  8968. <li>R</li>
  8969. <liclass="cardtype">Tamer</li>
  8970. <liclass="cardtypecardParallel">AlternativeArt</li>
  8971. </ul>
  8972. <divclass="card_name">TagiruAkashi</div>
  8973. <divclass="cardinfo_top">
  8974. <divclass="card_img">
  8975. <imgsrc="../images/cardlist/card/BT12-096_P1.png"alt="BT12-096TagiruAkashi"></div>
  8976. <divclass="cardinfo_top_body">
  8977. <dl>
  8978. <dt>Form</dt>
  8979. <dd>-</dd>
  8980. </dl>
  8981. <dl>
  8982. <dt>Attribute</dt>
  8983. <dd>-</dd>
  8984. </dl>
  8985. <dl>
  8986. <dt>Type</dt>
  8987. <dd>Hunter</dd>
  8988. </dl>
  8989. <dl>
  8990. <dt>DP</dt>
  8991. <dd>-</dl>
  8992. <dl>
  8993. <dt>PlayCost</dt>
  8994. <dd>4</dd>
  8995. </dl>
  8996. <dl>
  8997. <dt>DigivolveCost1</dt>
  8998. <dd>-</dd>
  8999. </dl>
  9000. <dl>
  9001. <dt>DigivolveCost2</dt>
  9002. <dd>-</dd>
  9003. </dl>
  9004. </div>
  9005. </div>
  9006. <divclass="cardinfo_bottom">
  9007. <dl>
  9008. <dt>Effect</dt>
  9009. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  9010. </dl>
  9011. <dl>
  9012. <dt>Digivolveeffect</dt>
  9013. <dd>-</dd>
  9014. </dl>
  9015. <dl>
  9016. <dt>Securityeffect</dt>
  9017. <dd>[Security] Play this card without paying its memory cost.</dd>
  9018. </dl>
  9019. <dl>
  9020. <dt>Notes</dt>
  9021. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9022. </div>
  9023. </div>
  9024. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9025. </div>
  9026. </div>
  9027. </li>
  9028. <liclass="image_lists_itemdatapage-4">
  9029. <aclass="card_img">
  9030. <imgsrc="../images/cardlist/card/BT12-097.png"alt="BT12-097RyomaMogami"></a>
  9031. <divclass="popup">
  9032. <divclass="card_detailcard_detail_purple">
  9033. <divclass="card_detail_inner">
  9034. <ulclass="cardinfo_head">
  9035. <liclass="cardno">BT12-097</li>
  9036. <li>U</li>
  9037. <liclass="cardtype">Tamer</li>
  9038. </ul>
  9039. <divclass="card_name">RyomaMogami</div>
  9040. <divclass="cardinfo_top">
  9041. <divclass="card_img">
  9042. <imgsrc="../images/cardlist/card/BT12-097.png"alt="BT12-097RyomaMogami"></div>
  9043. <divclass="cardinfo_top_body">
  9044. <dl>
  9045. <dt>Form</dt>
  9046. <dd>-</dd>
  9047. </dl>
  9048. <dl>
  9049. <dt>Attribute</dt>
  9050. <dd>-</dd>
  9051. </dl>
  9052. <dl>
  9053. <dt>Type</dt>
  9054. <dd>Hunter</dd>
  9055. </dl>
  9056. <dl>
  9057. <dt>DP</dt>
  9058. <dd>-</dl>
  9059. <dl>
  9060. <dt>PlayCost</dt>
  9061. <dd>3</dd>
  9062. </dl>
  9063. <dl>
  9064. <dt>DigivolveCost1</dt>
  9065. <dd>-</dd>
  9066. </dl>
  9067. <dl>
  9068. <dt>DigivolveCost2</dt>
  9069. <dd>-</dd>
  9070. </dl>
  9071. </div>
  9072. </div>
  9073. <divclass="cardinfo_bottom">
  9074. <dl>
  9075. <dt>Effect</dt>
  9076. <dd>[Start of Your Main Phase] If there are 2 or less cards under this Tamer, place 1 Digimon card with <Save> in its text from your trash under this Tamer.[Your Turn] If one of your Digimon digivolves into a Digimon card with <Save> in its text, by suspending this Tamer and placing 1 card from under one of your Tamers under that Digimon as one of its digivolution cards, reduce the digivolution cost by 1.</dd>
  9077. </dl>
  9078. <dl>
  9079. <dt>Digivolveeffect</dt>
  9080. <dd>-</dd>
  9081. </dl>
  9082. <dl>
  9083. <dt>Securityeffect</dt>
  9084. <dd>[Security] Play this card without paying its memory cost.</dd>
  9085. </dl>
  9086. <dl>
  9087. <dt>Notes</dt>
  9088. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9089. </div>
  9090. </div>
  9091. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9092. </div>
  9093. </div>
  9094. </li>
  9095. <liclass="image_lists_itemdatapage-4">
  9096. <aclass="card_img">
  9097. <imgsrc="../images/cardlist/card/BT12-098.png"alt="BT12-098Watchmaker"></a>
  9098. <divclass="popup">
  9099. <divclass="card_detailcard_detail_white">
  9100. <divclass="card_detail_inner">
  9101. <ulclass="cardinfo_head">
  9102. <liclass="cardno">BT12-098</li>
  9103. <li>R</li>
  9104. <liclass="cardtype">Tamer</li>
  9105. </ul>
  9106. <divclass="card_name">Watchmaker</div>
  9107. <divclass="cardinfo_top">
  9108. <divclass="card_img">
  9109. <imgsrc="../images/cardlist/card/BT12-098.png"alt="BT12-098Watchmaker"></div>
  9110. <divclass="cardinfo_top_body">
  9111. <dl>
  9112. <dt>Form</dt>
  9113. <dd>-</dd>
  9114. </dl>
  9115. <dl>
  9116. <dt>Attribute</dt>
  9117. <dd>-</dd>
  9118. </dl>
  9119. <dl>
  9120. <dt>Type</dt>
  9121. <dd>-</dd>
  9122. </dl>
  9123. <dl>
  9124. <dt>DP</dt>
  9125. <dd>-</dl>
  9126. <dl>
  9127. <dt>PlayCost</dt>
  9128. <dd>3</dd>
  9129. </dl>
  9130. <dl>
  9131. <dt>DigivolveCost1</dt>
  9132. <dd>-</dd>
  9133. </dl>
  9134. <dl>
  9135. <dt>DigivolveCost2</dt>
  9136. <dd>-</dd>
  9137. </dl>
  9138. </div>
  9139. </div>
  9140. <divclass="cardinfo_bottom">
  9141. <dl>
  9142. <dt>Effect</dt>
  9143. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with <Save> in its text and 1 card with a [Hunter] trait among them to your hand. Place the remaining cards at the bottom of your deck in any order.[Main] If you have 4 or more Tamers in play, by suspending this Tamer, 1 of your Digimon with <Save> in its text gains <Security Attack +1> for the turn.</dd>
  9144. </dl>
  9145. <dl>
  9146. <dt>Digivolveeffect</dt>
  9147. <dd>-</dd>
  9148. </dl>
  9149. <dl>
  9150. <dt>Securityeffect</dt>
  9151. <dd>[Security] Play this card without paying its memory cost.</dd>
  9152. </dl>
  9153. <dl>
  9154. <dt>Notes</dt>
  9155. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9156. </div>
  9157. </div>
  9158. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9159. </div>
  9160. </div>
  9161. </li>
  9162. <liclass="image_lists_itemdatapage-4">
  9163. <aclass="card_img">
  9164. <imgsrc="../images/cardlist/card/BT12-099.png"alt="BT12-099PyroDragons"></a>
  9165. <divclass="popup">
  9166. <divclass="card_detailcard_detail_red">
  9167. <divclass="card_detail_inner">
  9168. <ulclass="cardinfo_head">
  9169. <liclass="cardno">BT12-099</li>
  9170. <li>C</li>
  9171. <liclass="cardtype">Option</li>
  9172. </ul>
  9173. <divclass="card_name">PyroDragons</div>
  9174. <divclass="cardinfo_top">
  9175. <divclass="card_img">
  9176. <imgsrc="../images/cardlist/card/BT12-099.png"alt="BT12-099PyroDragons"></div>
  9177. <divclass="cardinfo_top_body">
  9178. <dl>
  9179. <dt>Form</dt>
  9180. <dd>-</dd>
  9181. </dl>
  9182. <dl>
  9183. <dt>Attribute</dt>
  9184. <dd>-</dd>
  9185. </dl>
  9186. <dl>
  9187. <dt>Type</dt>
  9188. <dd>-</dd>
  9189. </dl>
  9190. <dl>
  9191. <dt>DP</dt>
  9192. <dd>-</dl>
  9193. <dl>
  9194. <dt>PlayCost</dt>
  9195. <dd>4</dd>
  9196. </dl>
  9197. <dl>
  9198. <dt>DigivolveCost1</dt>
  9199. <dd>-</dd>
  9200. </dl>
  9201. <dl>
  9202. <dt>DigivolveCost2</dt>
  9203. <dd>-</dd>
  9204. </dl>
  9205. </div>
  9206. </div>
  9207. <divclass="cardinfo_bottom">
  9208. <dl>
  9209. <dt>Effect</dt>
  9210. <dd>[Main] Delete 1 of your opponent's Digimon with 6000 DP or less. Then, 1 of your Digimon with a [Hybrid] trait gets +3000 DP and you may attack a player with that Digimon for the turn.</dd>
  9211. </dl>
  9212. <dl>
  9213. <dt>Digivolveeffect</dt>
  9214. <dd>-</dd>
  9215. </dl>
  9216. <dl>
  9217. <dt>Securityeffect</dt>
  9218. <dd>[Security] Delete 1 of your opponent's Digimon with 6000 DP or less.</dd>
  9219. </dl>
  9220. <dl>
  9221. <dt>Notes</dt>
  9222. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9223. </div>
  9224. </div>
  9225. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9226. </div>
  9227. </div>
  9228. </li>
  9229. <liclass="image_lists_itemdatapage-4">
  9230. <aclass="card_img">
  9231. <imgsrc="../images/cardlist/card/BT12-100.png"alt="BT12-100FinalXrosBlade"></a>
  9232. <divclass="popup">
  9233. <divclass="card_detailcard_detail_red">
  9234. <divclass="card_detail_inner">
  9235. <ulclass="cardinfo_head">
  9236. <liclass="cardno">BT12-100</li>
  9237. <li>R</li>
  9238. <liclass="cardtype">Option</li>
  9239. </ul>
  9240. <divclass="card_name">FinalXrosBlade</div>
  9241. <divclass="cardinfo_top">
  9242. <divclass="card_img">
  9243. <imgsrc="../images/cardlist/card/BT12-100.png"alt="BT12-100FinalXrosBlade"></div>
  9244. <divclass="cardinfo_top_body">
  9245. <dl>
  9246. <dt>Form</dt>
  9247. <dd>-</dd>
  9248. </dl>
  9249. <dl>
  9250. <dt>Attribute</dt>
  9251. <dd>-</dd>
  9252. </dl>
  9253. <dl>
  9254. <dt>Type</dt>
  9255. <dd>XrosHeart</dd>
  9256. </dl>
  9257. <dl>
  9258. <dt>DP</dt>
  9259. <dd>-</dl>
  9260. <dl>
  9261. <dt>PlayCost</dt>
  9262. <dd>9</dd>
  9263. </dl>
  9264. <dl>
  9265. <dt>DigivolveCost1</dt>
  9266. <dd>-</dd>
  9267. </dl>
  9268. <dl>
  9269. <dt>DigivolveCost2</dt>
  9270. <dd>-</dd>
  9271. </dl>
  9272. </div>
  9273. </div>
  9274. <divclass="cardinfo_bottom">
  9275. <dl>
  9276. <dt>Effect</dt>
  9277. <dd>[Main] Delete 1 of your opponent's Digimon. Then, unsuspend 1 of your [Shoutmon X7: Superior Mode] cards, and you may attack a player with that Digimon.</dd>
  9278. </dl>
  9279. <dl>
  9280. <dt>Digivolveeffect</dt>
  9281. <dd>-</dd>
  9282. </dl>
  9283. <dl>
  9284. <dt>Securityeffect</dt>
  9285. <dd>[Security] Delete 1 of your opponent's Digimon.</dd>
  9286. </dl>
  9287. <dl>
  9288. <dt>Notes</dt>
  9289. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9290. </div>
  9291. </div>
  9292. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9293. </div>
  9294. </div>
  9295. </li>
  9296. <liclass="image_lists_itemdatapage-4">
  9297. <aclass="card_img">
  9298. <imgsrc="../images/cardlist/card/BT12-101.png"alt="BT12-101VeeLaser"></a>
  9299. <divclass="popup">
  9300. <divclass="card_detailcard_detail_blue">
  9301. <divclass="card_detail_inner">
  9302. <ulclass="cardinfo_head">
  9303. <liclass="cardno">BT12-101</li>
  9304. <li>R</li>
  9305. <liclass="cardtype">Option</li>
  9306. </ul>
  9307. <divclass="card_name">VeeLaser</div>
  9308. <divclass="cardinfo_top">
  9309. <divclass="card_img">
  9310. <imgsrc="../images/cardlist/card/BT12-101.png"alt="BT12-101VeeLaser"></div>
  9311. <divclass="cardinfo_top_body">
  9312. <dl>
  9313. <dt>Form</dt>
  9314. <dd>-</dd>
  9315. </dl>
  9316. <dl>
  9317. <dt>Attribute</dt>
  9318. <dd>-</dd>
  9319. </dl>
  9320. <dl>
  9321. <dt>Type</dt>
  9322. <dd>-</dd>
  9323. </dl>
  9324. <dl>
  9325. <dt>DP</dt>
  9326. <dd>-</dl>
  9327. <dl>
  9328. <dt>PlayCost</dt>
  9329. <dd>3</dd>
  9330. </dl>
  9331. <dl>
  9332. <dt>DigivolveCost1</dt>
  9333. <dd>-</dd>
  9334. </dl>
  9335. <dl>
  9336. <dt>DigivolveCost2</dt>
  9337. <dd>-</dd>
  9338. </dl>
  9339. </div>
  9340. </div>
  9341. <divclass="cardinfo_bottom">
  9342. <dl>
  9343. <dt>Effect</dt>
  9344. <dd>[Main] Trash the top 3 digivolution cards of 1 of your opponent's Digimon. Then, if you have a green Digimon in play, you may play 1 level 4 or lower blue Digimon card with a [Free] trait from your hand without paying the cost.</dd>
  9345. </dl>
  9346. <dl>
  9347. <dt>Digivolveeffect</dt>
  9348. <dd>-</dd>
  9349. </dl>
  9350. <dl>
  9351. <dt>Securityeffect</dt>
  9352. <dd>[Security] Activate this card's [Main] effect.</dd>
  9353. </dl>
  9354. <dl>
  9355. <dt>Notes</dt>
  9356. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9357. </div>
  9358. </div>
  9359. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9360. </div>
  9361. </div>
  9362. </li>
  9363. <liclass="image_lists_itemdatapage-4">
  9364. <aclass="card_img">
  9365. <imgsrc="../images/cardlist/card/BT12-102.png"alt="BT12-102GreatMaelstrom"></a>
  9366. <divclass="popup">
  9367. <divclass="card_detailcard_detail_blue">
  9368. <divclass="card_detail_inner">
  9369. <ulclass="cardinfo_head">
  9370. <liclass="cardno">BT12-102</li>
  9371. <li>C</li>
  9372. <liclass="cardtype">Option</li>
  9373. </ul>
  9374. <divclass="card_name">GreatMaelstrom</div>
  9375. <divclass="cardinfo_top">
  9376. <divclass="card_img">
  9377. <imgsrc="../images/cardlist/card/BT12-102.png"alt="BT12-102GreatMaelstrom"></div>
  9378. <divclass="cardinfo_top_body">
  9379. <dl>
  9380. <dt>Form</dt>
  9381. <dd>-</dd>
  9382. </dl>
  9383. <dl>
  9384. <dt>Attribute</dt>
  9385. <dd>-</dd>
  9386. </dl>
  9387. <dl>
  9388. <dt>Type</dt>
  9389. <dd>-</dd>
  9390. </dl>
  9391. <dl>
  9392. <dt>DP</dt>
  9393. <dd>-</dl>
  9394. <dl>
  9395. <dt>PlayCost</dt>
  9396. <dd>9</dd>
  9397. </dl>
  9398. <dl>
  9399. <dt>DigivolveCost1</dt>
  9400. <dd>-</dd>
  9401. </dl>
  9402. <dl>
  9403. <dt>DigivolveCost2</dt>
  9404. <dd>-</dd>
  9405. </dl>
  9406. </div>
  9407. </div>
  9408. <divclass="cardinfo_bottom">
  9409. <dl>
  9410. <dt>Effect</dt>
  9411. <dd>If you have this card in your hand, you may place 1 of your blue Digimon under another of your blue Digimon as its bottom digivolution card and reduce the cost by 3.[Main] Return 1 of your opponent's Digimon to their owner's deck.</dd>
  9412. </dl>
  9413. <dl>
  9414. <dt>Digivolveeffect</dt>
  9415. <dd>-</dd>
  9416. </dl>
  9417. <dl>
  9418. <dt>Securityeffect</dt>
  9419. <dd>[Security] Activate this card's [Main] effect.</dd>
  9420. </dl>
  9421. <dl>
  9422. <dt>Notes</dt>
  9423. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9424. </div>
  9425. </div>
  9426. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9427. </div>
  9428. </div>
  9429. </li>
  9430. <liclass="image_lists_itemdatapage-4">
  9431. <aclass="card_img">
  9432. <imgsrc="../images/cardlist/card/BT12-103.png"alt="BT12-103HomeRunBlast"></a>
  9433. <divclass="popup">
  9434. <divclass="card_detailcard_detail_yellow">
  9435. <divclass="card_detail_inner">
  9436. <ulclass="cardinfo_head">
  9437. <liclass="cardno">BT12-103</li>
  9438. <li>C</li>
  9439. <liclass="cardtype">Option</li>
  9440. </ul>
  9441. <divclass="card_name">HomeRunBlast</div>
  9442. <divclass="cardinfo_top">
  9443. <divclass="card_img">
  9444. <imgsrc="../images/cardlist/card/BT12-103.png"alt="BT12-103HomeRunBlast"></div>
  9445. <divclass="cardinfo_top_body">
  9446. <dl>
  9447. <dt>Form</dt>
  9448. <dd>-</dd>
  9449. </dl>
  9450. <dl>
  9451. <dt>Attribute</dt>
  9452. <dd>-</dd>
  9453. </dl>
  9454. <dl>
  9455. <dt>Type</dt>
  9456. <dd>-</dd>
  9457. </dl>
  9458. <dl>
  9459. <dt>DP</dt>
  9460. <dd>-</dl>
  9461. <dl>
  9462. <dt>PlayCost</dt>
  9463. <dd>2</dd>
  9464. </dl>
  9465. <dl>
  9466. <dt>DigivolveCost1</dt>
  9467. <dd>-</dd>
  9468. </dl>
  9469. <dl>
  9470. <dt>DigivolveCost2</dt>
  9471. <dd>-</dd>
  9472. </dl>
  9473. </div>
  9474. </div>
  9475. <divclass="cardinfo_bottom">
  9476. <dl>
  9477. <dt>Effect</dt>
  9478. <dd>While you have a Tamer with a [Hunter] trait in play, you may use this card without meeting its color requirements.[Main] 1 of your opponent's Digimon gets -4000 DP for the turn. Then, if you have a Digimon with 4 or more digivolution cards in play, 1 of your opponent's Digimon gains <Security Attack -1> for the turn. (This Digimon checks 1 fewer security cards.)</dd>
  9479. </dl>
  9480. <dl>
  9481. <dt>Digivolveeffect</dt>
  9482. <dd>-</dd>
  9483. </dl>
  9484. <dl>
  9485. <dt>Securityeffect</dt>
  9486. <dd>[Security] Activate this card's [Main] effect.</dd>
  9487. </dl>
  9488. <dl>
  9489. <dt>Notes</dt>
  9490. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9491. </div>
  9492. </div>
  9493. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9494. </div>
  9495. </div>
  9496. </li>
  9497. <liclass="image_lists_itemdatapage-4">
  9498. <aclass="card_img">
  9499. <imgsrc="../images/cardlist/card/BT12-104.png"alt="BT12-104ShiningBlast"></a>
  9500. <divclass="popup">
  9501. <divclass="card_detailcard_detail_yellow_redmulticolor">
  9502. <divclass="card_detail_inner">
  9503. <ulclass="cardinfo_head">
  9504. <liclass="cardno">BT12-104</li>
  9505. <li>R</li>
  9506. <liclass="cardtype">Option</li>
  9507. </ul>
  9508. <divclass="card_name">ShiningBlast</div>
  9509. <divclass="cardinfo_top">
  9510. <divclass="card_img">
  9511. <imgsrc="../images/cardlist/card/BT12-104.png"alt="BT12-104ShiningBlast"></div>
  9512. <divclass="cardinfo_top_body">
  9513. <dl>
  9514. <dt>Form</dt>
  9515. <dd>-</dd>
  9516. </dl>
  9517. <dl>
  9518. <dt>Attribute</dt>
  9519. <dd>-</dd>
  9520. </dl>
  9521. <dl>
  9522. <dt>Type</dt>
  9523. <dd>-</dd>
  9524. </dl>
  9525. <dl>
  9526. <dt>DP</dt>
  9527. <dd>-</dl>
  9528. <dl>
  9529. <dt>PlayCost</dt>
  9530. <dd>5</dd>
  9531. </dl>
  9532. <dl>
  9533. <dt>DigivolveCost1</dt>
  9534. <dd>-</dd>
  9535. </dl>
  9536. <dl>
  9537. <dt>DigivolveCost2</dt>
  9538. <dd>-</dd>
  9539. </dl>
  9540. </div>
  9541. </div>
  9542. <divclass="cardinfo_bottom">
  9543. <dl>
  9544. <dt>Effect</dt>
  9545. <dd>[Main] You may play 1 [Marcus Damon] card from your hand without paying its cost. Then, for each yellow or red Tamer you have in play, 3 of your opponent's Digimon get -2000 DP for the turn.</dd>
  9546. </dl>
  9547. <dl>
  9548. <dt>Digivolveeffect</dt>
  9549. <dd>-</dd>
  9550. </dl>
  9551. <dl>
  9552. <dt>Securityeffect</dt>
  9553. <dd>[Security] Activate this card's [Main] effect.</dd>
  9554. </dl>
  9555. <dl>
  9556. <dt>Notes</dt>
  9557. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9558. </div>
  9559. </div>
  9560. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9561. </div>
  9562. </div>
  9563. </li>
  9564. <liclass="image_lists_itemdatapage-4">
  9565. <aclass="card_img">
  9566. <imgsrc="../images/cardlist/card/BT12-105.png"alt="BT12-105SpikingStrike"></a>
  9567. <divclass="popup">
  9568. <divclass="card_detailcard_detail_green">
  9569. <divclass="card_detail_inner">
  9570. <ulclass="cardinfo_head">
  9571. <liclass="cardno">BT12-105</li>
  9572. <li>C</li>
  9573. <liclass="cardtype">Option</li>
  9574. </ul>
  9575. <divclass="card_name">SpikingStrike</div>
  9576. <divclass="cardinfo_top">
  9577. <divclass="card_img">
  9578. <imgsrc="../images/cardlist/card/BT12-105.png"alt="BT12-105SpikingStrike"></div>
  9579. <divclass="cardinfo_top_body">
  9580. <dl>
  9581. <dt>Form</dt>
  9582. <dd>-</dd>
  9583. </dl>
  9584. <dl>
  9585. <dt>Attribute</dt>
  9586. <dd>-</dd>
  9587. </dl>
  9588. <dl>
  9589. <dt>Type</dt>
  9590. <dd>-</dd>
  9591. </dl>
  9592. <dl>
  9593. <dt>DP</dt>
  9594. <dd>-</dl>
  9595. <dl>
  9596. <dt>PlayCost</dt>
  9597. <dd>3</dd>
  9598. </dl>
  9599. <dl>
  9600. <dt>DigivolveCost1</dt>
  9601. <dd>-</dd>
  9602. </dl>
  9603. <dl>
  9604. <dt>DigivolveCost2</dt>
  9605. <dd>-</dd>
  9606. </dl>
  9607. </div>
  9608. </div>
  9609. <divclass="cardinfo_bottom">
  9610. <dl>
  9611. <dt>Effect</dt>
  9612. <dd>[Main] Until the end of your opponent's turn, 1 of your opponent's Digimon gains "[On Deletion] Trash the top card of your security stack." Then, if you have a blue Digimon in play, you may play 1 green level 4 or lower Digimon card with a [Free] trait from your hand without paying its cost.</dd>
  9613. </dl>
  9614. <dl>
  9615. <dt>Digivolveeffect</dt>
  9616. <dd>-</dd>
  9617. </dl>
  9618. <dl>
  9619. <dt>Securityeffect</dt>
  9620. <dd>[Security] Activate this card's [Main] effect.</dd>
  9621. </dl>
  9622. <dl>
  9623. <dt>Notes</dt>
  9624. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9625. </div>
  9626. </div>
  9627. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9628. </div>
  9629. </div>
  9630. </li>
  9631. <liclass="image_lists_itemdatapage-4">
  9632. <aclass="card_img">
  9633. <imgsrc="../images/cardlist/card/BT12-106.png"alt="BT12-106GyptParticleCannon"></a>
  9634. <divclass="popup">
  9635. <divclass="card_detailcard_detail_green">
  9636. <divclass="card_detail_inner">
  9637. <ulclass="cardinfo_head">
  9638. <liclass="cardno">BT12-106</li>
  9639. <li>R</li>
  9640. <liclass="cardtype">Option</li>
  9641. </ul>
  9642. <divclass="card_name">GyptParticleCannon</div>
  9643. <divclass="cardinfo_top">
  9644. <divclass="card_img">
  9645. <imgsrc="../images/cardlist/card/BT12-106.png"alt="BT12-106GyptParticleCannon"></div>
  9646. <divclass="cardinfo_top_body">
  9647. <dl>
  9648. <dt>Form</dt>
  9649. <dd>-</dd>
  9650. </dl>
  9651. <dl>
  9652. <dt>Attribute</dt>
  9653. <dd>-</dd>
  9654. </dl>
  9655. <dl>
  9656. <dt>Type</dt>
  9657. <dd>-</dd>
  9658. </dl>
  9659. <dl>
  9660. <dt>DP</dt>
  9661. <dd>-</dl>
  9662. <dl>
  9663. <dt>PlayCost</dt>
  9664. <dd>10</dd>
  9665. </dl>
  9666. <dl>
  9667. <dt>DigivolveCost1</dt>
  9668. <dd>-</dd>
  9669. </dl>
  9670. <dl>
  9671. <dt>DigivolveCost2</dt>
  9672. <dd>-</dd>
  9673. </dl>
  9674. </div>
  9675. </div>
  9676. <divclass="cardinfo_bottom">
  9677. <dl>
  9678. <dt>Effect</dt>
  9679. <dd>While you have a Tamer with a [Hunter] trait in play, you may use this card without meeting its color requirements.[Main] Suspend all of your opponent's Digimon and Tamers. Your opponent's cards don't unsuspend during their next unsuspend phase.</dd>
  9680. </dl>
  9681. <dl>
  9682. <dt>Digivolveeffect</dt>
  9683. <dd>-</dd>
  9684. </dl>
  9685. <dl>
  9686. <dt>Securityeffect</dt>
  9687. <dd>[Security] Suspend all of your opponent's Digimon and Tamers.</dd>
  9688. </dl>
  9689. <dl>
  9690. <dt>Notes</dt>
  9691. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9692. </div>
  9693. </div>
  9694. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9695. </div>
  9696. </div>
  9697. </li>
  9698. <liclass="image_lists_itemdatapage-4">
  9699. <aclass="card_img">
  9700. <imgsrc="../images/cardlist/card/BT12-107.png"alt="BT12-107Laplace'sDemon"></a>
  9701. <divclass="popup">
  9702. <divclass="card_detailcard_detail_black">
  9703. <divclass="card_detail_inner">
  9704. <ulclass="cardinfo_head">
  9705. <liclass="cardno">BT12-107</li>
  9706. <li>C</li>
  9707. <liclass="cardtype">Option</li>
  9708. </ul>
  9709. <divclass="card_name">Laplace'sDemon</div>
  9710. <divclass="cardinfo_top">
  9711. <divclass="card_img">
  9712. <imgsrc="../images/cardlist/card/BT12-107.png"alt="BT12-107Laplace'sDemon"></div>
  9713. <divclass="cardinfo_top_body">
  9714. <dl>
  9715. <dt>Form</dt>
  9716. <dd>-</dd>
  9717. </dl>
  9718. <dl>
  9719. <dt>Attribute</dt>
  9720. <dd>-</dd>
  9721. </dl>
  9722. <dl>
  9723. <dt>Type</dt>
  9724. <dd>-</dd>
  9725. </dl>
  9726. <dl>
  9727. <dt>DP</dt>
  9728. <dd>-</dl>
  9729. <dl>
  9730. <dt>PlayCost</dt>
  9731. <dd>1</dd>
  9732. </dl>
  9733. <dl>
  9734. <dt>DigivolveCost1</dt>
  9735. <dd>-</dd>
  9736. </dl>
  9737. <dl>
  9738. <dt>DigivolveCost2</dt>
  9739. <dd>-</dd>
  9740. </dl>
  9741. </div>
  9742. </div>
  9743. <divclass="cardinfo_bottom">
  9744. <dl>
  9745. <dt>Effect</dt>
  9746. <dd>[Main] Until the end of your opponent's turn, 1 of your opponent's Digimon gains "[Start of Your Main Phase] Attack with this Digimon."</dd>
  9747. </dl>
  9748. <dl>
  9749. <dt>Digivolveeffect</dt>
  9750. <dd>-</dd>
  9751. </dl>
  9752. <dl>
  9753. <dt>Securityeffect</dt>
  9754. <dd>[Security] Add this card to its owner's hand.</dd>
  9755. </dl>
  9756. <dl>
  9757. <dt>Notes</dt>
  9758. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9759. </div>
  9760. </div>
  9761. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9762. </div>
  9763. </div>
  9764. </li>
  9765. <liclass="image_lists_itemdatapage-4">
  9766. <aclass="card_img">
  9767. <imgsrc="../images/cardlist/card/BT12-108.png"alt="BT12-108SuperEradicationAttack"></a>
  9768. <divclass="popup">
  9769. <divclass="card_detailcard_detail_black_redmulticolor">
  9770. <divclass="card_detail_inner">
  9771. <ulclass="cardinfo_head">
  9772. <liclass="cardno">BT12-108</li>
  9773. <li>R</li>
  9774. <liclass="cardtype">Option</li>
  9775. </ul>
  9776. <divclass="card_name">SuperEradicationAttack</div>
  9777. <divclass="cardinfo_top">
  9778. <divclass="card_img">
  9779. <imgsrc="../images/cardlist/card/BT12-108.png"alt="BT12-108SuperEradicationAttack"></div>
  9780. <divclass="cardinfo_top_body">
  9781. <dl>
  9782. <dt>Form</dt>
  9783. <dd>-</dd>
  9784. </dl>
  9785. <dl>
  9786. <dt>Attribute</dt>
  9787. <dd>-</dd>
  9788. </dl>
  9789. <dl>
  9790. <dt>Type</dt>
  9791. <dd>-</dd>
  9792. </dl>
  9793. <dl>
  9794. <dt>DP</dt>
  9795. <dd>-</dl>
  9796. <dl>
  9797. <dt>PlayCost</dt>
  9798. <dd>2</dd>
  9799. </dl>
  9800. <dl>
  9801. <dt>DigivolveCost1</dt>
  9802. <dd>-</dd>
  9803. </dl>
  9804. <dl>
  9805. <dt>DigivolveCost2</dt>
  9806. <dd>-</dd>
  9807. </dl>
  9808. </div>
  9809. </div>
  9810. <divclass="cardinfo_bottom">
  9811. <dl>
  9812. <dt>Effect</dt>
  9813. <dd>While you have a level 6 Digimon with a [Machine] trait in play, you may use this card without meeting its color requirements.[Main] Choose 1 of your Digimon with a [Machine] or [Cyborg] trait. Delete 1 of your opponent's Digimon with DP less than or equal to that Digimon and delete your chosen Digimon.</dd>
  9814. </dl>
  9815. <dl>
  9816. <dt>Digivolveeffect</dt>
  9817. <dd>-</dd>
  9818. </dl>
  9819. <dl>
  9820. <dt>Securityeffect</dt>
  9821. <dd>[Security] By trashing 1 card with a [Cyborg] or [Machine] trait from your hand, delete 1 of your opponent's Digimon with a play cost less than or equal to the trashed card.</dd>
  9822. </dl>
  9823. <dl>
  9824. <dt>Notes</dt>
  9825. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9826. </div>
  9827. </div>
  9828. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9829. </div>
  9830. </div>
  9831. </li>
  9832. <liclass="image_lists_itemdatapage-4">
  9833. <aclass="card_img">
  9834. <imgsrc="../images/cardlist/card/BT12-109.png"alt="BT12-109OverflowingPower"></a>
  9835. <divclass="popup">
  9836. <divclass="card_detailcard_detail_purple">
  9837. <divclass="card_detail_inner">
  9838. <ulclass="cardinfo_head">
  9839. <liclass="cardno">BT12-109</li>
  9840. <li>R</li>
  9841. <liclass="cardtype">Option</li>
  9842. </ul>
  9843. <divclass="card_name">OverflowingPower</div>
  9844. <divclass="cardinfo_top">
  9845. <divclass="card_img">
  9846. <imgsrc="../images/cardlist/card/BT12-109.png"alt="BT12-109OverflowingPower"></div>
  9847. <divclass="cardinfo_top_body">
  9848. <dl>
  9849. <dt>Form</dt>
  9850. <dd>-</dd>
  9851. </dl>
  9852. <dl>
  9853. <dt>Attribute</dt>
  9854. <dd>-</dd>
  9855. </dl>
  9856. <dl>
  9857. <dt>Type</dt>
  9858. <dd>Hunter</dd>
  9859. </dl>
  9860. <dl>
  9861. <dt>DP</dt>
  9862. <dd>-</dl>
  9863. <dl>
  9864. <dt>PlayCost</dt>
  9865. <dd>-</dd>
  9866. </dl>
  9867. <dl>
  9868. <dt>DigivolveCost1</dt>
  9869. <dd>-</dd>
  9870. </dl>
  9871. <dl>
  9872. <dt>DigivolveCost2</dt>
  9873. <dd>-</dd>
  9874. </dl>
  9875. </div>
  9876. </div>
  9877. <divclass="cardinfo_bottom">
  9878. <dl>
  9879. <dt>Effect</dt>
  9880. <dd>[Main] While you have a Tamer with a [Hunter] trait in play, you may use this card without meeting its color requirements.Digivolve 1 of your Digimon into a Digimon card with <Save> in its text under one of your Tamers for its digivolution cost.</dd>
  9881. </dl>
  9882. <dl>
  9883. <dt>Digivolveeffect</dt>
  9884. <dd>-</dd>
  9885. </dl>
  9886. <dl>
  9887. <dt>Securityeffect</dt>
  9888. <dd>[Security] Add this card to its owner's hand.</dd>
  9889. </dl>
  9890. <dl>
  9891. <dt>Notes</dt>
  9892. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9893. </div>
  9894. </div>
  9895. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9896. </div>
  9897. </div>
  9898. </li>
  9899. <liclass="image_lists_itemdatapage-4">
  9900. <aclass="card_img">
  9901. <imgsrc="../images/cardlist/card/BT12-110.png"alt="BT12-110SeventhFullCluster"></a>
  9902. <divclass="popup">
  9903. <divclass="card_detailcard_detail_purple">
  9904. <divclass="card_detail_inner">
  9905. <ulclass="cardinfo_head">
  9906. <liclass="cardno">BT12-110</li>
  9907. <li>U</li>
  9908. <liclass="cardtype">Option</li>
  9909. </ul>
  9910. <divclass="card_name">SeventhFullCluster</div>
  9911. <divclass="cardinfo_top">
  9912. <divclass="card_img">
  9913. <imgsrc="../images/cardlist/card/BT12-110.png"alt="BT12-110SeventhFullCluster"></div>
  9914. <divclass="cardinfo_top_body">
  9915. <dl>
  9916. <dt>Form</dt>
  9917. <dd>-</dd>
  9918. </dl>
  9919. <dl>
  9920. <dt>Attribute</dt>
  9921. <dd>-</dd>
  9922. </dl>
  9923. <dl>
  9924. <dt>Type</dt>
  9925. <dd>SevenGreatDemonLords</dd>
  9926. </dl>
  9927. <dl>
  9928. <dt>DP</dt>
  9929. <dd>-</dl>
  9930. <dl>
  9931. <dt>PlayCost</dt>
  9932. <dd>7</dd>
  9933. </dl>
  9934. <dl>
  9935. <dt>DigivolveCost1</dt>
  9936. <dd>-</dd>
  9937. </dl>
  9938. <dl>
  9939. <dt>DigivolveCost2</dt>
  9940. <dd>-</dd>
  9941. </dl>
  9942. </div>
  9943. </div>
  9944. <divclass="cardinfo_bottom">
  9945. <dl>
  9946. <dt>Effect</dt>
  9947. <dd>[Trash][Your Turn] If one of your Digimon digivolves into [Beelzemon (X Antibody)], by returning this card to the bottom of your deck, delete 1 of your opponent’s Digimon with the lowest level.[Main] Delete 1 of your opponent’s Digimon with the lowest level.</dd>
  9948. </dl>
  9949. <dl>
  9950. <dt>Digivolveeffect</dt>
  9951. <dd>-</dd>
  9952. </dl>
  9953. <dl>
  9954. <dt>Securityeffect</dt>
  9955. <dd>[Security] Activate this card's [Main] effect.</dd>
  9956. </dl>
  9957. <dl>
  9958. <dt>Notes</dt>
  9959. <dd><ahref="/products/pack/ver12.php">&rtri;BOOSTERACROSSTIME[BT12]</a></dd></dl>
  9960. </div>
  9961. </div>
  9962. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9963. </div>
  9964. </div>
  9965. </li>