522005.txt 235 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT6-001.png"alt="BT6-001DemiMeramon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT6-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">DemiMeramon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT6-001.png"alt="BT6-001DemiMeramon"></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>Flame</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>-</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>-</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>-</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[When Attacking] When this Digimon attacks a player, it gets +1000 DP for the turn.</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/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</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/BT6-001_P1.png"alt="BT6-001DemiMeramon"><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">BT6-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">DemiMeramon</div>
  84. <divclass="cardinfo_top">
  85. <divclass="card_img">
  86. <imgsrc="../images/cardlist/card/BT6-001_P1.png"alt="BT6-001DemiMeramon"></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>Flame</dd>
  99. </dl>
  100. <dl>
  101. <dt>DP</dt>
  102. <dd>-</dl>
  103. <dl>
  104. <dt>PlayCost</dt>
  105. <dd>-</dd>
  106. </dl>
  107. <dl>
  108. <dt>DigivolveCost1</dt>
  109. <dd>-</dd>
  110. </dl>
  111. <dl>
  112. <dt>DigivolveCost2</dt>
  113. <dd>-</dd>
  114. </dl>
  115. </div>
  116. </div>
  117. <divclass="cardinfo_bottom">
  118. <dl>
  119. <dt>Effect</dt>
  120. <dd>-</dd>
  121. </dl>
  122. <dl>
  123. <dt>Digivolveeffect</dt>
  124. <dd>[When Attacking] When this Digimon attacks a player, it gets +1000 DP for the turn.</dd>
  125. </dl>
  126. <dl>
  127. <dt>Securityeffect</dt>
  128. <dd>-</dd>
  129. </dl>
  130. <dl>
  131. <dt>Notes</dt>
  132. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</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/BT6-001_P2.png"alt="BT6-001DemiMeramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  142. </a>
  143. <divclass="popup">
  144. <divclass="card_detailcard_detail_red">
  145. <divclass="card_detail_inner">
  146. <ulclass="cardinfo_head">
  147. <liclass="cardno">BT6-001</li>
  148. <li>U</li>
  149. <liclass="cardtype">Digi-Egg</li>
  150. <liclass="cardlv">Lv.2</li>
  151. <liclass="cardtypecardParallel">AlternativeArt</li>
  152. </ul>
  153. <divclass="card_name">DemiMeramon</div>
  154. <divclass="cardinfo_top">
  155. <divclass="card_img">
  156. <imgsrc="../images/cardlist/card/BT6-001_P2.png"alt="BT6-001DemiMeramon"></div>
  157. <divclass="cardinfo_top_body">
  158. <dl>
  159. <dt>Form</dt>
  160. <dd>In-Training</dd>
  161. </dl>
  162. <dl>
  163. <dt>Attribute</dt>
  164. <dd>-</dd>
  165. </dl>
  166. <dl>
  167. <dt>Type</dt>
  168. <dd>Flame</dd>
  169. </dl>
  170. <dl>
  171. <dt>DP</dt>
  172. <dd>-</dl>
  173. <dl>
  174. <dt>PlayCost</dt>
  175. <dd>-</dd>
  176. </dl>
  177. <dl>
  178. <dt>DigivolveCost1</dt>
  179. <dd>-</dd>
  180. </dl>
  181. <dl>
  182. <dt>DigivolveCost2</dt>
  183. <dd>-</dd>
  184. </dl>
  185. </div>
  186. </div>
  187. <divclass="cardinfo_bottom">
  188. <dl>
  189. <dt>Effect</dt>
  190. <dd>-</dd>
  191. </dl>
  192. <dl>
  193. <dt>Digivolveeffect</dt>
  194. <dd>[When Attacking] When this Digimon attacks a player, it gets +1000 DP for the turn.</dd>
  195. </dl>
  196. <dl>
  197. <dt>Securityeffect</dt>
  198. <dd>-</dd>
  199. </dl>
  200. <dl>
  201. <dt>Notes</dt>
  202. <dd>Digi-EggSet</dd></dl>
  203. </div>
  204. </div>
  205. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  206. </div>
  207. </div>
  208. </li>
  209. <liclass="image_lists_itemdatapage-1">
  210. <aclass="card_img">
  211. <imgsrc="../images/cardlist/card/BT6-002.png"alt="BT6-002Kyaromon"></a>
  212. <divclass="popup">
  213. <divclass="card_detailcard_detail_blue">
  214. <divclass="card_detail_inner">
  215. <ulclass="cardinfo_head">
  216. <liclass="cardno">BT6-002</li>
  217. <li>U</li>
  218. <liclass="cardtype">Digi-Egg</li>
  219. <liclass="cardlv">Lv.2</li>
  220. </ul>
  221. <divclass="card_name">Kyaromon</div>
  222. <divclass="cardinfo_top">
  223. <divclass="card_img">
  224. <imgsrc="../images/cardlist/card/BT6-002.png"alt="BT6-002Kyaromon"></div>
  225. <divclass="cardinfo_top_body">
  226. <dl>
  227. <dt>Form</dt>
  228. <dd>In-Training</dd>
  229. </dl>
  230. <dl>
  231. <dt>Attribute</dt>
  232. <dd>-</dd>
  233. </dl>
  234. <dl>
  235. <dt>Type</dt>
  236. <dd>Lesser</dd>
  237. </dl>
  238. <dl>
  239. <dt>DP</dt>
  240. <dd>-</dl>
  241. <dl>
  242. <dt>PlayCost</dt>
  243. <dd>-</dd>
  244. </dl>
  245. <dl>
  246. <dt>DigivolveCost1</dt>
  247. <dd>-</dd>
  248. </dl>
  249. <dl>
  250. <dt>DigivolveCost2</dt>
  251. <dd>-</dd>
  252. </dl>
  253. </div>
  254. </div>
  255. <divclass="cardinfo_bottom">
  256. <dl>
  257. <dt>Effect</dt>
  258. <dd>-</dd>
  259. </dl>
  260. <dl>
  261. <dt>Digivolveeffect</dt>
  262. <dd>[Your Turn][Once Per Turn] When one of your opponent's digivolution cards is trashed, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  263. </dl>
  264. <dl>
  265. <dt>Securityeffect</dt>
  266. <dd>-</dd>
  267. </dl>
  268. <dl>
  269. <dt>Notes</dt>
  270. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  271. </div>
  272. </div>
  273. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  274. </div>
  275. </div>
  276. </li>
  277. <liclass="image_lists_itemdatapage-1">
  278. <aclass="card_img">
  279. <imgsrc="../images/cardlist/card/BT6-002_P1.png"alt="BT6-002Kyaromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  280. </a>
  281. <divclass="popup">
  282. <divclass="card_detailcard_detail_blue">
  283. <divclass="card_detail_inner">
  284. <ulclass="cardinfo_head">
  285. <liclass="cardno">BT6-002</li>
  286. <li>U</li>
  287. <liclass="cardtype">Digi-Egg</li>
  288. <liclass="cardlv">Lv.2</li>
  289. <liclass="cardtypecardParallel">AlternativeArt</li>
  290. </ul>
  291. <divclass="card_name">Kyaromon</div>
  292. <divclass="cardinfo_top">
  293. <divclass="card_img">
  294. <imgsrc="../images/cardlist/card/BT6-002_P1.png"alt="BT6-002Kyaromon"></div>
  295. <divclass="cardinfo_top_body">
  296. <dl>
  297. <dt>Form</dt>
  298. <dd>In-Training</dd>
  299. </dl>
  300. <dl>
  301. <dt>Attribute</dt>
  302. <dd>-</dd>
  303. </dl>
  304. <dl>
  305. <dt>Type</dt>
  306. <dd>Lesser</dd>
  307. </dl>
  308. <dl>
  309. <dt>DP</dt>
  310. <dd>-</dl>
  311. <dl>
  312. <dt>PlayCost</dt>
  313. <dd>-</dd>
  314. </dl>
  315. <dl>
  316. <dt>DigivolveCost1</dt>
  317. <dd>-</dd>
  318. </dl>
  319. <dl>
  320. <dt>DigivolveCost2</dt>
  321. <dd>-</dd>
  322. </dl>
  323. </div>
  324. </div>
  325. <divclass="cardinfo_bottom">
  326. <dl>
  327. <dt>Effect</dt>
  328. <dd>-</dd>
  329. </dl>
  330. <dl>
  331. <dt>Digivolveeffect</dt>
  332. <dd>[Your Turn][Once Per Turn] When one of your opponent's digivolution cards is trashed, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  333. </dl>
  334. <dl>
  335. <dt>Securityeffect</dt>
  336. <dd>-</dd>
  337. </dl>
  338. <dl>
  339. <dt>Notes</dt>
  340. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</dd></dl>
  341. </div>
  342. </div>
  343. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  344. </div>
  345. </div>
  346. </li>
  347. <liclass="image_lists_itemdatapage-1">
  348. <aclass="card_img">
  349. <imgsrc="../images/cardlist/card/BT6-003.png"alt="BT6-003Bibimon"></a>
  350. <divclass="popup">
  351. <divclass="card_detailcard_detail_yellow">
  352. <divclass="card_detail_inner">
  353. <ulclass="cardinfo_head">
  354. <liclass="cardno">BT6-003</li>
  355. <li>U</li>
  356. <liclass="cardtype">Digi-Egg</li>
  357. <liclass="cardlv">Lv.2</li>
  358. </ul>
  359. <divclass="card_name">Bibimon</div>
  360. <divclass="cardinfo_top">
  361. <divclass="card_img">
  362. <imgsrc="../images/cardlist/card/BT6-003.png"alt="BT6-003Bibimon"></div>
  363. <divclass="cardinfo_top_body">
  364. <dl>
  365. <dt>Form</dt>
  366. <dd>In-Training</dd>
  367. </dl>
  368. <dl>
  369. <dt>Attribute</dt>
  370. <dd>-</dd>
  371. </dl>
  372. <dl>
  373. <dt>Type</dt>
  374. <dd>Lesser</dd>
  375. </dl>
  376. <dl>
  377. <dt>DP</dt>
  378. <dd>-</dl>
  379. <dl>
  380. <dt>PlayCost</dt>
  381. <dd>-</dd>
  382. </dl>
  383. <dl>
  384. <dt>DigivolveCost1</dt>
  385. <dd>-</dd>
  386. </dl>
  387. <dl>
  388. <dt>DigivolveCost2</dt>
  389. <dd>-</dd>
  390. </dl>
  391. </div>
  392. </div>
  393. <divclass="cardinfo_bottom">
  394. <dl>
  395. <dt>Effect</dt>
  396. <dd>-</dd>
  397. </dl>
  398. <dl>
  399. <dt>Digivolveeffect</dt>
  400. <dd>[When Attacking][Once Per Turn] If you have 3 security cards, gain 1 memory.</dd>
  401. </dl>
  402. <dl>
  403. <dt>Securityeffect</dt>
  404. <dd>-</dd>
  405. </dl>
  406. <dl>
  407. <dt>Notes</dt>
  408. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  409. </div>
  410. </div>
  411. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  412. </div>
  413. </div>
  414. </li>
  415. <liclass="image_lists_itemdatapage-1">
  416. <aclass="card_img">
  417. <imgsrc="../images/cardlist/card/BT6-003_P1.png"alt="BT6-003Bibimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  418. </a>
  419. <divclass="popup">
  420. <divclass="card_detailcard_detail_yellow">
  421. <divclass="card_detail_inner">
  422. <ulclass="cardinfo_head">
  423. <liclass="cardno">BT6-003</li>
  424. <li>U</li>
  425. <liclass="cardtype">Digi-Egg</li>
  426. <liclass="cardlv">Lv.2</li>
  427. <liclass="cardtypecardParallel">AlternativeArt</li>
  428. </ul>
  429. <divclass="card_name">Bibimon</div>
  430. <divclass="cardinfo_top">
  431. <divclass="card_img">
  432. <imgsrc="../images/cardlist/card/BT6-003_P1.png"alt="BT6-003Bibimon"></div>
  433. <divclass="cardinfo_top_body">
  434. <dl>
  435. <dt>Form</dt>
  436. <dd>In-Training</dd>
  437. </dl>
  438. <dl>
  439. <dt>Attribute</dt>
  440. <dd>-</dd>
  441. </dl>
  442. <dl>
  443. <dt>Type</dt>
  444. <dd>Lesser</dd>
  445. </dl>
  446. <dl>
  447. <dt>DP</dt>
  448. <dd>-</dl>
  449. <dl>
  450. <dt>PlayCost</dt>
  451. <dd>-</dd>
  452. </dl>
  453. <dl>
  454. <dt>DigivolveCost1</dt>
  455. <dd>-</dd>
  456. </dl>
  457. <dl>
  458. <dt>DigivolveCost2</dt>
  459. <dd>-</dd>
  460. </dl>
  461. </div>
  462. </div>
  463. <divclass="cardinfo_bottom">
  464. <dl>
  465. <dt>Effect</dt>
  466. <dd>-</dd>
  467. </dl>
  468. <dl>
  469. <dt>Digivolveeffect</dt>
  470. <dd>[When Attacking][Once Per Turn] If you have 3 security cards, gain 1 memory.</dd>
  471. </dl>
  472. <dl>
  473. <dt>Securityeffect</dt>
  474. <dd>-</dd>
  475. </dl>
  476. <dl>
  477. <dt>Notes</dt>
  478. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</dd></dl>
  479. </div>
  480. </div>
  481. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  482. </div>
  483. </div>
  484. </li>
  485. <liclass="image_lists_itemdatapage-1">
  486. <aclass="card_img">
  487. <imgsrc="../images/cardlist/card/BT6-004.png"alt="BT6-004Pinamon"></a>
  488. <divclass="popup">
  489. <divclass="card_detailcard_detail_green">
  490. <divclass="card_detail_inner">
  491. <ulclass="cardinfo_head">
  492. <liclass="cardno">BT6-004</li>
  493. <li>U</li>
  494. <liclass="cardtype">Digi-Egg</li>
  495. <liclass="cardlv">Lv.2</li>
  496. </ul>
  497. <divclass="card_name">Pinamon</div>
  498. <divclass="cardinfo_top">
  499. <divclass="card_img">
  500. <imgsrc="../images/cardlist/card/BT6-004.png"alt="BT6-004Pinamon"></div>
  501. <divclass="cardinfo_top_body">
  502. <dl>
  503. <dt>Form</dt>
  504. <dd>In-Training</dd>
  505. </dl>
  506. <dl>
  507. <dt>Attribute</dt>
  508. <dd>-</dd>
  509. </dl>
  510. <dl>
  511. <dt>Type</dt>
  512. <dd>Bird</dd>
  513. </dl>
  514. <dl>
  515. <dt>DP</dt>
  516. <dd>-</dl>
  517. <dl>
  518. <dt>PlayCost</dt>
  519. <dd>-</dd>
  520. </dl>
  521. <dl>
  522. <dt>DigivolveCost1</dt>
  523. <dd>-</dd>
  524. </dl>
  525. <dl>
  526. <dt>DigivolveCost2</dt>
  527. <dd>-</dd>
  528. </dl>
  529. </div>
  530. </div>
  531. <divclass="cardinfo_bottom">
  532. <dl>
  533. <dt>Effect</dt>
  534. <dd>-</dd>
  535. </dl>
  536. <dl>
  537. <dt>Digivolveeffect</dt>
  538. <dd>[When Attacking][Once Per Turn] If you attack an opponent's Digimon, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  539. </dl>
  540. <dl>
  541. <dt>Securityeffect</dt>
  542. <dd>-</dd>
  543. </dl>
  544. <dl>
  545. <dt>Notes</dt>
  546. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  547. </div>
  548. </div>
  549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  550. </div>
  551. </div>
  552. </li>
  553. <liclass="image_lists_itemdatapage-1">
  554. <aclass="card_img">
  555. <imgsrc="../images/cardlist/card/BT6-004_P1.png"alt="BT6-004Pinamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  556. </a>
  557. <divclass="popup">
  558. <divclass="card_detailcard_detail_green">
  559. <divclass="card_detail_inner">
  560. <ulclass="cardinfo_head">
  561. <liclass="cardno">BT6-004</li>
  562. <li>U</li>
  563. <liclass="cardtype">Digi-Egg</li>
  564. <liclass="cardlv">Lv.2</li>
  565. <liclass="cardtypecardParallel">AlternativeArt</li>
  566. </ul>
  567. <divclass="card_name">Pinamon</div>
  568. <divclass="cardinfo_top">
  569. <divclass="card_img">
  570. <imgsrc="../images/cardlist/card/BT6-004_P1.png"alt="BT6-004Pinamon"></div>
  571. <divclass="cardinfo_top_body">
  572. <dl>
  573. <dt>Form</dt>
  574. <dd>In-Training</dd>
  575. </dl>
  576. <dl>
  577. <dt>Attribute</dt>
  578. <dd>-</dd>
  579. </dl>
  580. <dl>
  581. <dt>Type</dt>
  582. <dd>Bird</dd>
  583. </dl>
  584. <dl>
  585. <dt>DP</dt>
  586. <dd>-</dl>
  587. <dl>
  588. <dt>PlayCost</dt>
  589. <dd>-</dd>
  590. </dl>
  591. <dl>
  592. <dt>DigivolveCost1</dt>
  593. <dd>-</dd>
  594. </dl>
  595. <dl>
  596. <dt>DigivolveCost2</dt>
  597. <dd>-</dd>
  598. </dl>
  599. </div>
  600. </div>
  601. <divclass="cardinfo_bottom">
  602. <dl>
  603. <dt>Effect</dt>
  604. <dd>-</dd>
  605. </dl>
  606. <dl>
  607. <dt>Digivolveeffect</dt>
  608. <dd>[When Attacking][Once Per Turn] If you attack an opponent's Digimon, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  609. </dl>
  610. <dl>
  611. <dt>Securityeffect</dt>
  612. <dd>-</dd>
  613. </dl>
  614. <dl>
  615. <dt>Notes</dt>
  616. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</dd></dl>
  617. </div>
  618. </div>
  619. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  620. </div>
  621. </div>
  622. </li>
  623. <liclass="image_lists_itemdatapage-1">
  624. <aclass="card_img">
  625. <imgsrc="../images/cardlist/card/BT6-005.png"alt="BT6-005Pagumon"></a>
  626. <divclass="popup">
  627. <divclass="card_detailcard_detail_black">
  628. <divclass="card_detail_inner">
  629. <ulclass="cardinfo_head">
  630. <liclass="cardno">BT6-005</li>
  631. <li>U</li>
  632. <liclass="cardtype">Digi-Egg</li>
  633. <liclass="cardlv">Lv.2</li>
  634. </ul>
  635. <divclass="card_name">Pagumon</div>
  636. <divclass="cardinfo_top">
  637. <divclass="card_img">
  638. <imgsrc="../images/cardlist/card/BT6-005.png"alt="BT6-005Pagumon"></div>
  639. <divclass="cardinfo_top_body">
  640. <dl>
  641. <dt>Form</dt>
  642. <dd>In-Training</dd>
  643. </dl>
  644. <dl>
  645. <dt>Attribute</dt>
  646. <dd>-</dd>
  647. </dl>
  648. <dl>
  649. <dt>Type</dt>
  650. <dd>Lesser</dd>
  651. </dl>
  652. <dl>
  653. <dt>DP</dt>
  654. <dd>-</dl>
  655. <dl>
  656. <dt>PlayCost</dt>
  657. <dd>-</dd>
  658. </dl>
  659. <dl>
  660. <dt>DigivolveCost1</dt>
  661. <dd>-</dd>
  662. </dl>
  663. <dl>
  664. <dt>DigivolveCost2</dt>
  665. <dd>-</dd>
  666. </dl>
  667. </div>
  668. </div>
  669. <divclass="cardinfo_bottom">
  670. <dl>
  671. <dt>Effect</dt>
  672. <dd>-</dd>
  673. </dl>
  674. <dl>
  675. <dt>Digivolveeffect</dt>
  676. <dd>[On Deletion] Reveal the top card of your deck. Add it to your hand if it's a black Digimon card. Otherwise, place it at the bottom of your deck.</dd>
  677. </dl>
  678. <dl>
  679. <dt>Securityeffect</dt>
  680. <dd>-</dd>
  681. </dl>
  682. <dl>
  683. <dt>Notes</dt>
  684. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  685. </div>
  686. </div>
  687. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  688. </div>
  689. </div>
  690. </li>
  691. <liclass="image_lists_itemdatapage-1">
  692. <aclass="card_img">
  693. <imgsrc="../images/cardlist/card/BT6-005_P1.png"alt="BT6-005Pagumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  694. </a>
  695. <divclass="popup">
  696. <divclass="card_detailcard_detail_black">
  697. <divclass="card_detail_inner">
  698. <ulclass="cardinfo_head">
  699. <liclass="cardno">BT6-005</li>
  700. <li>U</li>
  701. <liclass="cardtype">Digi-Egg</li>
  702. <liclass="cardlv">Lv.2</li>
  703. <liclass="cardtypecardParallel">AlternativeArt</li>
  704. </ul>
  705. <divclass="card_name">Pagumon</div>
  706. <divclass="cardinfo_top">
  707. <divclass="card_img">
  708. <imgsrc="../images/cardlist/card/BT6-005_P1.png"alt="BT6-005Pagumon"></div>
  709. <divclass="cardinfo_top_body">
  710. <dl>
  711. <dt>Form</dt>
  712. <dd>In-Training</dd>
  713. </dl>
  714. <dl>
  715. <dt>Attribute</dt>
  716. <dd>-</dd>
  717. </dl>
  718. <dl>
  719. <dt>Type</dt>
  720. <dd>Lesser</dd>
  721. </dl>
  722. <dl>
  723. <dt>DP</dt>
  724. <dd>-</dl>
  725. <dl>
  726. <dt>PlayCost</dt>
  727. <dd>-</dd>
  728. </dl>
  729. <dl>
  730. <dt>DigivolveCost1</dt>
  731. <dd>-</dd>
  732. </dl>
  733. <dl>
  734. <dt>DigivolveCost2</dt>
  735. <dd>-</dd>
  736. </dl>
  737. </div>
  738. </div>
  739. <divclass="cardinfo_bottom">
  740. <dl>
  741. <dt>Effect</dt>
  742. <dd>-</dd>
  743. </dl>
  744. <dl>
  745. <dt>Digivolveeffect</dt>
  746. <dd>[On Deletion] Reveal the top card of your deck. Add it to your hand if it's a black Digimon card. Otherwise, place it at the bottom of your deck.</dd>
  747. </dl>
  748. <dl>
  749. <dt>Securityeffect</dt>
  750. <dd>-</dd>
  751. </dl>
  752. <dl>
  753. <dt>Notes</dt>
  754. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</dd></dl>
  755. </div>
  756. </div>
  757. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  758. </div>
  759. </div>
  760. </li>
  761. <liclass="image_lists_itemdatapage-1">
  762. <aclass="card_img">
  763. <imgsrc="../images/cardlist/card/BT6-005_P2.png"alt="BT6-005Pagumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  764. </a>
  765. <divclass="popup">
  766. <divclass="card_detailcard_detail_black">
  767. <divclass="card_detail_inner">
  768. <ulclass="cardinfo_head">
  769. <liclass="cardno">BT6-005</li>
  770. <li>U</li>
  771. <liclass="cardtype">Digi-Egg</li>
  772. <liclass="cardlv">Lv.2</li>
  773. <liclass="cardtypecardParallel">AlternativeArt</li>
  774. </ul>
  775. <divclass="card_name">Pagumon</div>
  776. <divclass="cardinfo_top">
  777. <divclass="card_img">
  778. <imgsrc="../images/cardlist/card/BT6-005_P2.png"alt="BT6-005Pagumon"></div>
  779. <divclass="cardinfo_top_body">
  780. <dl>
  781. <dt>Form</dt>
  782. <dd>In-Training</dd>
  783. </dl>
  784. <dl>
  785. <dt>Attribute</dt>
  786. <dd>-</dd>
  787. </dl>
  788. <dl>
  789. <dt>Type</dt>
  790. <dd>Lesser</dd>
  791. </dl>
  792. <dl>
  793. <dt>DP</dt>
  794. <dd>-</dl>
  795. <dl>
  796. <dt>PlayCost</dt>
  797. <dd>-</dd>
  798. </dl>
  799. <dl>
  800. <dt>DigivolveCost1</dt>
  801. <dd>-</dd>
  802. </dl>
  803. <dl>
  804. <dt>DigivolveCost2</dt>
  805. <dd>-</dd>
  806. </dl>
  807. </div>
  808. </div>
  809. <divclass="cardinfo_bottom">
  810. <dl>
  811. <dt>Effect</dt>
  812. <dd>-</dd>
  813. </dl>
  814. <dl>
  815. <dt>Digivolveeffect</dt>
  816. <dd>[On Deletion] Reveal the top card of your deck. Add it to your hand if it's a black Digimon card. Otherwise, place it at the bottom of your deck.</dd>
  817. </dl>
  818. <dl>
  819. <dt>Securityeffect</dt>
  820. <dd>-</dd>
  821. </dl>
  822. <dl>
  823. <dt>Notes</dt>
  824. <dd>Digi-EggSet</dd></dl>
  825. </div>
  826. </div>
  827. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  828. </div>
  829. </div>
  830. </li>
  831. <liclass="image_lists_itemdatapage-1">
  832. <aclass="card_img">
  833. <imgsrc="../images/cardlist/card/BT6-006.png"alt="BT6-006Tsunomon"></a>
  834. <divclass="popup">
  835. <divclass="card_detailcard_detail_purple">
  836. <divclass="card_detail_inner">
  837. <ulclass="cardinfo_head">
  838. <liclass="cardno">BT6-006</li>
  839. <li>U</li>
  840. <liclass="cardtype">Digi-Egg</li>
  841. <liclass="cardlv">Lv.2</li>
  842. </ul>
  843. <divclass="card_name">Tsunomon</div>
  844. <divclass="cardinfo_top">
  845. <divclass="card_img">
  846. <imgsrc="../images/cardlist/card/BT6-006.png"alt="BT6-006Tsunomon"></div>
  847. <divclass="cardinfo_top_body">
  848. <dl>
  849. <dt>Form</dt>
  850. <dd>In-Training</dd>
  851. </dl>
  852. <dl>
  853. <dt>Attribute</dt>
  854. <dd>-</dd>
  855. </dl>
  856. <dl>
  857. <dt>Type</dt>
  858. <dd>Lesser</dd>
  859. </dl>
  860. <dl>
  861. <dt>DP</dt>
  862. <dd>-</dl>
  863. <dl>
  864. <dt>PlayCost</dt>
  865. <dd>-</dd>
  866. </dl>
  867. <dl>
  868. <dt>DigivolveCost1</dt>
  869. <dd>-</dd>
  870. </dl>
  871. <dl>
  872. <dt>DigivolveCost2</dt>
  873. <dd>-</dd>
  874. </dl>
  875. </div>
  876. </div>
  877. <divclass="cardinfo_bottom">
  878. <dl>
  879. <dt>Effect</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Digivolveeffect</dt>
  884. <dd>[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  885. </dl>
  886. <dl>
  887. <dt>Securityeffect</dt>
  888. <dd>-</dd>
  889. </dl>
  890. <dl>
  891. <dt>Notes</dt>
  892. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  893. </div>
  894. </div>
  895. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  896. </div>
  897. </div>
  898. </li>
  899. <liclass="image_lists_itemdatapage-1">
  900. <aclass="card_img">
  901. <imgsrc="../images/cardlist/card/BT6-006_P1.png"alt="BT6-006Tsunomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  902. </a>
  903. <divclass="popup">
  904. <divclass="card_detailcard_detail_purple">
  905. <divclass="card_detail_inner">
  906. <ulclass="cardinfo_head">
  907. <liclass="cardno">BT6-006</li>
  908. <li>U</li>
  909. <liclass="cardtype">Digi-Egg</li>
  910. <liclass="cardlv">Lv.2</li>
  911. <liclass="cardtypecardParallel">AlternativeArt</li>
  912. </ul>
  913. <divclass="card_name">Tsunomon</div>
  914. <divclass="cardinfo_top">
  915. <divclass="card_img">
  916. <imgsrc="../images/cardlist/card/BT6-006_P1.png"alt="BT6-006Tsunomon"></div>
  917. <divclass="cardinfo_top_body">
  918. <dl>
  919. <dt>Form</dt>
  920. <dd>In-Training</dd>
  921. </dl>
  922. <dl>
  923. <dt>Attribute</dt>
  924. <dd>-</dd>
  925. </dl>
  926. <dl>
  927. <dt>Type</dt>
  928. <dd>Lesser</dd>
  929. </dl>
  930. <dl>
  931. <dt>DP</dt>
  932. <dd>-</dl>
  933. <dl>
  934. <dt>PlayCost</dt>
  935. <dd>-</dd>
  936. </dl>
  937. <dl>
  938. <dt>DigivolveCost1</dt>
  939. <dd>-</dd>
  940. </dl>
  941. <dl>
  942. <dt>DigivolveCost2</dt>
  943. <dd>-</dd>
  944. </dl>
  945. </div>
  946. </div>
  947. <divclass="cardinfo_bottom">
  948. <dl>
  949. <dt>Effect</dt>
  950. <dd>-</dd>
  951. </dl>
  952. <dl>
  953. <dt>Digivolveeffect</dt>
  954. <dd>[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  955. </dl>
  956. <dl>
  957. <dt>Securityeffect</dt>
  958. <dd>-</dd>
  959. </dl>
  960. <dl>
  961. <dt>Notes</dt>
  962. <dd>BOOSTER-DOUBLEDIAMOND-[BT-06]BoxPromotion</dd></dl>
  963. </div>
  964. </div>
  965. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  966. </div>
  967. </div>
  968. </li>
  969. <liclass="image_lists_itemdatapage-1">
  970. <aclass="card_img">
  971. <imgsrc="../images/cardlist/card/BT6-007.png"alt="BT6-007Agumon"></a>
  972. <divclass="popup">
  973. <divclass="card_detailcard_detail_red">
  974. <divclass="card_detail_inner">
  975. <ulclass="cardinfo_head">
  976. <liclass="cardno">BT6-007</li>
  977. <li>U</li>
  978. <liclass="cardtype">Digimon</li>
  979. <liclass="cardlv">Lv.3</li>
  980. </ul>
  981. <divclass="card_name">Agumon</div>
  982. <divclass="cardinfo_top">
  983. <divclass="card_img">
  984. <imgsrc="../images/cardlist/card/BT6-007.png"alt="BT6-007Agumon"></div>
  985. <divclass="cardinfo_top_body">
  986. <dl>
  987. <dt>Form</dt>
  988. <dd>Rookie</dd>
  989. </dl>
  990. <dl>
  991. <dt>Attribute</dt>
  992. <dd>Vaccine</dd>
  993. </dl>
  994. <dl>
  995. <dt>Type</dt>
  996. <dd>Reptile</dd>
  997. </dl>
  998. <dl>
  999. <dt>DP</dt>
  1000. <dd>2000</dl>
  1001. <dl>
  1002. <dt>PlayCost</dt>
  1003. <dd>3</dd>
  1004. </dl>
  1005. <dl>
  1006. <dt>DigivolveCost1</dt>
  1007. <dd>0fromLv.2</dd>
  1008. </dl>
  1009. <dl>
  1010. <dt>DigivolveCost2</dt>
  1011. <dd>-</dd>
  1012. </dl>
  1013. </div>
  1014. </div>
  1015. <divclass="cardinfo_bottom">
  1016. <dl>
  1017. <dt>Effect</dt>
  1018. <dd>[All Turns][Once Per Turn] When you play a Tamer with [Tai Kamiya] in its name, gain 1 memory.</dd>
  1019. </dl>
  1020. <dl>
  1021. <dt>Digivolveeffect</dt>
  1022. <dd>[Your Turn] While this Digimon is [Agumon - Bond of Bravery], it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  1023. </dl>
  1024. <dl>
  1025. <dt>Securityeffect</dt>
  1026. <dd>-</dd>
  1027. </dl>
  1028. <dl>
  1029. <dt>Notes</dt>
  1030. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1031. </div>
  1032. </div>
  1033. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1034. </div>
  1035. </div>
  1036. </li>
  1037. <liclass="image_lists_itemdatapage-1">
  1038. <aclass="card_img">
  1039. <imgsrc="../images/cardlist/card/BT6-007_P1.png"alt="BT6-007Agumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1040. </a>
  1041. <divclass="popup">
  1042. <divclass="card_detailcard_detail_red">
  1043. <divclass="card_detail_inner">
  1044. <ulclass="cardinfo_head">
  1045. <liclass="cardno">BT6-007</li>
  1046. <li>U</li>
  1047. <liclass="cardtype">Digimon</li>
  1048. <liclass="cardlv">Lv.3</li>
  1049. <liclass="cardtypecardParallel">AlternativeArt</li>
  1050. </ul>
  1051. <divclass="card_name">Agumon</div>
  1052. <divclass="cardinfo_top">
  1053. <divclass="card_img">
  1054. <imgsrc="../images/cardlist/card/BT6-007_P1.png"alt="BT6-007Agumon"></div>
  1055. <divclass="cardinfo_top_body">
  1056. <dl>
  1057. <dt>Form</dt>
  1058. <dd>Rookie</dd>
  1059. </dl>
  1060. <dl>
  1061. <dt>Attribute</dt>
  1062. <dd>Vaccine</dd>
  1063. </dl>
  1064. <dl>
  1065. <dt>Type</dt>
  1066. <dd>Reptile</dd>
  1067. </dl>
  1068. <dl>
  1069. <dt>DP</dt>
  1070. <dd>2000</dl>
  1071. <dl>
  1072. <dt>PlayCost</dt>
  1073. <dd>3</dd>
  1074. </dl>
  1075. <dl>
  1076. <dt>DigivolveCost1</dt>
  1077. <dd>0fromLv.2</dd>
  1078. </dl>
  1079. <dl>
  1080. <dt>DigivolveCost2</dt>
  1081. <dd>-</dd>
  1082. </dl>
  1083. </div>
  1084. </div>
  1085. <divclass="cardinfo_bottom">
  1086. <dl>
  1087. <dt>Effect</dt>
  1088. <dd>[All Turns][Once Per Turn] When you play a Tamer with [Tai Kamiya] in its name, gain 1 memory.</dd>
  1089. </dl>
  1090. <dl>
  1091. <dt>Digivolveeffect</dt>
  1092. <dd>[Your Turn] While this Digimon is [Agumon - Bond of Bravery], it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  1093. </dl>
  1094. <dl>
  1095. <dt>Securityeffect</dt>
  1096. <dd>-</dd>
  1097. </dl>
  1098. <dl>
  1099. <dt>Notes</dt>
  1100. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1101. </div>
  1102. </div>
  1103. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1104. </div>
  1105. </div>
  1106. </li>
  1107. <liclass="image_lists_itemdatapage-1">
  1108. <aclass="card_img">
  1109. <imgsrc="../images/cardlist/card/BT6-008.png"alt="BT6-008Shoutmon"></a>
  1110. <divclass="popup">
  1111. <divclass="card_detailcard_detail_red">
  1112. <divclass="card_detail_inner">
  1113. <ulclass="cardinfo_head">
  1114. <liclass="cardno">BT6-008</li>
  1115. <li>C</li>
  1116. <liclass="cardtype">Digimon</li>
  1117. <liclass="cardlv">Lv.3</li>
  1118. </ul>
  1119. <divclass="card_name">Shoutmon</div>
  1120. <divclass="cardinfo_top">
  1121. <divclass="card_img">
  1122. <imgsrc="../images/cardlist/card/BT6-008.png"alt="BT6-008Shoutmon"></div>
  1123. <divclass="cardinfo_top_body">
  1124. <dl>
  1125. <dt>Form</dt>
  1126. <dd>Rookie</dd>
  1127. </dl>
  1128. <dl>
  1129. <dt>Attribute</dt>
  1130. <dd>Data</dd>
  1131. </dl>
  1132. <dl>
  1133. <dt>Type</dt>
  1134. <dd>MiniDragon</dd>
  1135. </dl>
  1136. <dl>
  1137. <dt>DP</dt>
  1138. <dd>2000</dl>
  1139. <dl>
  1140. <dt>PlayCost</dt>
  1141. <dd>3</dd>
  1142. </dl>
  1143. <dl>
  1144. <dt>DigivolveCost1</dt>
  1145. <dd>0fromLv.2</dd>
  1146. </dl>
  1147. <dl>
  1148. <dt>DigivolveCost2</dt>
  1149. <dd>-</dd>
  1150. </dl>
  1151. </div>
  1152. </div>
  1153. <divclass="cardinfo_bottom">
  1154. <dl>
  1155. <dt>Effect</dt>
  1156. <dd>-</dd>
  1157. </dl>
  1158. <dl>
  1159. <dt>Digivolveeffect</dt>
  1160. <dd>[When Attacking][Once Per Turn] If this Digimon has <Blitz>, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  1161. </dl>
  1162. <dl>
  1163. <dt>Securityeffect</dt>
  1164. <dd>-</dd>
  1165. </dl>
  1166. <dl>
  1167. <dt>Notes</dt>
  1168. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1169. </div>
  1170. </div>
  1171. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1172. </div>
  1173. </div>
  1174. </li>
  1175. <liclass="image_lists_itemdatapage-1">
  1176. <aclass="card_img">
  1177. <imgsrc="../images/cardlist/card/BT6-009.png"alt="BT6-009Huckmon"></a>
  1178. <divclass="popup">
  1179. <divclass="card_detailcard_detail_red">
  1180. <divclass="card_detail_inner">
  1181. <ulclass="cardinfo_head">
  1182. <liclass="cardno">BT6-009</li>
  1183. <li>R</li>
  1184. <liclass="cardtype">Digimon</li>
  1185. <liclass="cardlv">Lv.3</li>
  1186. </ul>
  1187. <divclass="card_name">Huckmon</div>
  1188. <divclass="cardinfo_top">
  1189. <divclass="card_img">
  1190. <imgsrc="../images/cardlist/card/BT6-009.png"alt="BT6-009Huckmon"></div>
  1191. <divclass="cardinfo_top_body">
  1192. <dl>
  1193. <dt>Form</dt>
  1194. <dd>Rookie</dd>
  1195. </dl>
  1196. <dl>
  1197. <dt>Attribute</dt>
  1198. <dd>Data</dd>
  1199. </dl>
  1200. <dl>
  1201. <dt>Type</dt>
  1202. <dd>MiniDragon</dd>
  1203. </dl>
  1204. <dl>
  1205. <dt>DP</dt>
  1206. <dd>2000</dl>
  1207. <dl>
  1208. <dt>PlayCost</dt>
  1209. <dd>3</dd>
  1210. </dl>
  1211. <dl>
  1212. <dt>DigivolveCost1</dt>
  1213. <dd>0fromLv.2</dd>
  1214. </dl>
  1215. <dl>
  1216. <dt>DigivolveCost2</dt>
  1217. <dd>-</dd>
  1218. </dl>
  1219. </div>
  1220. </div>
  1221. <divclass="cardinfo_bottom">
  1222. <dl>
  1223. <dt>Effect</dt>
  1224. <dd>[On Play] Reveal the top 5 cards of your deck. Add up to 2 Digimon cards with [Huckmon], [Jesmon], or [Sistermon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1225. </dl>
  1226. <dl>
  1227. <dt>Digivolveeffect</dt>
  1228. <dd>-</dd>
  1229. </dl>
  1230. <dl>
  1231. <dt>Securityeffect</dt>
  1232. <dd>-</dd>
  1233. </dl>
  1234. <dl>
  1235. <dt>Notes</dt>
  1236. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1237. </div>
  1238. </div>
  1239. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1240. </div>
  1241. </div>
  1242. </li>
  1243. <liclass="image_lists_itemdatapage-1">
  1244. <aclass="card_img">
  1245. <imgsrc="../images/cardlist/card/BT6-009_P1.png"alt="BT6-009Huckmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1246. </a>
  1247. <divclass="popup">
  1248. <divclass="card_detailcard_detail_red">
  1249. <divclass="card_detail_inner">
  1250. <ulclass="cardinfo_head">
  1251. <liclass="cardno">BT6-009</li>
  1252. <li>R</li>
  1253. <liclass="cardtype">Digimon</li>
  1254. <liclass="cardlv">Lv.3</li>
  1255. <liclass="cardtypecardParallel">AlternativeArt</li>
  1256. </ul>
  1257. <divclass="card_name">Huckmon</div>
  1258. <divclass="cardinfo_top">
  1259. <divclass="card_img">
  1260. <imgsrc="../images/cardlist/card/BT6-009_P1.png"alt="BT6-009Huckmon"></div>
  1261. <divclass="cardinfo_top_body">
  1262. <dl>
  1263. <dt>Form</dt>
  1264. <dd>Rookie</dd>
  1265. </dl>
  1266. <dl>
  1267. <dt>Attribute</dt>
  1268. <dd>Data</dd>
  1269. </dl>
  1270. <dl>
  1271. <dt>Type</dt>
  1272. <dd>MiniDragon</dd>
  1273. </dl>
  1274. <dl>
  1275. <dt>DP</dt>
  1276. <dd>2000</dl>
  1277. <dl>
  1278. <dt>PlayCost</dt>
  1279. <dd>3</dd>
  1280. </dl>
  1281. <dl>
  1282. <dt>DigivolveCost1</dt>
  1283. <dd>0fromLv.2</dd>
  1284. </dl>
  1285. <dl>
  1286. <dt>DigivolveCost2</dt>
  1287. <dd>-</dd>
  1288. </dl>
  1289. </div>
  1290. </div>
  1291. <divclass="cardinfo_bottom">
  1292. <dl>
  1293. <dt>Effect</dt>
  1294. <dd>[On Play] Reveal the top 5 cards of your deck. Add up to 2 Digimon cards with [Huckmon], [Jesmon], or [Sistermon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1295. </dl>
  1296. <dl>
  1297. <dt>Digivolveeffect</dt>
  1298. <dd>-</dd>
  1299. </dl>
  1300. <dl>
  1301. <dt>Securityeffect</dt>
  1302. <dd>-</dd>
  1303. </dl>
  1304. <dl>
  1305. <dt>Notes</dt>
  1306. <dd>FestSet</dd></dl>
  1307. </div>
  1308. </div>
  1309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1310. </div>
  1311. </div>
  1312. </li>
  1313. <liclass="image_lists_itemdatapage-1">
  1314. <aclass="card_img">
  1315. <imgsrc="../images/cardlist/card/BT6-009_P2.png"alt="BT6-009Huckmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1316. </a>
  1317. <divclass="popup">
  1318. <divclass="card_detailcard_detail_red">
  1319. <divclass="card_detail_inner">
  1320. <ulclass="cardinfo_head">
  1321. <liclass="cardno">BT6-009</li>
  1322. <li>R</li>
  1323. <liclass="cardtype">Digimon</li>
  1324. <liclass="cardlv">Lv.3</li>
  1325. <liclass="cardtypecardParallel">AlternativeArt</li>
  1326. </ul>
  1327. <divclass="card_name">Huckmon</div>
  1328. <divclass="cardinfo_top">
  1329. <divclass="card_img">
  1330. <imgsrc="../images/cardlist/card/BT6-009_P2.png"alt="BT6-009Huckmon"></div>
  1331. <divclass="cardinfo_top_body">
  1332. <dl>
  1333. <dt>Form</dt>
  1334. <dd>Rookie</dd>
  1335. </dl>
  1336. <dl>
  1337. <dt>Attribute</dt>
  1338. <dd>Data</dd>
  1339. </dl>
  1340. <dl>
  1341. <dt>Type</dt>
  1342. <dd>MiniDragon</dd>
  1343. </dl>
  1344. <dl>
  1345. <dt>DP</dt>
  1346. <dd>2000</dl>
  1347. <dl>
  1348. <dt>PlayCost</dt>
  1349. <dd>3</dd>
  1350. </dl>
  1351. <dl>
  1352. <dt>DigivolveCost1</dt>
  1353. <dd>0fromLv.2</dd>
  1354. </dl>
  1355. <dl>
  1356. <dt>DigivolveCost2</dt>
  1357. <dd>-</dd>
  1358. </dl>
  1359. </div>
  1360. </div>
  1361. <divclass="cardinfo_bottom">
  1362. <dl>
  1363. <dt>Effect</dt>
  1364. <dd>[On Play] Reveal the top 5 cards of your deck. Add up to 2 Digimon cards with [Huckmon], [Jesmon], or [Sistermon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1365. </dl>
  1366. <dl>
  1367. <dt>Digivolveeffect</dt>
  1368. <dd>-</dd>
  1369. </dl>
  1370. <dl>
  1371. <dt>Securityeffect</dt>
  1372. <dd>-</dd>
  1373. </dl>
  1374. <dl>
  1375. <dt>Notes</dt>
  1376. <dd>RoyalKnightsBinderSet[PB13]</dd></dl>
  1377. </div>
  1378. </div>
  1379. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1380. </div>
  1381. </div>
  1382. </li>
  1383. <liclass="image_lists_itemdatapage-1">
  1384. <aclass="card_img">
  1385. <imgsrc="../images/cardlist/card/BT6-009_P3.png"alt="BT6-009Huckmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1386. </a>
  1387. <divclass="popup">
  1388. <divclass="card_detailcard_detail_red">
  1389. <divclass="card_detail_inner">
  1390. <ulclass="cardinfo_head">
  1391. <liclass="cardno">BT6-009</li>
  1392. <li>R</li>
  1393. <liclass="cardtype">Digimon</li>
  1394. <liclass="cardlv">Lv.3</li>
  1395. <liclass="cardtypecardParallel">AlternativeArt</li>
  1396. </ul>
  1397. <divclass="card_name">Huckmon</div>
  1398. <divclass="cardinfo_top">
  1399. <divclass="card_img">
  1400. <imgsrc="../images/cardlist/card/BT6-009_P3.png"alt="BT6-009Huckmon"></div>
  1401. <divclass="cardinfo_top_body">
  1402. <dl>
  1403. <dt>Form</dt>
  1404. <dd>Rookie</dd>
  1405. </dl>
  1406. <dl>
  1407. <dt>Attribute</dt>
  1408. <dd>Data</dd>
  1409. </dl>
  1410. <dl>
  1411. <dt>Type</dt>
  1412. <dd>MiniDragon</dd>
  1413. </dl>
  1414. <dl>
  1415. <dt>DP</dt>
  1416. <dd>2000</dl>
  1417. <dl>
  1418. <dt>PlayCost</dt>
  1419. <dd>3</dd>
  1420. </dl>
  1421. <dl>
  1422. <dt>DigivolveCost1</dt>
  1423. <dd>0fromLv.2</dd>
  1424. </dl>
  1425. <dl>
  1426. <dt>DigivolveCost2</dt>
  1427. <dd>-</dd>
  1428. </dl>
  1429. </div>
  1430. </div>
  1431. <divclass="cardinfo_bottom">
  1432. <dl>
  1433. <dt>Effect</dt>
  1434. <dd>[On Play] Reveal the top 5 cards of your deck. Add up to 2 Digimon cards with [Huckmon], [Jesmon], or [Sistermon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1435. </dl>
  1436. <dl>
  1437. <dt>Digivolveeffect</dt>
  1438. <dd>-</dd>
  1439. </dl>
  1440. <dl>
  1441. <dt>Securityeffect</dt>
  1442. <dd>-</dd>
  1443. </dl>
  1444. <dl>
  1445. <dt>Notes</dt>
  1446. <dd>EventPack3</dd></dl>
  1447. </div>
  1448. </div>
  1449. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1450. </div>
  1451. </div>
  1452. </li>
  1453. <liclass="image_lists_itemdatapage-1">
  1454. <aclass="card_img">
  1455. <imgsrc="../images/cardlist/card/BT6-010.png"alt="BT6-010Flamemon"></a>
  1456. <divclass="popup">
  1457. <divclass="card_detailcard_detail_red">
  1458. <divclass="card_detail_inner">
  1459. <ulclass="cardinfo_head">
  1460. <liclass="cardno">BT6-010</li>
  1461. <li>U</li>
  1462. <liclass="cardtype">Digimon</li>
  1463. <liclass="cardlv">Lv.3</li>
  1464. </ul>
  1465. <divclass="card_name">Flamemon</div>
  1466. <divclass="cardinfo_top">
  1467. <divclass="card_img">
  1468. <imgsrc="../images/cardlist/card/BT6-010.png"alt="BT6-010Flamemon"></div>
  1469. <divclass="cardinfo_top_body">
  1470. <dl>
  1471. <dt>Form</dt>
  1472. <dd>Hybrid</dd>
  1473. </dl>
  1474. <dl>
  1475. <dt>Attribute</dt>
  1476. <dd>Variable</dd>
  1477. </dl>
  1478. <dl>
  1479. <dt>Type</dt>
  1480. <dd>Wizard</dd>
  1481. </dl>
  1482. <dl>
  1483. <dt>DP</dt>
  1484. <dd>3000</dl>
  1485. <dl>
  1486. <dt>PlayCost</dt>
  1487. <dd>4</dd>
  1488. </dl>
  1489. <dl>
  1490. <dt>DigivolveCost1</dt>
  1491. <dd>0fromLv.2</dd>
  1492. </dl>
  1493. <dl>
  1494. <dt>DigivolveCost2</dt>
  1495. <dd>-</dd>
  1496. </dl>
  1497. </div>
  1498. </div>
  1499. <divclass="cardinfo_bottom">
  1500. <dl>
  1501. <dt>Effect</dt>
  1502. <dd>-</dd>
  1503. </dl>
  1504. <dl>
  1505. <dt>Digivolveeffect</dt>
  1506. <dd>[Your Turn] While this Digimon has [Hybrid] or [Ten Warriors] in its form or type, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  1507. </dl>
  1508. <dl>
  1509. <dt>Securityeffect</dt>
  1510. <dd>-</dd>
  1511. </dl>
  1512. <dl>
  1513. <dt>Notes</dt>
  1514. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1515. </div>
  1516. </div>
  1517. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1518. </div>
  1519. </div>
  1520. </li>
  1521. <liclass="image_lists_itemdatapage-1">
  1522. <aclass="card_img">
  1523. <imgsrc="../images/cardlist/card/BT6-011.png"alt="BT6-011BaoHuckmon"></a>
  1524. <divclass="popup">
  1525. <divclass="card_detailcard_detail_red">
  1526. <divclass="card_detail_inner">
  1527. <ulclass="cardinfo_head">
  1528. <liclass="cardno">BT6-011</li>
  1529. <li>C</li>
  1530. <liclass="cardtype">Digimon</li>
  1531. <liclass="cardlv">Lv.4</li>
  1532. </ul>
  1533. <divclass="card_name">BaoHuckmon</div>
  1534. <divclass="cardinfo_top">
  1535. <divclass="card_img">
  1536. <imgsrc="../images/cardlist/card/BT6-011.png"alt="BT6-011BaoHuckmon"></div>
  1537. <divclass="cardinfo_top_body">
  1538. <dl>
  1539. <dt>Form</dt>
  1540. <dd>Champion</dd>
  1541. </dl>
  1542. <dl>
  1543. <dt>Attribute</dt>
  1544. <dd>Data</dd>
  1545. </dl>
  1546. <dl>
  1547. <dt>Type</dt>
  1548. <dd>Dinosaur</dd>
  1549. </dl>
  1550. <dl>
  1551. <dt>DP</dt>
  1552. <dd>6000</dl>
  1553. <dl>
  1554. <dt>PlayCost</dt>
  1555. <dd>5</dd>
  1556. </dl>
  1557. <dl>
  1558. <dt>DigivolveCost1</dt>
  1559. <dd>2fromLv.3</dd>
  1560. </dl>
  1561. <dl>
  1562. <dt>DigivolveCost2</dt>
  1563. <dd>-</dd>
  1564. </dl>
  1565. </div>
  1566. </div>
  1567. <divclass="cardinfo_bottom">
  1568. <dl>
  1569. <dt>Effect</dt>
  1570. <dd>-</dd>
  1571. </dl>
  1572. <dl>
  1573. <dt>Digivolveeffect</dt>
  1574. <dd>[When Attacking][Once Per Turn] If you have a Digimon with [Sistermon] in its name in play, delete 1 of your opponent's Digimon with 5000 DP or less.</dd>
  1575. </dl>
  1576. <dl>
  1577. <dt>Securityeffect</dt>
  1578. <dd>-</dd>
  1579. </dl>
  1580. <dl>
  1581. <dt>Notes</dt>
  1582. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1583. </div>
  1584. </div>
  1585. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1586. </div>
  1587. </div>
  1588. </li>
  1589. <liclass="image_lists_itemdatapage-1">
  1590. <aclass="card_img">
  1591. <imgsrc="../images/cardlist/card/BT6-011.png"alt="BT6-011BaoHuckmon"></a>
  1592. <divclass="popup">
  1593. <divclass="card_detailcard_detail_red">
  1594. <divclass="card_detail_inner">
  1595. <ulclass="cardinfo_head">
  1596. <liclass="cardno">BT6-011</li>
  1597. <li>C</li>
  1598. <liclass="cardtype">Digimon</li>
  1599. <liclass="cardlv">Lv.4</li>
  1600. </ul>
  1601. <divclass="card_name">BaoHuckmon</div>
  1602. <divclass="cardinfo_top">
  1603. <divclass="card_img">
  1604. <imgsrc="../images/cardlist/card/BT6-011.png"alt="BT6-011BaoHuckmon"></div>
  1605. <divclass="cardinfo_top_body">
  1606. <dl>
  1607. <dt>Form</dt>
  1608. <dd>Champion</dd>
  1609. </dl>
  1610. <dl>
  1611. <dt>Attribute</dt>
  1612. <dd>Data</dd>
  1613. </dl>
  1614. <dl>
  1615. <dt>Type</dt>
  1616. <dd>Dinosaur</dd>
  1617. </dl>
  1618. <dl>
  1619. <dt>DP</dt>
  1620. <dd>6000</dl>
  1621. <dl>
  1622. <dt>PlayCost</dt>
  1623. <dd>5</dd>
  1624. </dl>
  1625. <dl>
  1626. <dt>DigivolveCost1</dt>
  1627. <dd>2fromLv.3</dd>
  1628. </dl>
  1629. <dl>
  1630. <dt>DigivolveCost2</dt>
  1631. <dd>-</dd>
  1632. </dl>
  1633. </div>
  1634. </div>
  1635. <divclass="cardinfo_bottom">
  1636. <dl>
  1637. <dt>Effect</dt>
  1638. <dd>-</dd>
  1639. </dl>
  1640. <dl>
  1641. <dt>Digivolveeffect</dt>
  1642. <dd>[When Attacking][Once Per Turn] If you have a Digimon with [Sistermon] in its name in play, delete 1 of your opponent's Digimon with 5000 DP or less.</dd>
  1643. </dl>
  1644. <dl>
  1645. <dt>Securityeffect</dt>
  1646. <dd>-</dd>
  1647. </dl>
  1648. <dl>
  1649. <dt>Notes</dt>
  1650. <dd>EventPack3</dd></dl>
  1651. </div>
  1652. </div>
  1653. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1654. </div>
  1655. </div>
  1656. </li>
  1657. <liclass="image_lists_itemdatapage-1">
  1658. <aclass="card_img">
  1659. <imgsrc="../images/cardlist/card/BT6-012.png"alt="BT6-012Deltamon"></a>
  1660. <divclass="popup">
  1661. <divclass="card_detailcard_detail_red">
  1662. <divclass="card_detail_inner">
  1663. <ulclass="cardinfo_head">
  1664. <liclass="cardno">BT6-012</li>
  1665. <li>C</li>
  1666. <liclass="cardtype">Digimon</li>
  1667. <liclass="cardlv">Lv.4</li>
  1668. </ul>
  1669. <divclass="card_name">Deltamon</div>
  1670. <divclass="cardinfo_top">
  1671. <divclass="card_img">
  1672. <imgsrc="../images/cardlist/card/BT6-012.png"alt="BT6-012Deltamon"></div>
  1673. <divclass="cardinfo_top_body">
  1674. <dl>
  1675. <dt>Form</dt>
  1676. <dd>Champion</dd>
  1677. </dl>
  1678. <dl>
  1679. <dt>Attribute</dt>
  1680. <dd>Virus</dd>
  1681. </dl>
  1682. <dl>
  1683. <dt>Type</dt>
  1684. <dd>Composite</dd>
  1685. </dl>
  1686. <dl>
  1687. <dt>DP</dt>
  1688. <dd>7000</dl>
  1689. <dl>
  1690. <dt>PlayCost</dt>
  1691. <dd>5</dd>
  1692. </dl>
  1693. <dl>
  1694. <dt>DigivolveCost1</dt>
  1695. <dd>2fromLv.3</dd>
  1696. </dl>
  1697. <dl>
  1698. <dt>DigivolveCost2</dt>
  1699. <dd>-</dd>
  1700. </dl>
  1701. </div>
  1702. </div>
  1703. <divclass="cardinfo_bottom">
  1704. <dl>
  1705. <dt>Effect</dt>
  1706. <dd>-</dd>
  1707. </dl>
  1708. <dl>
  1709. <dt>Digivolveeffect</dt>
  1710. <dd>-</dd>
  1711. </dl>
  1712. <dl>
  1713. <dt>Securityeffect</dt>
  1714. <dd>-</dd>
  1715. </dl>
  1716. <dl>
  1717. <dt>Notes</dt>
  1718. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1719. </div>
  1720. </div>
  1721. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1722. </div>
  1723. </div>
  1724. </li>
  1725. <liclass="image_lists_itemdatapage-1">
  1726. <aclass="card_img">
  1727. <imgsrc="../images/cardlist/card/BT6-013.png"alt="BT6-013Megadramon"></a>
  1728. <divclass="popup">
  1729. <divclass="card_detailcard_detail_red">
  1730. <divclass="card_detail_inner">
  1731. <ulclass="cardinfo_head">
  1732. <liclass="cardno">BT6-013</li>
  1733. <li>C</li>
  1734. <liclass="cardtype">Digimon</li>
  1735. <liclass="cardlv">Lv.5</li>
  1736. </ul>
  1737. <divclass="card_name">Megadramon</div>
  1738. <divclass="cardinfo_top">
  1739. <divclass="card_img">
  1740. <imgsrc="../images/cardlist/card/BT6-013.png"alt="BT6-013Megadramon"></div>
  1741. <divclass="cardinfo_top_body">
  1742. <dl>
  1743. <dt>Form</dt>
  1744. <dd>Ultimate</dd>
  1745. </dl>
  1746. <dl>
  1747. <dt>Attribute</dt>
  1748. <dd>Virus</dd>
  1749. </dl>
  1750. <dl>
  1751. <dt>Type</dt>
  1752. <dd>Cyborg</dd>
  1753. </dl>
  1754. <dl>
  1755. <dt>DP</dt>
  1756. <dd>7000</dl>
  1757. <dl>
  1758. <dt>PlayCost</dt>
  1759. <dd>6</dd>
  1760. </dl>
  1761. <dl>
  1762. <dt>DigivolveCost1</dt>
  1763. <dd>3fromLv.4</dd>
  1764. </dl>
  1765. <dl>
  1766. <dt>DigivolveCost2</dt>
  1767. <dd>3fromLv.4</dd>
  1768. </dl>
  1769. </div>
  1770. </div>
  1771. <divclass="cardinfo_bottom">
  1772. <dl>
  1773. <dt>Effect</dt>
  1774. <dd>[Your Turn] This Digimon is also treated as black.</dd>
  1775. </dl>
  1776. <dl>
  1777. <dt>Digivolveeffect</dt>
  1778. <dd>[Your Turn] This Digimon gets +2000 DP.</dd>
  1779. </dl>
  1780. <dl>
  1781. <dt>Securityeffect</dt>
  1782. <dd>-</dd>
  1783. </dl>
  1784. <dl>
  1785. <dt>Notes</dt>
  1786. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1787. </div>
  1788. </div>
  1789. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1790. </div>
  1791. </div>
  1792. </li>
  1793. <liclass="image_lists_itemdatapage-1">
  1794. <aclass="card_img">
  1795. <imgsrc="../images/cardlist/card/BT6-014.png"alt="BT6-014Asuramon"></a>
  1796. <divclass="popup">
  1797. <divclass="card_detailcard_detail_red">
  1798. <divclass="card_detail_inner">
  1799. <ulclass="cardinfo_head">
  1800. <liclass="cardno">BT6-014</li>
  1801. <li>C</li>
  1802. <liclass="cardtype">Digimon</li>
  1803. <liclass="cardlv">Lv.5</li>
  1804. </ul>
  1805. <divclass="card_name">Asuramon</div>
  1806. <divclass="cardinfo_top">
  1807. <divclass="card_img">
  1808. <imgsrc="../images/cardlist/card/BT6-014.png"alt="BT6-014Asuramon"></div>
  1809. <divclass="cardinfo_top_body">
  1810. <dl>
  1811. <dt>Form</dt>
  1812. <dd>Ultimate</dd>
  1813. </dl>
  1814. <dl>
  1815. <dt>Attribute</dt>
  1816. <dd>Vaccine</dd>
  1817. </dl>
  1818. <dl>
  1819. <dt>Type</dt>
  1820. <dd>Wizard</dd>
  1821. </dl>
  1822. <dl>
  1823. <dt>DP</dt>
  1824. <dd>8000</dl>
  1825. <dl>
  1826. <dt>PlayCost</dt>
  1827. <dd>7</dd>
  1828. </dl>
  1829. <dl>
  1830. <dt>DigivolveCost1</dt>
  1831. <dd>3fromLv.4</dd>
  1832. </dl>
  1833. <dl>
  1834. <dt>DigivolveCost2</dt>
  1835. <dd>-</dd>
  1836. </dl>
  1837. </div>
  1838. </div>
  1839. <divclass="cardinfo_bottom">
  1840. <dl>
  1841. <dt>Effect</dt>
  1842. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)</dd>
  1843. </dl>
  1844. <dl>
  1845. <dt>Digivolveeffect</dt>
  1846. <dd>-</dd>
  1847. </dl>
  1848. <dl>
  1849. <dt>Securityeffect</dt>
  1850. <dd>-</dd>
  1851. </dl>
  1852. <dl>
  1853. <dt>Notes</dt>
  1854. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1855. </div>
  1856. </div>
  1857. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1858. </div>
  1859. </div>
  1860. </li>
  1861. <liclass="image_lists_itemdatapage-1">
  1862. <aclass="card_img">
  1863. <imgsrc="../images/cardlist/card/BT6-015.png"alt="BT6-015SaviorHuckmon"></a>
  1864. <divclass="popup">
  1865. <divclass="card_detailcard_detail_red">
  1866. <divclass="card_detail_inner">
  1867. <ulclass="cardinfo_head">
  1868. <liclass="cardno">BT6-015</li>
  1869. <li>U</li>
  1870. <liclass="cardtype">Digimon</li>
  1871. <liclass="cardlv">Lv.5</li>
  1872. </ul>
  1873. <divclass="card_name">SaviorHuckmon</div>
  1874. <divclass="cardinfo_top">
  1875. <divclass="card_img">
  1876. <imgsrc="../images/cardlist/card/BT6-015.png"alt="BT6-015SaviorHuckmon"></div>
  1877. <divclass="cardinfo_top_body">
  1878. <dl>
  1879. <dt>Form</dt>
  1880. <dd>Ultimate</dd>
  1881. </dl>
  1882. <dl>
  1883. <dt>Attribute</dt>
  1884. <dd>Data</dd>
  1885. </dl>
  1886. <dl>
  1887. <dt>Type</dt>
  1888. <dd>Dragonkin</dd>
  1889. </dl>
  1890. <dl>
  1891. <dt>DP</dt>
  1892. <dd>7000</dl>
  1893. <dl>
  1894. <dt>PlayCost</dt>
  1895. <dd>7</dd>
  1896. </dl>
  1897. <dl>
  1898. <dt>DigivolveCost1</dt>
  1899. <dd>3fromLv.4</dd>
  1900. </dl>
  1901. <dl>
  1902. <dt>DigivolveCost2</dt>
  1903. <dd>-</dd>
  1904. </dl>
  1905. </div>
  1906. </div>
  1907. <divclass="cardinfo_bottom">
  1908. <dl>
  1909. <dt>Effect</dt>
  1910. <dd>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand without paying its memory cost.</dd>
  1911. </dl>
  1912. <dl>
  1913. <dt>Digivolveeffect</dt>
  1914. <dd>[When Attacking][Once Per Turn] If you have a Digimon with [Sistermon] in its name in play, unsuspend this Digimon.</dd>
  1915. </dl>
  1916. <dl>
  1917. <dt>Securityeffect</dt>
  1918. <dd>-</dd>
  1919. </dl>
  1920. <dl>
  1921. <dt>Notes</dt>
  1922. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  1923. </div>
  1924. </div>
  1925. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1926. </div>
  1927. </div>
  1928. </li>
  1929. <liclass="image_lists_itemdatapage-1">
  1930. <aclass="card_img">
  1931. <imgsrc="../images/cardlist/card/BT6-015.png"alt="BT6-015SaviorHuckmon"></a>
  1932. <divclass="popup">
  1933. <divclass="card_detailcard_detail_red">
  1934. <divclass="card_detail_inner">
  1935. <ulclass="cardinfo_head">
  1936. <liclass="cardno">BT6-015</li>
  1937. <li>U</li>
  1938. <liclass="cardtype">Digimon</li>
  1939. <liclass="cardlv">Lv.5</li>
  1940. </ul>
  1941. <divclass="card_name">SaviorHuckmon</div>
  1942. <divclass="cardinfo_top">
  1943. <divclass="card_img">
  1944. <imgsrc="../images/cardlist/card/BT6-015.png"alt="BT6-015SaviorHuckmon"></div>
  1945. <divclass="cardinfo_top_body">
  1946. <dl>
  1947. <dt>Form</dt>
  1948. <dd>Ultimate</dd>
  1949. </dl>
  1950. <dl>
  1951. <dt>Attribute</dt>
  1952. <dd>Data</dd>
  1953. </dl>
  1954. <dl>
  1955. <dt>Type</dt>
  1956. <dd>Dragonkin</dd>
  1957. </dl>
  1958. <dl>
  1959. <dt>DP</dt>
  1960. <dd>7000</dl>
  1961. <dl>
  1962. <dt>PlayCost</dt>
  1963. <dd>7</dd>
  1964. </dl>
  1965. <dl>
  1966. <dt>DigivolveCost1</dt>
  1967. <dd>3fromLv.4</dd>
  1968. </dl>
  1969. <dl>
  1970. <dt>DigivolveCost2</dt>
  1971. <dd>-</dd>
  1972. </dl>
  1973. </div>
  1974. </div>
  1975. <divclass="cardinfo_bottom">
  1976. <dl>
  1977. <dt>Effect</dt>
  1978. <dd>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand without paying its memory cost.</dd>
  1979. </dl>
  1980. <dl>
  1981. <dt>Digivolveeffect</dt>
  1982. <dd>[When Attacking][Once Per Turn] If you have a Digimon with [Sistermon] in its name in play, unsuspend this Digimon.</dd>
  1983. </dl>
  1984. <dl>
  1985. <dt>Securityeffect</dt>
  1986. <dd>-</dd>
  1987. </dl>
  1988. <dl>
  1989. <dt>Notes</dt>
  1990. <dd>EventPack3</dd></dl>
  1991. </div>
  1992. </div>
  1993. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1994. </div>
  1995. </div>
  1996. </li>
  1997. <liclass="image_lists_itemdatapage-1">
  1998. <aclass="card_img">
  1999. <imgsrc="../images/cardlist/card/BT6-016_P1.png"alt="BT6-016Jesmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  2000. </a>
  2001. <divclass="popup">
  2002. <divclass="card_detailcard_detail_red">
  2003. <divclass="card_detail_inner">
  2004. <ulclass="cardinfo_head">
  2005. <liclass="cardno">BT6-016</li>
  2006. <li>SR</li>
  2007. <liclass="cardtype">Digimon</li>
  2008. <liclass="cardlv">Lv.6</li>
  2009. <liclass="cardtypecardParallel">AlternativeArt</li>
  2010. </ul>
  2011. <divclass="card_name">Jesmon</div>
  2012. <divclass="cardinfo_top">
  2013. <divclass="card_img">
  2014. <imgsrc="../images/cardlist/card/BT6-016_P1.png"alt="BT6-016Jesmon"></div>
  2015. <divclass="cardinfo_top_body">
  2016. <dl>
  2017. <dt>Form</dt>
  2018. <dd>Mega</dd>
  2019. </dl>
  2020. <dl>
  2021. <dt>Attribute</dt>
  2022. <dd>Data</dd>
  2023. </dl>
  2024. <dl>
  2025. <dt>Type</dt>
  2026. <dd>HolyWarrior/RoyalKnight</dd>
  2027. </dl>
  2028. <dl>
  2029. <dt>DP</dt>
  2030. <dd>11000</dl>
  2031. <dl>
  2032. <dt>PlayCost</dt>
  2033. <dd>11</dd>
  2034. </dl>
  2035. <dl>
  2036. <dt>DigivolveCost1</dt>
  2037. <dd>3fromLv.5</dd>
  2038. </dl>
  2039. <dl>
  2040. <dt>DigivolveCost2</dt>
  2041. <dd>-</dd>
  2042. </dl>
  2043. </div>
  2044. </div>
  2045. <divclass="cardinfo_bottom">
  2046. <dl>
  2047. <dt>Effect</dt>
  2048. <dd>[When Attacking] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. [Your Turn][Once Per Turn] When you play another Digimon, this Digimon gets +3000 DP and <Piercing> for the turn. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  2049. </dl>
  2050. <dl>
  2051. <dt>Digivolveeffect</dt>
  2052. <dd>-</dd>
  2053. </dl>
  2054. <dl>
  2055. <dt>Securityeffect</dt>
  2056. <dd>-</dd>
  2057. </dl>
  2058. <dl>
  2059. <dt>Notes</dt>
  2060. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2061. </div>
  2062. </div>
  2063. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2064. </div>
  2065. </div>
  2066. </li>
  2067. <liclass="image_lists_itemdatapage-1">
  2068. <aclass="card_img">
  2069. <imgsrc="../images/cardlist/card/BT6-016.png"alt="BT6-016Jesmon"></a>
  2070. <divclass="popup">
  2071. <divclass="card_detailcard_detail_red">
  2072. <divclass="card_detail_inner">
  2073. <ulclass="cardinfo_head">
  2074. <liclass="cardno">BT6-016</li>
  2075. <li>SR</li>
  2076. <liclass="cardtype">Digimon</li>
  2077. <liclass="cardlv">Lv.6</li>
  2078. </ul>
  2079. <divclass="card_name">Jesmon</div>
  2080. <divclass="cardinfo_top">
  2081. <divclass="card_img">
  2082. <imgsrc="../images/cardlist/card/BT6-016.png"alt="BT6-016Jesmon"></div>
  2083. <divclass="cardinfo_top_body">
  2084. <dl>
  2085. <dt>Form</dt>
  2086. <dd>Mega</dd>
  2087. </dl>
  2088. <dl>
  2089. <dt>Attribute</dt>
  2090. <dd>Data</dd>
  2091. </dl>
  2092. <dl>
  2093. <dt>Type</dt>
  2094. <dd>HolyWarrior/RoyalKnight</dd>
  2095. </dl>
  2096. <dl>
  2097. <dt>DP</dt>
  2098. <dd>11000</dl>
  2099. <dl>
  2100. <dt>PlayCost</dt>
  2101. <dd>11</dd>
  2102. </dl>
  2103. <dl>
  2104. <dt>DigivolveCost1</dt>
  2105. <dd>3fromLv.5</dd>
  2106. </dl>
  2107. <dl>
  2108. <dt>DigivolveCost2</dt>
  2109. <dd>-</dd>
  2110. </dl>
  2111. </div>
  2112. </div>
  2113. <divclass="cardinfo_bottom">
  2114. <dl>
  2115. <dt>Effect</dt>
  2116. <dd>[When Attacking] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. [Your Turn][Once Per Turn] If you have another Digimon in play, this Digimon gets +3000 DP and <Piercing> for the turn. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  2117. </dl>
  2118. <dl>
  2119. <dt>Digivolveeffect</dt>
  2120. <dd>-</dd>
  2121. </dl>
  2122. <dl>
  2123. <dt>Securityeffect</dt>
  2124. <dd>-</dd>
  2125. </dl>
  2126. <dl>
  2127. <dt>Notes</dt>
  2128. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2129. </div>
  2130. </div>
  2131. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2132. </div>
  2133. </div>
  2134. </li>
  2135. <liclass="image_lists_itemdatapage-1">
  2136. <aclass="card_img">
  2137. <imgsrc="../images/cardlist/card/BT6-016_P2.png"alt="BT6-016Jesmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  2138. </a>
  2139. <divclass="popup">
  2140. <divclass="card_detailcard_detail_red">
  2141. <divclass="card_detail_inner">
  2142. <ulclass="cardinfo_head">
  2143. <liclass="cardno">BT6-016</li>
  2144. <li>SR</li>
  2145. <liclass="cardtype">Digimon</li>
  2146. <liclass="cardlv">Lv.6</li>
  2147. <liclass="cardtypecardParallel">AlternativeArt</li>
  2148. </ul>
  2149. <divclass="card_name">Jesmon</div>
  2150. <divclass="cardinfo_top">
  2151. <divclass="card_img">
  2152. <imgsrc="../images/cardlist/card/BT6-016_P2.png"alt="BT6-016Jesmon"></div>
  2153. <divclass="cardinfo_top_body">
  2154. <dl>
  2155. <dt>Form</dt>
  2156. <dd>Mega</dd>
  2157. </dl>
  2158. <dl>
  2159. <dt>Attribute</dt>
  2160. <dd>Data</dd>
  2161. </dl>
  2162. <dl>
  2163. <dt>Type</dt>
  2164. <dd>HolyWarrior/RoyalKnight</dd>
  2165. </dl>
  2166. <dl>
  2167. <dt>DP</dt>
  2168. <dd>11000</dl>
  2169. <dl>
  2170. <dt>PlayCost</dt>
  2171. <dd>11</dd>
  2172. </dl>
  2173. <dl>
  2174. <dt>DigivolveCost1</dt>
  2175. <dd>3fromLv.5</dd>
  2176. </dl>
  2177. <dl>
  2178. <dt>DigivolveCost2</dt>
  2179. <dd>-</dd>
  2180. </dl>
  2181. </div>
  2182. </div>
  2183. <divclass="cardinfo_bottom">
  2184. <dl>
  2185. <dt>Effect</dt>
  2186. <dd>[When Attacking] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. [Your Turn][Once Per Turn] When you play another Digimon, this Digimon gets +3000 DP and <Piercing> for the turn. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  2187. </dl>
  2188. <dl>
  2189. <dt>Digivolveeffect</dt>
  2190. <dd>-</dd>
  2191. </dl>
  2192. <dl>
  2193. <dt>Securityeffect</dt>
  2194. <dd>-</dd>
  2195. </dl>
  2196. <dl>
  2197. <dt>Notes</dt>
  2198. <dd>EventPack2</dd></dl>
  2199. </div>
  2200. </div>
  2201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2202. </div>
  2203. </div>
  2204. </li>
  2205. <liclass="image_lists_itemdatapage-1">
  2206. <aclass="card_img">
  2207. <imgsrc="../images/cardlist/card/BT6-017.png"alt="BT6-017MagnaKidmon"></a>
  2208. <divclass="popup">
  2209. <divclass="card_detailcard_detail_red">
  2210. <divclass="card_detail_inner">
  2211. <ulclass="cardinfo_head">
  2212. <liclass="cardno">BT6-017</li>
  2213. <li>R</li>
  2214. <liclass="cardtype">Digimon</li>
  2215. <liclass="cardlv">Lv.6</li>
  2216. </ul>
  2217. <divclass="card_name">MagnaKidmon</div>
  2218. <divclass="cardinfo_top">
  2219. <divclass="card_img">
  2220. <imgsrc="../images/cardlist/card/BT6-017.png"alt="BT6-017MagnaKidmon"></div>
  2221. <divclass="cardinfo_top_body">
  2222. <dl>
  2223. <dt>Form</dt>
  2224. <dd>Mega</dd>
  2225. </dl>
  2226. <dl>
  2227. <dt>Attribute</dt>
  2228. <dd>Virus</dd>
  2229. </dl>
  2230. <dl>
  2231. <dt>Type</dt>
  2232. <dd>Dragonkin/ThreeMusketeers</dd>
  2233. </dl>
  2234. <dl>
  2235. <dt>DP</dt>
  2236. <dd>11000</dl>
  2237. <dl>
  2238. <dt>PlayCost</dt>
  2239. <dd>12</dd>
  2240. </dl>
  2241. <dl>
  2242. <dt>DigivolveCost1</dt>
  2243. <dd>4fromLv.5</dd>
  2244. </dl>
  2245. <dl>
  2246. <dt>DigivolveCost2</dt>
  2247. <dd>-</dd>
  2248. </dl>
  2249. </div>
  2250. </div>
  2251. <divclass="cardinfo_bottom">
  2252. <dl>
  2253. <dt>Effect</dt>
  2254. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[When Digivolving] You may use 1 Option card with a memory cost of 7 in your hand without paying its memory cost. If you don't, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  2255. </dl>
  2256. <dl>
  2257. <dt>Digivolveeffect</dt>
  2258. <dd>-</dd>
  2259. </dl>
  2260. <dl>
  2261. <dt>Securityeffect</dt>
  2262. <dd>-</dd>
  2263. </dl>
  2264. <dl>
  2265. <dt>Notes</dt>
  2266. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2267. </div>
  2268. </div>
  2269. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2270. </div>
  2271. </div>
  2272. </li>
  2273. <liclass="image_lists_itemdatapage-1">
  2274. <aclass="card_img">
  2275. <imgsrc="../images/cardlist/card/BT6-017_P1.png"alt="BT6-017MagnaKidmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  2276. </a>
  2277. <divclass="popup">
  2278. <divclass="card_detailcard_detail_red">
  2279. <divclass="card_detail_inner">
  2280. <ulclass="cardinfo_head">
  2281. <liclass="cardno">BT6-017</li>
  2282. <li>R</li>
  2283. <liclass="cardtype">Digimon</li>
  2284. <liclass="cardlv">Lv.6</li>
  2285. <liclass="cardtypecardParallel">AlternativeArt</li>
  2286. </ul>
  2287. <divclass="card_name">MagnaKidmon</div>
  2288. <divclass="cardinfo_top">
  2289. <divclass="card_img">
  2290. <imgsrc="../images/cardlist/card/BT6-017_P1.png"alt="BT6-017MagnaKidmon"></div>
  2291. <divclass="cardinfo_top_body">
  2292. <dl>
  2293. <dt>Form</dt>
  2294. <dd>Mega</dd>
  2295. </dl>
  2296. <dl>
  2297. <dt>Attribute</dt>
  2298. <dd>Virus</dd>
  2299. </dl>
  2300. <dl>
  2301. <dt>Type</dt>
  2302. <dd>Dragonkin/ThreeMusketeers</dd>
  2303. </dl>
  2304. <dl>
  2305. <dt>DP</dt>
  2306. <dd>11000</dl>
  2307. <dl>
  2308. <dt>PlayCost</dt>
  2309. <dd>12</dd>
  2310. </dl>
  2311. <dl>
  2312. <dt>DigivolveCost1</dt>
  2313. <dd>4fromLv.5</dd>
  2314. </dl>
  2315. <dl>
  2316. <dt>DigivolveCost2</dt>
  2317. <dd>-</dd>
  2318. </dl>
  2319. </div>
  2320. </div>
  2321. <divclass="cardinfo_bottom">
  2322. <dl>
  2323. <dt>Effect</dt>
  2324. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[When Digivolving] You may use 1 Option card with a memory cost of 7 in your hand without paying its memory cost. If you don't, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  2325. </dl>
  2326. <dl>
  2327. <dt>Digivolveeffect</dt>
  2328. <dd>-</dd>
  2329. </dl>
  2330. <dl>
  2331. <dt>Securityeffect</dt>
  2332. <dd>-</dd>
  2333. </dl>
  2334. <dl>
  2335. <dt>Notes</dt>
  2336. <dd>DeckBoxSet/Beelzemon</dd></dl>
  2337. </div>
  2338. </div>
  2339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2340. </div>
  2341. </div>
  2342. </li>
  2343. <liclass="image_lists_itemdatapage-1">
  2344. <aclass="card_img">
  2345. <imgsrc="../images/cardlist/card/BT6-018.png"alt="BT6-018Agumon-BondofBravery"></a>
  2346. <divclass="popup">
  2347. <divclass="card_detailcard_detail_red">
  2348. <divclass="card_detail_inner">
  2349. <ulclass="cardinfo_head">
  2350. <liclass="cardno">BT6-018</li>
  2351. <li>SR</li>
  2352. <liclass="cardtype">Digimon</li>
  2353. <liclass="cardlv">Lv.7</li>
  2354. </ul>
  2355. <divclass="card_name">Agumon-BondofBravery</div>
  2356. <divclass="cardinfo_top">
  2357. <divclass="card_img">
  2358. <imgsrc="../images/cardlist/card/BT6-018.png"alt="BT6-018Agumon-BondofBravery"></div>
  2359. <divclass="cardinfo_top_body">
  2360. <dl>
  2361. <dt>Form</dt>
  2362. <dd>Mega</dd>
  2363. </dl>
  2364. <dl>
  2365. <dt>Attribute</dt>
  2366. <dd>Unknown</dd>
  2367. </dl>
  2368. <dl>
  2369. <dt>Type</dt>
  2370. <dd>Unknown</dd>
  2371. </dl>
  2372. <dl>
  2373. <dt>DP</dt>
  2374. <dd>14000</dl>
  2375. <dl>
  2376. <dt>PlayCost</dt>
  2377. <dd>14</dd>
  2378. </dl>
  2379. <dl>
  2380. <dt>DigivolveCost1</dt>
  2381. <dd>3fromLv.6</dd>
  2382. </dl>
  2383. <dl>
  2384. <dt>DigivolveCost2</dt>
  2385. <dd>-</dd>
  2386. </dl>
  2387. </div>
  2388. </div>
  2389. <divclass="cardinfo_bottom">
  2390. <dl>
  2391. <dt>Effect</dt>
  2392. <dd>[When Attacking] If you have a Tamer in play, delete 1 of your opponent's Digimon with 13000 DP or less.[Your Turn][Once Per Turn] When an opponent's Digimon is deleted, trash the top card of their security stack.</dd>
  2393. </dl>
  2394. <dl>
  2395. <dt>Digivolveeffect</dt>
  2396. <dd>-</dd>
  2397. </dl>
  2398. <dl>
  2399. <dt>Securityeffect</dt>
  2400. <dd>-</dd>
  2401. </dl>
  2402. <dl>
  2403. <dt>Notes</dt>
  2404. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2405. </div>
  2406. </div>
  2407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2408. </div>
  2409. </div>
  2410. </li>
  2411. <liclass="image_lists_itemdatapage-1">
  2412. <aclass="card_img">
  2413. <imgsrc="../images/cardlist/card/BT6-018_P1.png"alt="BT6-018Agumon-BondofBravery"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  2414. </a>
  2415. <divclass="popup">
  2416. <divclass="card_detailcard_detail_red">
  2417. <divclass="card_detail_inner">
  2418. <ulclass="cardinfo_head">
  2419. <liclass="cardno">BT6-018</li>
  2420. <li>SR</li>
  2421. <liclass="cardtype">Digimon</li>
  2422. <liclass="cardlv">Lv.7</li>
  2423. <liclass="cardtypecardParallel">AlternativeArt</li>
  2424. </ul>
  2425. <divclass="card_name">Agumon-BondofBravery</div>
  2426. <divclass="cardinfo_top">
  2427. <divclass="card_img">
  2428. <imgsrc="../images/cardlist/card/BT6-018_P1.png"alt="BT6-018Agumon-BondofBravery"></div>
  2429. <divclass="cardinfo_top_body">
  2430. <dl>
  2431. <dt>Form</dt>
  2432. <dd>Mega</dd>
  2433. </dl>
  2434. <dl>
  2435. <dt>Attribute</dt>
  2436. <dd>Unknown</dd>
  2437. </dl>
  2438. <dl>
  2439. <dt>Type</dt>
  2440. <dd>Unknown</dd>
  2441. </dl>
  2442. <dl>
  2443. <dt>DP</dt>
  2444. <dd>14000</dl>
  2445. <dl>
  2446. <dt>PlayCost</dt>
  2447. <dd>14</dd>
  2448. </dl>
  2449. <dl>
  2450. <dt>DigivolveCost1</dt>
  2451. <dd>3fromLv.6</dd>
  2452. </dl>
  2453. <dl>
  2454. <dt>DigivolveCost2</dt>
  2455. <dd>-</dd>
  2456. </dl>
  2457. </div>
  2458. </div>
  2459. <divclass="cardinfo_bottom">
  2460. <dl>
  2461. <dt>Effect</dt>
  2462. <dd>[When Attacking] If you have a Tamer in play, delete 1 of your opponent's Digimon with 13000 DP or less.[Your Turn][Once Per Turn] When an opponent's Digimon is deleted, trash the top card of their security stack.</dd>
  2463. </dl>
  2464. <dl>
  2465. <dt>Digivolveeffect</dt>
  2466. <dd>-</dd>
  2467. </dl>
  2468. <dl>
  2469. <dt>Securityeffect</dt>
  2470. <dd>-</dd>
  2471. </dl>
  2472. <dl>
  2473. <dt>Notes</dt>
  2474. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2475. </div>
  2476. </div>
  2477. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2478. </div>
  2479. </div>
  2480. </li>
  2481. <liclass="image_lists_itemdatapage-1">
  2482. <aclass="card_img">
  2483. <imgsrc="../images/cardlist/card/BT6-019.png"alt="BT6-019Gabumon"></a>
  2484. <divclass="popup">
  2485. <divclass="card_detailcard_detail_blue">
  2486. <divclass="card_detail_inner">
  2487. <ulclass="cardinfo_head">
  2488. <liclass="cardno">BT6-019</li>
  2489. <li>U</li>
  2490. <liclass="cardtype">Digimon</li>
  2491. <liclass="cardlv">Lv.3</li>
  2492. </ul>
  2493. <divclass="card_name">Gabumon</div>
  2494. <divclass="cardinfo_top">
  2495. <divclass="card_img">
  2496. <imgsrc="../images/cardlist/card/BT6-019.png"alt="BT6-019Gabumon"></div>
  2497. <divclass="cardinfo_top_body">
  2498. <dl>
  2499. <dt>Form</dt>
  2500. <dd>Rookie</dd>
  2501. </dl>
  2502. <dl>
  2503. <dt>Attribute</dt>
  2504. <dd>Data</dd>
  2505. </dl>
  2506. <dl>
  2507. <dt>Type</dt>
  2508. <dd>Reptile</dd>
  2509. </dl>
  2510. <dl>
  2511. <dt>DP</dt>
  2512. <dd>2000</dl>
  2513. <dl>
  2514. <dt>PlayCost</dt>
  2515. <dd>3</dd>
  2516. </dl>
  2517. <dl>
  2518. <dt>DigivolveCost1</dt>
  2519. <dd>0fromLv.2</dd>
  2520. </dl>
  2521. <dl>
  2522. <dt>DigivolveCost2</dt>
  2523. <dd>-</dd>
  2524. </dl>
  2525. </div>
  2526. </div>
  2527. <divclass="cardinfo_bottom">
  2528. <dl>
  2529. <dt>Effect</dt>
  2530. <dd>[All Turns][Once Per Turn] When you play a Tamer with [Matt Ishida] in its name, gain 1 memory.</dd>
  2531. </dl>
  2532. <dl>
  2533. <dt>Digivolveeffect</dt>
  2534. <dd>[When Attacking][Once Per Turn] If this Digimon is [Gabumon - Bond of Friendship], you may unsuspend it.</dd>
  2535. </dl>
  2536. <dl>
  2537. <dt>Securityeffect</dt>
  2538. <dd>-</dd>
  2539. </dl>
  2540. <dl>
  2541. <dt>Notes</dt>
  2542. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2543. </div>
  2544. </div>
  2545. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2546. </div>
  2547. </div>
  2548. </li>
  2549. <liclass="image_lists_itemdatapage-1">
  2550. <aclass="card_img">
  2551. <imgsrc="../images/cardlist/card/BT6-019_P1.png"alt="BT6-019Gabumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2552. </a>
  2553. <divclass="popup">
  2554. <divclass="card_detailcard_detail_blue">
  2555. <divclass="card_detail_inner">
  2556. <ulclass="cardinfo_head">
  2557. <liclass="cardno">BT6-019</li>
  2558. <li>U</li>
  2559. <liclass="cardtype">Digimon</li>
  2560. <liclass="cardlv">Lv.3</li>
  2561. <liclass="cardtypecardParallel">AlternativeArt</li>
  2562. </ul>
  2563. <divclass="card_name">Gabumon</div>
  2564. <divclass="cardinfo_top">
  2565. <divclass="card_img">
  2566. <imgsrc="../images/cardlist/card/BT6-019_P1.png"alt="BT6-019Gabumon"></div>
  2567. <divclass="cardinfo_top_body">
  2568. <dl>
  2569. <dt>Form</dt>
  2570. <dd>Rookie</dd>
  2571. </dl>
  2572. <dl>
  2573. <dt>Attribute</dt>
  2574. <dd>Data</dd>
  2575. </dl>
  2576. <dl>
  2577. <dt>Type</dt>
  2578. <dd>Reptile</dd>
  2579. </dl>
  2580. <dl>
  2581. <dt>DP</dt>
  2582. <dd>2000</dl>
  2583. <dl>
  2584. <dt>PlayCost</dt>
  2585. <dd>3</dd>
  2586. </dl>
  2587. <dl>
  2588. <dt>DigivolveCost1</dt>
  2589. <dd>0fromLv.2</dd>
  2590. </dl>
  2591. <dl>
  2592. <dt>DigivolveCost2</dt>
  2593. <dd>-</dd>
  2594. </dl>
  2595. </div>
  2596. </div>
  2597. <divclass="cardinfo_bottom">
  2598. <dl>
  2599. <dt>Effect</dt>
  2600. <dd>[All Turns][Once Per Turn] When you play a Tamer with [Matt Ishida] in its name, gain 1 memory.</dd>
  2601. </dl>
  2602. <dl>
  2603. <dt>Digivolveeffect</dt>
  2604. <dd>[When Attacking][Once Per Turn] If this Digimon is [Gabumon - Bond of Friendship], you may unsuspend it.</dd>
  2605. </dl>
  2606. <dl>
  2607. <dt>Securityeffect</dt>
  2608. <dd>-</dd>
  2609. </dl>
  2610. <dl>
  2611. <dt>Notes</dt>
  2612. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2613. </div>
  2614. </div>
  2615. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2616. </div>
  2617. </div>
  2618. </li>
  2619. <liclass="image_lists_itemdatapage-1">
  2620. <aclass="card_img">
  2621. <imgsrc="../images/cardlist/card/BT6-020.png"alt="BT6-020Gizamon"></a>
  2622. <divclass="popup">
  2623. <divclass="card_detailcard_detail_blue">
  2624. <divclass="card_detail_inner">
  2625. <ulclass="cardinfo_head">
  2626. <liclass="cardno">BT6-020</li>
  2627. <li>C</li>
  2628. <liclass="cardtype">Digimon</li>
  2629. <liclass="cardlv">Lv.3</li>
  2630. </ul>
  2631. <divclass="card_name">Gizamon</div>
  2632. <divclass="cardinfo_top">
  2633. <divclass="card_img">
  2634. <imgsrc="../images/cardlist/card/BT6-020.png"alt="BT6-020Gizamon"></div>
  2635. <divclass="cardinfo_top_body">
  2636. <dl>
  2637. <dt>Form</dt>
  2638. <dd>Rookie</dd>
  2639. </dl>
  2640. <dl>
  2641. <dt>Attribute</dt>
  2642. <dd>Virus</dd>
  2643. </dl>
  2644. <dl>
  2645. <dt>Type</dt>
  2646. <dd>SeaAnimal</dd>
  2647. </dl>
  2648. <dl>
  2649. <dt>DP</dt>
  2650. <dd>2000</dl>
  2651. <dl>
  2652. <dt>PlayCost</dt>
  2653. <dd>3</dd>
  2654. </dl>
  2655. <dl>
  2656. <dt>DigivolveCost1</dt>
  2657. <dd>0fromLv.2</dd>
  2658. </dl>
  2659. <dl>
  2660. <dt>DigivolveCost2</dt>
  2661. <dd>-</dd>
  2662. </dl>
  2663. </div>
  2664. </div>
  2665. <divclass="cardinfo_bottom">
  2666. <dl>
  2667. <dt>Effect</dt>
  2668. <dd>-</dd>
  2669. </dl>
  2670. <dl>
  2671. <dt>Digivolveeffect</dt>
  2672. <dd>[Your Turn] While your opponent has no Digimon with digivolution cards in play, this Digimon gets +2000 DP.</dd>
  2673. </dl>
  2674. <dl>
  2675. <dt>Securityeffect</dt>
  2676. <dd>-</dd>
  2677. </dl>
  2678. <dl>
  2679. <dt>Notes</dt>
  2680. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2681. </div>
  2682. </div>
  2683. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2684. </div>
  2685. </div>
  2686. </li>
  2687. <liclass="image_lists_itemdatapage-1">
  2688. <aclass="card_img">
  2689. <imgsrc="../images/cardlist/card/BT6-021.png"alt="BT6-021ModokiBetamon"></a>
  2690. <divclass="popup">
  2691. <divclass="card_detailcard_detail_blue">
  2692. <divclass="card_detail_inner">
  2693. <ulclass="cardinfo_head">
  2694. <liclass="cardno">BT6-021</li>
  2695. <li>C</li>
  2696. <liclass="cardtype">Digimon</li>
  2697. <liclass="cardlv">Lv.3</li>
  2698. </ul>
  2699. <divclass="card_name">ModokiBetamon</div>
  2700. <divclass="cardinfo_top">
  2701. <divclass="card_img">
  2702. <imgsrc="../images/cardlist/card/BT6-021.png"alt="BT6-021ModokiBetamon"></div>
  2703. <divclass="cardinfo_top_body">
  2704. <dl>
  2705. <dt>Form</dt>
  2706. <dd>Rookie</dd>
  2707. </dl>
  2708. <dl>
  2709. <dt>Attribute</dt>
  2710. <dd>Data</dd>
  2711. </dl>
  2712. <dl>
  2713. <dt>Type</dt>
  2714. <dd>Amphibian</dd>
  2715. </dl>
  2716. <dl>
  2717. <dt>DP</dt>
  2718. <dd>2000</dl>
  2719. <dl>
  2720. <dt>PlayCost</dt>
  2721. <dd>3</dd>
  2722. </dl>
  2723. <dl>
  2724. <dt>DigivolveCost1</dt>
  2725. <dd>0fromLv.2</dd>
  2726. </dl>
  2727. <dl>
  2728. <dt>DigivolveCost2</dt>
  2729. <dd>-</dd>
  2730. </dl>
  2731. </div>
  2732. </div>
  2733. <divclass="cardinfo_bottom">
  2734. <dl>
  2735. <dt>Effect</dt>
  2736. <dd>[All Turns] Your opponent can't gain memory except with Tamer effects.</dd>
  2737. </dl>
  2738. <dl>
  2739. <dt>Digivolveeffect</dt>
  2740. <dd>-</dd>
  2741. </dl>
  2742. <dl>
  2743. <dt>Securityeffect</dt>
  2744. <dd>-</dd>
  2745. </dl>
  2746. <dl>
  2747. <dt>Notes</dt>
  2748. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2749. </div>
  2750. </div>
  2751. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2752. </div>
  2753. </div>
  2754. </li>
  2755. <liclass="image_lists_itemdatapage-2">
  2756. <aclass="card_img">
  2757. <imgsrc="../images/cardlist/card/BT6-021_P1.png"alt="BT6-021ModokiBetamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2758. </a>
  2759. <divclass="popup">
  2760. <divclass="card_detailcard_detail_blue">
  2761. <divclass="card_detail_inner">
  2762. <ulclass="cardinfo_head">
  2763. <liclass="cardno">BT6-021</li>
  2764. <li>C</li>
  2765. <liclass="cardtype">Digimon</li>
  2766. <liclass="cardlv">Lv.3</li>
  2767. <liclass="cardtypecardParallel">AlternativeArt</li>
  2768. </ul>
  2769. <divclass="card_name">ModokiBetamon</div>
  2770. <divclass="cardinfo_top">
  2771. <divclass="card_img">
  2772. <imgsrc="../images/cardlist/card/BT6-021_P1.png"alt="BT6-021ModokiBetamon"></div>
  2773. <divclass="cardinfo_top_body">
  2774. <dl>
  2775. <dt>Form</dt>
  2776. <dd>Rookie</dd>
  2777. </dl>
  2778. <dl>
  2779. <dt>Attribute</dt>
  2780. <dd>Data</dd>
  2781. </dl>
  2782. <dl>
  2783. <dt>Type</dt>
  2784. <dd>Amphibian</dd>
  2785. </dl>
  2786. <dl>
  2787. <dt>DP</dt>
  2788. <dd>2000</dl>
  2789. <dl>
  2790. <dt>PlayCost</dt>
  2791. <dd>3</dd>
  2792. </dl>
  2793. <dl>
  2794. <dt>DigivolveCost1</dt>
  2795. <dd>0fromLv.2</dd>
  2796. </dl>
  2797. <dl>
  2798. <dt>DigivolveCost2</dt>
  2799. <dd>-</dd>
  2800. </dl>
  2801. </div>
  2802. </div>
  2803. <divclass="cardinfo_bottom">
  2804. <dl>
  2805. <dt>Effect</dt>
  2806. <dd>[All Turns] Your opponent can't gain memory except with Tamer effects.</dd>
  2807. </dl>
  2808. <dl>
  2809. <dt>Digivolveeffect</dt>
  2810. <dd>-</dd>
  2811. </dl>
  2812. <dl>
  2813. <dt>Securityeffect</dt>
  2814. <dd>-</dd>
  2815. </dl>
  2816. <dl>
  2817. <dt>Notes</dt>
  2818. <dd>PremiumDeckSetLuckyPack</dd></dl>
  2819. </div>
  2820. </div>
  2821. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2822. </div>
  2823. </div>
  2824. </li>
  2825. <liclass="image_lists_itemdatapage-2">
  2826. <aclass="card_img">
  2827. <imgsrc="../images/cardlist/card/BT6-022.png"alt="BT6-022Strabimon"></a>
  2828. <divclass="popup">
  2829. <divclass="card_detailcard_detail_blue">
  2830. <divclass="card_detail_inner">
  2831. <ulclass="cardinfo_head">
  2832. <liclass="cardno">BT6-022</li>
  2833. <li>C</li>
  2834. <liclass="cardtype">Digimon</li>
  2835. <liclass="cardlv">Lv.3</li>
  2836. </ul>
  2837. <divclass="card_name">Strabimon</div>
  2838. <divclass="cardinfo_top">
  2839. <divclass="card_img">
  2840. <imgsrc="../images/cardlist/card/BT6-022.png"alt="BT6-022Strabimon"></div>
  2841. <divclass="cardinfo_top_body">
  2842. <dl>
  2843. <dt>Form</dt>
  2844. <dd>Hybrid</dd>
  2845. </dl>
  2846. <dl>
  2847. <dt>Attribute</dt>
  2848. <dd>Variable</dd>
  2849. </dl>
  2850. <dl>
  2851. <dt>Type</dt>
  2852. <dd>Beastkin</dd>
  2853. </dl>
  2854. <dl>
  2855. <dt>DP</dt>
  2856. <dd>3000</dl>
  2857. <dl>
  2858. <dt>PlayCost</dt>
  2859. <dd>4</dd>
  2860. </dl>
  2861. <dl>
  2862. <dt>DigivolveCost1</dt>
  2863. <dd>0fromLv.2</dd>
  2864. </dl>
  2865. <dl>
  2866. <dt>DigivolveCost2</dt>
  2867. <dd>-</dd>
  2868. </dl>
  2869. </div>
  2870. </div>
  2871. <divclass="cardinfo_bottom">
  2872. <dl>
  2873. <dt>Effect</dt>
  2874. <dd>-</dd>
  2875. </dl>
  2876. <dl>
  2877. <dt>Digivolveeffect</dt>
  2878. <dd>[When Attacking][Once Per Turn] If this Digimon has [Hybrid] or [Ten Warriors] in its form or type, gain 1 memory.</dd>
  2879. </dl>
  2880. <dl>
  2881. <dt>Securityeffect</dt>
  2882. <dd>-</dd>
  2883. </dl>
  2884. <dl>
  2885. <dt>Notes</dt>
  2886. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2887. </div>
  2888. </div>
  2889. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2890. </div>
  2891. </div>
  2892. </li>
  2893. <liclass="image_lists_itemdatapage-2">
  2894. <aclass="card_img">
  2895. <imgsrc="../images/cardlist/card/BT6-023.png"alt="BT6-023Octomon"></a>
  2896. <divclass="popup">
  2897. <divclass="card_detailcard_detail_blue">
  2898. <divclass="card_detail_inner">
  2899. <ulclass="cardinfo_head">
  2900. <liclass="cardno">BT6-023</li>
  2901. <li>C</li>
  2902. <liclass="cardtype">Digimon</li>
  2903. <liclass="cardlv">Lv.4</li>
  2904. </ul>
  2905. <divclass="card_name">Octomon</div>
  2906. <divclass="cardinfo_top">
  2907. <divclass="card_img">
  2908. <imgsrc="../images/cardlist/card/BT6-023.png"alt="BT6-023Octomon"></div>
  2909. <divclass="cardinfo_top_body">
  2910. <dl>
  2911. <dt>Form</dt>
  2912. <dd>Champion</dd>
  2913. </dl>
  2914. <dl>
  2915. <dt>Attribute</dt>
  2916. <dd>Virus</dd>
  2917. </dl>
  2918. <dl>
  2919. <dt>Type</dt>
  2920. <dd>Mollusk</dd>
  2921. </dl>
  2922. <dl>
  2923. <dt>DP</dt>
  2924. <dd>7000</dl>
  2925. <dl>
  2926. <dt>PlayCost</dt>
  2927. <dd>5</dd>
  2928. </dl>
  2929. <dl>
  2930. <dt>DigivolveCost1</dt>
  2931. <dd>2fromLv.3</dd>
  2932. </dl>
  2933. <dl>
  2934. <dt>DigivolveCost2</dt>
  2935. <dd>-</dd>
  2936. </dl>
  2937. </div>
  2938. </div>
  2939. <divclass="cardinfo_bottom">
  2940. <dl>
  2941. <dt>Effect</dt>
  2942. <dd>-</dd>
  2943. </dl>
  2944. <dl>
  2945. <dt>Digivolveeffect</dt>
  2946. <dd>-</dd>
  2947. </dl>
  2948. <dl>
  2949. <dt>Securityeffect</dt>
  2950. <dd>-</dd>
  2951. </dl>
  2952. <dl>
  2953. <dt>Notes</dt>
  2954. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  2955. </div>
  2956. </div>
  2957. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2958. </div>
  2959. </div>
  2960. </li>
  2961. <liclass="image_lists_itemdatapage-2">
  2962. <aclass="card_img">
  2963. <imgsrc="../images/cardlist/card/BT6-024.png"alt="BT6-024Mojyamon"></a>
  2964. <divclass="popup">
  2965. <divclass="card_detailcard_detail_blue">
  2966. <divclass="card_detail_inner">
  2967. <ulclass="cardinfo_head">
  2968. <liclass="cardno">BT6-024</li>
  2969. <li>U</li>
  2970. <liclass="cardtype">Digimon</li>
  2971. <liclass="cardlv">Lv.4</li>
  2972. </ul>
  2973. <divclass="card_name">Mojyamon</div>
  2974. <divclass="cardinfo_top">
  2975. <divclass="card_img">
  2976. <imgsrc="../images/cardlist/card/BT6-024.png"alt="BT6-024Mojyamon"></div>
  2977. <divclass="cardinfo_top_body">
  2978. <dl>
  2979. <dt>Form</dt>
  2980. <dd>Champion</dd>
  2981. </dl>
  2982. <dl>
  2983. <dt>Attribute</dt>
  2984. <dd>Vaccine</dd>
  2985. </dl>
  2986. <dl>
  2987. <dt>Type</dt>
  2988. <dd>ElusiveBeast</dd>
  2989. </dl>
  2990. <dl>
  2991. <dt>DP</dt>
  2992. <dd>5000</dl>
  2993. <dl>
  2994. <dt>PlayCost</dt>
  2995. <dd>5</dd>
  2996. </dl>
  2997. <dl>
  2998. <dt>DigivolveCost1</dt>
  2999. <dd>2fromLv.3</dd>
  3000. </dl>
  3001. <dl>
  3002. <dt>DigivolveCost2</dt>
  3003. <dd>-</dd>
  3004. </dl>
  3005. </div>
  3006. </div>
  3007. <divclass="cardinfo_bottom">
  3008. <dl>
  3009. <dt>Effect</dt>
  3010. <dd>[Your Turn] While your opponent has no Digimon with digivolution cards in play, this Digimon gains <Jamming>. (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  3011. </dl>
  3012. <dl>
  3013. <dt>Digivolveeffect</dt>
  3014. <dd>[When Attacking] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</dd>
  3015. </dl>
  3016. <dl>
  3017. <dt>Securityeffect</dt>
  3018. <dd>-</dd>
  3019. </dl>
  3020. <dl>
  3021. <dt>Notes</dt>
  3022. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3023. </div>
  3024. </div>
  3025. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3026. </div>
  3027. </div>
  3028. </li>
  3029. <liclass="image_lists_itemdatapage-2">
  3030. <aclass="card_img">
  3031. <imgsrc="../images/cardlist/card/BT6-025.png"alt="BT6-025Panjyamon"></a>
  3032. <divclass="popup">
  3033. <divclass="card_detailcard_detail_blue">
  3034. <divclass="card_detail_inner">
  3035. <ulclass="cardinfo_head">
  3036. <liclass="cardno">BT6-025</li>
  3037. <li>C</li>
  3038. <liclass="cardtype">Digimon</li>
  3039. <liclass="cardlv">Lv.5</li>
  3040. </ul>
  3041. <divclass="card_name">Panjyamon</div>
  3042. <divclass="cardinfo_top">
  3043. <divclass="card_img">
  3044. <imgsrc="../images/cardlist/card/BT6-025.png"alt="BT6-025Panjyamon"></div>
  3045. <divclass="cardinfo_top_body">
  3046. <dl>
  3047. <dt>Form</dt>
  3048. <dd>Ultimate</dd>
  3049. </dl>
  3050. <dl>
  3051. <dt>Attribute</dt>
  3052. <dd>Data</dd>
  3053. </dl>
  3054. <dl>
  3055. <dt>Type</dt>
  3056. <dd>Beastkin</dd>
  3057. </dl>
  3058. <dl>
  3059. <dt>DP</dt>
  3060. <dd>6000</dl>
  3061. <dl>
  3062. <dt>PlayCost</dt>
  3063. <dd>5</dd>
  3064. </dl>
  3065. <dl>
  3066. <dt>DigivolveCost1</dt>
  3067. <dd>3fromLv.4</dd>
  3068. </dl>
  3069. <dl>
  3070. <dt>DigivolveCost2</dt>
  3071. <dd>-</dd>
  3072. </dl>
  3073. </div>
  3074. </div>
  3075. <divclass="cardinfo_bottom">
  3076. <dl>
  3077. <dt>Effect</dt>
  3078. <dd>-</dd>
  3079. </dl>
  3080. <dl>
  3081. <dt>Digivolveeffect</dt>
  3082. <dd>[When Attacking][Once Per Turn] Gain 1 memory.</dd>
  3083. </dl>
  3084. <dl>
  3085. <dt>Securityeffect</dt>
  3086. <dd>-</dd>
  3087. </dl>
  3088. <dl>
  3089. <dt>Notes</dt>
  3090. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3091. </div>
  3092. </div>
  3093. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3094. </div>
  3095. </div>
  3096. </li>
  3097. <liclass="image_lists_itemdatapage-2">
  3098. <aclass="card_img">
  3099. <imgsrc="../images/cardlist/card/BT6-026.png"alt="BT6-026Dragomon"></a>
  3100. <divclass="popup">
  3101. <divclass="card_detailcard_detail_blue">
  3102. <divclass="card_detail_inner">
  3103. <ulclass="cardinfo_head">
  3104. <liclass="cardno">BT6-026</li>
  3105. <li>C</li>
  3106. <liclass="cardtype">Digimon</li>
  3107. <liclass="cardlv">Lv.5</li>
  3108. </ul>
  3109. <divclass="card_name">Dragomon</div>
  3110. <divclass="cardinfo_top">
  3111. <divclass="card_img">
  3112. <imgsrc="../images/cardlist/card/BT6-026.png"alt="BT6-026Dragomon"></div>
  3113. <divclass="cardinfo_top_body">
  3114. <dl>
  3115. <dt>Form</dt>
  3116. <dd>Ultimate</dd>
  3117. </dl>
  3118. <dl>
  3119. <dt>Attribute</dt>
  3120. <dd>Virus</dd>
  3121. </dl>
  3122. <dl>
  3123. <dt>Type</dt>
  3124. <dd>Aquabeast</dd>
  3125. </dl>
  3126. <dl>
  3127. <dt>DP</dt>
  3128. <dd>7000</dl>
  3129. <dl>
  3130. <dt>PlayCost</dt>
  3131. <dd>6</dd>
  3132. </dl>
  3133. <dl>
  3134. <dt>DigivolveCost1</dt>
  3135. <dd>3fromLv.4</dd>
  3136. </dl>
  3137. <dl>
  3138. <dt>DigivolveCost2</dt>
  3139. <dd>-</dd>
  3140. </dl>
  3141. </div>
  3142. </div>
  3143. <divclass="cardinfo_bottom">
  3144. <dl>
  3145. <dt>Effect</dt>
  3146. <dd>[When Digivolving] Return 1 of your opponent's level 4 or lower Digimon with no digivolution cards to its owner's hand.</dd>
  3147. </dl>
  3148. <dl>
  3149. <dt>Digivolveeffect</dt>
  3150. <dd>-</dd>
  3151. </dl>
  3152. <dl>
  3153. <dt>Securityeffect</dt>
  3154. <dd>-</dd>
  3155. </dl>
  3156. <dl>
  3157. <dt>Notes</dt>
  3158. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3159. </div>
  3160. </div>
  3161. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3162. </div>
  3163. </div>
  3164. </li>
  3165. <liclass="image_lists_itemdatapage-2">
  3166. <aclass="card_img">
  3167. <imgsrc="../images/cardlist/card/BT6-027.png"alt="BT6-027Majiramon"></a>
  3168. <divclass="popup">
  3169. <divclass="card_detailcard_detail_blue">
  3170. <divclass="card_detail_inner">
  3171. <ulclass="cardinfo_head">
  3172. <liclass="cardno">BT6-027</li>
  3173. <li>R</li>
  3174. <liclass="cardtype">Digimon</li>
  3175. <liclass="cardlv">Lv.5</li>
  3176. </ul>
  3177. <divclass="card_name">Majiramon</div>
  3178. <divclass="cardinfo_top">
  3179. <divclass="card_img">
  3180. <imgsrc="../images/cardlist/card/BT6-027.png"alt="BT6-027Majiramon"></div>
  3181. <divclass="cardinfo_top_body">
  3182. <dl>
  3183. <dt>Form</dt>
  3184. <dd>Ultimate</dd>
  3185. </dl>
  3186. <dl>
  3187. <dt>Attribute</dt>
  3188. <dd>Data</dd>
  3189. </dl>
  3190. <dl>
  3191. <dt>Type</dt>
  3192. <dd>HolyDragon/Deva</dd>
  3193. </dl>
  3194. <dl>
  3195. <dt>DP</dt>
  3196. <dd>7000</dl>
  3197. <dl>
  3198. <dt>PlayCost</dt>
  3199. <dd>7</dd>
  3200. </dl>
  3201. <dl>
  3202. <dt>DigivolveCost1</dt>
  3203. <dd>3fromLv.4</dd>
  3204. </dl>
  3205. <dl>
  3206. <dt>DigivolveCost2</dt>
  3207. <dd>-</dd>
  3208. </dl>
  3209. </div>
  3210. </div>
  3211. <divclass="cardinfo_bottom">
  3212. <dl>
  3213. <dt>Effect</dt>
  3214. <dd>[When Digivolving] Trash 1 digivolution card from the top of 1 of your opponent's Digimon.</dd>
  3215. </dl>
  3216. <dl>
  3217. <dt>Digivolveeffect</dt>
  3218. <dd>[When Attacking][Once Per Turn] If your opponent has no Digimon with digivolution cards in play, unsuspend this Digimon.</dd>
  3219. </dl>
  3220. <dl>
  3221. <dt>Securityeffect</dt>
  3222. <dd>-</dd>
  3223. </dl>
  3224. <dl>
  3225. <dt>Notes</dt>
  3226. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3227. </div>
  3228. </div>
  3229. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3230. </div>
  3231. </div>
  3232. </li>
  3233. <liclass="image_lists_itemdatapage-2">
  3234. <aclass="card_img">
  3235. <imgsrc="../images/cardlist/card/BT6-028.png"alt="BT6-028Pukumon"></a>
  3236. <divclass="popup">
  3237. <divclass="card_detailcard_detail_blue">
  3238. <divclass="card_detail_inner">
  3239. <ulclass="cardinfo_head">
  3240. <liclass="cardno">BT6-028</li>
  3241. <li>U</li>
  3242. <liclass="cardtype">Digimon</li>
  3243. <liclass="cardlv">Lv.6</li>
  3244. </ul>
  3245. <divclass="card_name">Pukumon</div>
  3246. <divclass="cardinfo_top">
  3247. <divclass="card_img">
  3248. <imgsrc="../images/cardlist/card/BT6-028.png"alt="BT6-028Pukumon"></div>
  3249. <divclass="cardinfo_top_body">
  3250. <dl>
  3251. <dt>Form</dt>
  3252. <dd>Mega</dd>
  3253. </dl>
  3254. <dl>
  3255. <dt>Attribute</dt>
  3256. <dd>Virus</dd>
  3257. </dl>
  3258. <dl>
  3259. <dt>Type</dt>
  3260. <dd>Mutant</dd>
  3261. </dl>
  3262. <dl>
  3263. <dt>DP</dt>
  3264. <dd>11000</dl>
  3265. <dl>
  3266. <dt>PlayCost</dt>
  3267. <dd>11</dd>
  3268. </dl>
  3269. <dl>
  3270. <dt>DigivolveCost1</dt>
  3271. <dd>3fromLv.5</dd>
  3272. </dl>
  3273. <dl>
  3274. <dt>DigivolveCost2</dt>
  3275. <dd>-</dd>
  3276. </dl>
  3277. </div>
  3278. </div>
  3279. <divclass="cardinfo_bottom">
  3280. <dl>
  3281. <dt>Effect</dt>
  3282. <dd>[Main] <Digi-Burst 2> (Trash 2 of this Digimon's Digivolution cards to activate the effect below.)・Your Digimon can't be blocked by your opponent's Digimon this turn.</dd>
  3283. </dl>
  3284. <dl>
  3285. <dt>Digivolveeffect</dt>
  3286. <dd>-</dd>
  3287. </dl>
  3288. <dl>
  3289. <dt>Securityeffect</dt>
  3290. <dd>-</dd>
  3291. </dl>
  3292. <dl>
  3293. <dt>Notes</dt>
  3294. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3295. </div>
  3296. </div>
  3297. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3298. </div>
  3299. </div>
  3300. </li>
  3301. <liclass="image_lists_itemdatapage-2">
  3302. <aclass="card_img">
  3303. <imgsrc="../images/cardlist/card/BT6-029.png"alt="BT6-029Azulongmon"></a>
  3304. <divclass="popup">
  3305. <divclass="card_detailcard_detail_blue">
  3306. <divclass="card_detail_inner">
  3307. <ulclass="cardinfo_head">
  3308. <liclass="cardno">BT6-029</li>
  3309. <li>SR</li>
  3310. <liclass="cardtype">Digimon</li>
  3311. <liclass="cardlv">Lv.6</li>
  3312. </ul>
  3313. <divclass="card_name">Azulongmon</div>
  3314. <divclass="cardinfo_top">
  3315. <divclass="card_img">
  3316. <imgsrc="../images/cardlist/card/BT6-029.png"alt="BT6-029Azulongmon"></div>
  3317. <divclass="cardinfo_top_body">
  3318. <dl>
  3319. <dt>Form</dt>
  3320. <dd>Mega</dd>
  3321. </dl>
  3322. <dl>
  3323. <dt>Attribute</dt>
  3324. <dd>Data</dd>
  3325. </dl>
  3326. <dl>
  3327. <dt>Type</dt>
  3328. <dd>HolyDragon/FourGreatDragons/FourSovereigns</dd>
  3329. </dl>
  3330. <dl>
  3331. <dt>DP</dt>
  3332. <dd>13000</dl>
  3333. <dl>
  3334. <dt>PlayCost</dt>
  3335. <dd>13</dd>
  3336. </dl>
  3337. <dl>
  3338. <dt>DigivolveCost1</dt>
  3339. <dd>5fromLv.5</dd>
  3340. </dl>
  3341. <dl>
  3342. <dt>DigivolveCost2</dt>
  3343. <dd>-</dd>
  3344. </dl>
  3345. </div>
  3346. </div>
  3347. <divclass="cardinfo_bottom">
  3348. <dl>
  3349. <dt>Effect</dt>
  3350. <dd>[When Digivolving] Trash 1 digivolution card from the bottom of all of your opponent's Digimon. Then, gain 1 memory for each of your opponent's Digimon with no digivolution cards.[Your Turn] For each Digimon with no digivolution cards your opponent has in play, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  3351. </dl>
  3352. <dl>
  3353. <dt>Digivolveeffect</dt>
  3354. <dd>-</dd>
  3355. </dl>
  3356. <dl>
  3357. <dt>Securityeffect</dt>
  3358. <dd>-</dd>
  3359. </dl>
  3360. <dl>
  3361. <dt>Notes</dt>
  3362. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3363. </div>
  3364. </div>
  3365. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3366. </div>
  3367. </div>
  3368. </li>
  3369. <liclass="image_lists_itemdatapage-2">
  3370. <aclass="card_img">
  3371. <imgsrc="../images/cardlist/card/BT6-030.png"alt="BT6-030Gabumon-BondofFriendship"></a>
  3372. <divclass="popup">
  3373. <divclass="card_detailcard_detail_blue">
  3374. <divclass="card_detail_inner">
  3375. <ulclass="cardinfo_head">
  3376. <liclass="cardno">BT6-030</li>
  3377. <li>SR</li>
  3378. <liclass="cardtype">Digimon</li>
  3379. <liclass="cardlv">Lv.7</li>
  3380. </ul>
  3381. <divclass="card_name">Gabumon-BondofFriendship</div>
  3382. <divclass="cardinfo_top">
  3383. <divclass="card_img">
  3384. <imgsrc="../images/cardlist/card/BT6-030.png"alt="BT6-030Gabumon-BondofFriendship"></div>
  3385. <divclass="cardinfo_top_body">
  3386. <dl>
  3387. <dt>Form</dt>
  3388. <dd>Mega</dd>
  3389. </dl>
  3390. <dl>
  3391. <dt>Attribute</dt>
  3392. <dd>Unknown</dd>
  3393. </dl>
  3394. <dl>
  3395. <dt>Type</dt>
  3396. <dd>Unknown</dd>
  3397. </dl>
  3398. <dl>
  3399. <dt>DP</dt>
  3400. <dd>14000</dl>
  3401. <dl>
  3402. <dt>PlayCost</dt>
  3403. <dd>14</dd>
  3404. </dl>
  3405. <dl>
  3406. <dt>DigivolveCost1</dt>
  3407. <dd>3fromLv.6</dd>
  3408. </dl>
  3409. <dl>
  3410. <dt>DigivolveCost2</dt>
  3411. <dd>-</dd>
  3412. </dl>
  3413. </div>
  3414. </div>
  3415. <divclass="cardinfo_bottom">
  3416. <dl>
  3417. <dt>Effect</dt>
  3418. <dd>[When Attacking][Once Per Turn] If you have a Tamer in play, you may unsuspend this Digimon.[When Attacking] Return 1 of your opponent's level 5 or lower Digimon to the bottom of its owner's deck. Trash all of the digivolution cards of that Digimon.</dd>
  3419. </dl>
  3420. <dl>
  3421. <dt>Digivolveeffect</dt>
  3422. <dd>-</dd>
  3423. </dl>
  3424. <dl>
  3425. <dt>Securityeffect</dt>
  3426. <dd>-</dd>
  3427. </dl>
  3428. <dl>
  3429. <dt>Notes</dt>
  3430. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3431. </div>
  3432. </div>
  3433. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3434. </div>
  3435. </div>
  3436. </li>
  3437. <liclass="image_lists_itemdatapage-2">
  3438. <aclass="card_img">
  3439. <imgsrc="../images/cardlist/card/BT6-030_P1.png"alt="BT6-030Gabumon-BondofFriendship"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  3440. </a>
  3441. <divclass="popup">
  3442. <divclass="card_detailcard_detail_blue">
  3443. <divclass="card_detail_inner">
  3444. <ulclass="cardinfo_head">
  3445. <liclass="cardno">BT6-030</li>
  3446. <li>SR</li>
  3447. <liclass="cardtype">Digimon</li>
  3448. <liclass="cardlv">Lv.7</li>
  3449. <liclass="cardtypecardParallel">AlternativeArt</li>
  3450. </ul>
  3451. <divclass="card_name">Gabumon-BondofFriendship</div>
  3452. <divclass="cardinfo_top">
  3453. <divclass="card_img">
  3454. <imgsrc="../images/cardlist/card/BT6-030_P1.png"alt="BT6-030Gabumon-BondofFriendship"></div>
  3455. <divclass="cardinfo_top_body">
  3456. <dl>
  3457. <dt>Form</dt>
  3458. <dd>Mega</dd>
  3459. </dl>
  3460. <dl>
  3461. <dt>Attribute</dt>
  3462. <dd>Unknown</dd>
  3463. </dl>
  3464. <dl>
  3465. <dt>Type</dt>
  3466. <dd>Unknown</dd>
  3467. </dl>
  3468. <dl>
  3469. <dt>DP</dt>
  3470. <dd>14000</dl>
  3471. <dl>
  3472. <dt>PlayCost</dt>
  3473. <dd>14</dd>
  3474. </dl>
  3475. <dl>
  3476. <dt>DigivolveCost1</dt>
  3477. <dd>3fromLv.6</dd>
  3478. </dl>
  3479. <dl>
  3480. <dt>DigivolveCost2</dt>
  3481. <dd>-</dd>
  3482. </dl>
  3483. </div>
  3484. </div>
  3485. <divclass="cardinfo_bottom">
  3486. <dl>
  3487. <dt>Effect</dt>
  3488. <dd>[When Attacking][Once Per Turn] If you have a Tamer in play, you may unsuspend this Digimon.[When Attacking] Return 1 of your opponent's level 5 or lower Digimon to the bottom of its owner's deck. Trash all of the digivolution cards of that Digimon.</dd>
  3489. </dl>
  3490. <dl>
  3491. <dt>Digivolveeffect</dt>
  3492. <dd>-</dd>
  3493. </dl>
  3494. <dl>
  3495. <dt>Securityeffect</dt>
  3496. <dd>-</dd>
  3497. </dl>
  3498. <dl>
  3499. <dt>Notes</dt>
  3500. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3501. </div>
  3502. </div>
  3503. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3504. </div>
  3505. </div>
  3506. </li>
  3507. <liclass="image_lists_itemdatapage-2">
  3508. <aclass="card_img">
  3509. <imgsrc="../images/cardlist/card/BT6-031.png"alt="BT6-031Tinkermon"></a>
  3510. <divclass="popup">
  3511. <divclass="card_detailcard_detail_yellow">
  3512. <divclass="card_detail_inner">
  3513. <ulclass="cardinfo_head">
  3514. <liclass="cardno">BT6-031</li>
  3515. <li>C</li>
  3516. <liclass="cardtype">Digimon</li>
  3517. <liclass="cardlv">Lv.3</li>
  3518. </ul>
  3519. <divclass="card_name">Tinkermon</div>
  3520. <divclass="cardinfo_top">
  3521. <divclass="card_img">
  3522. <imgsrc="../images/cardlist/card/BT6-031.png"alt="BT6-031Tinkermon"></div>
  3523. <divclass="cardinfo_top_body">
  3524. <dl>
  3525. <dt>Form</dt>
  3526. <dd>Rookie</dd>
  3527. </dl>
  3528. <dl>
  3529. <dt>Attribute</dt>
  3530. <dd>Virus</dd>
  3531. </dl>
  3532. <dl>
  3533. <dt>Type</dt>
  3534. <dd>Fairy</dd>
  3535. </dl>
  3536. <dl>
  3537. <dt>DP</dt>
  3538. <dd>2000</dl>
  3539. <dl>
  3540. <dt>PlayCost</dt>
  3541. <dd>3</dd>
  3542. </dl>
  3543. <dl>
  3544. <dt>DigivolveCost1</dt>
  3545. <dd>0fromLv.2</dd>
  3546. </dl>
  3547. <dl>
  3548. <dt>DigivolveCost2</dt>
  3549. <dd>-</dd>
  3550. </dl>
  3551. </div>
  3552. </div>
  3553. <divclass="cardinfo_bottom">
  3554. <dl>
  3555. <dt>Effect</dt>
  3556. <dd>[On Deletion] 1 of your opponent's Digimon gains <Security Attack -1> (This Digimon checks 1 fewer security cards) until the end of your opponent's next turn.</dd>
  3557. </dl>
  3558. <dl>
  3559. <dt>Digivolveeffect</dt>
  3560. <dd>-</dd>
  3561. </dl>
  3562. <dl>
  3563. <dt>Securityeffect</dt>
  3564. <dd>-</dd>
  3565. </dl>
  3566. <dl>
  3567. <dt>Notes</dt>
  3568. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3569. </div>
  3570. </div>
  3571. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3572. </div>
  3573. </div>
  3574. </li>
  3575. <liclass="image_lists_itemdatapage-2">
  3576. <aclass="card_img">
  3577. <imgsrc="../images/cardlist/card/BT6-032.png"alt="BT6-032Tapirmon"></a>
  3578. <divclass="popup">
  3579. <divclass="card_detailcard_detail_yellow">
  3580. <divclass="card_detail_inner">
  3581. <ulclass="cardinfo_head">
  3582. <liclass="cardno">BT6-032</li>
  3583. <li>C</li>
  3584. <liclass="cardtype">Digimon</li>
  3585. <liclass="cardlv">Lv.3</li>
  3586. </ul>
  3587. <divclass="card_name">Tapirmon</div>
  3588. <divclass="cardinfo_top">
  3589. <divclass="card_img">
  3590. <imgsrc="../images/cardlist/card/BT6-032.png"alt="BT6-032Tapirmon"></div>
  3591. <divclass="cardinfo_top_body">
  3592. <dl>
  3593. <dt>Form</dt>
  3594. <dd>Rookie</dd>
  3595. </dl>
  3596. <dl>
  3597. <dt>Attribute</dt>
  3598. <dd>Vaccine</dd>
  3599. </dl>
  3600. <dl>
  3601. <dt>Type</dt>
  3602. <dd>HolyBeast</dd>
  3603. </dl>
  3604. <dl>
  3605. <dt>DP</dt>
  3606. <dd>2000</dl>
  3607. <dl>
  3608. <dt>PlayCost</dt>
  3609. <dd>3</dd>
  3610. </dl>
  3611. <dl>
  3612. <dt>DigivolveCost1</dt>
  3613. <dd>0fromLv.2</dd>
  3614. </dl>
  3615. <dl>
  3616. <dt>DigivolveCost2</dt>
  3617. <dd>-</dd>
  3618. </dl>
  3619. </div>
  3620. </div>
  3621. <divclass="cardinfo_bottom">
  3622. <dl>
  3623. <dt>Effect</dt>
  3624. <dd>-</dd>
  3625. </dl>
  3626. <dl>
  3627. <dt>Digivolveeffect</dt>
  3628. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  3629. </dl>
  3630. <dl>
  3631. <dt>Securityeffect</dt>
  3632. <dd>-</dd>
  3633. </dl>
  3634. <dl>
  3635. <dt>Notes</dt>
  3636. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3637. </div>
  3638. </div>
  3639. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3640. </div>
  3641. </div>
  3642. </li>
  3643. <liclass="image_lists_itemdatapage-2">
  3644. <aclass="card_img">
  3645. <imgsrc="../images/cardlist/card/BT6-033.png"alt="BT6-033Pulsemon"></a>
  3646. <divclass="popup">
  3647. <divclass="card_detailcard_detail_yellow">
  3648. <divclass="card_detail_inner">
  3649. <ulclass="cardinfo_head">
  3650. <liclass="cardno">BT6-033</li>
  3651. <li>R</li>
  3652. <liclass="cardtype">Digimon</li>
  3653. <liclass="cardlv">Lv.3</li>
  3654. </ul>
  3655. <divclass="card_name">Pulsemon</div>
  3656. <divclass="cardinfo_top">
  3657. <divclass="card_img">
  3658. <imgsrc="../images/cardlist/card/BT6-033.png"alt="BT6-033Pulsemon"></div>
  3659. <divclass="cardinfo_top_body">
  3660. <dl>
  3661. <dt>Form</dt>
  3662. <dd>Rookie</dd>
  3663. </dl>
  3664. <dl>
  3665. <dt>Attribute</dt>
  3666. <dd>Vaccine</dd>
  3667. </dl>
  3668. <dl>
  3669. <dt>Type</dt>
  3670. <dd>Beastkin</dd>
  3671. </dl>
  3672. <dl>
  3673. <dt>DP</dt>
  3674. <dd>2000</dl>
  3675. <dl>
  3676. <dt>PlayCost</dt>
  3677. <dd>3</dd>
  3678. </dl>
  3679. <dl>
  3680. <dt>DigivolveCost1</dt>
  3681. <dd>0fromLv.2</dd>
  3682. </dl>
  3683. <dl>
  3684. <dt>DigivolveCost2</dt>
  3685. <dd>-</dd>
  3686. </dl>
  3687. </div>
  3688. </div>
  3689. <divclass="cardinfo_bottom">
  3690. <dl>
  3691. <dt>Effect</dt>
  3692. <dd>[On Play] You may trash cards from the top of your security stack until there are 3 left; gain 1 memory for each security card trashed.</dd>
  3693. </dl>
  3694. <dl>
  3695. <dt>Digivolveeffect</dt>
  3696. <dd>[Your Turn] While you have 3 security cards, this Digimon gains <Jamming>. (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  3697. </dl>
  3698. <dl>
  3699. <dt>Securityeffect</dt>
  3700. <dd>-</dd>
  3701. </dl>
  3702. <dl>
  3703. <dt>Notes</dt>
  3704. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3705. </div>
  3706. </div>
  3707. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3708. </div>
  3709. </div>
  3710. </li>
  3711. <liclass="image_lists_itemdatapage-2">
  3712. <aclass="card_img">
  3713. <imgsrc="../images/cardlist/card/BT6-033_P1.png"alt="BT6-033Pulsemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3714. </a>
  3715. <divclass="popup">
  3716. <divclass="card_detailcard_detail_yellow">
  3717. <divclass="card_detail_inner">
  3718. <ulclass="cardinfo_head">
  3719. <liclass="cardno">BT6-033</li>
  3720. <li>R</li>
  3721. <liclass="cardtype">Digimon</li>
  3722. <liclass="cardlv">Lv.3</li>
  3723. <liclass="cardtypecardParallel">AlternativeArt</li>
  3724. </ul>
  3725. <divclass="card_name">Pulsemon</div>
  3726. <divclass="cardinfo_top">
  3727. <divclass="card_img">
  3728. <imgsrc="../images/cardlist/card/BT6-033_P1.png"alt="BT6-033Pulsemon"></div>
  3729. <divclass="cardinfo_top_body">
  3730. <dl>
  3731. <dt>Form</dt>
  3732. <dd>Rookie</dd>
  3733. </dl>
  3734. <dl>
  3735. <dt>Attribute</dt>
  3736. <dd>Vaccine</dd>
  3737. </dl>
  3738. <dl>
  3739. <dt>Type</dt>
  3740. <dd>Beastkin</dd>
  3741. </dl>
  3742. <dl>
  3743. <dt>DP</dt>
  3744. <dd>2000</dl>
  3745. <dl>
  3746. <dt>PlayCost</dt>
  3747. <dd>3</dd>
  3748. </dl>
  3749. <dl>
  3750. <dt>DigivolveCost1</dt>
  3751. <dd>0fromLv.2</dd>
  3752. </dl>
  3753. <dl>
  3754. <dt>DigivolveCost2</dt>
  3755. <dd>-</dd>
  3756. </dl>
  3757. </div>
  3758. </div>
  3759. <divclass="cardinfo_bottom">
  3760. <dl>
  3761. <dt>Effect</dt>
  3762. <dd>[On Play] You may trash cards from the top of your security stack until there are 3 left; gain 1 memory for each security card trashed.</dd>
  3763. </dl>
  3764. <dl>
  3765. <dt>Digivolveeffect</dt>
  3766. <dd>[Your Turn] While you have 3 security cards, this Digimon gains <Jamming>. (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  3767. </dl>
  3768. <dl>
  3769. <dt>Securityeffect</dt>
  3770. <dd>-</dd>
  3771. </dl>
  3772. <dl>
  3773. <dt>Notes</dt>
  3774. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3775. </div>
  3776. </div>
  3777. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3778. </div>
  3779. </div>
  3780. </li>
  3781. <liclass="image_lists_itemdatapage-2">
  3782. <aclass="card_img">
  3783. <imgsrc="../images/cardlist/card/BT6-034.png"alt="BT6-034Wizardmon"></a>
  3784. <divclass="popup">
  3785. <divclass="card_detailcard_detail_yellow">
  3786. <divclass="card_detail_inner">
  3787. <ulclass="cardinfo_head">
  3788. <liclass="cardno">BT6-034</li>
  3789. <li>U</li>
  3790. <liclass="cardtype">Digimon</li>
  3791. <liclass="cardlv">Lv.4</li>
  3792. </ul>
  3793. <divclass="card_name">Wizardmon</div>
  3794. <divclass="cardinfo_top">
  3795. <divclass="card_img">
  3796. <imgsrc="../images/cardlist/card/BT6-034.png"alt="BT6-034Wizardmon"></div>
  3797. <divclass="cardinfo_top_body">
  3798. <dl>
  3799. <dt>Form</dt>
  3800. <dd>Champion</dd>
  3801. </dl>
  3802. <dl>
  3803. <dt>Attribute</dt>
  3804. <dd>Data</dd>
  3805. </dl>
  3806. <dl>
  3807. <dt>Type</dt>
  3808. <dd>Wizard</dd>
  3809. </dl>
  3810. <dl>
  3811. <dt>DP</dt>
  3812. <dd>4000</dl>
  3813. <dl>
  3814. <dt>PlayCost</dt>
  3815. <dd>4</dd>
  3816. </dl>
  3817. <dl>
  3818. <dt>DigivolveCost1</dt>
  3819. <dd>2fromLv.3</dd>
  3820. </dl>
  3821. <dl>
  3822. <dt>DigivolveCost2</dt>
  3823. <dd>-</dd>
  3824. </dl>
  3825. </div>
  3826. </div>
  3827. <divclass="cardinfo_bottom">
  3828. <dl>
  3829. <dt>Effect</dt>
  3830. <dd>-</dd>
  3831. </dl>
  3832. <dl>
  3833. <dt>Digivolveeffect</dt>
  3834. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, gain 1 memory.</dd>
  3835. </dl>
  3836. <dl>
  3837. <dt>Securityeffect</dt>
  3838. <dd>-</dd>
  3839. </dl>
  3840. <dl>
  3841. <dt>Notes</dt>
  3842. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  3843. </div>
  3844. </div>
  3845. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3846. </div>
  3847. </div>
  3848. </li>
  3849. <liclass="image_lists_itemdatapage-2">
  3850. <aclass="card_img">
  3851. <imgsrc="../images/cardlist/card/BT6-034_P1.png"alt="BT6-034Wizardmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3852. </a>
  3853. <divclass="popup">
  3854. <divclass="card_detailcard_detail_yellow">
  3855. <divclass="card_detail_inner">
  3856. <ulclass="cardinfo_head">
  3857. <liclass="cardno">BT6-034</li>
  3858. <li>U</li>
  3859. <liclass="cardtype">Digimon</li>
  3860. <liclass="cardlv">Lv.4</li>
  3861. <liclass="cardtypecardParallel">AlternativeArt</li>
  3862. </ul>
  3863. <divclass="card_name">Wizardmon</div>
  3864. <divclass="cardinfo_top">
  3865. <divclass="card_img">
  3866. <imgsrc="../images/cardlist/card/BT6-034_P1.png"alt="BT6-034Wizardmon"></div>
  3867. <divclass="cardinfo_top_body">
  3868. <dl>
  3869. <dt>Form</dt>
  3870. <dd>Champion</dd>
  3871. </dl>
  3872. <dl>
  3873. <dt>Attribute</dt>
  3874. <dd>Data</dd>
  3875. </dl>
  3876. <dl>
  3877. <dt>Type</dt>
  3878. <dd>Wizard</dd>
  3879. </dl>
  3880. <dl>
  3881. <dt>DP</dt>
  3882. <dd>4000</dl>
  3883. <dl>
  3884. <dt>PlayCost</dt>
  3885. <dd>4</dd>
  3886. </dl>
  3887. <dl>
  3888. <dt>DigivolveCost1</dt>
  3889. <dd>2fromLv.3</dd>
  3890. </dl>
  3891. <dl>
  3892. <dt>DigivolveCost2</dt>
  3893. <dd>-</dd>
  3894. </dl>
  3895. </div>
  3896. </div>
  3897. <divclass="cardinfo_bottom">
  3898. <dl>
  3899. <dt>Effect</dt>
  3900. <dd>-</dd>
  3901. </dl>
  3902. <dl>
  3903. <dt>Digivolveeffect</dt>
  3904. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, gain 1 memory.</dd>
  3905. </dl>
  3906. <dl>
  3907. <dt>Securityeffect</dt>
  3908. <dd>-</dd>
  3909. </dl>
  3910. <dl>
  3911. <dt>Notes</dt>
  3912. <dd>StoreChampionship2022ParticipantPack</dd></dl>
  3913. </div>
  3914. </div>
  3915. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3916. </div>
  3917. </div>
  3918. </li>
  3919. <liclass="image_lists_itemdatapage-2">
  3920. <aclass="card_img">
  3921. <imgsrc="../images/cardlist/card/BT6-034_P2.png"alt="BT6-034Wizardmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3922. </a>
  3923. <divclass="popup">
  3924. <divclass="card_detailcard_detail_yellow">
  3925. <divclass="card_detail_inner">
  3926. <ulclass="cardinfo_head">
  3927. <liclass="cardno">BT6-034</li>
  3928. <li>U</li>
  3929. <liclass="cardtype">Digimon</li>
  3930. <liclass="cardlv">Lv.4</li>
  3931. <liclass="cardtypecardParallel">AlternativeArt</li>
  3932. </ul>
  3933. <divclass="card_name">Wizardmon</div>
  3934. <divclass="cardinfo_top">
  3935. <divclass="card_img">
  3936. <imgsrc="../images/cardlist/card/BT6-034_P2.png"alt="BT6-034Wizardmon"></div>
  3937. <divclass="cardinfo_top_body">
  3938. <dl>
  3939. <dt>Form</dt>
  3940. <dd>Champion</dd>
  3941. </dl>
  3942. <dl>
  3943. <dt>Attribute</dt>
  3944. <dd>Data</dd>
  3945. </dl>
  3946. <dl>
  3947. <dt>Type</dt>
  3948. <dd>Wizard</dd>
  3949. </dl>
  3950. <dl>
  3951. <dt>DP</dt>
  3952. <dd>4000</dl>
  3953. <dl>
  3954. <dt>PlayCost</dt>
  3955. <dd>4</dd>
  3956. </dl>
  3957. <dl>
  3958. <dt>DigivolveCost1</dt>
  3959. <dd>2fromLv.3</dd>
  3960. </dl>
  3961. <dl>
  3962. <dt>DigivolveCost2</dt>
  3963. <dd>-</dd>
  3964. </dl>
  3965. </div>
  3966. </div>
  3967. <divclass="cardinfo_bottom">
  3968. <dl>
  3969. <dt>Effect</dt>
  3970. <dd>-</dd>
  3971. </dl>
  3972. <dl>
  3973. <dt>Digivolveeffect</dt>
  3974. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, gain 1 memory.</dd>
  3975. </dl>
  3976. <dl>
  3977. <dt>Securityeffect</dt>
  3978. <dd>-</dd>
  3979. </dl>
  3980. <dl>
  3981. <dt>Notes</dt>
  3982. <dd>StoreChampionship2022ChampionCardSet</dd></dl>
  3983. </div>
  3984. </div>
  3985. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3986. </div>
  3987. </div>
  3988. </li>
  3989. <liclass="image_lists_itemdatapage-2">
  3990. <aclass="card_img">
  3991. <imgsrc="../images/cardlist/card/BT6-035.png"alt="BT6-035Baluchimon"></a>
  3992. <divclass="popup">
  3993. <divclass="card_detailcard_detail_yellow">
  3994. <divclass="card_detail_inner">
  3995. <ulclass="cardinfo_head">
  3996. <liclass="cardno">BT6-035</li>
  3997. <li>C</li>
  3998. <liclass="cardtype">Digimon</li>
  3999. <liclass="cardlv">Lv.4</li>
  4000. </ul>
  4001. <divclass="card_name">Baluchimon</div>
  4002. <divclass="cardinfo_top">
  4003. <divclass="card_img">
  4004. <imgsrc="../images/cardlist/card/BT6-035.png"alt="BT6-035Baluchimon"></div>
  4005. <divclass="cardinfo_top_body">
  4006. <dl>
  4007. <dt>Form</dt>
  4008. <dd>Champion</dd>
  4009. </dl>
  4010. <dl>
  4011. <dt>Attribute</dt>
  4012. <dd>Data</dd>
  4013. </dl>
  4014. <dl>
  4015. <dt>Type</dt>
  4016. <dd>HolyBeast</dd>
  4017. </dl>
  4018. <dl>
  4019. <dt>DP</dt>
  4020. <dd>5000</dl>
  4021. <dl>
  4022. <dt>PlayCost</dt>
  4023. <dd>4</dd>
  4024. </dl>
  4025. <dl>
  4026. <dt>DigivolveCost1</dt>
  4027. <dd>2fromLv.3</dd>
  4028. </dl>
  4029. <dl>
  4030. <dt>DigivolveCost2</dt>
  4031. <dd>-</dd>
  4032. </dl>
  4033. </div>
  4034. </div>
  4035. <divclass="cardinfo_bottom">
  4036. <dl>
  4037. <dt>Effect</dt>
  4038. <dd>[On Play] If you have 3 or fewer security cards, trigger <Draw 2>. (Draw 2 cards from your deck.)</dd>
  4039. </dl>
  4040. <dl>
  4041. <dt>Digivolveeffect</dt>
  4042. <dd>-</dd>
  4043. </dl>
  4044. <dl>
  4045. <dt>Securityeffect</dt>
  4046. <dd>-</dd>
  4047. </dl>
  4048. <dl>
  4049. <dt>Notes</dt>
  4050. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4051. </div>
  4052. </div>
  4053. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4054. </div>
  4055. </div>
  4056. </li>
  4057. <liclass="image_lists_itemdatapage-2">
  4058. <aclass="card_img">
  4059. <imgsrc="../images/cardlist/card/BT6-036.png"alt="BT6-036Mimicmon"></a>
  4060. <divclass="popup">
  4061. <divclass="card_detailcard_detail_yellow">
  4062. <divclass="card_detail_inner">
  4063. <ulclass="cardinfo_head">
  4064. <liclass="cardno">BT6-036</li>
  4065. <li>U</li>
  4066. <liclass="cardtype">Digimon</li>
  4067. <liclass="cardlv">Lv.4</li>
  4068. </ul>
  4069. <divclass="card_name">Mimicmon</div>
  4070. <divclass="cardinfo_top">
  4071. <divclass="card_img">
  4072. <imgsrc="../images/cardlist/card/BT6-036.png"alt="BT6-036Mimicmon"></div>
  4073. <divclass="cardinfo_top_body">
  4074. <dl>
  4075. <dt>Form</dt>
  4076. <dd>Champion</dd>
  4077. </dl>
  4078. <dl>
  4079. <dt>Attribute</dt>
  4080. <dd>Virus</dd>
  4081. </dl>
  4082. <dl>
  4083. <dt>Type</dt>
  4084. <dd>Mutant</dd>
  4085. </dl>
  4086. <dl>
  4087. <dt>DP</dt>
  4088. <dd>3000</dl>
  4089. <dl>
  4090. <dt>PlayCost</dt>
  4091. <dd>4</dd>
  4092. </dl>
  4093. <dl>
  4094. <dt>DigivolveCost1</dt>
  4095. <dd>2fromLv.3</dd>
  4096. </dl>
  4097. <dl>
  4098. <dt>DigivolveCost2</dt>
  4099. <dd>-</dd>
  4100. </dl>
  4101. </div>
  4102. </div>
  4103. <divclass="cardinfo_bottom">
  4104. <dl>
  4105. <dt>Effect</dt>
  4106. <dd>[On Play] If you have 3 or fewer security cards, gain 2 memory.</dd>
  4107. </dl>
  4108. <dl>
  4109. <dt>Digivolveeffect</dt>
  4110. <dd>-</dd>
  4111. </dl>
  4112. <dl>
  4113. <dt>Securityeffect</dt>
  4114. <dd>-</dd>
  4115. </dl>
  4116. <dl>
  4117. <dt>Notes</dt>
  4118. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4119. </div>
  4120. </div>
  4121. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4122. </div>
  4123. </div>
  4124. </li>
  4125. <liclass="image_lists_itemdatapage-2">
  4126. <aclass="card_img">
  4127. <imgsrc="../images/cardlist/card/BT6-037.png"alt="BT6-037Bulkmon"></a>
  4128. <divclass="popup">
  4129. <divclass="card_detailcard_detail_yellow">
  4130. <divclass="card_detail_inner">
  4131. <ulclass="cardinfo_head">
  4132. <liclass="cardno">BT6-037</li>
  4133. <li>C</li>
  4134. <liclass="cardtype">Digimon</li>
  4135. <liclass="cardlv">Lv.4</li>
  4136. </ul>
  4137. <divclass="card_name">Bulkmon</div>
  4138. <divclass="cardinfo_top">
  4139. <divclass="card_img">
  4140. <imgsrc="../images/cardlist/card/BT6-037.png"alt="BT6-037Bulkmon"></div>
  4141. <divclass="cardinfo_top_body">
  4142. <dl>
  4143. <dt>Form</dt>
  4144. <dd>Champion</dd>
  4145. </dl>
  4146. <dl>
  4147. <dt>Attribute</dt>
  4148. <dd>Vaccine</dd>
  4149. </dl>
  4150. <dl>
  4151. <dt>Type</dt>
  4152. <dd>Dragonkin</dd>
  4153. </dl>
  4154. <dl>
  4155. <dt>DP</dt>
  4156. <dd>5000</dl>
  4157. <dl>
  4158. <dt>PlayCost</dt>
  4159. <dd>5</dd>
  4160. </dl>
  4161. <dl>
  4162. <dt>DigivolveCost1</dt>
  4163. <dd>2fromLv.3</dd>
  4164. </dl>
  4165. <dl>
  4166. <dt>DigivolveCost2</dt>
  4167. <dd>-</dd>
  4168. </dl>
  4169. </div>
  4170. </div>
  4171. <divclass="cardinfo_bottom">
  4172. <dl>
  4173. <dt>Effect</dt>
  4174. <dd>[Your Turn] While you have 3 or more security cards, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  4175. </dl>
  4176. <dl>
  4177. <dt>Digivolveeffect</dt>
  4178. <dd>-</dd>
  4179. </dl>
  4180. <dl>
  4181. <dt>Securityeffect</dt>
  4182. <dd>-</dd>
  4183. </dl>
  4184. <dl>
  4185. <dt>Notes</dt>
  4186. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4187. </div>
  4188. </div>
  4189. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4190. </div>
  4191. </div>
  4192. </li>
  4193. <liclass="image_lists_itemdatapage-2">
  4194. <aclass="card_img">
  4195. <imgsrc="../images/cardlist/card/BT6-038.png"alt="BT6-038Apemon"></a>
  4196. <divclass="popup">
  4197. <divclass="card_detailcard_detail_yellow">
  4198. <divclass="card_detail_inner">
  4199. <ulclass="cardinfo_head">
  4200. <liclass="cardno">BT6-038</li>
  4201. <li>C</li>
  4202. <liclass="cardtype">Digimon</li>
  4203. <liclass="cardlv">Lv.4</li>
  4204. </ul>
  4205. <divclass="card_name">Apemon</div>
  4206. <divclass="cardinfo_top">
  4207. <divclass="card_img">
  4208. <imgsrc="../images/cardlist/card/BT6-038.png"alt="BT6-038Apemon"></div>
  4209. <divclass="cardinfo_top_body">
  4210. <dl>
  4211. <dt>Form</dt>
  4212. <dd>Champion</dd>
  4213. </dl>
  4214. <dl>
  4215. <dt>Attribute</dt>
  4216. <dd>Vaccine</dd>
  4217. </dl>
  4218. <dl>
  4219. <dt>Type</dt>
  4220. <dd>Beastkin</dd>
  4221. </dl>
  4222. <dl>
  4223. <dt>DP</dt>
  4224. <dd>8000</dl>
  4225. <dl>
  4226. <dt>PlayCost</dt>
  4227. <dd>6</dd>
  4228. </dl>
  4229. <dl>
  4230. <dt>DigivolveCost1</dt>
  4231. <dd>2fromLv.3</dd>
  4232. </dl>
  4233. <dl>
  4234. <dt>DigivolveCost2</dt>
  4235. <dd>-</dd>
  4236. </dl>
  4237. </div>
  4238. </div>
  4239. <divclass="cardinfo_bottom">
  4240. <dl>
  4241. <dt>Effect</dt>
  4242. <dd>-</dd>
  4243. </dl>
  4244. <dl>
  4245. <dt>Digivolveeffect</dt>
  4246. <dd>-</dd>
  4247. </dl>
  4248. <dl>
  4249. <dt>Securityeffect</dt>
  4250. <dd>-</dd>
  4251. </dl>
  4252. <dl>
  4253. <dt>Notes</dt>
  4254. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4255. </div>
  4256. </div>
  4257. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4258. </div>
  4259. </div>
  4260. </li>
  4261. <liclass="image_lists_itemdatapage-2">
  4262. <aclass="card_img">
  4263. <imgsrc="../images/cardlist/card/BT6-038_P1.png"alt="BT6-038Apemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4264. </a>
  4265. <divclass="popup">
  4266. <divclass="card_detailcard_detail_yellow">
  4267. <divclass="card_detail_inner">
  4268. <ulclass="cardinfo_head">
  4269. <liclass="cardno">BT6-038</li>
  4270. <li>C</li>
  4271. <liclass="cardtype">Digimon</li>
  4272. <liclass="cardlv">Lv.4</li>
  4273. <liclass="cardtypecardParallel">AlternativeArt</li>
  4274. </ul>
  4275. <divclass="card_name">Apemon</div>
  4276. <divclass="cardinfo_top">
  4277. <divclass="card_img">
  4278. <imgsrc="../images/cardlist/card/BT6-038_P1.png"alt="BT6-038Apemon"></div>
  4279. <divclass="cardinfo_top_body">
  4280. <dl>
  4281. <dt>Form</dt>
  4282. <dd>Champion</dd>
  4283. </dl>
  4284. <dl>
  4285. <dt>Attribute</dt>
  4286. <dd>Vaccine</dd>
  4287. </dl>
  4288. <dl>
  4289. <dt>Type</dt>
  4290. <dd>Beastkin</dd>
  4291. </dl>
  4292. <dl>
  4293. <dt>DP</dt>
  4294. <dd>8000</dl>
  4295. <dl>
  4296. <dt>PlayCost</dt>
  4297. <dd>6</dd>
  4298. </dl>
  4299. <dl>
  4300. <dt>DigivolveCost1</dt>
  4301. <dd>2fromLv.3</dd>
  4302. </dl>
  4303. <dl>
  4304. <dt>DigivolveCost2</dt>
  4305. <dd>-</dd>
  4306. </dl>
  4307. </div>
  4308. </div>
  4309. <divclass="cardinfo_bottom">
  4310. <dl>
  4311. <dt>Effect</dt>
  4312. <dd>-</dd>
  4313. </dl>
  4314. <dl>
  4315. <dt>Digivolveeffect</dt>
  4316. <dd>-</dd>
  4317. </dl>
  4318. <dl>
  4319. <dt>Securityeffect</dt>
  4320. <dd>-</dd>
  4321. </dl>
  4322. <dl>
  4323. <dt>Notes</dt>
  4324. <dd>2022RegionalsParticipationCardSet</dd></dl>
  4325. </div>
  4326. </div>
  4327. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4328. </div>
  4329. </div>
  4330. </li>
  4331. <liclass="image_lists_itemdatapage-2">
  4332. <aclass="card_img">
  4333. <imgsrc="../images/cardlist/card/BT6-038_P2.png"alt="BT6-038Apemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4334. </a>
  4335. <divclass="popup">
  4336. <divclass="card_detailcard_detail_yellow">
  4337. <divclass="card_detail_inner">
  4338. <ulclass="cardinfo_head">
  4339. <liclass="cardno">BT6-038</li>
  4340. <li>C</li>
  4341. <liclass="cardtype">Digimon</li>
  4342. <liclass="cardlv">Lv.4</li>
  4343. <liclass="cardtypecardParallel">AlternativeArt</li>
  4344. </ul>
  4345. <divclass="card_name">Apemon</div>
  4346. <divclass="cardinfo_top">
  4347. <divclass="card_img">
  4348. <imgsrc="../images/cardlist/card/BT6-038_P2.png"alt="BT6-038Apemon"></div>
  4349. <divclass="cardinfo_top_body">
  4350. <dl>
  4351. <dt>Form</dt>
  4352. <dd>Champion</dd>
  4353. </dl>
  4354. <dl>
  4355. <dt>Attribute</dt>
  4356. <dd>Vaccine</dd>
  4357. </dl>
  4358. <dl>
  4359. <dt>Type</dt>
  4360. <dd>Beastkin</dd>
  4361. </dl>
  4362. <dl>
  4363. <dt>DP</dt>
  4364. <dd>8000</dl>
  4365. <dl>
  4366. <dt>PlayCost</dt>
  4367. <dd>6</dd>
  4368. </dl>
  4369. <dl>
  4370. <dt>DigivolveCost1</dt>
  4371. <dd>2fromLv.3</dd>
  4372. </dl>
  4373. <dl>
  4374. <dt>DigivolveCost2</dt>
  4375. <dd>-</dd>
  4376. </dl>
  4377. </div>
  4378. </div>
  4379. <divclass="cardinfo_bottom">
  4380. <dl>
  4381. <dt>Effect</dt>
  4382. <dd>-</dd>
  4383. </dl>
  4384. <dl>
  4385. <dt>Digivolveeffect</dt>
  4386. <dd>-</dd>
  4387. </dl>
  4388. <dl>
  4389. <dt>Securityeffect</dt>
  4390. <dd>-</dd>
  4391. </dl>
  4392. <dl>
  4393. <dt>Notes</dt>
  4394. <dd>2022RegionalsFinalistSet</dd></dl>
  4395. </div>
  4396. </div>
  4397. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4398. </div>
  4399. </div>
  4400. </li>
  4401. <liclass="image_lists_itemdatapage-2">
  4402. <aclass="card_img">
  4403. <imgsrc="../images/cardlist/card/BT6-038_P3.png"alt="BT6-038Apemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4404. </a>
  4405. <divclass="popup">
  4406. <divclass="card_detailcard_detail_yellow">
  4407. <divclass="card_detail_inner">
  4408. <ulclass="cardinfo_head">
  4409. <liclass="cardno">BT6-038</li>
  4410. <li>C</li>
  4411. <liclass="cardtype">Digimon</li>
  4412. <liclass="cardlv">Lv.4</li>
  4413. <liclass="cardtypecardParallel">AlternativeArt</li>
  4414. </ul>
  4415. <divclass="card_name">Apemon</div>
  4416. <divclass="cardinfo_top">
  4417. <divclass="card_img">
  4418. <imgsrc="../images/cardlist/card/BT6-038_P3.png"alt="BT6-038Apemon"></div>
  4419. <divclass="cardinfo_top_body">
  4420. <dl>
  4421. <dt>Form</dt>
  4422. <dd>Champion</dd>
  4423. </dl>
  4424. <dl>
  4425. <dt>Attribute</dt>
  4426. <dd>Vaccine</dd>
  4427. </dl>
  4428. <dl>
  4429. <dt>Type</dt>
  4430. <dd>Beastkin</dd>
  4431. </dl>
  4432. <dl>
  4433. <dt>DP</dt>
  4434. <dd>8000</dl>
  4435. <dl>
  4436. <dt>PlayCost</dt>
  4437. <dd>6</dd>
  4438. </dl>
  4439. <dl>
  4440. <dt>DigivolveCost1</dt>
  4441. <dd>2fromLv.3</dd>
  4442. </dl>
  4443. <dl>
  4444. <dt>DigivolveCost2</dt>
  4445. <dd>-</dd>
  4446. </dl>
  4447. </div>
  4448. </div>
  4449. <divclass="cardinfo_bottom">
  4450. <dl>
  4451. <dt>Effect</dt>
  4452. <dd>-</dd>
  4453. </dl>
  4454. <dl>
  4455. <dt>Digivolveeffect</dt>
  4456. <dd>-</dd>
  4457. </dl>
  4458. <dl>
  4459. <dt>Securityeffect</dt>
  4460. <dd>-</dd>
  4461. </dl>
  4462. <dl>
  4463. <dt>Notes</dt>
  4464. <dd>2022RegionalsChampionCardSet</dd></dl>
  4465. </div>
  4466. </div>
  4467. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4468. </div>
  4469. </div>
  4470. </li>
  4471. <liclass="image_lists_itemdatapage-2">
  4472. <aclass="card_img">
  4473. <imgsrc="../images/cardlist/card/BT6-039.png"alt="BT6-039Mammothmon"></a>
  4474. <divclass="popup">
  4475. <divclass="card_detailcard_detail_yellow">
  4476. <divclass="card_detail_inner">
  4477. <ulclass="cardinfo_head">
  4478. <liclass="cardno">BT6-039</li>
  4479. <li>C</li>
  4480. <liclass="cardtype">Digimon</li>
  4481. <liclass="cardlv">Lv.5</li>
  4482. </ul>
  4483. <divclass="card_name">Mammothmon</div>
  4484. <divclass="cardinfo_top">
  4485. <divclass="card_img">
  4486. <imgsrc="../images/cardlist/card/BT6-039.png"alt="BT6-039Mammothmon"></div>
  4487. <divclass="cardinfo_top_body">
  4488. <dl>
  4489. <dt>Form</dt>
  4490. <dd>Ultimate</dd>
  4491. </dl>
  4492. <dl>
  4493. <dt>Attribute</dt>
  4494. <dd>Vaccine</dd>
  4495. </dl>
  4496. <dl>
  4497. <dt>Type</dt>
  4498. <dd>AncientAnimal</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>DP</dt>
  4502. <dd>6000</dl>
  4503. <dl>
  4504. <dt>PlayCost</dt>
  4505. <dd>5</dd>
  4506. </dl>
  4507. <dl>
  4508. <dt>DigivolveCost1</dt>
  4509. <dd>3fromLv.4</dd>
  4510. </dl>
  4511. <dl>
  4512. <dt>DigivolveCost2</dt>
  4513. <dd>-</dd>
  4514. </dl>
  4515. </div>
  4516. </div>
  4517. <divclass="cardinfo_bottom">
  4518. <dl>
  4519. <dt>Effect</dt>
  4520. <dd>-</dd>
  4521. </dl>
  4522. <dl>
  4523. <dt>Digivolveeffect</dt>
  4524. <dd>[All Turns] While you have 3 or fewer security cards, this Digimon gets +1000 DP.</dd>
  4525. </dl>
  4526. <dl>
  4527. <dt>Securityeffect</dt>
  4528. <dd>-</dd>
  4529. </dl>
  4530. <dl>
  4531. <dt>Notes</dt>
  4532. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4533. </div>
  4534. </div>
  4535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4536. </div>
  4537. </div>
  4538. </li>
  4539. <liclass="image_lists_itemdatapage-2">
  4540. <aclass="card_img">
  4541. <imgsrc="../images/cardlist/card/BT6-040.png"alt="BT6-040Mistymon"></a>
  4542. <divclass="popup">
  4543. <divclass="card_detailcard_detail_yellow">
  4544. <divclass="card_detail_inner">
  4545. <ulclass="cardinfo_head">
  4546. <liclass="cardno">BT6-040</li>
  4547. <li>C</li>
  4548. <liclass="cardtype">Digimon</li>
  4549. <liclass="cardlv">Lv.5</li>
  4550. </ul>
  4551. <divclass="card_name">Mistymon</div>
  4552. <divclass="cardinfo_top">
  4553. <divclass="card_img">
  4554. <imgsrc="../images/cardlist/card/BT6-040.png"alt="BT6-040Mistymon"></div>
  4555. <divclass="cardinfo_top_body">
  4556. <dl>
  4557. <dt>Form</dt>
  4558. <dd>Ultimate</dd>
  4559. </dl>
  4560. <dl>
  4561. <dt>Attribute</dt>
  4562. <dd>Virus</dd>
  4563. </dl>
  4564. <dl>
  4565. <dt>Type</dt>
  4566. <dd>MagicWarrior</dd>
  4567. </dl>
  4568. <dl>
  4569. <dt>DP</dt>
  4570. <dd>7000</dl>
  4571. <dl>
  4572. <dt>PlayCost</dt>
  4573. <dd>6</dd>
  4574. </dl>
  4575. <dl>
  4576. <dt>DigivolveCost1</dt>
  4577. <dd>3fromLv.4</dd>
  4578. </dl>
  4579. <dl>
  4580. <dt>DigivolveCost2</dt>
  4581. <dd>-</dd>
  4582. </dl>
  4583. </div>
  4584. </div>
  4585. <divclass="cardinfo_bottom">
  4586. <dl>
  4587. <dt>Effect</dt>
  4588. <dd>-</dd>
  4589. </dl>
  4590. <dl>
  4591. <dt>Digivolveeffect</dt>
  4592. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  4593. </dl>
  4594. <dl>
  4595. <dt>Securityeffect</dt>
  4596. <dd>-</dd>
  4597. </dl>
  4598. <dl>
  4599. <dt>Notes</dt>
  4600. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4601. </div>
  4602. </div>
  4603. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4604. </div>
  4605. </div>
  4606. </li>
  4607. <liclass="image_lists_itemdatapage-2">
  4608. <aclass="card_img">
  4609. <imgsrc="../images/cardlist/card/BT6-041.png"alt="BT6-041Manticoremon"></a>
  4610. <divclass="popup">
  4611. <divclass="card_detailcard_detail_yellow">
  4612. <divclass="card_detail_inner">
  4613. <ulclass="cardinfo_head">
  4614. <liclass="cardno">BT6-041</li>
  4615. <li>R</li>
  4616. <liclass="cardtype">Digimon</li>
  4617. <liclass="cardlv">Lv.5</li>
  4618. </ul>
  4619. <divclass="card_name">Manticoremon</div>
  4620. <divclass="cardinfo_top">
  4621. <divclass="card_img">
  4622. <imgsrc="../images/cardlist/card/BT6-041.png"alt="BT6-041Manticoremon"></div>
  4623. <divclass="cardinfo_top_body">
  4624. <dl>
  4625. <dt>Form</dt>
  4626. <dd>Ultimate</dd>
  4627. </dl>
  4628. <dl>
  4629. <dt>Attribute</dt>
  4630. <dd>Virus</dd>
  4631. </dl>
  4632. <dl>
  4633. <dt>Type</dt>
  4634. <dd>DarkAnimal</dd>
  4635. </dl>
  4636. <dl>
  4637. <dt>DP</dt>
  4638. <dd>7000</dl>
  4639. <dl>
  4640. <dt>PlayCost</dt>
  4641. <dd>7</dd>
  4642. </dl>
  4643. <dl>
  4644. <dt>DigivolveCost1</dt>
  4645. <dd>3fromLv.4</dd>
  4646. </dl>
  4647. <dl>
  4648. <dt>DigivolveCost2</dt>
  4649. <dd>-</dd>
  4650. </dl>
  4651. </div>
  4652. </div>
  4653. <divclass="cardinfo_bottom">
  4654. <dl>
  4655. <dt>Effect</dt>
  4656. <dd>[When Attacking] You may trash the top card of your security stack to have 1 of your opponent's Digimon get -5000 DP for the turn.</dd>
  4657. </dl>
  4658. <dl>
  4659. <dt>Digivolveeffect</dt>
  4660. <dd>-</dd>
  4661. </dl>
  4662. <dl>
  4663. <dt>Securityeffect</dt>
  4664. <dd>-</dd>
  4665. </dl>
  4666. <dl>
  4667. <dt>Notes</dt>
  4668. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4669. </div>
  4670. </div>
  4671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4672. </div>
  4673. </div>
  4674. </li>
  4675. <liclass="image_lists_itemdatapage-2">
  4676. <aclass="card_img">
  4677. <imgsrc="../images/cardlist/card/BT6-042.png"alt="BT6-042Babamon"></a>
  4678. <divclass="popup">
  4679. <divclass="card_detailcard_detail_yellow">
  4680. <divclass="card_detail_inner">
  4681. <ulclass="cardinfo_head">
  4682. <liclass="cardno">BT6-042</li>
  4683. <li>U</li>
  4684. <liclass="cardtype">Digimon</li>
  4685. <liclass="cardlv">Lv.6</li>
  4686. </ul>
  4687. <divclass="card_name">Babamon</div>
  4688. <divclass="cardinfo_top">
  4689. <divclass="card_img">
  4690. <imgsrc="../images/cardlist/card/BT6-042.png"alt="BT6-042Babamon"></div>
  4691. <divclass="cardinfo_top_body">
  4692. <dl>
  4693. <dt>Form</dt>
  4694. <dd>Mega</dd>
  4695. </dl>
  4696. <dl>
  4697. <dt>Attribute</dt>
  4698. <dd>Vaccine</dd>
  4699. </dl>
  4700. <dl>
  4701. <dt>Type</dt>
  4702. <dd>Ancient</dd>
  4703. </dl>
  4704. <dl>
  4705. <dt>DP</dt>
  4706. <dd>10000</dl>
  4707. <dl>
  4708. <dt>PlayCost</dt>
  4709. <dd>11</dd>
  4710. </dl>
  4711. <dl>
  4712. <dt>DigivolveCost1</dt>
  4713. <dd>3fromLv.5</dd>
  4714. </dl>
  4715. <dl>
  4716. <dt>DigivolveCost2</dt>
  4717. <dd>3fromLv.5</dd>
  4718. </dl>
  4719. </div>
  4720. </div>
  4721. <divclass="cardinfo_bottom">
  4722. <dl>
  4723. <dt>Effect</dt>
  4724. <dd>[On Deletion] You may play 1 [Rosemon] or up to 2 yellow level 3 Digimon cards from your hand without paying their memory costs.</dd>
  4725. </dl>
  4726. <dl>
  4727. <dt>Digivolveeffect</dt>
  4728. <dd>-</dd>
  4729. </dl>
  4730. <dl>
  4731. <dt>Securityeffect</dt>
  4732. <dd>-</dd>
  4733. </dl>
  4734. <dl>
  4735. <dt>Notes</dt>
  4736. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4737. </div>
  4738. </div>
  4739. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4740. </div>
  4741. </div>
  4742. </li>
  4743. <liclass="image_lists_itemdatapage-2">
  4744. <aclass="card_img">
  4745. <imgsrc="../images/cardlist/card/BT6-043.png"alt="BT6-043SkullMammothmon"></a>
  4746. <divclass="popup">
  4747. <divclass="card_detailcard_detail_yellow">
  4748. <divclass="card_detail_inner">
  4749. <ulclass="cardinfo_head">
  4750. <liclass="cardno">BT6-043</li>
  4751. <li>C</li>
  4752. <liclass="cardtype">Digimon</li>
  4753. <liclass="cardlv">Lv.6</li>
  4754. </ul>
  4755. <divclass="card_name">SkullMammothmon</div>
  4756. <divclass="cardinfo_top">
  4757. <divclass="card_img">
  4758. <imgsrc="../images/cardlist/card/BT6-043.png"alt="BT6-043SkullMammothmon"></div>
  4759. <divclass="cardinfo_top_body">
  4760. <dl>
  4761. <dt>Form</dt>
  4762. <dd>Mega</dd>
  4763. </dl>
  4764. <dl>
  4765. <dt>Attribute</dt>
  4766. <dd>Vaccine</dd>
  4767. </dl>
  4768. <dl>
  4769. <dt>Type</dt>
  4770. <dd>Undead</dd>
  4771. </dl>
  4772. <dl>
  4773. <dt>DP</dt>
  4774. <dd>11000</dl>
  4775. <dl>
  4776. <dt>PlayCost</dt>
  4777. <dd>12</dd>
  4778. </dl>
  4779. <dl>
  4780. <dt>DigivolveCost1</dt>
  4781. <dd>3fromLv.5</dd>
  4782. </dl>
  4783. <dl>
  4784. <dt>DigivolveCost2</dt>
  4785. <dd>-</dd>
  4786. </dl>
  4787. </div>
  4788. </div>
  4789. <divclass="cardinfo_bottom">
  4790. <dl>
  4791. <dt>Effect</dt>
  4792. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[All Turns] While you have 3 or fewer security cards, this Digimon gets +2000 DP.</dd>
  4793. </dl>
  4794. <dl>
  4795. <dt>Digivolveeffect</dt>
  4796. <dd>-</dd>
  4797. </dl>
  4798. <dl>
  4799. <dt>Securityeffect</dt>
  4800. <dd>-</dd>
  4801. </dl>
  4802. <dl>
  4803. <dt>Notes</dt>
  4804. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4805. </div>
  4806. </div>
  4807. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4808. </div>
  4809. </div>
  4810. </li>
  4811. <liclass="image_lists_itemdatapage-2">
  4812. <aclass="card_img">
  4813. <imgsrc="../images/cardlist/card/BT6-044.png"alt="BT6-044Dynasmon"></a>
  4814. <divclass="popup">
  4815. <divclass="card_detailcard_detail_yellow">
  4816. <divclass="card_detail_inner">
  4817. <ulclass="cardinfo_head">
  4818. <liclass="cardno">BT6-044</li>
  4819. <li>SR</li>
  4820. <liclass="cardtype">Digimon</li>
  4821. <liclass="cardlv">Lv.6</li>
  4822. </ul>
  4823. <divclass="card_name">Dynasmon</div>
  4824. <divclass="cardinfo_top">
  4825. <divclass="card_img">
  4826. <imgsrc="../images/cardlist/card/BT6-044.png"alt="BT6-044Dynasmon"></div>
  4827. <divclass="cardinfo_top_body">
  4828. <dl>
  4829. <dt>Form</dt>
  4830. <dd>Mega</dd>
  4831. </dl>
  4832. <dl>
  4833. <dt>Attribute</dt>
  4834. <dd>Data</dd>
  4835. </dl>
  4836. <dl>
  4837. <dt>Type</dt>
  4838. <dd>HolyWarrior/RoyalKnight</dd>
  4839. </dl>
  4840. <dl>
  4841. <dt>DP</dt>
  4842. <dd>12000</dl>
  4843. <dl>
  4844. <dt>PlayCost</dt>
  4845. <dd>12</dd>
  4846. </dl>
  4847. <dl>
  4848. <dt>DigivolveCost1</dt>
  4849. <dd>4fromLv.5</dd>
  4850. </dl>
  4851. <dl>
  4852. <dt>DigivolveCost2</dt>
  4853. <dd>-</dd>
  4854. </dl>
  4855. </div>
  4856. </div>
  4857. <divclass="cardinfo_bottom">
  4858. <dl>
  4859. <dt>Effect</dt>
  4860. <dd>[When Digivolving] You may trash the top card of your security stack to reveal the top 6 cards of your deck. Add up to 2 level 6 or lower Digimon cards among them to your hand. Trash the remaining cards.[All Turns][Once Per Turn] When a card is removed from your security stack, if you have 3 or fewer security cards, trigger <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  4861. </dl>
  4862. <dl>
  4863. <dt>Digivolveeffect</dt>
  4864. <dd>-</dd>
  4865. </dl>
  4866. <dl>
  4867. <dt>Securityeffect</dt>
  4868. <dd>-</dd>
  4869. </dl>
  4870. <dl>
  4871. <dt>Notes</dt>
  4872. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4873. </div>
  4874. </div>
  4875. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4876. </div>
  4877. </div>
  4878. </li>
  4879. <liclass="image_lists_itemdatapage-2">
  4880. <aclass="card_img">
  4881. <imgsrc="../images/cardlist/card/BT6-044_P1.png"alt="BT6-044Dynasmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4882. </a>
  4883. <divclass="popup">
  4884. <divclass="card_detailcard_detail_yellow">
  4885. <divclass="card_detail_inner">
  4886. <ulclass="cardinfo_head">
  4887. <liclass="cardno">BT6-044</li>
  4888. <li>SR</li>
  4889. <liclass="cardtype">Digimon</li>
  4890. <liclass="cardlv">Lv.6</li>
  4891. <liclass="cardtypecardParallel">AlternativeArt</li>
  4892. </ul>
  4893. <divclass="card_name">Dynasmon</div>
  4894. <divclass="cardinfo_top">
  4895. <divclass="card_img">
  4896. <imgsrc="../images/cardlist/card/BT6-044_P1.png"alt="BT6-044Dynasmon"></div>
  4897. <divclass="cardinfo_top_body">
  4898. <dl>
  4899. <dt>Form</dt>
  4900. <dd>Mega</dd>
  4901. </dl>
  4902. <dl>
  4903. <dt>Attribute</dt>
  4904. <dd>Data</dd>
  4905. </dl>
  4906. <dl>
  4907. <dt>Type</dt>
  4908. <dd>HolyWarrior/RoyalKnight</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>DP</dt>
  4912. <dd>12000</dl>
  4913. <dl>
  4914. <dt>PlayCost</dt>
  4915. <dd>12</dd>
  4916. </dl>
  4917. <dl>
  4918. <dt>DigivolveCost1</dt>
  4919. <dd>4fromLv.5</dd>
  4920. </dl>
  4921. <dl>
  4922. <dt>DigivolveCost2</dt>
  4923. <dd>-</dd>
  4924. </dl>
  4925. </div>
  4926. </div>
  4927. <divclass="cardinfo_bottom">
  4928. <dl>
  4929. <dt>Effect</dt>
  4930. <dd>[When Digivolving] You may trash the top card of your security stack to reveal the top 6 cards of your deck. Add up to 2 level 6 or lower Digimon cards among them to your hand. Trash the remaining cards.[All Turns][Once Per Turn] When a card is removed from your security stack, if you have 3 or fewer security cards, trigger <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  4931. </dl>
  4932. <dl>
  4933. <dt>Digivolveeffect</dt>
  4934. <dd>-</dd>
  4935. </dl>
  4936. <dl>
  4937. <dt>Securityeffect</dt>
  4938. <dd>-</dd>
  4939. </dl>
  4940. <dl>
  4941. <dt>Notes</dt>
  4942. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  4943. </div>
  4944. </div>
  4945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4946. </div>
  4947. </div>
  4948. </li>
  4949. <liclass="image_lists_itemdatapage-2">
  4950. <aclass="card_img">
  4951. <imgsrc="../images/cardlist/card/BT6-045.png"alt="BT6-045Bakomon"></a>
  4952. <divclass="popup">
  4953. <divclass="card_detailcard_detail_green">
  4954. <divclass="card_detail_inner">
  4955. <ulclass="cardinfo_head">
  4956. <liclass="cardno">BT6-045</li>
  4957. <li>C</li>
  4958. <liclass="cardtype">Digimon</li>
  4959. <liclass="cardlv">Lv.3</li>
  4960. </ul>
  4961. <divclass="card_name">Bakomon</div>
  4962. <divclass="cardinfo_top">
  4963. <divclass="card_img">
  4964. <imgsrc="../images/cardlist/card/BT6-045.png"alt="BT6-045Bakomon"></div>
  4965. <divclass="cardinfo_top_body">
  4966. <dl>
  4967. <dt>Form</dt>
  4968. <dd>Rookie</dd>
  4969. </dl>
  4970. <dl>
  4971. <dt>Attribute</dt>
  4972. <dd>Data</dd>
  4973. </dl>
  4974. <dl>
  4975. <dt>Type</dt>
  4976. <dd>Mutant</dd>
  4977. </dl>
  4978. <dl>
  4979. <dt>DP</dt>
  4980. <dd>2000</dl>
  4981. <dl>
  4982. <dt>PlayCost</dt>
  4983. <dd>3</dd>
  4984. </dl>
  4985. <dl>
  4986. <dt>DigivolveCost1</dt>
  4987. <dd>0fromLv.2</dd>
  4988. </dl>
  4989. <dl>
  4990. <dt>DigivolveCost2</dt>
  4991. <dd>-</dd>
  4992. </dl>
  4993. </div>
  4994. </div>
  4995. <divclass="cardinfo_bottom">
  4996. <dl>
  4997. <dt>Effect</dt>
  4998. <dd>-</dd>
  4999. </dl>
  5000. <dl>
  5001. <dt>Digivolveeffect</dt>
  5002. <dd>[When Attacking] If your opponent has 2 or more suspended Digimon, gain 1 memory.</dd>
  5003. </dl>
  5004. <dl>
  5005. <dt>Securityeffect</dt>
  5006. <dd>-</dd>
  5007. </dl>
  5008. <dl>
  5009. <dt>Notes</dt>
  5010. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5011. </div>
  5012. </div>
  5013. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5014. </div>
  5015. </div>
  5016. </li>
  5017. <liclass="image_lists_itemdatapage-2">
  5018. <aclass="card_img">
  5019. <imgsrc="../images/cardlist/card/BT6-046.png"alt="BT6-046Pomumon"></a>
  5020. <divclass="popup">
  5021. <divclass="card_detailcard_detail_green">
  5022. <divclass="card_detail_inner">
  5023. <ulclass="cardinfo_head">
  5024. <liclass="cardno">BT6-046</li>
  5025. <li>U</li>
  5026. <liclass="cardtype">Digimon</li>
  5027. <liclass="cardlv">Lv.3</li>
  5028. </ul>
  5029. <divclass="card_name">Pomumon</div>
  5030. <divclass="cardinfo_top">
  5031. <divclass="card_img">
  5032. <imgsrc="../images/cardlist/card/BT6-046.png"alt="BT6-046Pomumon"></div>
  5033. <divclass="cardinfo_top_body">
  5034. <dl>
  5035. <dt>Form</dt>
  5036. <dd>Rookie</dd>
  5037. </dl>
  5038. <dl>
  5039. <dt>Attribute</dt>
  5040. <dd>Data</dd>
  5041. </dl>
  5042. <dl>
  5043. <dt>Type</dt>
  5044. <dd>Vegetation</dd>
  5045. </dl>
  5046. <dl>
  5047. <dt>DP</dt>
  5048. <dd>5000</dl>
  5049. <dl>
  5050. <dt>PlayCost</dt>
  5051. <dd>3</dd>
  5052. </dl>
  5053. <dl>
  5054. <dt>DigivolveCost1</dt>
  5055. <dd>1fromLv.2</dd>
  5056. </dl>
  5057. <dl>
  5058. <dt>DigivolveCost2</dt>
  5059. <dd>-</dd>
  5060. </dl>
  5061. </div>
  5062. </div>
  5063. <divclass="cardinfo_bottom">
  5064. <dl>
  5065. <dt>Effect</dt>
  5066. <dd>-</dd>
  5067. </dl>
  5068. <dl>
  5069. <dt>Digivolveeffect</dt>
  5070. <dd>-</dd>
  5071. </dl>
  5072. <dl>
  5073. <dt>Securityeffect</dt>
  5074. <dd>-</dd>
  5075. </dl>
  5076. <dl>
  5077. <dt>Notes</dt>
  5078. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5079. </div>
  5080. </div>
  5081. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5082. </div>
  5083. </div>
  5084. </li>
  5085. <liclass="image_lists_itemdatapage-2">
  5086. <aclass="card_img">
  5087. <imgsrc="../images/cardlist/card/BT6-047.png"alt="BT6-047Morphomon"></a>
  5088. <divclass="popup">
  5089. <divclass="card_detailcard_detail_green">
  5090. <divclass="card_detail_inner">
  5091. <ulclass="cardinfo_head">
  5092. <liclass="cardno">BT6-047</li>
  5093. <li>R</li>
  5094. <liclass="cardtype">Digimon</li>
  5095. <liclass="cardlv">Lv.3</li>
  5096. </ul>
  5097. <divclass="card_name">Morphomon</div>
  5098. <divclass="cardinfo_top">
  5099. <divclass="card_img">
  5100. <imgsrc="../images/cardlist/card/BT6-047.png"alt="BT6-047Morphomon"></div>
  5101. <divclass="cardinfo_top_body">
  5102. <dl>
  5103. <dt>Form</dt>
  5104. <dd>Rookie</dd>
  5105. </dl>
  5106. <dl>
  5107. <dt>Attribute</dt>
  5108. <dd>Vaccine</dd>
  5109. </dl>
  5110. <dl>
  5111. <dt>Type</dt>
  5112. <dd>Insectoid</dd>
  5113. </dl>
  5114. <dl>
  5115. <dt>DP</dt>
  5116. <dd>1000</dl>
  5117. <dl>
  5118. <dt>PlayCost</dt>
  5119. <dd>3</dd>
  5120. </dl>
  5121. <dl>
  5122. <dt>DigivolveCost1</dt>
  5123. <dd>0fromLv.2</dd>
  5124. </dl>
  5125. <dl>
  5126. <dt>DigivolveCost2</dt>
  5127. <dd>-</dd>
  5128. </dl>
  5129. </div>
  5130. </div>
  5131. <divclass="cardinfo_bottom">
  5132. <dl>
  5133. <dt>Effect</dt>
  5134. <dd>[On Deletion] Reveal the top 5 cards of your deck. Add 1 [Menoa Bellucci] and 1 Digimon card with [Eosmon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5135. </dl>
  5136. <dl>
  5137. <dt>Digivolveeffect</dt>
  5138. <dd>-</dd>
  5139. </dl>
  5140. <dl>
  5141. <dt>Securityeffect</dt>
  5142. <dd>-</dd>
  5143. </dl>
  5144. <dl>
  5145. <dt>Notes</dt>
  5146. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5147. </div>
  5148. </div>
  5149. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5150. </div>
  5151. </div>
  5152. </li>
  5153. <liclass="image_lists_itemdatapage-2">
  5154. <aclass="card_img">
  5155. <imgsrc="../images/cardlist/card/BT6-047_P1.png"alt="BT6-047Morphomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5156. </a>
  5157. <divclass="popup">
  5158. <divclass="card_detailcard_detail_green">
  5159. <divclass="card_detail_inner">
  5160. <ulclass="cardinfo_head">
  5161. <liclass="cardno">BT6-047</li>
  5162. <li>R</li>
  5163. <liclass="cardtype">Digimon</li>
  5164. <liclass="cardlv">Lv.3</li>
  5165. <liclass="cardtypecardParallel">AlternativeArt</li>
  5166. </ul>
  5167. <divclass="card_name">Morphomon</div>
  5168. <divclass="cardinfo_top">
  5169. <divclass="card_img">
  5170. <imgsrc="../images/cardlist/card/BT6-047_P1.png"alt="BT6-047Morphomon"></div>
  5171. <divclass="cardinfo_top_body">
  5172. <dl>
  5173. <dt>Form</dt>
  5174. <dd>Rookie</dd>
  5175. </dl>
  5176. <dl>
  5177. <dt>Attribute</dt>
  5178. <dd>Vaccine</dd>
  5179. </dl>
  5180. <dl>
  5181. <dt>Type</dt>
  5182. <dd>Insectoid</dd>
  5183. </dl>
  5184. <dl>
  5185. <dt>DP</dt>
  5186. <dd>1000</dl>
  5187. <dl>
  5188. <dt>PlayCost</dt>
  5189. <dd>3</dd>
  5190. </dl>
  5191. <dl>
  5192. <dt>DigivolveCost1</dt>
  5193. <dd>0fromLv.2</dd>
  5194. </dl>
  5195. <dl>
  5196. <dt>DigivolveCost2</dt>
  5197. <dd>-</dd>
  5198. </dl>
  5199. </div>
  5200. </div>
  5201. <divclass="cardinfo_bottom">
  5202. <dl>
  5203. <dt>Effect</dt>
  5204. <dd>[On Deletion] Reveal the top 5 cards of your deck. Add 1 [Menoa Bellucci] and 1 Digimon card with [Eosmon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5205. </dl>
  5206. <dl>
  5207. <dt>Digivolveeffect</dt>
  5208. <dd>-</dd>
  5209. </dl>
  5210. <dl>
  5211. <dt>Securityeffect</dt>
  5212. <dd>-</dd>
  5213. </dl>
  5214. <dl>
  5215. <dt>Notes</dt>
  5216. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5217. </div>
  5218. </div>
  5219. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5220. </div>
  5221. </div>
  5222. </li>
  5223. <liclass="image_lists_itemdatapage-2">
  5224. <aclass="card_img">
  5225. <imgsrc="../images/cardlist/card/BT6-048.png"alt="BT6-048Parasaurmon"></a>
  5226. <divclass="popup">
  5227. <divclass="card_detailcard_detail_green">
  5228. <divclass="card_detail_inner">
  5229. <ulclass="cardinfo_head">
  5230. <liclass="cardno">BT6-048</li>
  5231. <li>C</li>
  5232. <liclass="cardtype">Digimon</li>
  5233. <liclass="cardlv">Lv.4</li>
  5234. </ul>
  5235. <divclass="card_name">Parasaurmon</div>
  5236. <divclass="cardinfo_top">
  5237. <divclass="card_img">
  5238. <imgsrc="../images/cardlist/card/BT6-048.png"alt="BT6-048Parasaurmon"></div>
  5239. <divclass="cardinfo_top_body">
  5240. <dl>
  5241. <dt>Form</dt>
  5242. <dd>Champion</dd>
  5243. </dl>
  5244. <dl>
  5245. <dt>Attribute</dt>
  5246. <dd>Virus</dd>
  5247. </dl>
  5248. <dl>
  5249. <dt>Type</dt>
  5250. <dd>Dinosaur</dd>
  5251. </dl>
  5252. <dl>
  5253. <dt>DP</dt>
  5254. <dd>5000</dl>
  5255. <dl>
  5256. <dt>PlayCost</dt>
  5257. <dd>3</dd>
  5258. </dl>
  5259. <dl>
  5260. <dt>DigivolveCost1</dt>
  5261. <dd>2fromLv.3</dd>
  5262. </dl>
  5263. <dl>
  5264. <dt>DigivolveCost2</dt>
  5265. <dd>-</dd>
  5266. </dl>
  5267. </div>
  5268. </div>
  5269. <divclass="cardinfo_bottom">
  5270. <dl>
  5271. <dt>Effect</dt>
  5272. <dd>-</dd>
  5273. </dl>
  5274. <dl>
  5275. <dt>Digivolveeffect</dt>
  5276. <dd>-</dd>
  5277. </dl>
  5278. <dl>
  5279. <dt>Securityeffect</dt>
  5280. <dd>-</dd>
  5281. </dl>
  5282. <dl>
  5283. <dt>Notes</dt>
  5284. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5285. </div>
  5286. </div>
  5287. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5288. </div>
  5289. </div>
  5290. </li>
  5291. <liclass="image_lists_itemdatapage-2">
  5292. <aclass="card_img">
  5293. <imgsrc="../images/cardlist/card/BT6-048_P1.png"alt="BT6-048Parasaurmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5294. </a>
  5295. <divclass="popup">
  5296. <divclass="card_detailcard_detail_green">
  5297. <divclass="card_detail_inner">
  5298. <ulclass="cardinfo_head">
  5299. <liclass="cardno">BT6-048</li>
  5300. <li>C</li>
  5301. <liclass="cardtype">Digimon</li>
  5302. <liclass="cardlv">Lv.4</li>
  5303. <liclass="cardtypecardParallel">AlternativeArt</li>
  5304. </ul>
  5305. <divclass="card_name">Parasaurmon</div>
  5306. <divclass="cardinfo_top">
  5307. <divclass="card_img">
  5308. <imgsrc="../images/cardlist/card/BT6-048_P1.png"alt="BT6-048Parasaurmon"></div>
  5309. <divclass="cardinfo_top_body">
  5310. <dl>
  5311. <dt>Form</dt>
  5312. <dd>Champion</dd>
  5313. </dl>
  5314. <dl>
  5315. <dt>Attribute</dt>
  5316. <dd>Virus</dd>
  5317. </dl>
  5318. <dl>
  5319. <dt>Type</dt>
  5320. <dd>Dinosaur</dd>
  5321. </dl>
  5322. <dl>
  5323. <dt>DP</dt>
  5324. <dd>5000</dl>
  5325. <dl>
  5326. <dt>PlayCost</dt>
  5327. <dd>3</dd>
  5328. </dl>
  5329. <dl>
  5330. <dt>DigivolveCost1</dt>
  5331. <dd>2fromLv.3</dd>
  5332. </dl>
  5333. <dl>
  5334. <dt>DigivolveCost2</dt>
  5335. <dd>-</dd>
  5336. </dl>
  5337. </div>
  5338. </div>
  5339. <divclass="cardinfo_bottom">
  5340. <dl>
  5341. <dt>Effect</dt>
  5342. <dd>-</dd>
  5343. </dl>
  5344. <dl>
  5345. <dt>Digivolveeffect</dt>
  5346. <dd>-</dd>
  5347. </dl>
  5348. <dl>
  5349. <dt>Securityeffect</dt>
  5350. <dd>-</dd>
  5351. </dl>
  5352. <dl>
  5353. <dt>Notes</dt>
  5354. <dd>2022RegionalsParticipationCardSet</dd></dl>
  5355. </div>
  5356. </div>
  5357. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5358. </div>
  5359. </div>
  5360. </li>
  5361. <liclass="image_lists_itemdatapage-2">
  5362. <aclass="card_img">
  5363. <imgsrc="../images/cardlist/card/BT6-048_P2.png"alt="BT6-048Parasaurmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5364. </a>
  5365. <divclass="popup">
  5366. <divclass="card_detailcard_detail_green">
  5367. <divclass="card_detail_inner">
  5368. <ulclass="cardinfo_head">
  5369. <liclass="cardno">BT6-048</li>
  5370. <li>C</li>
  5371. <liclass="cardtype">Digimon</li>
  5372. <liclass="cardlv">Lv.4</li>
  5373. <liclass="cardtypecardParallel">AlternativeArt</li>
  5374. </ul>
  5375. <divclass="card_name">Parasaurmon</div>
  5376. <divclass="cardinfo_top">
  5377. <divclass="card_img">
  5378. <imgsrc="../images/cardlist/card/BT6-048_P2.png"alt="BT6-048Parasaurmon"></div>
  5379. <divclass="cardinfo_top_body">
  5380. <dl>
  5381. <dt>Form</dt>
  5382. <dd>Champion</dd>
  5383. </dl>
  5384. <dl>
  5385. <dt>Attribute</dt>
  5386. <dd>Virus</dd>
  5387. </dl>
  5388. <dl>
  5389. <dt>Type</dt>
  5390. <dd>Dinosaur</dd>
  5391. </dl>
  5392. <dl>
  5393. <dt>DP</dt>
  5394. <dd>5000</dl>
  5395. <dl>
  5396. <dt>PlayCost</dt>
  5397. <dd>3</dd>
  5398. </dl>
  5399. <dl>
  5400. <dt>DigivolveCost1</dt>
  5401. <dd>2fromLv.3</dd>
  5402. </dl>
  5403. <dl>
  5404. <dt>DigivolveCost2</dt>
  5405. <dd>-</dd>
  5406. </dl>
  5407. </div>
  5408. </div>
  5409. <divclass="cardinfo_bottom">
  5410. <dl>
  5411. <dt>Effect</dt>
  5412. <dd>-</dd>
  5413. </dl>
  5414. <dl>
  5415. <dt>Digivolveeffect</dt>
  5416. <dd>-</dd>
  5417. </dl>
  5418. <dl>
  5419. <dt>Securityeffect</dt>
  5420. <dd>-</dd>
  5421. </dl>
  5422. <dl>
  5423. <dt>Notes</dt>
  5424. <dd>2022RegionalsFinalistSet</dd></dl>
  5425. </div>
  5426. </div>
  5427. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5428. </div>
  5429. </div>
  5430. </li>
  5431. <liclass="image_lists_itemdatapage-2">
  5432. <aclass="card_img">
  5433. <imgsrc="../images/cardlist/card/BT6-048_P3.png"alt="BT6-048Parasaurmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5434. </a>
  5435. <divclass="popup">
  5436. <divclass="card_detailcard_detail_green">
  5437. <divclass="card_detail_inner">
  5438. <ulclass="cardinfo_head">
  5439. <liclass="cardno">BT6-048</li>
  5440. <li>C</li>
  5441. <liclass="cardtype">Digimon</li>
  5442. <liclass="cardlv">Lv.4</li>
  5443. <liclass="cardtypecardParallel">AlternativeArt</li>
  5444. </ul>
  5445. <divclass="card_name">Parasaurmon</div>
  5446. <divclass="cardinfo_top">
  5447. <divclass="card_img">
  5448. <imgsrc="../images/cardlist/card/BT6-048_P3.png"alt="BT6-048Parasaurmon"></div>
  5449. <divclass="cardinfo_top_body">
  5450. <dl>
  5451. <dt>Form</dt>
  5452. <dd>Champion</dd>
  5453. </dl>
  5454. <dl>
  5455. <dt>Attribute</dt>
  5456. <dd>Virus</dd>
  5457. </dl>
  5458. <dl>
  5459. <dt>Type</dt>
  5460. <dd>Dinosaur</dd>
  5461. </dl>
  5462. <dl>
  5463. <dt>DP</dt>
  5464. <dd>5000</dl>
  5465. <dl>
  5466. <dt>PlayCost</dt>
  5467. <dd>3</dd>
  5468. </dl>
  5469. <dl>
  5470. <dt>DigivolveCost1</dt>
  5471. <dd>2fromLv.3</dd>
  5472. </dl>
  5473. <dl>
  5474. <dt>DigivolveCost2</dt>
  5475. <dd>-</dd>
  5476. </dl>
  5477. </div>
  5478. </div>
  5479. <divclass="cardinfo_bottom">
  5480. <dl>
  5481. <dt>Effect</dt>
  5482. <dd>-</dd>
  5483. </dl>
  5484. <dl>
  5485. <dt>Digivolveeffect</dt>
  5486. <dd>-</dd>
  5487. </dl>
  5488. <dl>
  5489. <dt>Securityeffect</dt>
  5490. <dd>-</dd>
  5491. </dl>
  5492. <dl>
  5493. <dt>Notes</dt>
  5494. <dd>2022RegionalsChampionCardSet</dd></dl>
  5495. </div>
  5496. </div>
  5497. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5498. </div>
  5499. </div>
  5500. </li>
  5501. <liclass="image_lists_itemdatapage-3">
  5502. <aclass="card_img">
  5503. <imgsrc="../images/cardlist/card/BT6-049.png"alt="BT6-049Arbormon"></a>
  5504. <divclass="popup">
  5505. <divclass="card_detailcard_detail_green">
  5506. <divclass="card_detail_inner">
  5507. <ulclass="cardinfo_head">
  5508. <liclass="cardno">BT6-049</li>
  5509. <li>U</li>
  5510. <liclass="cardtype">Digimon</li>
  5511. <liclass="cardlv">Lv.4</li>
  5512. </ul>
  5513. <divclass="card_name">Arbormon</div>
  5514. <divclass="cardinfo_top">
  5515. <divclass="card_img">
  5516. <imgsrc="../images/cardlist/card/BT6-049.png"alt="BT6-049Arbormon"></div>
  5517. <divclass="cardinfo_top_body">
  5518. <dl>
  5519. <dt>Form</dt>
  5520. <dd>Hybrid</dd>
  5521. </dl>
  5522. <dl>
  5523. <dt>Attribute</dt>
  5524. <dd>Variable</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>Type</dt>
  5528. <dd>Cyborg</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>DP</dt>
  5532. <dd>5000</dl>
  5533. <dl>
  5534. <dt>PlayCost</dt>
  5535. <dd>5</dd>
  5536. </dl>
  5537. <dl>
  5538. <dt>DigivolveCost1</dt>
  5539. <dd>2fromLv.3</dd>
  5540. </dl>
  5541. <dl>
  5542. <dt>DigivolveCost2</dt>
  5543. <dd>-</dd>
  5544. </dl>
  5545. </div>
  5546. </div>
  5547. <divclass="cardinfo_bottom">
  5548. <dl>
  5549. <dt>Effect</dt>
  5550. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 Digimon.</dd>
  5551. </dl>
  5552. <dl>
  5553. <dt>Digivolveeffect</dt>
  5554. <dd>-</dd>
  5555. </dl>
  5556. <dl>
  5557. <dt>Securityeffect</dt>
  5558. <dd>-</dd>
  5559. </dl>
  5560. <dl>
  5561. <dt>Notes</dt>
  5562. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5563. </div>
  5564. </div>
  5565. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5566. </div>
  5567. </div>
  5568. </li>
  5569. <liclass="image_lists_itemdatapage-3">
  5570. <aclass="card_img">
  5571. <imgsrc="../images/cardlist/card/BT6-050.png"alt="BT6-050Petaldramon"></a>
  5572. <divclass="popup">
  5573. <divclass="card_detailcard_detail_green">
  5574. <divclass="card_detail_inner">
  5575. <ulclass="cardinfo_head">
  5576. <liclass="cardno">BT6-050</li>
  5577. <li>C</li>
  5578. <liclass="cardtype">Digimon</li>
  5579. <liclass="cardlv">Lv.4</li>
  5580. </ul>
  5581. <divclass="card_name">Petaldramon</div>
  5582. <divclass="cardinfo_top">
  5583. <divclass="card_img">
  5584. <imgsrc="../images/cardlist/card/BT6-050.png"alt="BT6-050Petaldramon"></div>
  5585. <divclass="cardinfo_top_body">
  5586. <dl>
  5587. <dt>Form</dt>
  5588. <dd>Hybrid</dd>
  5589. </dl>
  5590. <dl>
  5591. <dt>Attribute</dt>
  5592. <dd>Variable</dd>
  5593. </dl>
  5594. <dl>
  5595. <dt>Type</dt>
  5596. <dd>Vegetation</dd>
  5597. </dl>
  5598. <dl>
  5599. <dt>DP</dt>
  5600. <dd>7000</dl>
  5601. <dl>
  5602. <dt>PlayCost</dt>
  5603. <dd>6</dd>
  5604. </dl>
  5605. <dl>
  5606. <dt>DigivolveCost1</dt>
  5607. <dd>3fromLv.3</dd>
  5608. </dl>
  5609. <dl>
  5610. <dt>DigivolveCost2</dt>
  5611. <dd>-</dd>
  5612. </dl>
  5613. </div>
  5614. </div>
  5615. <divclass="cardinfo_bottom">
  5616. <dl>
  5617. <dt>Effect</dt>
  5618. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 Digimon.<Piercing> (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  5619. </dl>
  5620. <dl>
  5621. <dt>Digivolveeffect</dt>
  5622. <dd>-</dd>
  5623. </dl>
  5624. <dl>
  5625. <dt>Securityeffect</dt>
  5626. <dd>-</dd>
  5627. </dl>
  5628. <dl>
  5629. <dt>Notes</dt>
  5630. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5631. </div>
  5632. </div>
  5633. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5634. </div>
  5635. </div>
  5636. </li>
  5637. <liclass="image_lists_itemdatapage-3">
  5638. <aclass="card_img">
  5639. <imgsrc="../images/cardlist/card/BT6-051.png"alt="BT6-051Toropiamon"></a>
  5640. <divclass="popup">
  5641. <divclass="card_detailcard_detail_green">
  5642. <divclass="card_detail_inner">
  5643. <ulclass="cardinfo_head">
  5644. <liclass="cardno">BT6-051</li>
  5645. <li>U</li>
  5646. <liclass="cardtype">Digimon</li>
  5647. <liclass="cardlv">Lv.5</li>
  5648. </ul>
  5649. <divclass="card_name">Toropiamon</div>
  5650. <divclass="cardinfo_top">
  5651. <divclass="card_img">
  5652. <imgsrc="../images/cardlist/card/BT6-051.png"alt="BT6-051Toropiamon"></div>
  5653. <divclass="cardinfo_top_body">
  5654. <dl>
  5655. <dt>Form</dt>
  5656. <dd>Ultimate</dd>
  5657. </dl>
  5658. <dl>
  5659. <dt>Attribute</dt>
  5660. <dd>Virus</dd>
  5661. </dl>
  5662. <dl>
  5663. <dt>Type</dt>
  5664. <dd>Vegetation</dd>
  5665. </dl>
  5666. <dl>
  5667. <dt>DP</dt>
  5668. <dd>6000</dl>
  5669. <dl>
  5670. <dt>PlayCost</dt>
  5671. <dd>5</dd>
  5672. </dl>
  5673. <dl>
  5674. <dt>DigivolveCost1</dt>
  5675. <dd>3fromLv.4</dd>
  5676. </dl>
  5677. <dl>
  5678. <dt>DigivolveCost2</dt>
  5679. <dd>-</dd>
  5680. </dl>
  5681. </div>
  5682. </div>
  5683. <divclass="cardinfo_bottom">
  5684. <dl>
  5685. <dt>Effect</dt>
  5686. <dd>-</dd>
  5687. </dl>
  5688. <dl>
  5689. <dt>Digivolveeffect</dt>
  5690. <dd>[When Attacking] Suspend 1 of your opponent's Digimon with 5000 DP or less.</dd>
  5691. </dl>
  5692. <dl>
  5693. <dt>Securityeffect</dt>
  5694. <dd>-</dd>
  5695. </dl>
  5696. <dl>
  5697. <dt>Notes</dt>
  5698. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5699. </div>
  5700. </div>
  5701. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5702. </div>
  5703. </div>
  5704. </li>
  5705. <liclass="image_lists_itemdatapage-3">
  5706. <aclass="card_img">
  5707. <imgsrc="../images/cardlist/card/BT6-052.png"alt="BT6-052Entmon"></a>
  5708. <divclass="popup">
  5709. <divclass="card_detailcard_detail_green">
  5710. <divclass="card_detail_inner">
  5711. <ulclass="cardinfo_head">
  5712. <liclass="cardno">BT6-052</li>
  5713. <li>R</li>
  5714. <liclass="cardtype">Digimon</li>
  5715. <liclass="cardlv">Lv.5</li>
  5716. </ul>
  5717. <divclass="card_name">Entmon</div>
  5718. <divclass="cardinfo_top">
  5719. <divclass="card_img">
  5720. <imgsrc="../images/cardlist/card/BT6-052.png"alt="BT6-052Entmon"></div>
  5721. <divclass="cardinfo_top_body">
  5722. <dl>
  5723. <dt>Form</dt>
  5724. <dd>Ultimate</dd>
  5725. </dl>
  5726. <dl>
  5727. <dt>Attribute</dt>
  5728. <dd>Virus</dd>
  5729. </dl>
  5730. <dl>
  5731. <dt>Type</dt>
  5732. <dd>Vegetation</dd>
  5733. </dl>
  5734. <dl>
  5735. <dt>DP</dt>
  5736. <dd>8000</dl>
  5737. <dl>
  5738. <dt>PlayCost</dt>
  5739. <dd>8</dd>
  5740. </dl>
  5741. <dl>
  5742. <dt>DigivolveCost1</dt>
  5743. <dd>3fromLv.4</dd>
  5744. </dl>
  5745. <dl>
  5746. <dt>DigivolveCost2</dt>
  5747. <dd>-</dd>
  5748. </dl>
  5749. </div>
  5750. </div>
  5751. <divclass="cardinfo_bottom">
  5752. <dl>
  5753. <dt>Effect</dt>
  5754. <dd>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle and survives, unsuspend it.</dd>
  5755. </dl>
  5756. <dl>
  5757. <dt>Digivolveeffect</dt>
  5758. <dd>-</dd>
  5759. </dl>
  5760. <dl>
  5761. <dt>Securityeffect</dt>
  5762. <dd>-</dd>
  5763. </dl>
  5764. <dl>
  5765. <dt>Notes</dt>
  5766. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5767. </div>
  5768. </div>
  5769. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5770. </div>
  5771. </div>
  5772. </li>
  5773. <liclass="image_lists_itemdatapage-3">
  5774. <aclass="card_img">
  5775. <imgsrc="../images/cardlist/card/BT6-053.png"alt="BT6-053Eldradimon"></a>
  5776. <divclass="popup">
  5777. <divclass="card_detailcard_detail_green">
  5778. <divclass="card_detail_inner">
  5779. <ulclass="cardinfo_head">
  5780. <liclass="cardno">BT6-053</li>
  5781. <li>C</li>
  5782. <liclass="cardtype">Digimon</li>
  5783. <liclass="cardlv">Lv.6</li>
  5784. </ul>
  5785. <divclass="card_name">Eldradimon</div>
  5786. <divclass="cardinfo_top">
  5787. <divclass="card_img">
  5788. <imgsrc="../images/cardlist/card/BT6-053.png"alt="BT6-053Eldradimon"></div>
  5789. <divclass="cardinfo_top_body">
  5790. <dl>
  5791. <dt>Form</dt>
  5792. <dd>Mega</dd>
  5793. </dl>
  5794. <dl>
  5795. <dt>Attribute</dt>
  5796. <dd>Data</dd>
  5797. </dl>
  5798. <dl>
  5799. <dt>Type</dt>
  5800. <dd>Mutant</dd>
  5801. </dl>
  5802. <dl>
  5803. <dt>DP</dt>
  5804. <dd>12000</dl>
  5805. <dl>
  5806. <dt>PlayCost</dt>
  5807. <dd>12</dd>
  5808. </dl>
  5809. <dl>
  5810. <dt>DigivolveCost1</dt>
  5811. <dd>4fromLv.5</dd>
  5812. </dl>
  5813. <dl>
  5814. <dt>DigivolveCost2</dt>
  5815. <dd>-</dd>
  5816. </dl>
  5817. </div>
  5818. </div>
  5819. <divclass="cardinfo_bottom">
  5820. <dl>
  5821. <dt>Effect</dt>
  5822. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[Opponent's Turn] Your opponent's effects can't reduce this Digimon's DP.</dd>
  5823. </dl>
  5824. <dl>
  5825. <dt>Digivolveeffect</dt>
  5826. <dd>-</dd>
  5827. </dl>
  5828. <dl>
  5829. <dt>Securityeffect</dt>
  5830. <dd>-</dd>
  5831. </dl>
  5832. <dl>
  5833. <dt>Notes</dt>
  5834. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5835. </div>
  5836. </div>
  5837. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5838. </div>
  5839. </div>
  5840. </li>
  5841. <liclass="image_lists_itemdatapage-3">
  5842. <aclass="card_img">
  5843. <imgsrc="../images/cardlist/card/BT6-054.png"alt="BT6-054AncientTroymon"></a>
  5844. <divclass="popup">
  5845. <divclass="card_detailcard_detail_green">
  5846. <divclass="card_detail_inner">
  5847. <ulclass="cardinfo_head">
  5848. <liclass="cardno">BT6-054</li>
  5849. <li>R</li>
  5850. <liclass="cardtype">Digimon</li>
  5851. <liclass="cardlv">Lv.6</li>
  5852. </ul>
  5853. <divclass="card_name">AncientTroymon</div>
  5854. <divclass="cardinfo_top">
  5855. <divclass="card_img">
  5856. <imgsrc="../images/cardlist/card/BT6-054.png"alt="BT6-054AncientTroymon"></div>
  5857. <divclass="cardinfo_top_body">
  5858. <dl>
  5859. <dt>Form</dt>
  5860. <dd>Mega</dd>
  5861. </dl>
  5862. <dl>
  5863. <dt>Attribute</dt>
  5864. <dd>Data</dd>
  5865. </dl>
  5866. <dl>
  5867. <dt>Type</dt>
  5868. <dd>AncientPlant/TenWarriors</dd>
  5869. </dl>
  5870. <dl>
  5871. <dt>DP</dt>
  5872. <dd>13000</dl>
  5873. <dl>
  5874. <dt>PlayCost</dt>
  5875. <dd>13</dd>
  5876. </dl>
  5877. <dl>
  5878. <dt>DigivolveCost1</dt>
  5879. <dd>5fromLv.5</dd>
  5880. </dl>
  5881. <dl>
  5882. <dt>DigivolveCost2</dt>
  5883. <dd>-</dd>
  5884. </dl>
  5885. </div>
  5886. </div>
  5887. <divclass="cardinfo_bottom">
  5888. <dl>
  5889. <dt>Effect</dt>
  5890. <dd>[Opponent's Turn] When an opponent's Digimon attacks, suspend up to 2 of their Digimon without <Blocker>.[On Deletion] You may play 1 green level 4 or lower Digimon card with Hybrid in its form from your hand without paying its memory cost. </dd>
  5891. </dl>
  5892. <dl>
  5893. <dt>Digivolveeffect</dt>
  5894. <dd>-</dd>
  5895. </dl>
  5896. <dl>
  5897. <dt>Securityeffect</dt>
  5898. <dd>-</dd>
  5899. </dl>
  5900. <dl>
  5901. <dt>Notes</dt>
  5902. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5903. </div>
  5904. </div>
  5905. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5906. </div>
  5907. </div>
  5908. </li>
  5909. <liclass="image_lists_itemdatapage-3">
  5910. <aclass="card_img">
  5911. <imgsrc="../images/cardlist/card/BT6-055.png"alt="BT6-055Junkmon"></a>
  5912. <divclass="popup">
  5913. <divclass="card_detailcard_detail_black">
  5914. <divclass="card_detail_inner">
  5915. <ulclass="cardinfo_head">
  5916. <liclass="cardno">BT6-055</li>
  5917. <li>U</li>
  5918. <liclass="cardtype">Digimon</li>
  5919. <liclass="cardlv">Lv.3</li>
  5920. </ul>
  5921. <divclass="card_name">Junkmon</div>
  5922. <divclass="cardinfo_top">
  5923. <divclass="card_img">
  5924. <imgsrc="../images/cardlist/card/BT6-055.png"alt="BT6-055Junkmon"></div>
  5925. <divclass="cardinfo_top_body">
  5926. <dl>
  5927. <dt>Form</dt>
  5928. <dd>Rookie</dd>
  5929. </dl>
  5930. <dl>
  5931. <dt>Attribute</dt>
  5932. <dd>Virus</dd>
  5933. </dl>
  5934. <dl>
  5935. <dt>Type</dt>
  5936. <dd>Puppet</dd>
  5937. </dl>
  5938. <dl>
  5939. <dt>DP</dt>
  5940. <dd>2000</dl>
  5941. <dl>
  5942. <dt>PlayCost</dt>
  5943. <dd>3</dd>
  5944. </dl>
  5945. <dl>
  5946. <dt>DigivolveCost1</dt>
  5947. <dd>0fromLv.2</dd>
  5948. </dl>
  5949. <dl>
  5950. <dt>DigivolveCost2</dt>
  5951. <dd>-</dd>
  5952. </dl>
  5953. </div>
  5954. </div>
  5955. <divclass="cardinfo_bottom">
  5956. <dl>
  5957. <dt>Effect</dt>
  5958. <dd>-</dd>
  5959. </dl>
  5960. <dl>
  5961. <dt>Digivolveeffect</dt>
  5962. <dd>[On Deletion] Gain 1 memory.</dd>
  5963. </dl>
  5964. <dl>
  5965. <dt>Securityeffect</dt>
  5966. <dd>-</dd>
  5967. </dl>
  5968. <dl>
  5969. <dt>Notes</dt>
  5970. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  5971. </div>
  5972. </div>
  5973. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5974. </div>
  5975. </div>
  5976. </li>
  5977. <liclass="image_lists_itemdatapage-3">
  5978. <aclass="card_img">
  5979. <imgsrc="../images/cardlist/card/BT6-056.png"alt="BT6-056Chikurimon"></a>
  5980. <divclass="popup">
  5981. <divclass="card_detailcard_detail_black">
  5982. <divclass="card_detail_inner">
  5983. <ulclass="cardinfo_head">
  5984. <liclass="cardno">BT6-056</li>
  5985. <li>C</li>
  5986. <liclass="cardtype">Digimon</li>
  5987. <liclass="cardlv">Lv.3</li>
  5988. </ul>
  5989. <divclass="card_name">Chikurimon</div>
  5990. <divclass="cardinfo_top">
  5991. <divclass="card_img">
  5992. <imgsrc="../images/cardlist/card/BT6-056.png"alt="BT6-056Chikurimon"></div>
  5993. <divclass="cardinfo_top_body">
  5994. <dl>
  5995. <dt>Form</dt>
  5996. <dd>Rookie</dd>
  5997. </dl>
  5998. <dl>
  5999. <dt>Attribute</dt>
  6000. <dd>Virus</dd>
  6001. </dl>
  6002. <dl>
  6003. <dt>Type</dt>
  6004. <dd>Mine</dd>
  6005. </dl>
  6006. <dl>
  6007. <dt>DP</dt>
  6008. <dd>1000</dl>
  6009. <dl>
  6010. <dt>PlayCost</dt>
  6011. <dd>3</dd>
  6012. </dl>
  6013. <dl>
  6014. <dt>DigivolveCost1</dt>
  6015. <dd>0fromLv.2</dd>
  6016. </dl>
  6017. <dl>
  6018. <dt>DigivolveCost2</dt>
  6019. <dd>-</dd>
  6020. </dl>
  6021. </div>
  6022. </div>
  6023. <divclass="cardinfo_bottom">
  6024. <dl>
  6025. <dt>Effect</dt>
  6026. <dd>[Security] At the end of the battle, trigger <De-Digivolve 1> on 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  6027. </dl>
  6028. <dl>
  6029. <dt>Digivolveeffect</dt>
  6030. <dd>-</dd>
  6031. </dl>
  6032. <dl>
  6033. <dt>Securityeffect</dt>
  6034. <dd>-</dd>
  6035. </dl>
  6036. <dl>
  6037. <dt>Notes</dt>
  6038. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6039. </div>
  6040. </div>
  6041. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6042. </div>
  6043. </div>
  6044. </li>
  6045. <liclass="image_lists_itemdatapage-3">
  6046. <aclass="card_img">
  6047. <imgsrc="../images/cardlist/card/BT6-056_P1.png"alt="BT6-056Chikurimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6048. </a>
  6049. <divclass="popup">
  6050. <divclass="card_detailcard_detail_black">
  6051. <divclass="card_detail_inner">
  6052. <ulclass="cardinfo_head">
  6053. <liclass="cardno">BT6-056</li>
  6054. <li>C</li>
  6055. <liclass="cardtype">Digimon</li>
  6056. <liclass="cardlv">Lv.3</li>
  6057. <liclass="cardtypecardParallel">AlternativeArt</li>
  6058. </ul>
  6059. <divclass="card_name">Chikurimon</div>
  6060. <divclass="cardinfo_top">
  6061. <divclass="card_img">
  6062. <imgsrc="../images/cardlist/card/BT6-056_P1.png"alt="BT6-056Chikurimon"></div>
  6063. <divclass="cardinfo_top_body">
  6064. <dl>
  6065. <dt>Form</dt>
  6066. <dd>Rookie</dd>
  6067. </dl>
  6068. <dl>
  6069. <dt>Attribute</dt>
  6070. <dd>Virus</dd>
  6071. </dl>
  6072. <dl>
  6073. <dt>Type</dt>
  6074. <dd>Mine</dd>
  6075. </dl>
  6076. <dl>
  6077. <dt>DP</dt>
  6078. <dd>1000</dl>
  6079. <dl>
  6080. <dt>PlayCost</dt>
  6081. <dd>3</dd>
  6082. </dl>
  6083. <dl>
  6084. <dt>DigivolveCost1</dt>
  6085. <dd>0fromLv.2</dd>
  6086. </dl>
  6087. <dl>
  6088. <dt>DigivolveCost2</dt>
  6089. <dd>-</dd>
  6090. </dl>
  6091. </div>
  6092. </div>
  6093. <divclass="cardinfo_bottom">
  6094. <dl>
  6095. <dt>Effect</dt>
  6096. <dd>[Security] At the end of the battle, trigger <De-Digivolve 1> on 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  6097. </dl>
  6098. <dl>
  6099. <dt>Digivolveeffect</dt>
  6100. <dd>-</dd>
  6101. </dl>
  6102. <dl>
  6103. <dt>Securityeffect</dt>
  6104. <dd>-</dd>
  6105. </dl>
  6106. <dl>
  6107. <dt>Notes</dt>
  6108. <dd>2021VaultSet</dd></dl>
  6109. </div>
  6110. </div>
  6111. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6112. </div>
  6113. </div>
  6114. </li>
  6115. <liclass="image_lists_itemdatapage-3">
  6116. <aclass="card_img">
  6117. <imgsrc="../images/cardlist/card/BT6-057.png"alt="BT6-057ToyAgumon"></a>
  6118. <divclass="popup">
  6119. <divclass="card_detailcard_detail_black">
  6120. <divclass="card_detail_inner">
  6121. <ulclass="cardinfo_head">
  6122. <liclass="cardno">BT6-057</li>
  6123. <li>C</li>
  6124. <liclass="cardtype">Digimon</li>
  6125. <liclass="cardlv">Lv.3</li>
  6126. </ul>
  6127. <divclass="card_name">ToyAgumon</div>
  6128. <divclass="cardinfo_top">
  6129. <divclass="card_img">
  6130. <imgsrc="../images/cardlist/card/BT6-057.png"alt="BT6-057ToyAgumon"></div>
  6131. <divclass="cardinfo_top_body">
  6132. <dl>
  6133. <dt>Form</dt>
  6134. <dd>Rookie</dd>
  6135. </dl>
  6136. <dl>
  6137. <dt>Attribute</dt>
  6138. <dd>Virus</dd>
  6139. </dl>
  6140. <dl>
  6141. <dt>Type</dt>
  6142. <dd>Puppet</dd>
  6143. </dl>
  6144. <dl>
  6145. <dt>DP</dt>
  6146. <dd>2000</dl>
  6147. <dl>
  6148. <dt>PlayCost</dt>
  6149. <dd>3</dd>
  6150. </dl>
  6151. <dl>
  6152. <dt>DigivolveCost1</dt>
  6153. <dd>0fromLv.2</dd>
  6154. </dl>
  6155. <dl>
  6156. <dt>DigivolveCost2</dt>
  6157. <dd>-</dd>
  6158. </dl>
  6159. </div>
  6160. </div>
  6161. <divclass="cardinfo_bottom">
  6162. <dl>
  6163. <dt>Effect</dt>
  6164. <dd>-</dd>
  6165. </dl>
  6166. <dl>
  6167. <dt>Digivolveeffect</dt>
  6168. <dd>[All Turns] While this Digimon has <Blocker>, it gets +1000 DP.</dd>
  6169. </dl>
  6170. <dl>
  6171. <dt>Securityeffect</dt>
  6172. <dd>-</dd>
  6173. </dl>
  6174. <dl>
  6175. <dt>Notes</dt>
  6176. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6177. </div>
  6178. </div>
  6179. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6180. </div>
  6181. </div>
  6182. </li>
  6183. <liclass="image_lists_itemdatapage-3">
  6184. <aclass="card_img">
  6185. <imgsrc="../images/cardlist/card/BT6-058.png"alt="BT6-058Nanimon"></a>
  6186. <divclass="popup">
  6187. <divclass="card_detailcard_detail_black">
  6188. <divclass="card_detail_inner">
  6189. <ulclass="cardinfo_head">
  6190. <liclass="cardno">BT6-058</li>
  6191. <li>C</li>
  6192. <liclass="cardtype">Digimon</li>
  6193. <liclass="cardlv">Lv.4</li>
  6194. </ul>
  6195. <divclass="card_name">Nanimon</div>
  6196. <divclass="cardinfo_top">
  6197. <divclass="card_img">
  6198. <imgsrc="../images/cardlist/card/BT6-058.png"alt="BT6-058Nanimon"></div>
  6199. <divclass="cardinfo_top_body">
  6200. <dl>
  6201. <dt>Form</dt>
  6202. <dd>Champion</dd>
  6203. </dl>
  6204. <dl>
  6205. <dt>Attribute</dt>
  6206. <dd>Virus</dd>
  6207. </dl>
  6208. <dl>
  6209. <dt>Type</dt>
  6210. <dd>Invader</dd>
  6211. </dl>
  6212. <dl>
  6213. <dt>DP</dt>
  6214. <dd>2000</dl>
  6215. <dl>
  6216. <dt>PlayCost</dt>
  6217. <dd>3</dd>
  6218. </dl>
  6219. <dl>
  6220. <dt>DigivolveCost1</dt>
  6221. <dd>2fromLv.3</dd>
  6222. </dl>
  6223. <dl>
  6224. <dt>DigivolveCost2</dt>
  6225. <dd>-</dd>
  6226. </dl>
  6227. </div>
  6228. </div>
  6229. <divclass="cardinfo_bottom">
  6230. <dl>
  6231. <dt>Effect</dt>
  6232. <dd>[Security] At the end of the battle, play this card without paying its memory cost.</dd>
  6233. </dl>
  6234. <dl>
  6235. <dt>Digivolveeffect</dt>
  6236. <dd>-</dd>
  6237. </dl>
  6238. <dl>
  6239. <dt>Securityeffect</dt>
  6240. <dd>-</dd>
  6241. </dl>
  6242. <dl>
  6243. <dt>Notes</dt>
  6244. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6245. </div>
  6246. </div>
  6247. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6248. </div>
  6249. </div>
  6250. </li>
  6251. <liclass="image_lists_itemdatapage-3">
  6252. <aclass="card_img">
  6253. <imgsrc="../images/cardlist/card/BT6-059.png"alt="BT6-059Machmon"></a>
  6254. <divclass="popup">
  6255. <divclass="card_detailcard_detail_black">
  6256. <divclass="card_detail_inner">
  6257. <ulclass="cardinfo_head">
  6258. <liclass="cardno">BT6-059</li>
  6259. <li>R</li>
  6260. <liclass="cardtype">Digimon</li>
  6261. <liclass="cardlv">Lv.4</li>
  6262. </ul>
  6263. <divclass="card_name">Machmon</div>
  6264. <divclass="cardinfo_top">
  6265. <divclass="card_img">
  6266. <imgsrc="../images/cardlist/card/BT6-059.png"alt="BT6-059Machmon"></div>
  6267. <divclass="cardinfo_top_body">
  6268. <dl>
  6269. <dt>Form</dt>
  6270. <dd>Champion</dd>
  6271. </dl>
  6272. <dl>
  6273. <dt>Attribute</dt>
  6274. <dd>Vaccine</dd>
  6275. </dl>
  6276. <dl>
  6277. <dt>Type</dt>
  6278. <dd>Cyborg</dd>
  6279. </dl>
  6280. <dl>
  6281. <dt>DP</dt>
  6282. <dd>5000</dl>
  6283. <dl>
  6284. <dt>PlayCost</dt>
  6285. <dd>4</dd>
  6286. </dl>
  6287. <dl>
  6288. <dt>DigivolveCost1</dt>
  6289. <dd>2fromLv.3</dd>
  6290. </dl>
  6291. <dl>
  6292. <dt>DigivolveCost2</dt>
  6293. <dd>-</dd>
  6294. </dl>
  6295. </div>
  6296. </div>
  6297. <divclass="cardinfo_bottom">
  6298. <dl>
  6299. <dt>Effect</dt>
  6300. <dd><Decoy (Black)> (When one of your other black Digimon would be deleted by an opponent's effect, you may delete this Digimon to prevent that deletion.)</dd>
  6301. </dl>
  6302. <dl>
  6303. <dt>Digivolveeffect</dt>
  6304. <dd>-</dd>
  6305. </dl>
  6306. <dl>
  6307. <dt>Securityeffect</dt>
  6308. <dd>-</dd>
  6309. </dl>
  6310. <dl>
  6311. <dt>Notes</dt>
  6312. <dd>BOOSTERDOUBLEDIAMOND[BT-06]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT6-059'>ErrataCard</a></dd></dl>
  6313. </div>
  6314. </div>
  6315. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6316. </div>
  6317. </div>
  6318. </li>
  6319. <liclass="image_lists_itemdatapage-3">
  6320. <aclass="card_img">
  6321. <imgsrc="../images/cardlist/card/BT6-060.png"alt="BT6-060Deputymon"></a>
  6322. <divclass="popup">
  6323. <divclass="card_detailcard_detail_black">
  6324. <divclass="card_detail_inner">
  6325. <ulclass="cardinfo_head">
  6326. <liclass="cardno">BT6-060</li>
  6327. <li>C</li>
  6328. <liclass="cardtype">Digimon</li>
  6329. <liclass="cardlv">Lv.4</li>
  6330. </ul>
  6331. <divclass="card_name">Deputymon</div>
  6332. <divclass="cardinfo_top">
  6333. <divclass="card_img">
  6334. <imgsrc="../images/cardlist/card/BT6-060.png"alt="BT6-060Deputymon"></div>
  6335. <divclass="cardinfo_top_body">
  6336. <dl>
  6337. <dt>Form</dt>
  6338. <dd>Champion</dd>
  6339. </dl>
  6340. <dl>
  6341. <dt>Attribute</dt>
  6342. <dd>Vaccine</dd>
  6343. </dl>
  6344. <dl>
  6345. <dt>Type</dt>
  6346. <dd>Mutant</dd>
  6347. </dl>
  6348. <dl>
  6349. <dt>DP</dt>
  6350. <dd>4000</dl>
  6351. <dl>
  6352. <dt>PlayCost</dt>
  6353. <dd>5</dd>
  6354. </dl>
  6355. <dl>
  6356. <dt>DigivolveCost1</dt>
  6357. <dd>2fromLv.3</dd>
  6358. </dl>
  6359. <dl>
  6360. <dt>DigivolveCost2</dt>
  6361. <dd>-</dd>
  6362. </dl>
  6363. </div>
  6364. </div>
  6365. <divclass="cardinfo_bottom">
  6366. <dl>
  6367. <dt>Effect</dt>
  6368. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Three Musketeers] in its type and/or 1 Option card with a memory cost of 7 among them to your hand. Trash the remaining cards.[Your Turn] This Digimon can digivolve into a Digimon card with [Three Musketeers] in its type from your hand for a memory cost of 6, ignoring its digivolution requirements.</dd>
  6369. </dl>
  6370. <dl>
  6371. <dt>Digivolveeffect</dt>
  6372. <dd>-</dd>
  6373. </dl>
  6374. <dl>
  6375. <dt>Securityeffect</dt>
  6376. <dd>-</dd>
  6377. </dl>
  6378. <dl>
  6379. <dt>Notes</dt>
  6380. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6381. </div>
  6382. </div>
  6383. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6384. </div>
  6385. </div>
  6386. </li>
  6387. <liclass="image_lists_itemdatapage-3">
  6388. <aclass="card_img">
  6389. <imgsrc="../images/cardlist/card/BT6-061.png"alt="BT6-061Gigadramon"></a>
  6390. <divclass="popup">
  6391. <divclass="card_detailcard_detail_black">
  6392. <divclass="card_detail_inner">
  6393. <ulclass="cardinfo_head">
  6394. <liclass="cardno">BT6-061</li>
  6395. <li>C</li>
  6396. <liclass="cardtype">Digimon</li>
  6397. <liclass="cardlv">Lv.5</li>
  6398. </ul>
  6399. <divclass="card_name">Gigadramon</div>
  6400. <divclass="cardinfo_top">
  6401. <divclass="card_img">
  6402. <imgsrc="../images/cardlist/card/BT6-061.png"alt="BT6-061Gigadramon"></div>
  6403. <divclass="cardinfo_top_body">
  6404. <dl>
  6405. <dt>Form</dt>
  6406. <dd>Ultimate</dd>
  6407. </dl>
  6408. <dl>
  6409. <dt>Attribute</dt>
  6410. <dd>Virus</dd>
  6411. </dl>
  6412. <dl>
  6413. <dt>Type</dt>
  6414. <dd>Cyborg</dd>
  6415. </dl>
  6416. <dl>
  6417. <dt>DP</dt>
  6418. <dd>7000</dl>
  6419. <dl>
  6420. <dt>PlayCost</dt>
  6421. <dd>6</dd>
  6422. </dl>
  6423. <dl>
  6424. <dt>DigivolveCost1</dt>
  6425. <dd>3fromLv.4</dd>
  6426. </dl>
  6427. <dl>
  6428. <dt>DigivolveCost2</dt>
  6429. <dd>3fromLv.4</dd>
  6430. </dl>
  6431. </div>
  6432. </div>
  6433. <divclass="cardinfo_bottom">
  6434. <dl>
  6435. <dt>Effect</dt>
  6436. <dd>[Your Turn] This Digimon is also treated as red.</dd>
  6437. </dl>
  6438. <dl>
  6439. <dt>Digivolveeffect</dt>
  6440. <dd>[Opponent's Turn] This Digimon gets +2000 DP.</dd>
  6441. </dl>
  6442. <dl>
  6443. <dt>Securityeffect</dt>
  6444. <dd>-</dd>
  6445. </dl>
  6446. <dl>
  6447. <dt>Notes</dt>
  6448. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6449. </div>
  6450. </div>
  6451. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6452. </div>
  6453. </div>
  6454. </li>
  6455. <liclass="image_lists_itemdatapage-3">
  6456. <aclass="card_img">
  6457. <imgsrc="../images/cardlist/card/BT6-062.png"alt="BT6-062Volcanomon"></a>
  6458. <divclass="popup">
  6459. <divclass="card_detailcard_detail_black">
  6460. <divclass="card_detail_inner">
  6461. <ulclass="cardinfo_head">
  6462. <liclass="cardno">BT6-062</li>
  6463. <li>U</li>
  6464. <liclass="cardtype">Digimon</li>
  6465. <liclass="cardlv">Lv.5</li>
  6466. </ul>
  6467. <divclass="card_name">Volcanomon</div>
  6468. <divclass="cardinfo_top">
  6469. <divclass="card_img">
  6470. <imgsrc="../images/cardlist/card/BT6-062.png"alt="BT6-062Volcanomon"></div>
  6471. <divclass="cardinfo_top_body">
  6472. <dl>
  6473. <dt>Form</dt>
  6474. <dd>Ultimate</dd>
  6475. </dl>
  6476. <dl>
  6477. <dt>Attribute</dt>
  6478. <dd>Data</dd>
  6479. </dl>
  6480. <dl>
  6481. <dt>Type</dt>
  6482. <dd>Cyborg</dd>
  6483. </dl>
  6484. <dl>
  6485. <dt>DP</dt>
  6486. <dd>7000</dl>
  6487. <dl>
  6488. <dt>PlayCost</dt>
  6489. <dd>6</dd>
  6490. </dl>
  6491. <dl>
  6492. <dt>DigivolveCost1</dt>
  6493. <dd>3fromLv.4</dd>
  6494. </dl>
  6495. <dl>
  6496. <dt>DigivolveCost2</dt>
  6497. <dd>-</dd>
  6498. </dl>
  6499. </div>
  6500. </div>
  6501. <divclass="cardinfo_bottom">
  6502. <dl>
  6503. <dt>Effect</dt>
  6504. <dd>-</dd>
  6505. </dl>
  6506. <dl>
  6507. <dt>Digivolveeffect</dt>
  6508. <dd>[Your Turn] While your opponent has an unsuspended Digimon in play, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  6509. </dl>
  6510. <dl>
  6511. <dt>Securityeffect</dt>
  6512. <dd>-</dd>
  6513. </dl>
  6514. <dl>
  6515. <dt>Notes</dt>
  6516. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6517. </div>
  6518. </div>
  6519. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6520. </div>
  6521. </div>
  6522. </li>
  6523. <liclass="image_lists_itemdatapage-3">
  6524. <aclass="card_img">
  6525. <imgsrc="../images/cardlist/card/BT6-063.png"alt="BT6-063BigMamemon"></a>
  6526. <divclass="popup">
  6527. <divclass="card_detailcard_detail_black">
  6528. <divclass="card_detail_inner">
  6529. <ulclass="cardinfo_head">
  6530. <liclass="cardno">BT6-063</li>
  6531. <li>C</li>
  6532. <liclass="cardtype">Digimon</li>
  6533. <liclass="cardlv">Lv.5</li>
  6534. </ul>
  6535. <divclass="card_name">BigMamemon</div>
  6536. <divclass="cardinfo_top">
  6537. <divclass="card_img">
  6538. <imgsrc="../images/cardlist/card/BT6-063.png"alt="BT6-063BigMamemon"></div>
  6539. <divclass="cardinfo_top_body">
  6540. <dl>
  6541. <dt>Form</dt>
  6542. <dd>Ultimate</dd>
  6543. </dl>
  6544. <dl>
  6545. <dt>Attribute</dt>
  6546. <dd>Data</dd>
  6547. </dl>
  6548. <dl>
  6549. <dt>Type</dt>
  6550. <dd>Mutant</dd>
  6551. </dl>
  6552. <dl>
  6553. <dt>DP</dt>
  6554. <dd>10000</dl>
  6555. <dl>
  6556. <dt>PlayCost</dt>
  6557. <dd>7</dd>
  6558. </dl>
  6559. <dl>
  6560. <dt>DigivolveCost1</dt>
  6561. <dd>3fromLv.4</dd>
  6562. </dl>
  6563. <dl>
  6564. <dt>DigivolveCost2</dt>
  6565. <dd>-</dd>
  6566. </dl>
  6567. </div>
  6568. </div>
  6569. <divclass="cardinfo_bottom">
  6570. <dl>
  6571. <dt>Effect</dt>
  6572. <dd>-</dd>
  6573. </dl>
  6574. <dl>
  6575. <dt>Digivolveeffect</dt>
  6576. <dd>-</dd>
  6577. </dl>
  6578. <dl>
  6579. <dt>Securityeffect</dt>
  6580. <dd>-</dd>
  6581. </dl>
  6582. <dl>
  6583. <dt>Notes</dt>
  6584. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6585. </div>
  6586. </div>
  6587. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6588. </div>
  6589. </div>
  6590. </li>
  6591. <liclass="image_lists_itemdatapage-3">
  6592. <aclass="card_img">
  6593. <imgsrc="../images/cardlist/card/BT6-064.png"alt="BT6-064Mamemon"></a>
  6594. <divclass="popup">
  6595. <divclass="card_detailcard_detail_black">
  6596. <divclass="card_detail_inner">
  6597. <ulclass="cardinfo_head">
  6598. <liclass="cardno">BT6-064</li>
  6599. <li>SR</li>
  6600. <liclass="cardtype">Digimon</li>
  6601. <liclass="cardlv">Lv.5</li>
  6602. </ul>
  6603. <divclass="card_name">Mamemon</div>
  6604. <divclass="cardinfo_top">
  6605. <divclass="card_img">
  6606. <imgsrc="../images/cardlist/card/BT6-064.png"alt="BT6-064Mamemon"></div>
  6607. <divclass="cardinfo_top_body">
  6608. <dl>
  6609. <dt>Form</dt>
  6610. <dd>Ultimate</dd>
  6611. </dl>
  6612. <dl>
  6613. <dt>Attribute</dt>
  6614. <dd>Data</dd>
  6615. </dl>
  6616. <dl>
  6617. <dt>Type</dt>
  6618. <dd>Mutant</dd>
  6619. </dl>
  6620. <dl>
  6621. <dt>DP</dt>
  6622. <dd>6000</dl>
  6623. <dl>
  6624. <dt>PlayCost</dt>
  6625. <dd>7</dd>
  6626. </dl>
  6627. <dl>
  6628. <dt>DigivolveCost1</dt>
  6629. <dd>3fromLv.4</dd>
  6630. </dl>
  6631. <dl>
  6632. <dt>DigivolveCost2</dt>
  6633. <dd>-</dd>
  6634. </dl>
  6635. </div>
  6636. </div>
  6637. <divclass="cardinfo_bottom">
  6638. <dl>
  6639. <dt>Effect</dt>
  6640. <dd><Decoy (Black)> (When one of your other black Digimon would be deleted by an opponent's effect, you may delete this Digimon to prevent that deletion.)[On Deletion] Delete 1 of your opponent's Digimon with a play cost of 7 or less.</dd>
  6641. </dl>
  6642. <dl>
  6643. <dt>Digivolveeffect</dt>
  6644. <dd>-</dd>
  6645. </dl>
  6646. <dl>
  6647. <dt>Securityeffect</dt>
  6648. <dd>-</dd>
  6649. </dl>
  6650. <dl>
  6651. <dt>Notes</dt>
  6652. <dd>BOOSTERDOUBLEDIAMOND[BT-06]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT6-064'>ErrataCard</a></dd></dl>
  6653. </div>
  6654. </div>
  6655. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6656. </div>
  6657. </div>
  6658. </li>
  6659. <liclass="image_lists_itemdatapage-3">
  6660. <aclass="card_img">
  6661. <imgsrc="../images/cardlist/card/BT6-064_P1.png"alt="BT6-064Mamemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6662. </a>
  6663. <divclass="popup">
  6664. <divclass="card_detailcard_detail_black">
  6665. <divclass="card_detail_inner">
  6666. <ulclass="cardinfo_head">
  6667. <liclass="cardno">BT6-064</li>
  6668. <li>SR</li>
  6669. <liclass="cardtype">Digimon</li>
  6670. <liclass="cardlv">Lv.5</li>
  6671. <liclass="cardtypecardParallel">AlternativeArt</li>
  6672. </ul>
  6673. <divclass="card_name">Mamemon</div>
  6674. <divclass="cardinfo_top">
  6675. <divclass="card_img">
  6676. <imgsrc="../images/cardlist/card/BT6-064_P1.png"alt="BT6-064Mamemon"></div>
  6677. <divclass="cardinfo_top_body">
  6678. <dl>
  6679. <dt>Form</dt>
  6680. <dd>Ultimate</dd>
  6681. </dl>
  6682. <dl>
  6683. <dt>Attribute</dt>
  6684. <dd>Data</dd>
  6685. </dl>
  6686. <dl>
  6687. <dt>Type</dt>
  6688. <dd>Mutant</dd>
  6689. </dl>
  6690. <dl>
  6691. <dt>DP</dt>
  6692. <dd>6000</dl>
  6693. <dl>
  6694. <dt>PlayCost</dt>
  6695. <dd>7</dd>
  6696. </dl>
  6697. <dl>
  6698. <dt>DigivolveCost1</dt>
  6699. <dd>3fromLv.4</dd>
  6700. </dl>
  6701. <dl>
  6702. <dt>DigivolveCost2</dt>
  6703. <dd>-</dd>
  6704. </dl>
  6705. </div>
  6706. </div>
  6707. <divclass="cardinfo_bottom">
  6708. <dl>
  6709. <dt>Effect</dt>
  6710. <dd><Decoy (Black)> (When one of your other black Digimon would be deleted by an opponent's effect, you may delete this Digimon to prevent that deletion.)[On Deletion] Delete 1 of your opponent's Digimon with a play cost of 7 or less.</dd>
  6711. </dl>
  6712. <dl>
  6713. <dt>Digivolveeffect</dt>
  6714. <dd>-</dd>
  6715. </dl>
  6716. <dl>
  6717. <dt>Securityeffect</dt>
  6718. <dd>-</dd>
  6719. </dl>
  6720. <dl>
  6721. <dt>Notes</dt>
  6722. <dd>BOOSTERDOUBLEDIAMOND[BT-06]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT6-064'>ErrataCard</a></dd></dl>
  6723. </div>
  6724. </div>
  6725. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6726. </div>
  6727. </div>
  6728. </li>
  6729. <liclass="image_lists_itemdatapage-3">
  6730. <aclass="card_img">
  6731. <imgsrc="../images/cardlist/card/BT6-064_P2.png"alt="BT6-064Mamemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6732. </a>
  6733. <divclass="popup">
  6734. <divclass="card_detailcard_detail_black">
  6735. <divclass="card_detail_inner">
  6736. <ulclass="cardinfo_head">
  6737. <liclass="cardno">BT6-064</li>
  6738. <li>SR</li>
  6739. <liclass="cardtype">Digimon</li>
  6740. <liclass="cardlv">Lv.5</li>
  6741. <liclass="cardtypecardParallel">AlternativeArt</li>
  6742. </ul>
  6743. <divclass="card_name">Mamemon</div>
  6744. <divclass="cardinfo_top">
  6745. <divclass="card_img">
  6746. <imgsrc="../images/cardlist/card/BT6-064_P2.png"alt="BT6-064Mamemon"></div>
  6747. <divclass="cardinfo_top_body">
  6748. <dl>
  6749. <dt>Form</dt>
  6750. <dd>Ultimate</dd>
  6751. </dl>
  6752. <dl>
  6753. <dt>Attribute</dt>
  6754. <dd>Data</dd>
  6755. </dl>
  6756. <dl>
  6757. <dt>Type</dt>
  6758. <dd>Mutant</dd>
  6759. </dl>
  6760. <dl>
  6761. <dt>DP</dt>
  6762. <dd>6000</dl>
  6763. <dl>
  6764. <dt>PlayCost</dt>
  6765. <dd>7</dd>
  6766. </dl>
  6767. <dl>
  6768. <dt>DigivolveCost1</dt>
  6769. <dd>3fromLv.4</dd>
  6770. </dl>
  6771. <dl>
  6772. <dt>DigivolveCost2</dt>
  6773. <dd>-</dd>
  6774. </dl>
  6775. </div>
  6776. </div>
  6777. <divclass="cardinfo_bottom">
  6778. <dl>
  6779. <dt>Effect</dt>
  6780. <dd><Decoy (Black)> (When one of your other black Digimon would be deleted by an opponent's effect, you may delete this Digimon to prevent that deletion.)[On Deletion] Delete 1 of your opponent's Digimon with a play cost of 7 or less.</dd>
  6781. </dl>
  6782. <dl>
  6783. <dt>Digivolveeffect</dt>
  6784. <dd>-</dd>
  6785. </dl>
  6786. <dl>
  6787. <dt>Securityeffect</dt>
  6788. <dd>-</dd>
  6789. </dl>
  6790. <dl>
  6791. <dt>Notes</dt>
  6792. <dd>25thSpecialMemorialPack</dd></dl>
  6793. </div>
  6794. </div>
  6795. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6796. </div>
  6797. </div>
  6798. </li>
  6799. <liclass="image_lists_itemdatapage-3">
  6800. <aclass="card_img">
  6801. <imgsrc="../images/cardlist/card/BT6-065.png"alt="BT6-065Gundramon"></a>
  6802. <divclass="popup">
  6803. <divclass="card_detailcard_detail_black">
  6804. <divclass="card_detail_inner">
  6805. <ulclass="cardinfo_head">
  6806. <liclass="cardno">BT6-065</li>
  6807. <li>R</li>
  6808. <liclass="cardtype">Digimon</li>
  6809. <liclass="cardlv">Lv.6</li>
  6810. </ul>
  6811. <divclass="card_name">Gundramon</div>
  6812. <divclass="cardinfo_top">
  6813. <divclass="card_img">
  6814. <imgsrc="../images/cardlist/card/BT6-065.png"alt="BT6-065Gundramon"></div>
  6815. <divclass="cardinfo_top_body">
  6816. <dl>
  6817. <dt>Form</dt>
  6818. <dd>Mega</dd>
  6819. </dl>
  6820. <dl>
  6821. <dt>Attribute</dt>
  6822. <dd>Virus</dd>
  6823. </dl>
  6824. <dl>
  6825. <dt>Type</dt>
  6826. <dd>Machine/ThreeMusketeers</dd>
  6827. </dl>
  6828. <dl>
  6829. <dt>DP</dt>
  6830. <dd>11000</dl>
  6831. <dl>
  6832. <dt>PlayCost</dt>
  6833. <dd>11</dd>
  6834. </dl>
  6835. <dl>
  6836. <dt>DigivolveCost1</dt>
  6837. <dd>4fromLv.5</dd>
  6838. </dl>
  6839. <dl>
  6840. <dt>DigivolveCost2</dt>
  6841. <dd>-</dd>
  6842. </dl>
  6843. </div>
  6844. </div>
  6845. <divclass="cardinfo_bottom">
  6846. <dl>
  6847. <dt>Effect</dt>
  6848. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[When Digivolving] Reveal the top 5 cards of your deck. You may use 1 Option card with a memory cost of 7 among them without paying its memory cost. Trash the remaining cards. If you don't use an Option card with this effect, delete 1 of your opponent's Digimon with a play cost of 4 or less.</dd>
  6849. </dl>
  6850. <dl>
  6851. <dt>Digivolveeffect</dt>
  6852. <dd>-</dd>
  6853. </dl>
  6854. <dl>
  6855. <dt>Securityeffect</dt>
  6856. <dd>-</dd>
  6857. </dl>
  6858. <dl>
  6859. <dt>Notes</dt>
  6860. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6861. </div>
  6862. </div>
  6863. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6864. </div>
  6865. </div>
  6866. </li>
  6867. <liclass="image_lists_itemdatapage-3">
  6868. <aclass="card_img">
  6869. <imgsrc="../images/cardlist/card/BT6-065_P1.png"alt="BT6-065Gundramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6870. </a>
  6871. <divclass="popup">
  6872. <divclass="card_detailcard_detail_black">
  6873. <divclass="card_detail_inner">
  6874. <ulclass="cardinfo_head">
  6875. <liclass="cardno">BT6-065</li>
  6876. <li>R</li>
  6877. <liclass="cardtype">Digimon</li>
  6878. <liclass="cardlv">Lv.6</li>
  6879. <liclass="cardtypecardParallel">AlternativeArt</li>
  6880. </ul>
  6881. <divclass="card_name">Gundramon</div>
  6882. <divclass="cardinfo_top">
  6883. <divclass="card_img">
  6884. <imgsrc="../images/cardlist/card/BT6-065_P1.png"alt="BT6-065Gundramon"></div>
  6885. <divclass="cardinfo_top_body">
  6886. <dl>
  6887. <dt>Form</dt>
  6888. <dd>Mega</dd>
  6889. </dl>
  6890. <dl>
  6891. <dt>Attribute</dt>
  6892. <dd>Virus</dd>
  6893. </dl>
  6894. <dl>
  6895. <dt>Type</dt>
  6896. <dd>Machine/ThreeMusketeers</dd>
  6897. </dl>
  6898. <dl>
  6899. <dt>DP</dt>
  6900. <dd>11000</dl>
  6901. <dl>
  6902. <dt>PlayCost</dt>
  6903. <dd>11</dd>
  6904. </dl>
  6905. <dl>
  6906. <dt>DigivolveCost1</dt>
  6907. <dd>4fromLv.5</dd>
  6908. </dl>
  6909. <dl>
  6910. <dt>DigivolveCost2</dt>
  6911. <dd>-</dd>
  6912. </dl>
  6913. </div>
  6914. </div>
  6915. <divclass="cardinfo_bottom">
  6916. <dl>
  6917. <dt>Effect</dt>
  6918. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[When Digivolving] Reveal the top 5 cards of your deck. You may use 1 Option card with a memory cost of 7 among them without paying its memory cost. Trash the remaining cards. If you don't use an Option card with this effect, delete 1 of your opponent's Digimon with a play cost of 4 or less.</dd>
  6919. </dl>
  6920. <dl>
  6921. <dt>Digivolveeffect</dt>
  6922. <dd>-</dd>
  6923. </dl>
  6924. <dl>
  6925. <dt>Securityeffect</dt>
  6926. <dd>-</dd>
  6927. </dl>
  6928. <dl>
  6929. <dt>Notes</dt>
  6930. <dd>DeckBoxSet/Beelzemon</dd></dl>
  6931. </div>
  6932. </div>
  6933. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6934. </div>
  6935. </div>
  6936. </li>
  6937. <liclass="image_lists_itemdatapage-3">
  6938. <aclass="card_img">
  6939. <imgsrc="../images/cardlist/card/BT6-066.png"alt="BT6-066PileVolcamon"></a>
  6940. <divclass="popup">
  6941. <divclass="card_detailcard_detail_black">
  6942. <divclass="card_detail_inner">
  6943. <ulclass="cardinfo_head">
  6944. <liclass="cardno">BT6-066</li>
  6945. <li>U</li>
  6946. <liclass="cardtype">Digimon</li>
  6947. <liclass="cardlv">Lv.6</li>
  6948. </ul>
  6949. <divclass="card_name">PileVolcamon</div>
  6950. <divclass="cardinfo_top">
  6951. <divclass="card_img">
  6952. <imgsrc="../images/cardlist/card/BT6-066.png"alt="BT6-066PileVolcamon"></div>
  6953. <divclass="cardinfo_top_body">
  6954. <dl>
  6955. <dt>Form</dt>
  6956. <dd>Mega</dd>
  6957. </dl>
  6958. <dl>
  6959. <dt>Attribute</dt>
  6960. <dd>Data</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>Type</dt>
  6964. <dd>Cyborg</dd>
  6965. </dl>
  6966. <dl>
  6967. <dt>DP</dt>
  6968. <dd>11000</dl>
  6969. <dl>
  6970. <dt>PlayCost</dt>
  6971. <dd>11</dd>
  6972. </dl>
  6973. <dl>
  6974. <dt>DigivolveCost1</dt>
  6975. <dd>3fromLv.5</dd>
  6976. </dl>
  6977. <dl>
  6978. <dt>DigivolveCost2</dt>
  6979. <dd>-</dd>
  6980. </dl>
  6981. </div>
  6982. </div>
  6983. <divclass="cardinfo_bottom">
  6984. <dl>
  6985. <dt>Effect</dt>
  6986. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase.)[Opponent's Turn][Once Per Turn] When one of your other Digimon is deleted, trigger <De-Digivolve 1> on 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  6987. </dl>
  6988. <dl>
  6989. <dt>Digivolveeffect</dt>
  6990. <dd>-</dd>
  6991. </dl>
  6992. <dl>
  6993. <dt>Securityeffect</dt>
  6994. <dd>-</dd>
  6995. </dl>
  6996. <dl>
  6997. <dt>Notes</dt>
  6998. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  6999. </div>
  7000. </div>
  7001. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7002. </div>
  7003. </div>
  7004. </li>
  7005. <liclass="image_lists_itemdatapage-3">
  7006. <aclass="card_img">
  7007. <imgsrc="../images/cardlist/card/BT6-067.png"alt="BT6-067Gankoomon"></a>
  7008. <divclass="popup">
  7009. <divclass="card_detailcard_detail_black">
  7010. <divclass="card_detail_inner">
  7011. <ulclass="cardinfo_head">
  7012. <liclass="cardno">BT6-067</li>
  7013. <li>SR</li>
  7014. <liclass="cardtype">Digimon</li>
  7015. <liclass="cardlv">Lv.6</li>
  7016. </ul>
  7017. <divclass="card_name">Gankoomon</div>
  7018. <divclass="cardinfo_top">
  7019. <divclass="card_img">
  7020. <imgsrc="../images/cardlist/card/BT6-067.png"alt="BT6-067Gankoomon"></div>
  7021. <divclass="cardinfo_top_body">
  7022. <dl>
  7023. <dt>Form</dt>
  7024. <dd>Mega</dd>
  7025. </dl>
  7026. <dl>
  7027. <dt>Attribute</dt>
  7028. <dd>Data</dd>
  7029. </dl>
  7030. <dl>
  7031. <dt>Type</dt>
  7032. <dd>HolyWarrior/RoyalKnight</dd>
  7033. </dl>
  7034. <dl>
  7035. <dt>DP</dt>
  7036. <dd>12000</dl>
  7037. <dl>
  7038. <dt>PlayCost</dt>
  7039. <dd>12</dd>
  7040. </dl>
  7041. <dl>
  7042. <dt>DigivolveCost1</dt>
  7043. <dd>4fromLv.5</dd>
  7044. </dl>
  7045. <dl>
  7046. <dt>DigivolveCost2</dt>
  7047. <dd>-</dd>
  7048. </dl>
  7049. </div>
  7050. </div>
  7051. <divclass="cardinfo_bottom">
  7052. <dl>
  7053. <dt>Effect</dt>
  7054. <dd>[When Digivolving] Delete all of your opponent's Digimon with the lowest play cost.[Your Turn] While your opponent has an unsuspended Digimon, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  7055. </dl>
  7056. <dl>
  7057. <dt>Digivolveeffect</dt>
  7058. <dd>-</dd>
  7059. </dl>
  7060. <dl>
  7061. <dt>Securityeffect</dt>
  7062. <dd>-</dd>
  7063. </dl>
  7064. <dl>
  7065. <dt>Notes</dt>
  7066. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7067. </div>
  7068. </div>
  7069. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7070. </div>
  7071. </div>
  7072. </li>
  7073. <liclass="image_lists_itemdatapage-3">
  7074. <aclass="card_img">
  7075. <imgsrc="../images/cardlist/card/BT6-067_P1.png"alt="BT6-067Gankoomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7076. </a>
  7077. <divclass="popup">
  7078. <divclass="card_detailcard_detail_black">
  7079. <divclass="card_detail_inner">
  7080. <ulclass="cardinfo_head">
  7081. <liclass="cardno">BT6-067</li>
  7082. <li>SR</li>
  7083. <liclass="cardtype">Digimon</li>
  7084. <liclass="cardlv">Lv.6</li>
  7085. <liclass="cardtypecardParallel">AlternativeArt</li>
  7086. </ul>
  7087. <divclass="card_name">Gankoomon</div>
  7088. <divclass="cardinfo_top">
  7089. <divclass="card_img">
  7090. <imgsrc="../images/cardlist/card/BT6-067_P1.png"alt="BT6-067Gankoomon"></div>
  7091. <divclass="cardinfo_top_body">
  7092. <dl>
  7093. <dt>Form</dt>
  7094. <dd>Mega</dd>
  7095. </dl>
  7096. <dl>
  7097. <dt>Attribute</dt>
  7098. <dd>Data</dd>
  7099. </dl>
  7100. <dl>
  7101. <dt>Type</dt>
  7102. <dd>HolyWarrior/RoyalKnight</dd>
  7103. </dl>
  7104. <dl>
  7105. <dt>DP</dt>
  7106. <dd>12000</dl>
  7107. <dl>
  7108. <dt>PlayCost</dt>
  7109. <dd>12</dd>
  7110. </dl>
  7111. <dl>
  7112. <dt>DigivolveCost1</dt>
  7113. <dd>4fromLv.5</dd>
  7114. </dl>
  7115. <dl>
  7116. <dt>DigivolveCost2</dt>
  7117. <dd>-</dd>
  7118. </dl>
  7119. </div>
  7120. </div>
  7121. <divclass="cardinfo_bottom">
  7122. <dl>
  7123. <dt>Effect</dt>
  7124. <dd>[When Digivolving] Delete all of your opponent's Digimon with the lowest play cost.[Your Turn] While your opponent has an unsuspended Digimon, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  7125. </dl>
  7126. <dl>
  7127. <dt>Digivolveeffect</dt>
  7128. <dd>-</dd>
  7129. </dl>
  7130. <dl>
  7131. <dt>Securityeffect</dt>
  7132. <dd>-</dd>
  7133. </dl>
  7134. <dl>
  7135. <dt>Notes</dt>
  7136. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7137. </div>
  7138. </div>
  7139. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7140. </div>
  7141. </div>
  7142. </li>
  7143. <liclass="image_lists_itemdatapage-3">
  7144. <aclass="card_img">
  7145. <imgsrc="../images/cardlist/card/BT6-068.png"alt="BT6-068Impmon"></a>
  7146. <divclass="popup">
  7147. <divclass="card_detailcard_detail_purple">
  7148. <divclass="card_detail_inner">
  7149. <ulclass="cardinfo_head">
  7150. <liclass="cardno">BT6-068</li>
  7151. <li>U</li>
  7152. <liclass="cardtype">Digimon</li>
  7153. <liclass="cardlv">Lv.3</li>
  7154. </ul>
  7155. <divclass="card_name">Impmon</div>
  7156. <divclass="cardinfo_top">
  7157. <divclass="card_img">
  7158. <imgsrc="../images/cardlist/card/BT6-068.png"alt="BT6-068Impmon"></div>
  7159. <divclass="cardinfo_top_body">
  7160. <dl>
  7161. <dt>Form</dt>
  7162. <dd>Rookie</dd>
  7163. </dl>
  7164. <dl>
  7165. <dt>Attribute</dt>
  7166. <dd>Virus</dd>
  7167. </dl>
  7168. <dl>
  7169. <dt>Type</dt>
  7170. <dd>Evil</dd>
  7171. </dl>
  7172. <dl>
  7173. <dt>DP</dt>
  7174. <dd>2000</dl>
  7175. <dl>
  7176. <dt>PlayCost</dt>
  7177. <dd>3</dd>
  7178. </dl>
  7179. <dl>
  7180. <dt>DigivolveCost1</dt>
  7181. <dd>0fromLv.2</dd>
  7182. </dl>
  7183. <dl>
  7184. <dt>DigivolveCost2</dt>
  7185. <dd>-</dd>
  7186. </dl>
  7187. </div>
  7188. </div>
  7189. <divclass="cardinfo_bottom">
  7190. <dl>
  7191. <dt>Effect</dt>
  7192. <dd>[On Play] You may trash 1 card in your hand. If you do, return 1 Digimon card with [Seven Great Demon Lords] or [Three Musketeers] in its type from your trash to your hand.</dd>
  7193. </dl>
  7194. <dl>
  7195. <dt>Digivolveeffect</dt>
  7196. <dd>-</dd>
  7197. </dl>
  7198. <dl>
  7199. <dt>Securityeffect</dt>
  7200. <dd>-</dd>
  7201. </dl>
  7202. <dl>
  7203. <dt>Notes</dt>
  7204. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7205. </div>
  7206. </div>
  7207. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7208. </div>
  7209. </div>
  7210. </li>
  7211. <liclass="image_lists_itemdatapage-3">
  7212. <aclass="card_img">
  7213. <imgsrc="../images/cardlist/card/BT6-068_P1.png"alt="BT6-068Impmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7214. </a>
  7215. <divclass="popup">
  7216. <divclass="card_detailcard_detail_purple">
  7217. <divclass="card_detail_inner">
  7218. <ulclass="cardinfo_head">
  7219. <liclass="cardno">BT6-068</li>
  7220. <li>U</li>
  7221. <liclass="cardtype">Digimon</li>
  7222. <liclass="cardlv">Lv.3</li>
  7223. <liclass="cardtypecardParallel">AlternativeArt</li>
  7224. </ul>
  7225. <divclass="card_name">Impmon</div>
  7226. <divclass="cardinfo_top">
  7227. <divclass="card_img">
  7228. <imgsrc="../images/cardlist/card/BT6-068_P1.png"alt="BT6-068Impmon"></div>
  7229. <divclass="cardinfo_top_body">
  7230. <dl>
  7231. <dt>Form</dt>
  7232. <dd>Rookie</dd>
  7233. </dl>
  7234. <dl>
  7235. <dt>Attribute</dt>
  7236. <dd>Virus</dd>
  7237. </dl>
  7238. <dl>
  7239. <dt>Type</dt>
  7240. <dd>Evil</dd>
  7241. </dl>
  7242. <dl>
  7243. <dt>DP</dt>
  7244. <dd>2000</dl>
  7245. <dl>
  7246. <dt>PlayCost</dt>
  7247. <dd>3</dd>
  7248. </dl>
  7249. <dl>
  7250. <dt>DigivolveCost1</dt>
  7251. <dd>0fromLv.2</dd>
  7252. </dl>
  7253. <dl>
  7254. <dt>DigivolveCost2</dt>
  7255. <dd>-</dd>
  7256. </dl>
  7257. </div>
  7258. </div>
  7259. <divclass="cardinfo_bottom">
  7260. <dl>
  7261. <dt>Effect</dt>
  7262. <dd>[On Play] You may trash 1 card in your hand. If you do, return 1 Digimon card with [Seven Great Demon Lords] or [Three Musketeers] in its type from your trash to your hand.</dd>
  7263. </dl>
  7264. <dl>
  7265. <dt>Digivolveeffect</dt>
  7266. <dd>-</dd>
  7267. </dl>
  7268. <dl>
  7269. <dt>Securityeffect</dt>
  7270. <dd>-</dd>
  7271. </dl>
  7272. <dl>
  7273. <dt>Notes</dt>
  7274. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7275. </div>
  7276. </div>
  7277. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7278. </div>
  7279. </div>
  7280. </li>
  7281. <liclass="image_lists_itemdatapage-3">
  7282. <aclass="card_img">
  7283. <imgsrc="../images/cardlist/card/BT6-069.png"alt="BT6-069Goblimon"></a>
  7284. <divclass="popup">
  7285. <divclass="card_detailcard_detail_purple">
  7286. <divclass="card_detail_inner">
  7287. <ulclass="cardinfo_head">
  7288. <liclass="cardno">BT6-069</li>
  7289. <li>C</li>
  7290. <liclass="cardtype">Digimon</li>
  7291. <liclass="cardlv">Lv.3</li>
  7292. </ul>
  7293. <divclass="card_name">Goblimon</div>
  7294. <divclass="cardinfo_top">
  7295. <divclass="card_img">
  7296. <imgsrc="../images/cardlist/card/BT6-069.png"alt="BT6-069Goblimon"></div>
  7297. <divclass="cardinfo_top_body">
  7298. <dl>
  7299. <dt>Form</dt>
  7300. <dd>Rookie</dd>
  7301. </dl>
  7302. <dl>
  7303. <dt>Attribute</dt>
  7304. <dd>Virus</dd>
  7305. </dl>
  7306. <dl>
  7307. <dt>Type</dt>
  7308. <dd>Demon</dd>
  7309. </dl>
  7310. <dl>
  7311. <dt>DP</dt>
  7312. <dd>2000</dl>
  7313. <dl>
  7314. <dt>PlayCost</dt>
  7315. <dd>3</dd>
  7316. </dl>
  7317. <dl>
  7318. <dt>DigivolveCost1</dt>
  7319. <dd>0fromLv.2</dd>
  7320. </dl>
  7321. <dl>
  7322. <dt>DigivolveCost2</dt>
  7323. <dd>-</dd>
  7324. </dl>
  7325. </div>
  7326. </div>
  7327. <divclass="cardinfo_bottom">
  7328. <dl>
  7329. <dt>Effect</dt>
  7330. <dd>-</dd>
  7331. </dl>
  7332. <dl>
  7333. <dt>Digivolveeffect</dt>
  7334. <dd>[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, this Digimon gets +2000 DP for the turn.</dd>
  7335. </dl>
  7336. <dl>
  7337. <dt>Securityeffect</dt>
  7338. <dd>-</dd>
  7339. </dl>
  7340. <dl>
  7341. <dt>Notes</dt>
  7342. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7343. </div>
  7344. </div>
  7345. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7346. </div>
  7347. </div>
  7348. </li>
  7349. <liclass="image_lists_itemdatapage-3">
  7350. <aclass="card_img">
  7351. <imgsrc="../images/cardlist/card/BT6-070.png"alt="BT6-070Elecmon"></a>
  7352. <divclass="popup">
  7353. <divclass="card_detailcard_detail_purple">
  7354. <divclass="card_detail_inner">
  7355. <ulclass="cardinfo_head">
  7356. <liclass="cardno">BT6-070</li>
  7357. <li>C</li>
  7358. <liclass="cardtype">Digimon</li>
  7359. <liclass="cardlv">Lv.3</li>
  7360. </ul>
  7361. <divclass="card_name">Elecmon</div>
  7362. <divclass="cardinfo_top">
  7363. <divclass="card_img">
  7364. <imgsrc="../images/cardlist/card/BT6-070.png"alt="BT6-070Elecmon"></div>
  7365. <divclass="cardinfo_top_body">
  7366. <dl>
  7367. <dt>Form</dt>
  7368. <dd>Rookie</dd>
  7369. </dl>
  7370. <dl>
  7371. <dt>Attribute</dt>
  7372. <dd>Virus</dd>
  7373. </dl>
  7374. <dl>
  7375. <dt>Type</dt>
  7376. <dd>Mammal</dd>
  7377. </dl>
  7378. <dl>
  7379. <dt>DP</dt>
  7380. <dd>2000</dl>
  7381. <dl>
  7382. <dt>PlayCost</dt>
  7383. <dd>4</dd>
  7384. </dl>
  7385. <dl>
  7386. <dt>DigivolveCost1</dt>
  7387. <dd>0fromLv.2</dd>
  7388. </dl>
  7389. <dl>
  7390. <dt>DigivolveCost2</dt>
  7391. <dd>-</dd>
  7392. </dl>
  7393. </div>
  7394. </div>
  7395. <divclass="cardinfo_bottom">
  7396. <dl>
  7397. <dt>Effect</dt>
  7398. <dd>[On Deletion] Delete 1 of your opponent's level 3 Digimon.</dd>
  7399. </dl>
  7400. <dl>
  7401. <dt>Digivolveeffect</dt>
  7402. <dd>-</dd>
  7403. </dl>
  7404. <dl>
  7405. <dt>Securityeffect</dt>
  7406. <dd>-</dd>
  7407. </dl>
  7408. <dl>
  7409. <dt>Notes</dt>
  7410. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7411. </div>
  7412. </div>
  7413. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7414. </div>
  7415. </div>
  7416. </li>
  7417. <liclass="image_lists_itemdatapage-3">
  7418. <aclass="card_img">
  7419. <imgsrc="../images/cardlist/card/BT6-071.png"alt="BT6-071Kinkakumon"></a>
  7420. <divclass="popup">
  7421. <divclass="card_detailcard_detail_purple">
  7422. <divclass="card_detail_inner">
  7423. <ulclass="cardinfo_head">
  7424. <liclass="cardno">BT6-071</li>
  7425. <li>C</li>
  7426. <liclass="cardtype">Digimon</li>
  7427. <liclass="cardlv">Lv.4</li>
  7428. </ul>
  7429. <divclass="card_name">Kinkakumon</div>
  7430. <divclass="cardinfo_top">
  7431. <divclass="card_img">
  7432. <imgsrc="../images/cardlist/card/BT6-071.png"alt="BT6-071Kinkakumon"></div>
  7433. <divclass="cardinfo_top_body">
  7434. <dl>
  7435. <dt>Form</dt>
  7436. <dd>Champion</dd>
  7437. </dl>
  7438. <dl>
  7439. <dt>Attribute</dt>
  7440. <dd>Virus</dd>
  7441. </dl>
  7442. <dl>
  7443. <dt>Type</dt>
  7444. <dd>Demon</dd>
  7445. </dl>
  7446. <dl>
  7447. <dt>DP</dt>
  7448. <dd>5000</dl>
  7449. <dl>
  7450. <dt>PlayCost</dt>
  7451. <dd>4</dd>
  7452. </dl>
  7453. <dl>
  7454. <dt>DigivolveCost1</dt>
  7455. <dd>2fromLv.3</dd>
  7456. </dl>
  7457. <dl>
  7458. <dt>DigivolveCost2</dt>
  7459. <dd>-</dd>
  7460. </dl>
  7461. </div>
  7462. </div>
  7463. <divclass="cardinfo_bottom">
  7464. <dl>
  7465. <dt>Effect</dt>
  7466. <dd>-</dd>
  7467. </dl>
  7468. <dl>
  7469. <dt>Digivolveeffect</dt>
  7470. <dd>[When Attacking] You may trash 1 card in your hand to delete 1 of your opponent's level 3 Digimon.</dd>
  7471. </dl>
  7472. <dl>
  7473. <dt>Securityeffect</dt>
  7474. <dd>-</dd>
  7475. </dl>
  7476. <dl>
  7477. <dt>Notes</dt>
  7478. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7479. </div>
  7480. </div>
  7481. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7482. </div>
  7483. </div>
  7484. </li>
  7485. <liclass="image_lists_itemdatapage-3">
  7486. <aclass="card_img">
  7487. <imgsrc="../images/cardlist/card/BT6-072.png"alt="BT6-072Ogremon"></a>
  7488. <divclass="popup">
  7489. <divclass="card_detailcard_detail_purple">
  7490. <divclass="card_detail_inner">
  7491. <ulclass="cardinfo_head">
  7492. <liclass="cardno">BT6-072</li>
  7493. <li>R</li>
  7494. <liclass="cardtype">Digimon</li>
  7495. <liclass="cardlv">Lv.4</li>
  7496. </ul>
  7497. <divclass="card_name">Ogremon</div>
  7498. <divclass="cardinfo_top">
  7499. <divclass="card_img">
  7500. <imgsrc="../images/cardlist/card/BT6-072.png"alt="BT6-072Ogremon"></div>
  7501. <divclass="cardinfo_top_body">
  7502. <dl>
  7503. <dt>Form</dt>
  7504. <dd>Champion</dd>
  7505. </dl>
  7506. <dl>
  7507. <dt>Attribute</dt>
  7508. <dd>Virus</dd>
  7509. </dl>
  7510. <dl>
  7511. <dt>Type</dt>
  7512. <dd>Demon</dd>
  7513. </dl>
  7514. <dl>
  7515. <dt>DP</dt>
  7516. <dd>4000</dl>
  7517. <dl>
  7518. <dt>PlayCost</dt>
  7519. <dd>5</dd>
  7520. </dl>
  7521. <dl>
  7522. <dt>DigivolveCost1</dt>
  7523. <dd>2fromLv.3</dd>
  7524. </dl>
  7525. <dl>
  7526. <dt>DigivolveCost2</dt>
  7527. <dd>-</dd>
  7528. </dl>
  7529. </div>
  7530. </div>
  7531. <divclass="cardinfo_bottom">
  7532. <dl>
  7533. <dt>Effect</dt>
  7534. <dd>[On Play] You may trash 1 card in your hand to delete 1 of your opponent's level 4 or lower Digimon.</dd>
  7535. </dl>
  7536. <dl>
  7537. <dt>Digivolveeffect</dt>
  7538. <dd>-</dd>
  7539. </dl>
  7540. <dl>
  7541. <dt>Securityeffect</dt>
  7542. <dd>-</dd>
  7543. </dl>
  7544. <dl>
  7545. <dt>Notes</dt>
  7546. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7547. </div>
  7548. </div>
  7549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7550. </div>
  7551. </div>
  7552. </li>
  7553. <liclass="image_lists_itemdatapage-3">
  7554. <aclass="card_img">
  7555. <imgsrc="../images/cardlist/card/BT6-073.png"alt="BT6-073Ginkakumon"></a>
  7556. <divclass="popup">
  7557. <divclass="card_detailcard_detail_purple">
  7558. <divclass="card_detail_inner">
  7559. <ulclass="cardinfo_head">
  7560. <liclass="cardno">BT6-073</li>
  7561. <li>C</li>
  7562. <liclass="cardtype">Digimon</li>
  7563. <liclass="cardlv">Lv.4</li>
  7564. </ul>
  7565. <divclass="card_name">Ginkakumon</div>
  7566. <divclass="cardinfo_top">
  7567. <divclass="card_img">
  7568. <imgsrc="../images/cardlist/card/BT6-073.png"alt="BT6-073Ginkakumon"></div>
  7569. <divclass="cardinfo_top_body">
  7570. <dl>
  7571. <dt>Form</dt>
  7572. <dd>Champion</dd>
  7573. </dl>
  7574. <dl>
  7575. <dt>Attribute</dt>
  7576. <dd>Virus</dd>
  7577. </dl>
  7578. <dl>
  7579. <dt>Type</dt>
  7580. <dd>Demon</dd>
  7581. </dl>
  7582. <dl>
  7583. <dt>DP</dt>
  7584. <dd>5000</dl>
  7585. <dl>
  7586. <dt>PlayCost</dt>
  7587. <dd>5</dd>
  7588. </dl>
  7589. <dl>
  7590. <dt>DigivolveCost1</dt>
  7591. <dd>2fromLv.3</dd>
  7592. </dl>
  7593. <dl>
  7594. <dt>DigivolveCost2</dt>
  7595. <dd>-</dd>
  7596. </dl>
  7597. </div>
  7598. </div>
  7599. <divclass="cardinfo_bottom">
  7600. <dl>
  7601. <dt>Effect</dt>
  7602. <dd>-</dd>
  7603. </dl>
  7604. <dl>
  7605. <dt>Digivolveeffect</dt>
  7606. <dd>[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, gain 1 memory.</dd>
  7607. </dl>
  7608. <dl>
  7609. <dt>Securityeffect</dt>
  7610. <dd>-</dd>
  7611. </dl>
  7612. <dl>
  7613. <dt>Notes</dt>
  7614. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7615. </div>
  7616. </div>
  7617. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7618. </div>
  7619. </div>
  7620. </li>
  7621. <liclass="image_lists_itemdatapage-3">
  7622. <aclass="card_img">
  7623. <imgsrc="../images/cardlist/card/BT6-074.png"alt="BT6-074Boogiemon"></a>
  7624. <divclass="popup">
  7625. <divclass="card_detailcard_detail_purple">
  7626. <divclass="card_detail_inner">
  7627. <ulclass="cardinfo_head">
  7628. <liclass="cardno">BT6-074</li>
  7629. <li>C</li>
  7630. <liclass="cardtype">Digimon</li>
  7631. <liclass="cardlv">Lv.4</li>
  7632. </ul>
  7633. <divclass="card_name">Boogiemon</div>
  7634. <divclass="cardinfo_top">
  7635. <divclass="card_img">
  7636. <imgsrc="../images/cardlist/card/BT6-074.png"alt="BT6-074Boogiemon"></div>
  7637. <divclass="cardinfo_top_body">
  7638. <dl>
  7639. <dt>Form</dt>
  7640. <dd>Champion</dd>
  7641. </dl>
  7642. <dl>
  7643. <dt>Attribute</dt>
  7644. <dd>Virus</dd>
  7645. </dl>
  7646. <dl>
  7647. <dt>Type</dt>
  7648. <dd>Wizard</dd>
  7649. </dl>
  7650. <dl>
  7651. <dt>DP</dt>
  7652. <dd>7000</dl>
  7653. <dl>
  7654. <dt>PlayCost</dt>
  7655. <dd>5</dd>
  7656. </dl>
  7657. <dl>
  7658. <dt>DigivolveCost1</dt>
  7659. <dd>2fromLv.3</dd>
  7660. </dl>
  7661. <dl>
  7662. <dt>DigivolveCost2</dt>
  7663. <dd>-</dd>
  7664. </dl>
  7665. </div>
  7666. </div>
  7667. <divclass="cardinfo_bottom">
  7668. <dl>
  7669. <dt>Effect</dt>
  7670. <dd>-</dd>
  7671. </dl>
  7672. <dl>
  7673. <dt>Digivolveeffect</dt>
  7674. <dd>-</dd>
  7675. </dl>
  7676. <dl>
  7677. <dt>Securityeffect</dt>
  7678. <dd>-</dd>
  7679. </dl>
  7680. <dl>
  7681. <dt>Notes</dt>
  7682. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7683. </div>
  7684. </div>
  7685. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7686. </div>
  7687. </div>
  7688. </li>
  7689. <liclass="image_lists_itemdatapage-3">
  7690. <aclass="card_img">
  7691. <imgsrc="../images/cardlist/card/BT6-075.png"alt="BT6-075GinkakumonPromote"></a>
  7692. <divclass="popup">
  7693. <divclass="card_detailcard_detail_purple">
  7694. <divclass="card_detail_inner">
  7695. <ulclass="cardinfo_head">
  7696. <liclass="cardno">BT6-075</li>
  7697. <li>U</li>
  7698. <liclass="cardtype">Digimon</li>
  7699. <liclass="cardlv">Lv.4</li>
  7700. </ul>
  7701. <divclass="card_name">GinkakumonPromote</div>
  7702. <divclass="cardinfo_top">
  7703. <divclass="card_img">
  7704. <imgsrc="../images/cardlist/card/BT6-075.png"alt="BT6-075GinkakumonPromote"></div>
  7705. <divclass="cardinfo_top_body">
  7706. <dl>
  7707. <dt>Form</dt>
  7708. <dd>Champion</dd>
  7709. </dl>
  7710. <dl>
  7711. <dt>Attribute</dt>
  7712. <dd>Virus</dd>
  7713. </dl>
  7714. <dl>
  7715. <dt>Type</dt>
  7716. <dd>Demon</dd>
  7717. </dl>
  7718. <dl>
  7719. <dt>DP</dt>
  7720. <dd>6000</dl>
  7721. <dl>
  7722. <dt>PlayCost</dt>
  7723. <dd>6</dd>
  7724. </dl>
  7725. <dl>
  7726. <dt>DigivolveCost1</dt>
  7727. <dd>2fromLv.3</dd>
  7728. </dl>
  7729. <dl>
  7730. <dt>DigivolveCost2</dt>
  7731. <dd>1fromLv.4</dd>
  7732. </dl>
  7733. </div>
  7734. </div>
  7735. <divclass="cardinfo_bottom">
  7736. <dl>
  7737. <dt>Effect</dt>
  7738. <dd><Rush> (This Digimon can attack the turn it comes into play.)[On Play] You may place 1 [Kinkakumon] and/or 1 [Ginkakumon] from your trash in this card's digivolution cards in any order. If you place 2 cards with this effect, trigger <Draw 1> (Draw 1 card from your deck) and gain 1 memory.</dd>
  7739. </dl>
  7740. <dl>
  7741. <dt>Digivolveeffect</dt>
  7742. <dd>-</dd>
  7743. </dl>
  7744. <dl>
  7745. <dt>Securityeffect</dt>
  7746. <dd>-</dd>
  7747. </dl>
  7748. <dl>
  7749. <dt>Notes</dt>
  7750. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7751. </div>
  7752. </div>
  7753. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7754. </div>
  7755. </div>
  7756. </li>
  7757. <liclass="image_lists_itemdatapage-3">
  7758. <aclass="card_img">
  7759. <imgsrc="../images/cardlist/card/BT6-076.png"alt="BT6-076Feresmon"></a>
  7760. <divclass="popup">
  7761. <divclass="card_detailcard_detail_purple">
  7762. <divclass="card_detail_inner">
  7763. <ulclass="cardinfo_head">
  7764. <liclass="cardno">BT6-076</li>
  7765. <li>C</li>
  7766. <liclass="cardtype">Digimon</li>
  7767. <liclass="cardlv">Lv.5</li>
  7768. </ul>
  7769. <divclass="card_name">Feresmon</div>
  7770. <divclass="cardinfo_top">
  7771. <divclass="card_img">
  7772. <imgsrc="../images/cardlist/card/BT6-076.png"alt="BT6-076Feresmon"></div>
  7773. <divclass="cardinfo_top_body">
  7774. <dl>
  7775. <dt>Form</dt>
  7776. <dd>Ultimate</dd>
  7777. </dl>
  7778. <dl>
  7779. <dt>Attribute</dt>
  7780. <dd>Virus</dd>
  7781. </dl>
  7782. <dl>
  7783. <dt>Type</dt>
  7784. <dd>FallenAngel</dd>
  7785. </dl>
  7786. <dl>
  7787. <dt>DP</dt>
  7788. <dd>9000</dl>
  7789. <dl>
  7790. <dt>PlayCost</dt>
  7791. <dd>6</dd>
  7792. </dl>
  7793. <dl>
  7794. <dt>DigivolveCost1</dt>
  7795. <dd>3fromLv.4</dd>
  7796. </dl>
  7797. <dl>
  7798. <dt>DigivolveCost2</dt>
  7799. <dd>-</dd>
  7800. </dl>
  7801. </div>
  7802. </div>
  7803. <divclass="cardinfo_bottom">
  7804. <dl>
  7805. <dt>Effect</dt>
  7806. <dd>-</dd>
  7807. </dl>
  7808. <dl>
  7809. <dt>Digivolveeffect</dt>
  7810. <dd>-</dd>
  7811. </dl>
  7812. <dl>
  7813. <dt>Securityeffect</dt>
  7814. <dd>-</dd>
  7815. </dl>
  7816. <dl>
  7817. <dt>Notes</dt>
  7818. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7819. </div>
  7820. </div>
  7821. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7822. </div>
  7823. </div>
  7824. </li>
  7825. <liclass="image_lists_itemdatapage-3">
  7826. <aclass="card_img">
  7827. <imgsrc="../images/cardlist/card/BT6-077.png"alt="BT6-077Rebellimon"></a>
  7828. <divclass="popup">
  7829. <divclass="card_detailcard_detail_purple">
  7830. <divclass="card_detail_inner">
  7831. <ulclass="cardinfo_head">
  7832. <liclass="cardno">BT6-077</li>
  7833. <li>R</li>
  7834. <liclass="cardtype">Digimon</li>
  7835. <liclass="cardlv">Lv.5</li>
  7836. </ul>
  7837. <divclass="card_name">Rebellimon</div>
  7838. <divclass="cardinfo_top">
  7839. <divclass="card_img">
  7840. <imgsrc="../images/cardlist/card/BT6-077.png"alt="BT6-077Rebellimon"></div>
  7841. <divclass="cardinfo_top_body">
  7842. <dl>
  7843. <dt>Form</dt>
  7844. <dd>Ultimate</dd>
  7845. </dl>
  7846. <dl>
  7847. <dt>Attribute</dt>
  7848. <dd>Virus</dd>
  7849. </dl>
  7850. <dl>
  7851. <dt>Type</dt>
  7852. <dd>Cyborg</dd>
  7853. </dl>
  7854. <dl>
  7855. <dt>DP</dt>
  7856. <dd>7000</dl>
  7857. <dl>
  7858. <dt>PlayCost</dt>
  7859. <dd>7</dd>
  7860. </dl>
  7861. <dl>
  7862. <dt>DigivolveCost1</dt>
  7863. <dd>3fromLv.4</dd>
  7864. </dl>
  7865. <dl>
  7866. <dt>DigivolveCost2</dt>
  7867. <dd>3fromLv.4</dd>
  7868. </dl>
  7869. </div>
  7870. </div>
  7871. <divclass="cardinfo_bottom">
  7872. <dl>
  7873. <dt>Effect</dt>
  7874. <dd>[When Digivolving] You may trash 1 card in your hand to have this Digimon gain <Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead) and <Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling) until the end of your opponent's next turn.[All Turns] This Digimon is also treated as black.</dd>
  7875. </dl>
  7876. <dl>
  7877. <dt>Digivolveeffect</dt>
  7878. <dd>-</dd>
  7879. </dl>
  7880. <dl>
  7881. <dt>Securityeffect</dt>
  7882. <dd>-</dd>
  7883. </dl>
  7884. <dl>
  7885. <dt>Notes</dt>
  7886. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  7887. </div>
  7888. </div>
  7889. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7890. </div>
  7891. </div>
  7892. </li>
  7893. <liclass="image_lists_itemdatapage-3">
  7894. <aclass="card_img">
  7895. <imgsrc="../images/cardlist/card/BT6-077_P1.png"alt="BT6-077Rebellimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7896. </a>
  7897. <divclass="popup">
  7898. <divclass="card_detailcard_detail_purple">
  7899. <divclass="card_detail_inner">
  7900. <ulclass="cardinfo_head">
  7901. <liclass="cardno">BT6-077</li>
  7902. <li>R</li>
  7903. <liclass="cardtype">Digimon</li>
  7904. <liclass="cardlv">Lv.5</li>
  7905. <liclass="cardtypecardParallel">AlternativeArt</li>
  7906. </ul>
  7907. <divclass="card_name">Rebellimon</div>
  7908. <divclass="cardinfo_top">
  7909. <divclass="card_img">
  7910. <imgsrc="../images/cardlist/card/BT6-077_P1.png"alt="BT6-077Rebellimon"></div>
  7911. <divclass="cardinfo_top_body">
  7912. <dl>
  7913. <dt>Form</dt>
  7914. <dd>Ultimate</dd>
  7915. </dl>
  7916. <dl>
  7917. <dt>Attribute</dt>
  7918. <dd>Virus</dd>
  7919. </dl>
  7920. <dl>
  7921. <dt>Type</dt>
  7922. <dd>Cyborg</dd>
  7923. </dl>
  7924. <dl>
  7925. <dt>DP</dt>
  7926. <dd>7000</dl>
  7927. <dl>
  7928. <dt>PlayCost</dt>
  7929. <dd>7</dd>
  7930. </dl>
  7931. <dl>
  7932. <dt>DigivolveCost1</dt>
  7933. <dd>3fromLv.4</dd>
  7934. </dl>
  7935. <dl>
  7936. <dt>DigivolveCost2</dt>
  7937. <dd>3fromLv.4</dd>
  7938. </dl>
  7939. </div>
  7940. </div>
  7941. <divclass="cardinfo_bottom">
  7942. <dl>
  7943. <dt>Effect</dt>
  7944. <dd>[When Digivolving] You may trash 1 card in your hand to have this Digimon gain <Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead) and <Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling) until the end of your opponent's next turn.[All Turns] This Digimon is also treated as black.</dd>
  7945. </dl>
  7946. <dl>
  7947. <dt>Digivolveeffect</dt>
  7948. <dd>-</dd>
  7949. </dl>
  7950. <dl>
  7951. <dt>Securityeffect</dt>
  7952. <dd>-</dd>
  7953. </dl>
  7954. <dl>
  7955. <dt>Notes</dt>
  7956. <dd>FestSet</dd></dl>
  7957. </div>
  7958. </div>
  7959. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7960. </div>
  7961. </div>
  7962. </li>
  7963. <liclass="image_lists_itemdatapage-3">
  7964. <aclass="card_img">
  7965. <imgsrc="../images/cardlist/card/BT6-078.png"alt="BT6-078SkullGreymon"></a>
  7966. <divclass="popup">
  7967. <divclass="card_detailcard_detail_purple">
  7968. <divclass="card_detail_inner">
  7969. <ulclass="cardinfo_head">
  7970. <liclass="cardno">BT6-078</li>
  7971. <li>SR</li>
  7972. <liclass="cardtype">Digimon</li>
  7973. <liclass="cardlv">Lv.5</li>
  7974. </ul>
  7975. <divclass="card_name">SkullGreymon</div>
  7976. <divclass="cardinfo_top">
  7977. <divclass="card_img">
  7978. <imgsrc="../images/cardlist/card/BT6-078.png"alt="BT6-078SkullGreymon"></div>
  7979. <divclass="cardinfo_top_body">
  7980. <dl>
  7981. <dt>Form</dt>
  7982. <dd>Ultimate</dd>
  7983. </dl>
  7984. <dl>
  7985. <dt>Attribute</dt>
  7986. <dd>Virus</dd>
  7987. </dl>
  7988. <dl>
  7989. <dt>Type</dt>
  7990. <dd>Undead</dd>
  7991. </dl>
  7992. <dl>
  7993. <dt>DP</dt>
  7994. <dd>7000</dl>
  7995. <dl>
  7996. <dt>PlayCost</dt>
  7997. <dd>8</dd>
  7998. </dl>
  7999. <dl>
  8000. <dt>DigivolveCost1</dt>
  8001. <dd>3fromLv.4</dd>
  8002. </dl>
  8003. <dl>
  8004. <dt>DigivolveCost2</dt>
  8005. <dd>-</dd>
  8006. </dl>
  8007. </div>
  8008. </div>
  8009. <divclass="cardinfo_bottom">
  8010. <dl>
  8011. <dt>Effect</dt>
  8012. <dd>When you trash this card in your hand using one of your effects, you may place it under 1 of your purple Digimon at the bottom of its digivolution cards.[When Attacking] You may trash 1 card in your hand to have this Digimon get +3000 DP for the turn.</dd>
  8013. </dl>
  8014. <dl>
  8015. <dt>Digivolveeffect</dt>
  8016. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  8017. </dl>
  8018. <dl>
  8019. <dt>Securityeffect</dt>
  8020. <dd>-</dd>
  8021. </dl>
  8022. <dl>
  8023. <dt>Notes</dt>
  8024. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8025. </div>
  8026. </div>
  8027. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8028. </div>
  8029. </div>
  8030. </li>
  8031. <liclass="image_lists_itemdatapage-3">
  8032. <aclass="card_img">
  8033. <imgsrc="../images/cardlist/card/BT6-078_P1.png"alt="BT6-078SkullGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8034. </a>
  8035. <divclass="popup">
  8036. <divclass="card_detailcard_detail_purple">
  8037. <divclass="card_detail_inner">
  8038. <ulclass="cardinfo_head">
  8039. <liclass="cardno">BT6-078</li>
  8040. <li>SR</li>
  8041. <liclass="cardtype">Digimon</li>
  8042. <liclass="cardlv">Lv.5</li>
  8043. <liclass="cardtypecardParallel">AlternativeArt</li>
  8044. </ul>
  8045. <divclass="card_name">SkullGreymon</div>
  8046. <divclass="cardinfo_top">
  8047. <divclass="card_img">
  8048. <imgsrc="../images/cardlist/card/BT6-078_P1.png"alt="BT6-078SkullGreymon"></div>
  8049. <divclass="cardinfo_top_body">
  8050. <dl>
  8051. <dt>Form</dt>
  8052. <dd>Ultimate</dd>
  8053. </dl>
  8054. <dl>
  8055. <dt>Attribute</dt>
  8056. <dd>Virus</dd>
  8057. </dl>
  8058. <dl>
  8059. <dt>Type</dt>
  8060. <dd>Undead</dd>
  8061. </dl>
  8062. <dl>
  8063. <dt>DP</dt>
  8064. <dd>7000</dl>
  8065. <dl>
  8066. <dt>PlayCost</dt>
  8067. <dd>8</dd>
  8068. </dl>
  8069. <dl>
  8070. <dt>DigivolveCost1</dt>
  8071. <dd>3fromLv.4</dd>
  8072. </dl>
  8073. <dl>
  8074. <dt>DigivolveCost2</dt>
  8075. <dd>-</dd>
  8076. </dl>
  8077. </div>
  8078. </div>
  8079. <divclass="cardinfo_bottom">
  8080. <dl>
  8081. <dt>Effect</dt>
  8082. <dd>When you trash this card in your hand using one of your effects, you may place it under 1 of your purple Digimon at the bottom of its digivolution cards.[When Attacking] You may trash 1 card in your hand to have this Digimon get +3000 DP for the turn.</dd>
  8083. </dl>
  8084. <dl>
  8085. <dt>Digivolveeffect</dt>
  8086. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  8087. </dl>
  8088. <dl>
  8089. <dt>Securityeffect</dt>
  8090. <dd>-</dd>
  8091. </dl>
  8092. <dl>
  8093. <dt>Notes</dt>
  8094. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8095. </div>
  8096. </div>
  8097. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8098. </div>
  8099. </div>
  8100. </li>
  8101. <liclass="image_lists_itemdatapage-3">
  8102. <aclass="card_img">
  8103. <imgsrc="../images/cardlist/card/BT6-079.png"alt="BT6-079Murmukusmon"></a>
  8104. <divclass="popup">
  8105. <divclass="card_detailcard_detail_purple">
  8106. <divclass="card_detail_inner">
  8107. <ulclass="cardinfo_head">
  8108. <liclass="cardno">BT6-079</li>
  8109. <li>C</li>
  8110. <liclass="cardtype">Digimon</li>
  8111. <liclass="cardlv">Lv.6</li>
  8112. </ul>
  8113. <divclass="card_name">Murmukusmon</div>
  8114. <divclass="cardinfo_top">
  8115. <divclass="card_img">
  8116. <imgsrc="../images/cardlist/card/BT6-079.png"alt="BT6-079Murmukusmon"></div>
  8117. <divclass="cardinfo_top_body">
  8118. <dl>
  8119. <dt>Form</dt>
  8120. <dd>Mega</dd>
  8121. </dl>
  8122. <dl>
  8123. <dt>Attribute</dt>
  8124. <dd>Virus</dd>
  8125. </dl>
  8126. <dl>
  8127. <dt>Type</dt>
  8128. <dd>DemonLord</dd>
  8129. </dl>
  8130. <dl>
  8131. <dt>DP</dt>
  8132. <dd>10000</dl>
  8133. <dl>
  8134. <dt>PlayCost</dt>
  8135. <dd>11</dd>
  8136. </dl>
  8137. <dl>
  8138. <dt>DigivolveCost1</dt>
  8139. <dd>3fromLv.5</dd>
  8140. </dl>
  8141. <dl>
  8142. <dt>DigivolveCost2</dt>
  8143. <dd>-</dd>
  8144. </dl>
  8145. </div>
  8146. </div>
  8147. <divclass="cardinfo_bottom">
  8148. <dl>
  8149. <dt>Effect</dt>
  8150. <dd><Retaliation> (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)[On Deletion] If you have 10 or more cards in your trash, you may play 1 [Ornismon] from your trash without paying its memory cost.</dd>
  8151. </dl>
  8152. <dl>
  8153. <dt>Digivolveeffect</dt>
  8154. <dd>-</dd>
  8155. </dl>
  8156. <dl>
  8157. <dt>Securityeffect</dt>
  8158. <dd>-</dd>
  8159. </dl>
  8160. <dl>
  8161. <dt>Notes</dt>
  8162. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8163. </div>
  8164. </div>
  8165. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8166. </div>
  8167. </div>
  8168. </li>
  8169. <liclass="image_lists_itemdatapage-3">
  8170. <aclass="card_img">
  8171. <imgsrc="../images/cardlist/card/BT6-080.png"alt="BT6-080Ornismon"></a>
  8172. <divclass="popup">
  8173. <divclass="card_detailcard_detail_purple">
  8174. <divclass="card_detail_inner">
  8175. <ulclass="cardinfo_head">
  8176. <liclass="cardno">BT6-080</li>
  8177. <li>U</li>
  8178. <liclass="cardtype">Digimon</li>
  8179. <liclass="cardlv">Lv.6</li>
  8180. </ul>
  8181. <divclass="card_name">Ornismon</div>
  8182. <divclass="cardinfo_top">
  8183. <divclass="card_img">
  8184. <imgsrc="../images/cardlist/card/BT6-080.png"alt="BT6-080Ornismon"></div>
  8185. <divclass="cardinfo_top_body">
  8186. <dl>
  8187. <dt>Form</dt>
  8188. <dd>Mega</dd>
  8189. </dl>
  8190. <dl>
  8191. <dt>Attribute</dt>
  8192. <dd>Virus</dd>
  8193. </dl>
  8194. <dl>
  8195. <dt>Type</dt>
  8196. <dd>AncientBird</dd>
  8197. </dl>
  8198. <dl>
  8199. <dt>DP</dt>
  8200. <dd>12000</dl>
  8201. <dl>
  8202. <dt>PlayCost</dt>
  8203. <dd>12</dd>
  8204. </dl>
  8205. <dl>
  8206. <dt>DigivolveCost1</dt>
  8207. <dd>4fromLv.5</dd>
  8208. </dl>
  8209. <dl>
  8210. <dt>DigivolveCost2</dt>
  8211. <dd>-</dd>
  8212. </dl>
  8213. </div>
  8214. </div>
  8215. <divclass="cardinfo_bottom">
  8216. <dl>
  8217. <dt>Effect</dt>
  8218. <dd><Security Attack +1> (This Digimon checks 1 additional security card.)[On Play] Delete 1 of your opponent's level 5 or lower Digimon.</dd>
  8219. </dl>
  8220. <dl>
  8221. <dt>Digivolveeffect</dt>
  8222. <dd>-</dd>
  8223. </dl>
  8224. <dl>
  8225. <dt>Securityeffect</dt>
  8226. <dd>-</dd>
  8227. </dl>
  8228. <dl>
  8229. <dt>Notes</dt>
  8230. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8231. </div>
  8232. </div>
  8233. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8234. </div>
  8235. </div>
  8236. </li>
  8237. <liclass="image_lists_itemdatapage-4">
  8238. <aclass="card_img">
  8239. <imgsrc="../images/cardlist/card/BT6-081.png"alt="BT6-081Titamon"></a>
  8240. <divclass="popup">
  8241. <divclass="card_detailcard_detail_purple">
  8242. <divclass="card_detail_inner">
  8243. <ulclass="cardinfo_head">
  8244. <liclass="cardno">BT6-081</li>
  8245. <li>SR</li>
  8246. <liclass="cardtype">Digimon</li>
  8247. <liclass="cardlv">Lv.6</li>
  8248. </ul>
  8249. <divclass="card_name">Titamon</div>
  8250. <divclass="cardinfo_top">
  8251. <divclass="card_img">
  8252. <imgsrc="../images/cardlist/card/BT6-081.png"alt="BT6-081Titamon"></div>
  8253. <divclass="cardinfo_top_body">
  8254. <dl>
  8255. <dt>Form</dt>
  8256. <dd>Mega</dd>
  8257. </dl>
  8258. <dl>
  8259. <dt>Attribute</dt>
  8260. <dd>Virus</dd>
  8261. </dl>
  8262. <dl>
  8263. <dt>Type</dt>
  8264. <dd>Shaman</dd>
  8265. </dl>
  8266. <dl>
  8267. <dt>DP</dt>
  8268. <dd>12000</dl>
  8269. <dl>
  8270. <dt>PlayCost</dt>
  8271. <dd>12</dd>
  8272. </dl>
  8273. <dl>
  8274. <dt>DigivolveCost1</dt>
  8275. <dd>4fromLv.5</dd>
  8276. </dl>
  8277. <dl>
  8278. <dt>DigivolveCost2</dt>
  8279. <dd>-</dd>
  8280. </dl>
  8281. </div>
  8282. </div>
  8283. <divclass="cardinfo_bottom">
  8284. <dl>
  8285. <dt>Effect</dt>
  8286. <dd>[When Digivolving] Trash 1 card in your hand. Then, you may play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost.[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, this Digimon gets +2000 DP and <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  8287. </dl>
  8288. <dl>
  8289. <dt>Digivolveeffect</dt>
  8290. <dd>-</dd>
  8291. </dl>
  8292. <dl>
  8293. <dt>Securityeffect</dt>
  8294. <dd>-</dd>
  8295. </dl>
  8296. <dl>
  8297. <dt>Notes</dt>
  8298. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8299. </div>
  8300. </div>
  8301. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8302. </div>
  8303. </div>
  8304. </li>
  8305. <liclass="image_lists_itemdatapage-4">
  8306. <aclass="card_img">
  8307. <imgsrc="../images/cardlist/card/BT6-081_P1.png"alt="BT6-081Titamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8308. </a>
  8309. <divclass="popup">
  8310. <divclass="card_detailcard_detail_purple">
  8311. <divclass="card_detail_inner">
  8312. <ulclass="cardinfo_head">
  8313. <liclass="cardno">BT6-081</li>
  8314. <li>SR</li>
  8315. <liclass="cardtype">Digimon</li>
  8316. <liclass="cardlv">Lv.6</li>
  8317. <liclass="cardtypecardParallel">AlternativeArt</li>
  8318. </ul>
  8319. <divclass="card_name">Titamon</div>
  8320. <divclass="cardinfo_top">
  8321. <divclass="card_img">
  8322. <imgsrc="../images/cardlist/card/BT6-081_P1.png"alt="BT6-081Titamon"></div>
  8323. <divclass="cardinfo_top_body">
  8324. <dl>
  8325. <dt>Form</dt>
  8326. <dd>Mega</dd>
  8327. </dl>
  8328. <dl>
  8329. <dt>Attribute</dt>
  8330. <dd>Virus</dd>
  8331. </dl>
  8332. <dl>
  8333. <dt>Type</dt>
  8334. <dd>Shaman</dd>
  8335. </dl>
  8336. <dl>
  8337. <dt>DP</dt>
  8338. <dd>12000</dl>
  8339. <dl>
  8340. <dt>PlayCost</dt>
  8341. <dd>12</dd>
  8342. </dl>
  8343. <dl>
  8344. <dt>DigivolveCost1</dt>
  8345. <dd>4fromLv.5</dd>
  8346. </dl>
  8347. <dl>
  8348. <dt>DigivolveCost2</dt>
  8349. <dd>-</dd>
  8350. </dl>
  8351. </div>
  8352. </div>
  8353. <divclass="cardinfo_bottom">
  8354. <dl>
  8355. <dt>Effect</dt>
  8356. <dd>[When Digivolving] Trash 1 card in your hand. Then, you may play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost.[Your Turn][Once Per Turn] When you trash a card in your hand using one of your effects, this Digimon gets +2000 DP and <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  8357. </dl>
  8358. <dl>
  8359. <dt>Digivolveeffect</dt>
  8360. <dd>-</dd>
  8361. </dl>
  8362. <dl>
  8363. <dt>Securityeffect</dt>
  8364. <dd>-</dd>
  8365. </dl>
  8366. <dl>
  8367. <dt>Notes</dt>
  8368. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8369. </div>
  8370. </div>
  8371. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8372. </div>
  8373. </div>
  8374. </li>
  8375. <liclass="image_lists_itemdatapage-4">
  8376. <aclass="card_img">
  8377. <imgsrc="../images/cardlist/card/BT6-082.png"alt="BT6-082SistermonBlanc"></a>
  8378. <divclass="popup">
  8379. <divclass="card_detailcard_detail_white">
  8380. <divclass="card_detail_inner">
  8381. <ulclass="cardinfo_head">
  8382. <liclass="cardno">BT6-082</li>
  8383. <li>R</li>
  8384. <liclass="cardtype">Digimon</li>
  8385. <liclass="cardlv">Lv.3</li>
  8386. </ul>
  8387. <divclass="card_name">SistermonBlanc</div>
  8388. <divclass="cardinfo_top">
  8389. <divclass="card_img">
  8390. <imgsrc="../images/cardlist/card/BT6-082.png"alt="BT6-082SistermonBlanc"></div>
  8391. <divclass="cardinfo_top_body">
  8392. <dl>
  8393. <dt>Form</dt>
  8394. <dd>Rookie</dd>
  8395. </dl>
  8396. <dl>
  8397. <dt>Attribute</dt>
  8398. <dd>Vaccine</dd>
  8399. </dl>
  8400. <dl>
  8401. <dt>Type</dt>
  8402. <dd>Puppet</dd>
  8403. </dl>
  8404. <dl>
  8405. <dt>DP</dt>
  8406. <dd>3000</dl>
  8407. <dl>
  8408. <dt>PlayCost</dt>
  8409. <dd>3</dd>
  8410. </dl>
  8411. <dl>
  8412. <dt>DigivolveCost1</dt>
  8413. <dd>-</dd>
  8414. </dl>
  8415. <dl>
  8416. <dt>DigivolveCost2</dt>
  8417. <dd>-</dd>
  8418. </dl>
  8419. </div>
  8420. </div>
  8421. <divclass="cardinfo_bottom">
  8422. <dl>
  8423. <dt>Effect</dt>
  8424. <dd>[All Turns] While you have a Digimon with [Huckmon] in its name or [Royal Knight] in its type in play, all of your Digimon with [Sistermon] in their names gain <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[On Play] Trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  8425. </dl>
  8426. <dl>
  8427. <dt>Digivolveeffect</dt>
  8428. <dd>-</dd>
  8429. </dl>
  8430. <dl>
  8431. <dt>Securityeffect</dt>
  8432. <dd>-</dd>
  8433. </dl>
  8434. <dl>
  8435. <dt>Notes</dt>
  8436. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8437. </div>
  8438. </div>
  8439. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8440. </div>
  8441. </div>
  8442. </li>
  8443. <liclass="image_lists_itemdatapage-4">
  8444. <aclass="card_img">
  8445. <imgsrc="../images/cardlist/card/BT6-082_P1.png"alt="BT6-082SistermonBlanc"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8446. </a>
  8447. <divclass="popup">
  8448. <divclass="card_detailcard_detail_white">
  8449. <divclass="card_detail_inner">
  8450. <ulclass="cardinfo_head">
  8451. <liclass="cardno">BT6-082</li>
  8452. <li>R</li>
  8453. <liclass="cardtype">Digimon</li>
  8454. <liclass="cardlv">Lv.3</li>
  8455. <liclass="cardtypecardParallel">AlternativeArt</li>
  8456. </ul>
  8457. <divclass="card_name">SistermonBlanc</div>
  8458. <divclass="cardinfo_top">
  8459. <divclass="card_img">
  8460. <imgsrc="../images/cardlist/card/BT6-082_P1.png"alt="BT6-082SistermonBlanc"></div>
  8461. <divclass="cardinfo_top_body">
  8462. <dl>
  8463. <dt>Form</dt>
  8464. <dd>Rookie</dd>
  8465. </dl>
  8466. <dl>
  8467. <dt>Attribute</dt>
  8468. <dd>Vaccine</dd>
  8469. </dl>
  8470. <dl>
  8471. <dt>Type</dt>
  8472. <dd>Puppet</dd>
  8473. </dl>
  8474. <dl>
  8475. <dt>DP</dt>
  8476. <dd>3000</dl>
  8477. <dl>
  8478. <dt>PlayCost</dt>
  8479. <dd>3</dd>
  8480. </dl>
  8481. <dl>
  8482. <dt>DigivolveCost1</dt>
  8483. <dd>-</dd>
  8484. </dl>
  8485. <dl>
  8486. <dt>DigivolveCost2</dt>
  8487. <dd>-</dd>
  8488. </dl>
  8489. </div>
  8490. </div>
  8491. <divclass="cardinfo_bottom">
  8492. <dl>
  8493. <dt>Effect</dt>
  8494. <dd>[All Turns] While you have a Digimon with [Huckmon] in its name or [Royal Knight] in its type in play, all of your Digimon with [Sistermon] in their names gain <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[On Play] Trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  8495. </dl>
  8496. <dl>
  8497. <dt>Digivolveeffect</dt>
  8498. <dd>-</dd>
  8499. </dl>
  8500. <dl>
  8501. <dt>Securityeffect</dt>
  8502. <dd>-</dd>
  8503. </dl>
  8504. <dl>
  8505. <dt>Notes</dt>
  8506. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8507. </div>
  8508. </div>
  8509. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8510. </div>
  8511. </div>
  8512. </li>
  8513. <liclass="image_lists_itemdatapage-4">
  8514. <aclass="card_img">
  8515. <imgsrc="../images/cardlist/card/BT6-083.png"alt="BT6-083Eosmon"></a>
  8516. <divclass="popup">
  8517. <divclass="card_detailcard_detail_white">
  8518. <divclass="card_detail_inner">
  8519. <ulclass="cardinfo_head">
  8520. <liclass="cardno">BT6-083</li>
  8521. <li>C</li>
  8522. <liclass="cardtype">Digimon</li>
  8523. <liclass="cardlv">Lv.4</li>
  8524. </ul>
  8525. <divclass="card_name">Eosmon</div>
  8526. <divclass="cardinfo_top">
  8527. <divclass="card_img">
  8528. <imgsrc="../images/cardlist/card/BT6-083.png"alt="BT6-083Eosmon"></div>
  8529. <divclass="cardinfo_top_body">
  8530. <dl>
  8531. <dt>Form</dt>
  8532. <dd>Champion</dd>
  8533. </dl>
  8534. <dl>
  8535. <dt>Attribute</dt>
  8536. <dd>Unknown</dd>
  8537. </dl>
  8538. <dl>
  8539. <dt>Type</dt>
  8540. <dd>Unknown</dd>
  8541. </dl>
  8542. <dl>
  8543. <dt>DP</dt>
  8544. <dd>4000</dl>
  8545. <dl>
  8546. <dt>PlayCost</dt>
  8547. <dd>4</dd>
  8548. </dl>
  8549. <dl>
  8550. <dt>DigivolveCost1</dt>
  8551. <dd>2fromLv.3</dd>
  8552. </dl>
  8553. <dl>
  8554. <dt>DigivolveCost2</dt>
  8555. <dd>-</dd>
  8556. </dl>
  8557. </div>
  8558. </div>
  8559. <divclass="cardinfo_bottom">
  8560. <dl>
  8561. <dt>Effect</dt>
  8562. <dd>[On Play] You may play 1 white Tamer card with a play cost of 4 or less from your hand without paying its memory cost. Then, your opponent may play 1 Tamer card from their hand without paying its memory cost.</dd>
  8563. </dl>
  8564. <dl>
  8565. <dt>Digivolveeffect</dt>
  8566. <dd>[When Attacking] You may play 1 white Tamer card with a play cost of 4 or less from your hand without paying its memory cost.</dd>
  8567. </dl>
  8568. <dl>
  8569. <dt>Securityeffect</dt>
  8570. <dd>-</dd>
  8571. </dl>
  8572. <dl>
  8573. <dt>Notes</dt>
  8574. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8575. </div>
  8576. </div>
  8577. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8578. </div>
  8579. </div>
  8580. </li>
  8581. <liclass="image_lists_itemdatapage-4">
  8582. <aclass="card_img">
  8583. <imgsrc="../images/cardlist/card/BT6-083_P1.png"alt="BT6-083Eosmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8584. </a>
  8585. <divclass="popup">
  8586. <divclass="card_detailcard_detail_white">
  8587. <divclass="card_detail_inner">
  8588. <ulclass="cardinfo_head">
  8589. <liclass="cardno">BT6-083</li>
  8590. <li>C</li>
  8591. <liclass="cardtype">Digimon</li>
  8592. <liclass="cardlv">Lv.4</li>
  8593. <liclass="cardtypecardParallel">AlternativeArt</li>
  8594. </ul>
  8595. <divclass="card_name">Eosmon</div>
  8596. <divclass="cardinfo_top">
  8597. <divclass="card_img">
  8598. <imgsrc="../images/cardlist/card/BT6-083_P1.png"alt="BT6-083Eosmon"></div>
  8599. <divclass="cardinfo_top_body">
  8600. <dl>
  8601. <dt>Form</dt>
  8602. <dd>Champion</dd>
  8603. </dl>
  8604. <dl>
  8605. <dt>Attribute</dt>
  8606. <dd>Unknown</dd>
  8607. </dl>
  8608. <dl>
  8609. <dt>Type</dt>
  8610. <dd>Unknown</dd>
  8611. </dl>
  8612. <dl>
  8613. <dt>DP</dt>
  8614. <dd>4000</dl>
  8615. <dl>
  8616. <dt>PlayCost</dt>
  8617. <dd>4</dd>
  8618. </dl>
  8619. <dl>
  8620. <dt>DigivolveCost1</dt>
  8621. <dd>2fromLv.3</dd>
  8622. </dl>
  8623. <dl>
  8624. <dt>DigivolveCost2</dt>
  8625. <dd>-</dd>
  8626. </dl>
  8627. </div>
  8628. </div>
  8629. <divclass="cardinfo_bottom">
  8630. <dl>
  8631. <dt>Effect</dt>
  8632. <dd>[On Play] You may play 1 white Tamer card with a play cost of 4 or less from your hand without paying its memory cost. Then, your opponent may play 1 Tamer card from their hand without paying its memory cost.</dd>
  8633. </dl>
  8634. <dl>
  8635. <dt>Digivolveeffect</dt>
  8636. <dd>[When Attacking] You may play 1 white Tamer card with a play cost of 4 or less from your hand without paying its memory cost.</dd>
  8637. </dl>
  8638. <dl>
  8639. <dt>Securityeffect</dt>
  8640. <dd>-</dd>
  8641. </dl>
  8642. <dl>
  8643. <dt>Notes</dt>
  8644. <dd>TamerPartyVol.5</dd></dl>
  8645. </div>
  8646. </div>
  8647. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8648. </div>
  8649. </div>
  8650. </li>
  8651. <liclass="image_lists_itemdatapage-4">
  8652. <aclass="card_img">
  8653. <imgsrc="../images/cardlist/card/BT6-084.png"alt="BT6-084SistermonCiel"></a>
  8654. <divclass="popup">
  8655. <divclass="card_detailcard_detail_white">
  8656. <divclass="card_detail_inner">
  8657. <ulclass="cardinfo_head">
  8658. <liclass="cardno">BT6-084</li>
  8659. <li>R</li>
  8660. <liclass="cardtype">Digimon</li>
  8661. <liclass="cardlv">Lv.4</li>
  8662. </ul>
  8663. <divclass="card_name">SistermonCiel</div>
  8664. <divclass="cardinfo_top">
  8665. <divclass="card_img">
  8666. <imgsrc="../images/cardlist/card/BT6-084.png"alt="BT6-084SistermonCiel"></div>
  8667. <divclass="cardinfo_top_body">
  8668. <dl>
  8669. <dt>Form</dt>
  8670. <dd>Champion</dd>
  8671. </dl>
  8672. <dl>
  8673. <dt>Attribute</dt>
  8674. <dd>Data</dd>
  8675. </dl>
  8676. <dl>
  8677. <dt>Type</dt>
  8678. <dd>Puppet</dd>
  8679. </dl>
  8680. <dl>
  8681. <dt>DP</dt>
  8682. <dd>5000</dl>
  8683. <dl>
  8684. <dt>PlayCost</dt>
  8685. <dd>4</dd>
  8686. </dl>
  8687. <dl>
  8688. <dt>DigivolveCost1</dt>
  8689. <dd>-</dd>
  8690. </dl>
  8691. <dl>
  8692. <dt>DigivolveCost2</dt>
  8693. <dd>-</dd>
  8694. </dl>
  8695. </div>
  8696. </div>
  8697. <divclass="cardinfo_bottom">
  8698. <dl>
  8699. <dt>Effect</dt>
  8700. <dd>[All Turns] All of your Digimon with [Huckmon] in their names or [Royal Knight] in their types get +2000 DP.[On Play] Gain 1 memory.</dd>
  8701. </dl>
  8702. <dl>
  8703. <dt>Digivolveeffect</dt>
  8704. <dd>-</dd>
  8705. </dl>
  8706. <dl>
  8707. <dt>Securityeffect</dt>
  8708. <dd>-</dd>
  8709. </dl>
  8710. <dl>
  8711. <dt>Notes</dt>
  8712. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8713. </div>
  8714. </div>
  8715. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8716. </div>
  8717. </div>
  8718. </li>
  8719. <liclass="image_lists_itemdatapage-4">
  8720. <aclass="card_img">
  8721. <imgsrc="../images/cardlist/card/BT6-084_P1.png"alt="BT6-084SistermonCiel"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8722. </a>
  8723. <divclass="popup">
  8724. <divclass="card_detailcard_detail_white">
  8725. <divclass="card_detail_inner">
  8726. <ulclass="cardinfo_head">
  8727. <liclass="cardno">BT6-084</li>
  8728. <li>R</li>
  8729. <liclass="cardtype">Digimon</li>
  8730. <liclass="cardlv">Lv.4</li>
  8731. <liclass="cardtypecardParallel">AlternativeArt</li>
  8732. </ul>
  8733. <divclass="card_name">SistermonCiel</div>
  8734. <divclass="cardinfo_top">
  8735. <divclass="card_img">
  8736. <imgsrc="../images/cardlist/card/BT6-084_P1.png"alt="BT6-084SistermonCiel"></div>
  8737. <divclass="cardinfo_top_body">
  8738. <dl>
  8739. <dt>Form</dt>
  8740. <dd>Champion</dd>
  8741. </dl>
  8742. <dl>
  8743. <dt>Attribute</dt>
  8744. <dd>Data</dd>
  8745. </dl>
  8746. <dl>
  8747. <dt>Type</dt>
  8748. <dd>Puppet</dd>
  8749. </dl>
  8750. <dl>
  8751. <dt>DP</dt>
  8752. <dd>5000</dl>
  8753. <dl>
  8754. <dt>PlayCost</dt>
  8755. <dd>4</dd>
  8756. </dl>
  8757. <dl>
  8758. <dt>DigivolveCost1</dt>
  8759. <dd>-</dd>
  8760. </dl>
  8761. <dl>
  8762. <dt>DigivolveCost2</dt>
  8763. <dd>-</dd>
  8764. </dl>
  8765. </div>
  8766. </div>
  8767. <divclass="cardinfo_bottom">
  8768. <dl>
  8769. <dt>Effect</dt>
  8770. <dd>[All Turns] All of your Digimon with [Huckmon] in their names or [Royal Knight] in their types get +2000 DP.[On Play] Gain 1 memory.</dd>
  8771. </dl>
  8772. <dl>
  8773. <dt>Digivolveeffect</dt>
  8774. <dd>-</dd>
  8775. </dl>
  8776. <dl>
  8777. <dt>Securityeffect</dt>
  8778. <dd>-</dd>
  8779. </dl>
  8780. <dl>
  8781. <dt>Notes</dt>
  8782. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8783. </div>
  8784. </div>
  8785. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8786. </div>
  8787. </div>
  8788. </li>
  8789. <liclass="image_lists_itemdatapage-4">
  8790. <aclass="card_img">
  8791. <imgsrc="../images/cardlist/card/BT6-085.png"alt="BT6-085Eosmon"></a>
  8792. <divclass="popup">
  8793. <divclass="card_detailcard_detail_white">
  8794. <divclass="card_detail_inner">
  8795. <ulclass="cardinfo_head">
  8796. <liclass="cardno">BT6-085</li>
  8797. <li>C</li>
  8798. <liclass="cardtype">Digimon</li>
  8799. <liclass="cardlv">Lv.5</li>
  8800. </ul>
  8801. <divclass="card_name">Eosmon</div>
  8802. <divclass="cardinfo_top">
  8803. <divclass="card_img">
  8804. <imgsrc="../images/cardlist/card/BT6-085.png"alt="BT6-085Eosmon"></div>
  8805. <divclass="cardinfo_top_body">
  8806. <dl>
  8807. <dt>Form</dt>
  8808. <dd>Ultimate</dd>
  8809. </dl>
  8810. <dl>
  8811. <dt>Attribute</dt>
  8812. <dd>Unknown</dd>
  8813. </dl>
  8814. <dl>
  8815. <dt>Type</dt>
  8816. <dd>Unknown</dd>
  8817. </dl>
  8818. <dl>
  8819. <dt>DP</dt>
  8820. <dd>6000</dl>
  8821. <dl>
  8822. <dt>PlayCost</dt>
  8823. <dd>5</dd>
  8824. </dl>
  8825. <dl>
  8826. <dt>DigivolveCost1</dt>
  8827. <dd>3fromLv.4</dd>
  8828. </dl>
  8829. <dl>
  8830. <dt>DigivolveCost2</dt>
  8831. <dd>3fromLv.4</dd>
  8832. </dl>
  8833. </div>
  8834. </div>
  8835. <divclass="cardinfo_bottom">
  8836. <dl>
  8837. <dt>Effect</dt>
  8838. <dd>You can include up to 50 copies of cards with this card's card number in your deck.[When Attacking] You may play 1 level 5 or lower [Eosmon] from your hand without paying its memory cost.</dd>
  8839. </dl>
  8840. <dl>
  8841. <dt>Digivolveeffect</dt>
  8842. <dd>[Your Turn] This Digimon gets +1000 DP.</dd>
  8843. </dl>
  8844. <dl>
  8845. <dt>Securityeffect</dt>
  8846. <dd>-</dd>
  8847. </dl>
  8848. <dl>
  8849. <dt>Notes</dt>
  8850. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8851. </div>
  8852. </div>
  8853. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8854. </div>
  8855. </div>
  8856. </li>
  8857. <liclass="image_lists_itemdatapage-4">
  8858. <aclass="card_img">
  8859. <imgsrc="../images/cardlist/card/BT6-085_P1.png"alt="BT6-085Eosmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8860. </a>
  8861. <divclass="popup">
  8862. <divclass="card_detailcard_detail_white">
  8863. <divclass="card_detail_inner">
  8864. <ulclass="cardinfo_head">
  8865. <liclass="cardno">BT6-085</li>
  8866. <li>C</li>
  8867. <liclass="cardtype">Digimon</li>
  8868. <liclass="cardlv">Lv.5</li>
  8869. <liclass="cardtypecardParallel">AlternativeArt</li>
  8870. </ul>
  8871. <divclass="card_name">Eosmon</div>
  8872. <divclass="cardinfo_top">
  8873. <divclass="card_img">
  8874. <imgsrc="../images/cardlist/card/BT6-085_P1.png"alt="BT6-085Eosmon"></div>
  8875. <divclass="cardinfo_top_body">
  8876. <dl>
  8877. <dt>Form</dt>
  8878. <dd>Ultimate</dd>
  8879. </dl>
  8880. <dl>
  8881. <dt>Attribute</dt>
  8882. <dd>Unknown</dd>
  8883. </dl>
  8884. <dl>
  8885. <dt>Type</dt>
  8886. <dd>Unknown</dd>
  8887. </dl>
  8888. <dl>
  8889. <dt>DP</dt>
  8890. <dd>6000</dl>
  8891. <dl>
  8892. <dt>PlayCost</dt>
  8893. <dd>5</dd>
  8894. </dl>
  8895. <dl>
  8896. <dt>DigivolveCost1</dt>
  8897. <dd>3fromLv.4</dd>
  8898. </dl>
  8899. <dl>
  8900. <dt>DigivolveCost2</dt>
  8901. <dd>3fromLv.4</dd>
  8902. </dl>
  8903. </div>
  8904. </div>
  8905. <divclass="cardinfo_bottom">
  8906. <dl>
  8907. <dt>Effect</dt>
  8908. <dd>You can include up to 50 copies of cards with this card's card number in your deck.[When Attacking] You may play 1 level 5 or lower [Eosmon] from your hand without paying its memory cost.</dd>
  8909. </dl>
  8910. <dl>
  8911. <dt>Digivolveeffect</dt>
  8912. <dd>[Your Turn] This Digimon gets +1000 DP.</dd>
  8913. </dl>
  8914. <dl>
  8915. <dt>Securityeffect</dt>
  8916. <dd>-</dd>
  8917. </dl>
  8918. <dl>
  8919. <dt>Notes</dt>
  8920. <dd><ahref="/products/pack/ver11.php">&rtri;BOOSTERDIMENSIONALPHASE[BT11]</a></dd></dl>
  8921. </div>
  8922. </div>
  8923. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8924. </div>
  8925. </div>
  8926. </li>
  8927. <liclass="image_lists_itemdatapage-4">
  8928. <aclass="card_img">
  8929. <imgsrc="../images/cardlist/card/BT6-086.png"alt="BT6-086Eosmon"></a>
  8930. <divclass="popup">
  8931. <divclass="card_detailcard_detail_white">
  8932. <divclass="card_detail_inner">
  8933. <ulclass="cardinfo_head">
  8934. <liclass="cardno">BT6-086</li>
  8935. <li>SR</li>
  8936. <liclass="cardtype">Digimon</li>
  8937. <liclass="cardlv">Lv.6</li>
  8938. </ul>
  8939. <divclass="card_name">Eosmon</div>
  8940. <divclass="cardinfo_top">
  8941. <divclass="card_img">
  8942. <imgsrc="../images/cardlist/card/BT6-086.png"alt="BT6-086Eosmon"></div>
  8943. <divclass="cardinfo_top_body">
  8944. <dl>
  8945. <dt>Form</dt>
  8946. <dd>Mega</dd>
  8947. </dl>
  8948. <dl>
  8949. <dt>Attribute</dt>
  8950. <dd>Unknown</dd>
  8951. </dl>
  8952. <dl>
  8953. <dt>Type</dt>
  8954. <dd>Unknown</dd>
  8955. </dl>
  8956. <dl>
  8957. <dt>DP</dt>
  8958. <dd>13000</dl>
  8959. <dl>
  8960. <dt>PlayCost</dt>
  8961. <dd>13</dd>
  8962. </dl>
  8963. <dl>
  8964. <dt>DigivolveCost1</dt>
  8965. <dd>5fromLv.5</dd>
  8966. </dl>
  8967. <dl>
  8968. <dt>DigivolveCost2</dt>
  8969. <dd>5fromLv.5</dd>
  8970. </dl>
  8971. </div>
  8972. </div>
  8973. <divclass="cardinfo_bottom">
  8974. <dl>
  8975. <dt>Effect</dt>
  8976. <dd>[When Digivolving] For each Tamer in play, you may place 1 level 5 or lower [Eosmon] from your trash at the top of this Digimon's digivolution cards in any order. If you place 2 or more cards with this effect, delete 1 of your opponent's Digimon.[Your Turn] For every 3 digivolution cards this Digimon has, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  8977. </dl>
  8978. <dl>
  8979. <dt>Digivolveeffect</dt>
  8980. <dd>-</dd>
  8981. </dl>
  8982. <dl>
  8983. <dt>Securityeffect</dt>
  8984. <dd>-</dd>
  8985. </dl>
  8986. <dl>
  8987. <dt>Notes</dt>
  8988. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  8989. </div>
  8990. </div>
  8991. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8992. </div>
  8993. </div>
  8994. </li>
  8995. <liclass="image_lists_itemdatapage-4">
  8996. <aclass="card_img">
  8997. <imgsrc="../images/cardlist/card/BT6-086_P1.png"alt="BT6-086Eosmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8998. </a>
  8999. <divclass="popup">
  9000. <divclass="card_detailcard_detail_white">
  9001. <divclass="card_detail_inner">
  9002. <ulclass="cardinfo_head">
  9003. <liclass="cardno">BT6-086</li>
  9004. <li>SR</li>
  9005. <liclass="cardtype">Digimon</li>
  9006. <liclass="cardlv">Lv.6</li>
  9007. <liclass="cardtypecardParallel">AlternativeArt</li>
  9008. </ul>
  9009. <divclass="card_name">Eosmon</div>
  9010. <divclass="cardinfo_top">
  9011. <divclass="card_img">
  9012. <imgsrc="../images/cardlist/card/BT6-086_P1.png"alt="BT6-086Eosmon"></div>
  9013. <divclass="cardinfo_top_body">
  9014. <dl>
  9015. <dt>Form</dt>
  9016. <dd>Mega</dd>
  9017. </dl>
  9018. <dl>
  9019. <dt>Attribute</dt>
  9020. <dd>Unknown</dd>
  9021. </dl>
  9022. <dl>
  9023. <dt>Type</dt>
  9024. <dd>Unknown</dd>
  9025. </dl>
  9026. <dl>
  9027. <dt>DP</dt>
  9028. <dd>13000</dl>
  9029. <dl>
  9030. <dt>PlayCost</dt>
  9031. <dd>13</dd>
  9032. </dl>
  9033. <dl>
  9034. <dt>DigivolveCost1</dt>
  9035. <dd>5fromLv.5</dd>
  9036. </dl>
  9037. <dl>
  9038. <dt>DigivolveCost2</dt>
  9039. <dd>5fromLv.5</dd>
  9040. </dl>
  9041. </div>
  9042. </div>
  9043. <divclass="cardinfo_bottom">
  9044. <dl>
  9045. <dt>Effect</dt>
  9046. <dd>[When Digivolving] For each Tamer in play, you may place 1 level 5 or lower [Eosmon] from your trash at the top of this Digimon's digivolution cards in any order. If you place 2 or more cards with this effect, delete 1 of your opponent's Digimon.[Your Turn] For every 3 digivolution cards this Digimon has, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  9047. </dl>
  9048. <dl>
  9049. <dt>Digivolveeffect</dt>
  9050. <dd>-</dd>
  9051. </dl>
  9052. <dl>
  9053. <dt>Securityeffect</dt>
  9054. <dd>-</dd>
  9055. </dl>
  9056. <dl>
  9057. <dt>Notes</dt>
  9058. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9059. </div>
  9060. </div>
  9061. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9062. </div>
  9063. </div>
  9064. </li>
  9065. <liclass="image_lists_itemdatapage-4">
  9066. <aclass="card_img">
  9067. <imgsrc="../images/cardlist/card/BT6-111.png"alt="BT6-111Alphamon"></a>
  9068. <divclass="popup">
  9069. <divclass="card_detailcard_detail_black">
  9070. <divclass="card_detail_inner">
  9071. <ulclass="cardinfo_head">
  9072. <liclass="cardno">BT6-111</li>
  9073. <li>SEC</li>
  9074. <liclass="cardtype">Digimon</li>
  9075. <liclass="cardlv">Lv.6</li>
  9076. </ul>
  9077. <divclass="card_name">Alphamon</div>
  9078. <divclass="cardinfo_top">
  9079. <divclass="card_img">
  9080. <imgsrc="../images/cardlist/card/BT6-111.png"alt="BT6-111Alphamon"></div>
  9081. <divclass="cardinfo_top_body">
  9082. <dl>
  9083. <dt>Form</dt>
  9084. <dd>Mega</dd>
  9085. </dl>
  9086. <dl>
  9087. <dt>Attribute</dt>
  9088. <dd>Vaccine</dd>
  9089. </dl>
  9090. <dl>
  9091. <dt>Type</dt>
  9092. <dd>HolyWarrior/RoyalKnight/X-Antibody</dd>
  9093. </dl>
  9094. <dl>
  9095. <dt>DP</dt>
  9096. <dd>11000</dl>
  9097. <dl>
  9098. <dt>PlayCost</dt>
  9099. <dd>13</dd>
  9100. </dl>
  9101. <dl>
  9102. <dt>DigivolveCost1</dt>
  9103. <dd>3fromLv.5</dd>
  9104. </dl>
  9105. <dl>
  9106. <dt>DigivolveCost2</dt>
  9107. <dd>-</dd>
  9108. </dl>
  9109. </div>
  9110. </div>
  9111. <divclass="cardinfo_bottom">
  9112. <dl>
  9113. <dt>Effect</dt>
  9114. <dd>[Security] At the end of the battle, add this card to your hand. Then, if a Digimon with [Royal Knight] or [X-Antibody] in its type is in play, up to 12 of your opponent's Digimon can't attack players for the turn.[When Attacking] You may pay up to 5 memory. If you do, this Digimon gets +1000 DP for the turn for each memory paid.[End of Attack] Gain 2 memory.</dd>
  9115. </dl>
  9116. <dl>
  9117. <dt>Digivolveeffect</dt>
  9118. <dd>-</dd>
  9119. </dl>
  9120. <dl>
  9121. <dt>Securityeffect</dt>
  9122. <dd>-</dd>
  9123. </dl>
  9124. <dl>
  9125. <dt>Notes</dt>
  9126. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9127. </div>
  9128. </div>
  9129. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9130. </div>
  9131. </div>
  9132. </li>
  9133. <liclass="image_lists_itemdatapage-4">
  9134. <aclass="card_img">
  9135. <imgsrc="../images/cardlist/card/BT6-111_P1.png"alt="BT6-111Alphamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  9136. </a>
  9137. <divclass="popup">
  9138. <divclass="card_detailcard_detail_black">
  9139. <divclass="card_detail_inner">
  9140. <ulclass="cardinfo_head">
  9141. <liclass="cardno">BT6-111</li>
  9142. <li>SEC</li>
  9143. <liclass="cardtype">Digimon</li>
  9144. <liclass="cardlv">Lv.6</li>
  9145. <liclass="cardtypecardParallel">AlternativeArt</li>
  9146. </ul>
  9147. <divclass="card_name">Alphamon</div>
  9148. <divclass="cardinfo_top">
  9149. <divclass="card_img">
  9150. <imgsrc="../images/cardlist/card/BT6-111_P1.png"alt="BT6-111Alphamon"></div>
  9151. <divclass="cardinfo_top_body">
  9152. <dl>
  9153. <dt>Form</dt>
  9154. <dd>Mega</dd>
  9155. </dl>
  9156. <dl>
  9157. <dt>Attribute</dt>
  9158. <dd>Vaccine</dd>
  9159. </dl>
  9160. <dl>
  9161. <dt>Type</dt>
  9162. <dd>HolyWarrior/RoyalKnight/X-Antibody</dd>
  9163. </dl>
  9164. <dl>
  9165. <dt>DP</dt>
  9166. <dd>11000</dl>
  9167. <dl>
  9168. <dt>PlayCost</dt>
  9169. <dd>13</dd>
  9170. </dl>
  9171. <dl>
  9172. <dt>DigivolveCost1</dt>
  9173. <dd>3fromLv.5</dd>
  9174. </dl>
  9175. <dl>
  9176. <dt>DigivolveCost2</dt>
  9177. <dd>-</dd>
  9178. </dl>
  9179. </div>
  9180. </div>
  9181. <divclass="cardinfo_bottom">
  9182. <dl>
  9183. <dt>Effect</dt>
  9184. <dd>[Security] At the end of the battle, add this card to your hand. Then, if a Digimon with [Royal Knight] or [X-Antibody] in its type is in play, up to 12 of your opponent's Digimon can't attack players for the turn.[When Attacking] You may pay up to 5 memory. If you do, this Digimon gets +1000 DP for the turn for each memory paid.[End of Attack] Gain 2 memory.</dd>
  9185. </dl>
  9186. <dl>
  9187. <dt>Digivolveeffect</dt>
  9188. <dd>-</dd>
  9189. </dl>
  9190. <dl>
  9191. <dt>Securityeffect</dt>
  9192. <dd>-</dd>
  9193. </dl>
  9194. <dl>
  9195. <dt>Notes</dt>
  9196. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9197. </div>
  9198. </div>
  9199. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9200. </div>
  9201. </div>
  9202. </li>
  9203. <liclass="image_lists_itemdatapage-4">
  9204. <aclass="card_img">
  9205. <imgsrc="../images/cardlist/card/BT6-112.png"alt="BT6-112BeelStarmon"></a>
  9206. <divclass="popup">
  9207. <divclass="card_detailcard_detail_purple">
  9208. <divclass="card_detail_inner">
  9209. <ulclass="cardinfo_head">
  9210. <liclass="cardno">BT6-112</li>
  9211. <li>SEC</li>
  9212. <liclass="cardtype">Digimon</li>
  9213. <liclass="cardlv">Lv.6</li>
  9214. </ul>
  9215. <divclass="card_name">BeelStarmon</div>
  9216. <divclass="cardinfo_top">
  9217. <divclass="card_img">
  9218. <imgsrc="../images/cardlist/card/BT6-112.png"alt="BT6-112BeelStarmon"></div>
  9219. <divclass="cardinfo_top_body">
  9220. <dl>
  9221. <dt>Form</dt>
  9222. <dd>Mega</dd>
  9223. </dl>
  9224. <dl>
  9225. <dt>Attribute</dt>
  9226. <dd>Virus</dd>
  9227. </dl>
  9228. <dl>
  9229. <dt>Type</dt>
  9230. <dd>Wizard/ThreeMusketeers</dd>
  9231. </dl>
  9232. <dl>
  9233. <dt>DP</dt>
  9234. <dd>11000</dl>
  9235. <dl>
  9236. <dt>PlayCost</dt>
  9237. <dd>12</dd>
  9238. </dl>
  9239. <dl>
  9240. <dt>DigivolveCost1</dt>
  9241. <dd>3fromLv.5</dd>
  9242. </dl>
  9243. <dl>
  9244. <dt>DigivolveCost2</dt>
  9245. <dd>-</dd>
  9246. </dl>
  9247. </div>
  9248. </div>
  9249. <divclass="cardinfo_bottom">
  9250. <dl>
  9251. <dt>Effect</dt>
  9252. <dd>When playing this card from your hand, reduce its play cost by 1 for each [Three Musketeers] Digimon card and Option card with a memory cost of 7 in your trash.[On Play] Return 1 Option card with a memory cost of 7 from your trash to your hand. Then, use 1 Option card with a memory cost of 7 in your hand without paying its memory cost.</dd>
  9253. </dl>
  9254. <dl>
  9255. <dt>Digivolveeffect</dt>
  9256. <dd>-</dd>
  9257. </dl>
  9258. <dl>
  9259. <dt>Securityeffect</dt>
  9260. <dd>-</dd>
  9261. </dl>
  9262. <dl>
  9263. <dt>Notes</dt>
  9264. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9265. </div>
  9266. </div>
  9267. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9268. </div>
  9269. </div>
  9270. </li>
  9271. <liclass="image_lists_itemdatapage-4">
  9272. <aclass="card_img">
  9273. <imgsrc="../images/cardlist/card/BT6-112_P1.png"alt="BT6-112BeelStarmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  9274. </a>
  9275. <divclass="popup">
  9276. <divclass="card_detailcard_detail_purple">
  9277. <divclass="card_detail_inner">
  9278. <ulclass="cardinfo_head">
  9279. <liclass="cardno">BT6-112</li>
  9280. <li>SEC</li>
  9281. <liclass="cardtype">Digimon</li>
  9282. <liclass="cardlv">Lv.6</li>
  9283. <liclass="cardtypecardParallel">AlternativeArt</li>
  9284. </ul>
  9285. <divclass="card_name">BeelStarmon</div>
  9286. <divclass="cardinfo_top">
  9287. <divclass="card_img">
  9288. <imgsrc="../images/cardlist/card/BT6-112_P1.png"alt="BT6-112BeelStarmon"></div>
  9289. <divclass="cardinfo_top_body">
  9290. <dl>
  9291. <dt>Form</dt>
  9292. <dd>Mega</dd>
  9293. </dl>
  9294. <dl>
  9295. <dt>Attribute</dt>
  9296. <dd>Virus</dd>
  9297. </dl>
  9298. <dl>
  9299. <dt>Type</dt>
  9300. <dd>Wizard/ThreeMusketeers</dd>
  9301. </dl>
  9302. <dl>
  9303. <dt>DP</dt>
  9304. <dd>11000</dl>
  9305. <dl>
  9306. <dt>PlayCost</dt>
  9307. <dd>12</dd>
  9308. </dl>
  9309. <dl>
  9310. <dt>DigivolveCost1</dt>
  9311. <dd>3fromLv.5</dd>
  9312. </dl>
  9313. <dl>
  9314. <dt>DigivolveCost2</dt>
  9315. <dd>-</dd>
  9316. </dl>
  9317. </div>
  9318. </div>
  9319. <divclass="cardinfo_bottom">
  9320. <dl>
  9321. <dt>Effect</dt>
  9322. <dd>When playing this card from your hand, reduce its play cost by 1 for each [Three Musketeers] Digimon card and Option card with a memory cost of 7 in your trash.[On Play] Return 1 Option card with a memory cost of 7 from your trash to your hand. Then, use 1 Option card with a memory cost of 7 in your hand without paying its memory cost.</dd>
  9323. </dl>
  9324. <dl>
  9325. <dt>Digivolveeffect</dt>
  9326. <dd>-</dd>
  9327. </dl>
  9328. <dl>
  9329. <dt>Securityeffect</dt>
  9330. <dd>-</dd>
  9331. </dl>
  9332. <dl>
  9333. <dt>Notes</dt>
  9334. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9335. </div>
  9336. </div>
  9337. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9338. </div>
  9339. </div>
  9340. </li>
  9341. <liclass="image_lists_itemdatapage-4">
  9342. <aclass="card_img">
  9343. <imgsrc="../images/cardlist/card/BT1-084_P3.png"alt="BT1-084Omnimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  9344. </a>
  9345. <divclass="popup">
  9346. <divclass="card_detailcard_detail_white">
  9347. <divclass="card_detail_inner">
  9348. <ulclass="cardinfo_head">
  9349. <liclass="cardno">BT1-084</li>
  9350. <li>SR</li>
  9351. <liclass="cardtype">Digimon</li>
  9352. <liclass="cardlv">Lv.7</li>
  9353. <liclass="cardtypecardParallel">AlternativeArt</li>
  9354. </ul>
  9355. <divclass="card_name">Omnimon</div>
  9356. <divclass="cardinfo_top">
  9357. <divclass="card_img">
  9358. <imgsrc="../images/cardlist/card/BT1-084_P3.png"alt="BT1-084Omnimon"></div>
  9359. <divclass="cardinfo_top_body">
  9360. <dl>
  9361. <dt>Form</dt>
  9362. <dd>Mega</dd>
  9363. </dl>
  9364. <dl>
  9365. <dt>Attribute</dt>
  9366. <dd>Vaccine</dd>
  9367. </dl>
  9368. <dl>
  9369. <dt>Type</dt>
  9370. <dd>HolyWarrior/RoyalKnight</dd>
  9371. </dl>
  9372. <dl>
  9373. <dt>DP</dt>
  9374. <dd>15000</dl>
  9375. <dl>
  9376. <dt>PlayCost</dt>
  9377. <dd>15</dd>
  9378. </dl>
  9379. <dl>
  9380. <dt>DigivolveCost1</dt>
  9381. <dd>6fromLv.6</dd>
  9382. </dl>
  9383. <dl>
  9384. <dt>DigivolveCost2</dt>
  9385. <dd>6fromLv.6</dd>
  9386. </dl>
  9387. </div>
  9388. </div>
  9389. <divclass="cardinfo_bottom">
  9390. <dl>
  9391. <dt>Effect</dt>
  9392. <dd>[When Digivolving] Choose 1 of your opponent's Digimon. Delete all of your opponent's Digimon that share a name with it.[When Attacking] You can unsuspend this Digimon by returning 1 of this Digimon's level 6 digivolution cards to your hand.</dd>
  9393. </dl>
  9394. <dl>
  9395. <dt>Digivolveeffect</dt>
  9396. <dd>-</dd>
  9397. </dl>
  9398. <dl>
  9399. <dt>Securityeffect</dt>
  9400. <dd>-</dd>
  9401. </dl>
  9402. <dl>
  9403. <dt>Notes</dt>
  9404. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9405. </div>
  9406. </div>
  9407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9408. </div>
  9409. </div>
  9410. </li>
  9411. <liclass="image_lists_itemdatapage-4">
  9412. <aclass="card_img">
  9413. <imgsrc="../images/cardlist/card/BT6-087.png"alt="BT6-087TaiKamiya"></a>
  9414. <divclass="popup">
  9415. <divclass="card_detailcard_detail_red">
  9416. <divclass="card_detail_inner">
  9417. <ulclass="cardinfo_head">
  9418. <liclass="cardno">BT6-087</li>
  9419. <li>R</li>
  9420. <liclass="cardtype">Tamer</li>
  9421. </ul>
  9422. <divclass="card_name">TaiKamiya</div>
  9423. <divclass="cardinfo_top">
  9424. <divclass="card_img">
  9425. <imgsrc="../images/cardlist/card/BT6-087.png"alt="BT6-087TaiKamiya"></div>
  9426. <divclass="cardinfo_top_body">
  9427. <dl>
  9428. <dt>Form</dt>
  9429. <dd>-</dd>
  9430. </dl>
  9431. <dl>
  9432. <dt>Attribute</dt>
  9433. <dd>-</dd>
  9434. </dl>
  9435. <dl>
  9436. <dt>Type</dt>
  9437. <dd>-</dd>
  9438. </dl>
  9439. <dl>
  9440. <dt>DP</dt>
  9441. <dd>-</dl>
  9442. <dl>
  9443. <dt>PlayCost</dt>
  9444. <dd>3</dd>
  9445. </dl>
  9446. <dl>
  9447. <dt>DigivolveCost1</dt>
  9448. <dd>-</dd>
  9449. </dl>
  9450. <dl>
  9451. <dt>DigivolveCost2</dt>
  9452. <dd>-</dd>
  9453. </dl>
  9454. </div>
  9455. </div>
  9456. <divclass="cardinfo_bottom">
  9457. <dl>
  9458. <dt>Effect</dt>
  9459. <dd>[Your Turn] When one of your Digimon with [Agumon] or [Greymon] in its name moves from the breeding area to the battle area, gain 1 memory and trigger <Draw 1>. (Draw 1 card from your deck.)[Main][Once Per Turn] Digivolve your [Agumon] into 1 [Agumon - Bond of Bravery] in your hand for its digivolution cost, ignoring its level. If you do, trash the top 2 cards of your security stack. Then, if you have 1 or more security cards, delete that Digimon at the end of the turn.</dd>
  9460. </dl>
  9461. <dl>
  9462. <dt>Digivolveeffect</dt>
  9463. <dd>-</dd>
  9464. </dl>
  9465. <dl>
  9466. <dt>Securityeffect</dt>
  9467. <dd>[Security] Play this card without paying its memory cost.</dd>
  9468. </dl>
  9469. <dl>
  9470. <dt>Notes</dt>
  9471. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9472. </div>
  9473. </div>
  9474. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9475. </div>
  9476. </div>
  9477. </li>
  9478. <liclass="image_lists_itemdatapage-4">
  9479. <aclass="card_img">
  9480. <imgsrc="../images/cardlist/card/BT6-088.png"alt="BT6-088MattIshida"></a>
  9481. <divclass="popup">
  9482. <divclass="card_detailcard_detail_blue">
  9483. <divclass="card_detail_inner">
  9484. <ulclass="cardinfo_head">
  9485. <liclass="cardno">BT6-088</li>
  9486. <li>R</li>
  9487. <liclass="cardtype">Tamer</li>
  9488. </ul>
  9489. <divclass="card_name">MattIshida</div>
  9490. <divclass="cardinfo_top">
  9491. <divclass="card_img">
  9492. <imgsrc="../images/cardlist/card/BT6-088.png"alt="BT6-088MattIshida"></div>
  9493. <divclass="cardinfo_top_body">
  9494. <dl>
  9495. <dt>Form</dt>
  9496. <dd>-</dd>
  9497. </dl>
  9498. <dl>
  9499. <dt>Attribute</dt>
  9500. <dd>-</dd>
  9501. </dl>
  9502. <dl>
  9503. <dt>Type</dt>
  9504. <dd>-</dd>
  9505. </dl>
  9506. <dl>
  9507. <dt>DP</dt>
  9508. <dd>-</dl>
  9509. <dl>
  9510. <dt>PlayCost</dt>
  9511. <dd>3</dd>
  9512. </dl>
  9513. <dl>
  9514. <dt>DigivolveCost1</dt>
  9515. <dd>-</dd>
  9516. </dl>
  9517. <dl>
  9518. <dt>DigivolveCost2</dt>
  9519. <dd>-</dd>
  9520. </dl>
  9521. </div>
  9522. </div>
  9523. <divclass="cardinfo_bottom">
  9524. <dl>
  9525. <dt>Effect</dt>
  9526. <dd>[Your Turn] When one of your Digimon with [Gabumon] or [Garurumon] in its name moves from the breeding area to the battle area, gain 1 memory and trigger <Draw 1>. (Draw 1 card from your deck.)[Main][Once Per Turn] Digivolve your [Gabumon] into 1 [Gabumon - Bond of Friendship] in your hand for its digivolution cost, ignoring its level. If you do, trash the top 2 cards of your security stack. Then, if you have 1 or more security cards, delete that Digimon at the end of the turn.</dd>
  9527. </dl>
  9528. <dl>
  9529. <dt>Digivolveeffect</dt>
  9530. <dd>-</dd>
  9531. </dl>
  9532. <dl>
  9533. <dt>Securityeffect</dt>
  9534. <dd>[Security] Play this card without paying its memory cost.</dd>
  9535. </dl>
  9536. <dl>
  9537. <dt>Notes</dt>
  9538. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9539. </div>
  9540. </div>
  9541. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9542. </div>
  9543. </div>
  9544. </li>
  9545. <liclass="image_lists_itemdatapage-4">
  9546. <aclass="card_img">
  9547. <imgsrc="../images/cardlist/card/BT6-089.png"alt="BT6-089T.K.Takaishi&KariKamiya"></a>
  9548. <divclass="popup">
  9549. <divclass="card_detailcard_detail_yellow">
  9550. <divclass="card_detail_inner">
  9551. <ulclass="cardinfo_head">
  9552. <liclass="cardno">BT6-089</li>
  9553. <li>R</li>
  9554. <liclass="cardtype">Tamer</li>
  9555. </ul>
  9556. <divclass="card_name">T.K.Takaishi&KariKamiya</div>
  9557. <divclass="cardinfo_top">
  9558. <divclass="card_img">
  9559. <imgsrc="../images/cardlist/card/BT6-089.png"alt="BT6-089T.K.Takaishi&KariKamiya"></div>
  9560. <divclass="cardinfo_top_body">
  9561. <dl>
  9562. <dt>Form</dt>
  9563. <dd>-</dd>
  9564. </dl>
  9565. <dl>
  9566. <dt>Attribute</dt>
  9567. <dd>-</dd>
  9568. </dl>
  9569. <dl>
  9570. <dt>Type</dt>
  9571. <dd>-</dd>
  9572. </dl>
  9573. <dl>
  9574. <dt>DP</dt>
  9575. <dd>-</dl>
  9576. <dl>
  9577. <dt>PlayCost</dt>
  9578. <dd>4</dd>
  9579. </dl>
  9580. <dl>
  9581. <dt>DigivolveCost1</dt>
  9582. <dd>-</dd>
  9583. </dl>
  9584. <dl>
  9585. <dt>DigivolveCost2</dt>
  9586. <dd>-</dd>
  9587. </dl>
  9588. </div>
  9589. </div>
  9590. <divclass="cardinfo_bottom">
  9591. <dl>
  9592. <dt>Effect</dt>
  9593. <dd>[Start of Your Turn] If you have fewer security cards than your opponent, gain 2 memory.[Your Turn] When one of your yellow Digimon attacks, you may suspend this Tamer to have 1 of your opponent's Digimon get -1000 DP for the turn.</dd>
  9594. </dl>
  9595. <dl>
  9596. <dt>Digivolveeffect</dt>
  9597. <dd>-</dd>
  9598. </dl>
  9599. <dl>
  9600. <dt>Securityeffect</dt>
  9601. <dd>[Security] Play this card without paying its memory cost.</dd>
  9602. </dl>
  9603. <dl>
  9604. <dt>Notes</dt>
  9605. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9606. </div>
  9607. </div>
  9608. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9609. </div>
  9610. </div>
  9611. </li>
  9612. <liclass="image_lists_itemdatapage-4">
  9613. <aclass="card_img">
  9614. <imgsrc="../images/cardlist/card/BT6-090.png"alt="BT6-090IzzyIzumi&JoeKido"></a>
  9615. <divclass="popup">
  9616. <divclass="card_detailcard_detail_black">
  9617. <divclass="card_detail_inner">
  9618. <ulclass="cardinfo_head">
  9619. <liclass="cardno">BT6-090</li>
  9620. <li>R</li>
  9621. <liclass="cardtype">Tamer</li>
  9622. </ul>
  9623. <divclass="card_name">IzzyIzumi&JoeKido</div>
  9624. <divclass="cardinfo_top">
  9625. <divclass="card_img">
  9626. <imgsrc="../images/cardlist/card/BT6-090.png"alt="BT6-090IzzyIzumi&JoeKido"></div>
  9627. <divclass="cardinfo_top_body">
  9628. <dl>
  9629. <dt>Form</dt>
  9630. <dd>-</dd>
  9631. </dl>
  9632. <dl>
  9633. <dt>Attribute</dt>
  9634. <dd>-</dd>
  9635. </dl>
  9636. <dl>
  9637. <dt>Type</dt>
  9638. <dd>-</dd>
  9639. </dl>
  9640. <dl>
  9641. <dt>DP</dt>
  9642. <dd>-</dl>
  9643. <dl>
  9644. <dt>PlayCost</dt>
  9645. <dd>4</dd>
  9646. </dl>
  9647. <dl>
  9648. <dt>DigivolveCost1</dt>
  9649. <dd>-</dd>
  9650. </dl>
  9651. <dl>
  9652. <dt>DigivolveCost2</dt>
  9653. <dd>-</dd>
  9654. </dl>
  9655. </div>
  9656. </div>
  9657. <divclass="cardinfo_bottom">
  9658. <dl>
  9659. <dt>Effect</dt>
  9660. <dd>[Start of Your Turn] If your opponent has 2 or more Digimon in play, gain 2 memory.[Opponent's Turn] When one of your black Digimon is deleted, you may suspend this Tamer to trigger <Draw 1>. (Draw 1 card from your deck.)</dd>
  9661. </dl>
  9662. <dl>
  9663. <dt>Digivolveeffect</dt>
  9664. <dd>-</dd>
  9665. </dl>
  9666. <dl>
  9667. <dt>Securityeffect</dt>
  9668. <dd>[Security] Play this card without paying its memory cost.</dd>
  9669. </dl>
  9670. <dl>
  9671. <dt>Notes</dt>
  9672. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9673. </div>
  9674. </div>
  9675. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9676. </div>
  9677. </div>
  9678. </li>
  9679. <liclass="image_lists_itemdatapage-4">
  9680. <aclass="card_img">
  9681. <imgsrc="../images/cardlist/card/BT6-091.png"alt="BT6-091SoraTakenouchi&MimiTachikawa"></a>
  9682. <divclass="popup">
  9683. <divclass="card_detailcard_detail_purple">
  9684. <divclass="card_detail_inner">
  9685. <ulclass="cardinfo_head">
  9686. <liclass="cardno">BT6-091</li>
  9687. <li>R</li>
  9688. <liclass="cardtype">Tamer</li>
  9689. </ul>
  9690. <divclass="card_name">SoraTakenouchi&MimiTachikawa</div>
  9691. <divclass="cardinfo_top">
  9692. <divclass="card_img">
  9693. <imgsrc="../images/cardlist/card/BT6-091.png"alt="BT6-091SoraTakenouchi&MimiTachikawa"></div>
  9694. <divclass="cardinfo_top_body">
  9695. <dl>
  9696. <dt>Form</dt>
  9697. <dd>-</dd>
  9698. </dl>
  9699. <dl>
  9700. <dt>Attribute</dt>
  9701. <dd>-</dd>
  9702. </dl>
  9703. <dl>
  9704. <dt>Type</dt>
  9705. <dd>-</dd>
  9706. </dl>
  9707. <dl>
  9708. <dt>DP</dt>
  9709. <dd>-</dl>
  9710. <dl>
  9711. <dt>PlayCost</dt>
  9712. <dd>4</dd>
  9713. </dl>
  9714. <dl>
  9715. <dt>DigivolveCost1</dt>
  9716. <dd>-</dd>
  9717. </dl>
  9718. <dl>
  9719. <dt>DigivolveCost2</dt>
  9720. <dd>-</dd>
  9721. </dl>
  9722. </div>
  9723. </div>
  9724. <divclass="cardinfo_bottom">
  9725. <dl>
  9726. <dt>Effect</dt>
  9727. <dd>[Start of Your Turn] If your opponent doesn't have a level 4 or lower Digimon in play, gain 2 memory.[Your Turn] When one of your purple Digimon attacks, you may suspend this Tamer to trigger <Draw 1>. (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  9728. </dl>
  9729. <dl>
  9730. <dt>Digivolveeffect</dt>
  9731. <dd>-</dd>
  9732. </dl>
  9733. <dl>
  9734. <dt>Securityeffect</dt>
  9735. <dd>[Security] Play this card without paying its memory cost.</dd>
  9736. </dl>
  9737. <dl>
  9738. <dt>Notes</dt>
  9739. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9740. </div>
  9741. </div>
  9742. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9743. </div>
  9744. </div>
  9745. </li>
  9746. <liclass="image_lists_itemdatapage-4">
  9747. <aclass="card_img">
  9748. <imgsrc="../images/cardlist/card/BT6-092.png"alt="BT6-092MenoaBellucci"></a>
  9749. <divclass="popup">
  9750. <divclass="card_detailcard_detail_white">
  9751. <divclass="card_detail_inner">
  9752. <ulclass="cardinfo_head">
  9753. <liclass="cardno">BT6-092</li>
  9754. <li>R</li>
  9755. <liclass="cardtype">Tamer</li>
  9756. </ul>
  9757. <divclass="card_name">MenoaBellucci</div>
  9758. <divclass="cardinfo_top">
  9759. <divclass="card_img">
  9760. <imgsrc="../images/cardlist/card/BT6-092.png"alt="BT6-092MenoaBellucci"></div>
  9761. <divclass="cardinfo_top_body">
  9762. <dl>
  9763. <dt>Form</dt>
  9764. <dd>-</dd>
  9765. </dl>
  9766. <dl>
  9767. <dt>Attribute</dt>
  9768. <dd>-</dd>
  9769. </dl>
  9770. <dl>
  9771. <dt>Type</dt>
  9772. <dd>-</dd>
  9773. </dl>
  9774. <dl>
  9775. <dt>DP</dt>
  9776. <dd>-</dl>
  9777. <dl>
  9778. <dt>PlayCost</dt>
  9779. <dd>4</dd>
  9780. </dl>
  9781. <dl>
  9782. <dt>DigivolveCost1</dt>
  9783. <dd>-</dd>
  9784. </dl>
  9785. <dl>
  9786. <dt>DigivolveCost2</dt>
  9787. <dd>-</dd>
  9788. </dl>
  9789. </div>
  9790. </div>
  9791. <divclass="cardinfo_bottom">
  9792. <dl>
  9793. <dt>Effect</dt>
  9794. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.[Your Turn] When you play an [Eosmon], you may suspend this Tamer to reveal the top 3 cards of your deck. Add 1 Tamer card or 1 Digimon card with [Eosmon] in its name among them to your hand. Place the remaining cards at the bottom of your deck in any order.[Opponent's Turn] While you have an [Eosmon] in play, your opponent's Tamers don't unsuspend during their unsuspend phase.</dd>
  9795. </dl>
  9796. <dl>
  9797. <dt>Digivolveeffect</dt>
  9798. <dd>-</dd>
  9799. </dl>
  9800. <dl>
  9801. <dt>Securityeffect</dt>
  9802. <dd>[Security] Play this card without paying its memory cost.</dd>
  9803. </dl>
  9804. <dl>
  9805. <dt>Notes</dt>
  9806. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9807. </div>
  9808. </div>
  9809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9810. </div>
  9811. </div>
  9812. </li>
  9813. <liclass="image_lists_itemdatapage-4">
  9814. <aclass="card_img">
  9815. <imgsrc="../images/cardlist/card/BT6-093.png"alt="BT6-093JudgementoftheBlade"></a>
  9816. <divclass="popup">
  9817. <divclass="card_detailcard_detail_red">
  9818. <divclass="card_detail_inner">
  9819. <ulclass="cardinfo_head">
  9820. <liclass="cardno">BT6-093</li>
  9821. <li>C</li>
  9822. <liclass="cardtype">Option</li>
  9823. </ul>
  9824. <divclass="card_name">JudgementoftheBlade</div>
  9825. <divclass="cardinfo_top">
  9826. <divclass="card_img">
  9827. <imgsrc="../images/cardlist/card/BT6-093.png"alt="BT6-093JudgementoftheBlade"></div>
  9828. <divclass="cardinfo_top_body">
  9829. <dl>
  9830. <dt>Form</dt>
  9831. <dd>-</dd>
  9832. </dl>
  9833. <dl>
  9834. <dt>Attribute</dt>
  9835. <dd>-</dd>
  9836. </dl>
  9837. <dl>
  9838. <dt>Type</dt>
  9839. <dd>-</dd>
  9840. </dl>
  9841. <dl>
  9842. <dt>DP</dt>
  9843. <dd>-</dl>
  9844. <dl>
  9845. <dt>PlayCost</dt>
  9846. <dd>1</dd>
  9847. </dl>
  9848. <dl>
  9849. <dt>DigivolveCost1</dt>
  9850. <dd>-</dd>
  9851. </dl>
  9852. <dl>
  9853. <dt>DigivolveCost2</dt>
  9854. <dd>-</dd>
  9855. </dl>
  9856. </div>
  9857. </div>
  9858. <divclass="cardinfo_bottom">
  9859. <dl>
  9860. <dt>Effect</dt>
  9861. <dd>[Main] 1 of your Digimon with [Huckmon] in its name or [Royal Knight] in its type can attack your opponent's unsuspended Digimon for the turn.</dd>
  9862. </dl>
  9863. <dl>
  9864. <dt>Digivolveeffect</dt>
  9865. <dd>-</dd>
  9866. </dl>
  9867. <dl>
  9868. <dt>Securityeffect</dt>
  9869. <dd>[Security] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, add this card to your hand.</dd>
  9870. </dl>
  9871. <dl>
  9872. <dt>Notes</dt>
  9873. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  9874. </div>
  9875. </div>
  9876. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9877. </div>
  9878. </div>
  9879. </li>
  9880. <liclass="image_lists_itemdatapage-4">
  9881. <aclass="card_img">
  9882. <imgsrc="../images/cardlist/card/BT6-093_P1.png"alt="BT6-093JudgementoftheBlade"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  9883. </a>
  9884. <divclass="popup">
  9885. <divclass="card_detailcard_detail_red">
  9886. <divclass="card_detail_inner">
  9887. <ulclass="cardinfo_head">
  9888. <liclass="cardno">BT6-093</li>
  9889. <li>C</li>
  9890. <liclass="cardtype">Option</li>
  9891. <liclass="cardtypecardParallel">AlternativeArt</li>
  9892. </ul>
  9893. <divclass="card_name">JudgementoftheBlade</div>
  9894. <divclass="cardinfo_top">
  9895. <divclass="card_img">
  9896. <imgsrc="../images/cardlist/card/BT6-093_P1.png"alt="BT6-093JudgementoftheBlade"></div>
  9897. <divclass="cardinfo_top_body">
  9898. <dl>
  9899. <dt>Form</dt>
  9900. <dd>-</dd>
  9901. </dl>
  9902. <dl>
  9903. <dt>Attribute</dt>
  9904. <dd>-</dd>
  9905. </dl>
  9906. <dl>
  9907. <dt>Type</dt>
  9908. <dd>-</dd>
  9909. </dl>
  9910. <dl>
  9911. <dt>DP</dt>
  9912. <dd>-</dl>
  9913. <dl>
  9914. <dt>PlayCost</dt>
  9915. <dd>1</dd>
  9916. </dl>
  9917. <dl>
  9918. <dt>DigivolveCost1</dt>
  9919. <dd>-</dd>
  9920. </dl>
  9921. <dl>
  9922. <dt>DigivolveCost2</dt>
  9923. <dd>-</dd>
  9924. </dl>
  9925. </div>
  9926. </div>
  9927. <divclass="cardinfo_bottom">
  9928. <dl>
  9929. <dt>Effect</dt>
  9930. <dd>[Main] 1 of your Digimon with [Huckmon] in its name or [Royal Knight] in its type can attack your opponent's unsuspended Digimon for the turn.</dd>
  9931. </dl>
  9932. <dl>
  9933. <dt>Digivolveeffect</dt>
  9934. <dd>-</dd>
  9935. </dl>
  9936. <dl>
  9937. <dt>Securityeffect</dt>
  9938. <dd>[Security] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, add this card to your hand.</dd>
  9939. </dl>
  9940. <dl>
  9941. <dt>Notes</dt>
  9942. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  9943. </div>
  9944. </div>
  9945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9946. </div>
  9947. </div>
  9948. </li>
  9949. <liclass="image_lists_itemdatapage-4">
  9950. <aclass="card_img">
  9951. <imgsrc="../images/cardlist/card/BT6-094.png"alt="BT6-094RedReamer"></a>
  9952. <divclass="popup">
  9953. <divclass="card_detailcard_detail_red">
  9954. <divclass="card_detail_inner">
  9955. <ulclass="cardinfo_head">
  9956. <liclass="cardno">BT6-094</li>
  9957. <li>R</li>
  9958. <liclass="cardtype">Option</li>
  9959. </ul>
  9960. <divclass="card_name">RedReamer</div>
  9961. <divclass="cardinfo_top">
  9962. <divclass="card_img">
  9963. <imgsrc="../images/cardlist/card/BT6-094.png"alt="BT6-094RedReamer"></div>
  9964. <divclass="cardinfo_top_body">
  9965. <dl>
  9966. <dt>Form</dt>
  9967. <dd>-</dd>
  9968. </dl>
  9969. <dl>
  9970. <dt>Attribute</dt>
  9971. <dd>-</dd>
  9972. </dl>
  9973. <dl>
  9974. <dt>Type</dt>
  9975. <dd>-</dd>
  9976. </dl>
  9977. <dl>
  9978. <dt>DP</dt>
  9979. <dd>-</dl>
  9980. <dl>
  9981. <dt>PlayCost</dt>
  9982. <dd>4</dd>
  9983. </dl>
  9984. <dl>
  9985. <dt>DigivolveCost1</dt>
  9986. <dd>-</dd>
  9987. </dl>
  9988. <dl>
  9989. <dt>DigivolveCost2</dt>
  9990. <dd>-</dd>
  9991. </dl>
  9992. </div>
  9993. </div>
  9994. <divclass="cardinfo_bottom">
  9995. <dl>
  9996. <dt>Effect</dt>
  9997. <dd>[Main] Delete 1 of your opponent's Digimon with 6000 DP or less. If your opponent has 3 or more Digimon in play, delete 1 of your opponent's Digimon with 13000 DP or less instead.</dd>
  9998. </dl>
  9999. <dl>
  10000. <dt>Digivolveeffect</dt>
  10001. <dd>-</dd>
  10002. </dl>
  10003. <dl>
  10004. <dt>Securityeffect</dt>
  10005. <dd>[Security] Activate this card's [Main] effect.</dd>
  10006. </dl>
  10007. <dl>
  10008. <dt>Notes</dt>
  10009. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10010. </div>
  10011. </div>
  10012. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10013. </div>
  10014. </div>
  10015. </li>
  10016. <liclass="image_lists_itemdatapage-4">
  10017. <aclass="card_img">
  10018. <imgsrc="../images/cardlist/card/BT6-095.png"alt="BT6-095HappyBulletShowering"></a>
  10019. <divclass="popup">
  10020. <divclass="card_detailcard_detail_red">
  10021. <divclass="card_detail_inner">
  10022. <ulclass="cardinfo_head">
  10023. <liclass="cardno">BT6-095</li>
  10024. <li>U</li>
  10025. <liclass="cardtype">Option</li>
  10026. </ul>
  10027. <divclass="card_name">HappyBulletShowering</div>
  10028. <divclass="cardinfo_top">
  10029. <divclass="card_img">
  10030. <imgsrc="../images/cardlist/card/BT6-095.png"alt="BT6-095HappyBulletShowering"></div>
  10031. <divclass="cardinfo_top_body">
  10032. <dl>
  10033. <dt>Form</dt>
  10034. <dd>-</dd>
  10035. </dl>
  10036. <dl>
  10037. <dt>Attribute</dt>
  10038. <dd>-</dd>
  10039. </dl>
  10040. <dl>
  10041. <dt>Type</dt>
  10042. <dd>-</dd>
  10043. </dl>
  10044. <dl>
  10045. <dt>DP</dt>
  10046. <dd>-</dl>
  10047. <dl>
  10048. <dt>PlayCost</dt>
  10049. <dd>7</dd>
  10050. </dl>
  10051. <dl>
  10052. <dt>DigivolveCost1</dt>
  10053. <dd>-</dd>
  10054. </dl>
  10055. <dl>
  10056. <dt>DigivolveCost2</dt>
  10057. <dd>-</dd>
  10058. </dl>
  10059. </div>
  10060. </div>
  10061. <divclass="cardinfo_bottom">
  10062. <dl>
  10063. <dt>Effect</dt>
  10064. <dd>If you have a Digimon with [Three Musketeers] in its type in play, you may use this Option card without meeting its color requirements.[Main] Delete all of your opponent's Digimon with the lowest DP.</dd>
  10065. </dl>
  10066. <dl>
  10067. <dt>Digivolveeffect</dt>
  10068. <dd>-</dd>
  10069. </dl>
  10070. <dl>
  10071. <dt>Securityeffect</dt>
  10072. <dd>[Security] Activate this card's [Main] effect.</dd>
  10073. </dl>
  10074. <dl>
  10075. <dt>Notes</dt>
  10076. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10077. </div>
  10078. </div>
  10079. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10080. </div>
  10081. </div>
  10082. </li>
  10083. <liclass="image_lists_itemdatapage-4">
  10084. <aclass="card_img">
  10085. <imgsrc="../images/cardlist/card/BT6-096.png"alt="BT6-096ForbiddenTrident"></a>
  10086. <divclass="popup">
  10087. <divclass="card_detailcard_detail_blue">
  10088. <divclass="card_detail_inner">
  10089. <ulclass="cardinfo_head">
  10090. <liclass="cardno">BT6-096</li>
  10091. <li>C</li>
  10092. <liclass="cardtype">Option</li>
  10093. </ul>
  10094. <divclass="card_name">ForbiddenTrident</div>
  10095. <divclass="cardinfo_top">
  10096. <divclass="card_img">
  10097. <imgsrc="../images/cardlist/card/BT6-096.png"alt="BT6-096ForbiddenTrident"></div>
  10098. <divclass="cardinfo_top_body">
  10099. <dl>
  10100. <dt>Form</dt>
  10101. <dd>-</dd>
  10102. </dl>
  10103. <dl>
  10104. <dt>Attribute</dt>
  10105. <dd>-</dd>
  10106. </dl>
  10107. <dl>
  10108. <dt>Type</dt>
  10109. <dd>-</dd>
  10110. </dl>
  10111. <dl>
  10112. <dt>DP</dt>
  10113. <dd>-</dl>
  10114. <dl>
  10115. <dt>PlayCost</dt>
  10116. <dd>1</dd>
  10117. </dl>
  10118. <dl>
  10119. <dt>DigivolveCost1</dt>
  10120. <dd>-</dd>
  10121. </dl>
  10122. <dl>
  10123. <dt>DigivolveCost2</dt>
  10124. <dd>-</dd>
  10125. </dl>
  10126. </div>
  10127. </div>
  10128. <divclass="cardinfo_bottom">
  10129. <dl>
  10130. <dt>Effect</dt>
  10131. <dd>[Main] 1 of your Digimon gets +2000 DP and "[When Attacking] Return 1 of your opponent's level 3 Digimon to its owner's hand. Trash all of the digivolution cards of that Digimon" for the turn.</dd>
  10132. </dl>
  10133. <dl>
  10134. <dt>Digivolveeffect</dt>
  10135. <dd>-</dd>
  10136. </dl>
  10137. <dl>
  10138. <dt>Securityeffect</dt>
  10139. <dd>[Security] Add this card to its owner's hand.</dd>
  10140. </dl>
  10141. <dl>
  10142. <dt>Notes</dt>
  10143. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10144. </div>
  10145. </div>
  10146. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10147. </div>
  10148. </div>
  10149. </li>
  10150. <liclass="image_lists_itemdatapage-4">
  10151. <aclass="card_img">
  10152. <imgsrc="../images/cardlist/card/BT6-097.png"alt="BT6-097HowlingMemoryBoost!"></a>
  10153. <divclass="popup">
  10154. <divclass="card_detailcard_detail_blue">
  10155. <divclass="card_detail_inner">
  10156. <ulclass="cardinfo_head">
  10157. <liclass="cardno">BT6-097</li>
  10158. <li>U</li>
  10159. <liclass="cardtype">Option</li>
  10160. </ul>
  10161. <divclass="card_name">HowlingMemoryBoost!</div>
  10162. <divclass="cardinfo_top">
  10163. <divclass="card_img">
  10164. <imgsrc="../images/cardlist/card/BT6-097.png"alt="BT6-097HowlingMemoryBoost!"></div>
  10165. <divclass="cardinfo_top_body">
  10166. <dl>
  10167. <dt>Form</dt>
  10168. <dd>-</dd>
  10169. </dl>
  10170. <dl>
  10171. <dt>Attribute</dt>
  10172. <dd>-</dd>
  10173. </dl>
  10174. <dl>
  10175. <dt>Type</dt>
  10176. <dd>-</dd>
  10177. </dl>
  10178. <dl>
  10179. <dt>DP</dt>
  10180. <dd>-</dl>
  10181. <dl>
  10182. <dt>PlayCost</dt>
  10183. <dd>3</dd>
  10184. </dl>
  10185. <dl>
  10186. <dt>DigivolveCost1</dt>
  10187. <dd>-</dd>
  10188. </dl>
  10189. <dl>
  10190. <dt>DigivolveCost2</dt>
  10191. <dd>-</dd>
  10192. </dl>
  10193. </div>
  10194. </div>
  10195. <divclass="cardinfo_bottom">
  10196. <dl>
  10197. <dt>Effect</dt>
  10198. <dd>[Main] Trash up to 2 digivolution cards from the bottom of 1 of your opponent's Digimon. Then, 1 of your opponent's Digimon with no digivolution cards can't attack or block until the end of your opponent's next turn. Then, place this card in your battle area.[Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.)・Gain 2 memory.</dd>
  10199. </dl>
  10200. <dl>
  10201. <dt>Digivolveeffect</dt>
  10202. <dd>-</dd>
  10203. </dl>
  10204. <dl>
  10205. <dt>Securityeffect</dt>
  10206. <dd>[Security] Place this card in its owner's battle area.</dd>
  10207. </dl>
  10208. <dl>
  10209. <dt>Notes</dt>
  10210. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10211. </div>
  10212. </div>
  10213. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10214. </div>
  10215. </div>
  10216. </li>
  10217. <liclass="image_lists_itemdatapage-4">
  10218. <aclass="card_img">
  10219. <imgsrc="../images/cardlist/card/BT6-098.png"alt="BT6-098RaddleStar"></a>
  10220. <divclass="popup">
  10221. <divclass="card_detailcard_detail_blue">
  10222. <divclass="card_detail_inner">
  10223. <ulclass="cardinfo_head">
  10224. <liclass="cardno">BT6-098</li>
  10225. <li>R</li>
  10226. <liclass="cardtype">Option</li>
  10227. </ul>
  10228. <divclass="card_name">RaddleStar</div>
  10229. <divclass="cardinfo_top">
  10230. <divclass="card_img">
  10231. <imgsrc="../images/cardlist/card/BT6-098.png"alt="BT6-098RaddleStar"></div>
  10232. <divclass="cardinfo_top_body">
  10233. <dl>
  10234. <dt>Form</dt>
  10235. <dd>-</dd>
  10236. </dl>
  10237. <dl>
  10238. <dt>Attribute</dt>
  10239. <dd>-</dd>
  10240. </dl>
  10241. <dl>
  10242. <dt>Type</dt>
  10243. <dd>-</dd>
  10244. </dl>
  10245. <dl>
  10246. <dt>DP</dt>
  10247. <dd>-</dl>
  10248. <dl>
  10249. <dt>PlayCost</dt>
  10250. <dd>5</dd>
  10251. </dl>
  10252. <dl>
  10253. <dt>DigivolveCost1</dt>
  10254. <dd>-</dd>
  10255. </dl>
  10256. <dl>
  10257. <dt>DigivolveCost2</dt>
  10258. <dd>-</dd>
  10259. </dl>
  10260. </div>
  10261. </div>
  10262. <divclass="cardinfo_bottom">
  10263. <dl>
  10264. <dt>Effect</dt>
  10265. <dd>[Main] Return 1 of your opponent's level 5 or lower Digimon to its owner's hand. If your opponent has 3 or more Digimon in play, return 1 of your opponent's Digimon to the bottom of its owner's deck instead. Trash all of the digivolution cards of that Digimon.</dd>
  10266. </dl>
  10267. <dl>
  10268. <dt>Digivolveeffect</dt>
  10269. <dd>-</dd>
  10270. </dl>
  10271. <dl>
  10272. <dt>Securityeffect</dt>
  10273. <dd>[Security] Activate this card's [Main] effect.</dd>
  10274. </dl>
  10275. <dl>
  10276. <dt>Notes</dt>
  10277. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10278. </div>
  10279. </div>
  10280. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10281. </div>
  10282. </div>
  10283. </li>
  10284. <liclass="image_lists_itemdatapage-4">
  10285. <aclass="card_img">
  10286. <imgsrc="../images/cardlist/card/BT6-099.png"alt="BT6-099AcidInjection"></a>
  10287. <divclass="popup">
  10288. <divclass="card_detailcard_detail_yellow">
  10289. <divclass="card_detail_inner">
  10290. <ulclass="cardinfo_head">
  10291. <liclass="cardno">BT6-099</li>
  10292. <li>U</li>
  10293. <liclass="cardtype">Option</li>
  10294. </ul>
  10295. <divclass="card_name">AcidInjection</div>
  10296. <divclass="cardinfo_top">
  10297. <divclass="card_img">
  10298. <imgsrc="../images/cardlist/card/BT6-099.png"alt="BT6-099AcidInjection"></div>
  10299. <divclass="cardinfo_top_body">
  10300. <dl>
  10301. <dt>Form</dt>
  10302. <dd>-</dd>
  10303. </dl>
  10304. <dl>
  10305. <dt>Attribute</dt>
  10306. <dd>-</dd>
  10307. </dl>
  10308. <dl>
  10309. <dt>Type</dt>
  10310. <dd>-</dd>
  10311. </dl>
  10312. <dl>
  10313. <dt>DP</dt>
  10314. <dd>-</dl>
  10315. <dl>
  10316. <dt>PlayCost</dt>
  10317. <dd>1</dd>
  10318. </dl>
  10319. <dl>
  10320. <dt>DigivolveCost1</dt>
  10321. <dd>-</dd>
  10322. </dl>
  10323. <dl>
  10324. <dt>DigivolveCost2</dt>
  10325. <dd>-</dd>
  10326. </dl>
  10327. </div>
  10328. </div>
  10329. <divclass="cardinfo_bottom">
  10330. <dl>
  10331. <dt>Effect</dt>
  10332. <dd>[Main] Trash the top card of your security stack. Then, 1 of your opponent's Digimon gets -5000 DP for the turn.</dd>
  10333. </dl>
  10334. <dl>
  10335. <dt>Digivolveeffect</dt>
  10336. <dd>-</dd>
  10337. </dl>
  10338. <dl>
  10339. <dt>Securityeffect</dt>
  10340. <dd>[Security] Add this card to its owner's hand.</dd>
  10341. </dl>
  10342. <dl>
  10343. <dt>Notes</dt>
  10344. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10345. </div>
  10346. </div>
  10347. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10348. </div>
  10349. </div>
  10350. </li>
  10351. <liclass="image_lists_itemdatapage-4">
  10352. <aclass="card_img">
  10353. <imgsrc="../images/cardlist/card/BT6-100.png"alt="BT6-100ReinforcingMemoryBoost!"></a>
  10354. <divclass="popup">
  10355. <divclass="card_detailcard_detail_yellow">
  10356. <divclass="card_detail_inner">
  10357. <ulclass="cardinfo_head">
  10358. <liclass="cardno">BT6-100</li>
  10359. <li>C</li>
  10360. <liclass="cardtype">Option</li>
  10361. </ul>
  10362. <divclass="card_name">ReinforcingMemoryBoost!</div>
  10363. <divclass="cardinfo_top">
  10364. <divclass="card_img">
  10365. <imgsrc="../images/cardlist/card/BT6-100.png"alt="BT6-100ReinforcingMemoryBoost!"></div>
  10366. <divclass="cardinfo_top_body">
  10367. <dl>
  10368. <dt>Form</dt>
  10369. <dd>-</dd>
  10370. </dl>
  10371. <dl>
  10372. <dt>Attribute</dt>
  10373. <dd>-</dd>
  10374. </dl>
  10375. <dl>
  10376. <dt>Type</dt>
  10377. <dd>-</dd>
  10378. </dl>
  10379. <dl>
  10380. <dt>DP</dt>
  10381. <dd>-</dl>
  10382. <dl>
  10383. <dt>PlayCost</dt>
  10384. <dd>6</dd>
  10385. </dl>
  10386. <dl>
  10387. <dt>DigivolveCost1</dt>
  10388. <dd>-</dd>
  10389. </dl>
  10390. <dl>
  10391. <dt>DigivolveCost2</dt>
  10392. <dd>-</dd>
  10393. </dl>
  10394. </div>
  10395. </div>
  10396. <divclass="cardinfo_bottom">
  10397. <dl>
  10398. <dt>Effect</dt>
  10399. <dd>[Main] Reveal the top 2 cards of your deck. Place 1 of them on top of your security stack face down. Add the remaining card to your hand. Then, place this card in your battle area.[Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.)・Gain 3 memory.</dd>
  10400. </dl>
  10401. <dl>
  10402. <dt>Digivolveeffect</dt>
  10403. <dd>-</dd>
  10404. </dl>
  10405. <dl>
  10406. <dt>Securityeffect</dt>
  10407. <dd>[Security] Place this card in its owner's battle area.</dd>
  10408. </dl>
  10409. <dl>
  10410. <dt>Notes</dt>
  10411. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10412. </div>
  10413. </div>
  10414. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10415. </div>
  10416. </div>
  10417. </li>
  10418. <liclass="image_lists_itemdatapage-4">
  10419. <aclass="card_img">
  10420. <imgsrc="../images/cardlist/card/BT6-101.png"alt="BT6-101Wyvern'sBreath"></a>
  10421. <divclass="popup">
  10422. <divclass="card_detailcard_detail_yellow">
  10423. <divclass="card_detail_inner">
  10424. <ulclass="cardinfo_head">
  10425. <liclass="cardno">BT6-101</li>
  10426. <li>R</li>
  10427. <liclass="cardtype">Option</li>
  10428. </ul>
  10429. <divclass="card_name">Wyvern'sBreath</div>
  10430. <divclass="cardinfo_top">
  10431. <divclass="card_img">
  10432. <imgsrc="../images/cardlist/card/BT6-101.png"alt="BT6-101Wyvern'sBreath"></div>
  10433. <divclass="cardinfo_top_body">
  10434. <dl>
  10435. <dt>Form</dt>
  10436. <dd>-</dd>
  10437. </dl>
  10438. <dl>
  10439. <dt>Attribute</dt>
  10440. <dd>-</dd>
  10441. </dl>
  10442. <dl>
  10443. <dt>Type</dt>
  10444. <dd>-</dd>
  10445. </dl>
  10446. <dl>
  10447. <dt>DP</dt>
  10448. <dd>-</dl>
  10449. <dl>
  10450. <dt>PlayCost</dt>
  10451. <dd>8</dd>
  10452. </dl>
  10453. <dl>
  10454. <dt>DigivolveCost1</dt>
  10455. <dd>-</dd>
  10456. </dl>
  10457. <dl>
  10458. <dt>DigivolveCost2</dt>
  10459. <dd>-</dd>
  10460. </dl>
  10461. </div>
  10462. </div>
  10463. <divclass="cardinfo_bottom">
  10464. <dl>
  10465. <dt>Effect</dt>
  10466. <dd>[Main] 1 of your opponent's Digimon gets -15000 DP for the turn.</dd>
  10467. </dl>
  10468. <dl>
  10469. <dt>Digivolveeffect</dt>
  10470. <dd>-</dd>
  10471. </dl>
  10472. <dl>
  10473. <dt>Securityeffect</dt>
  10474. <dd>[Security] Activate this card's [Main] effect.</dd>
  10475. </dl>
  10476. <dl>
  10477. <dt>Notes</dt>
  10478. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10479. </div>
  10480. </div>
  10481. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10482. </div>
  10483. </div>
  10484. </li>
  10485. <liclass="image_lists_itemdatapage-4">
  10486. <aclass="card_img">
  10487. <imgsrc="../images/cardlist/card/BT6-102.png"alt="BT6-102TropicalVenom"></a>
  10488. <divclass="popup">
  10489. <divclass="card_detailcard_detail_green">
  10490. <divclass="card_detail_inner">
  10491. <ulclass="cardinfo_head">
  10492. <liclass="cardno">BT6-102</li>
  10493. <li>C</li>
  10494. <liclass="cardtype">Option</li>
  10495. </ul>
  10496. <divclass="card_name">TropicalVenom</div>
  10497. <divclass="cardinfo_top">
  10498. <divclass="card_img">
  10499. <imgsrc="../images/cardlist/card/BT6-102.png"alt="BT6-102TropicalVenom"></div>
  10500. <divclass="cardinfo_top_body">
  10501. <dl>
  10502. <dt>Form</dt>
  10503. <dd>-</dd>
  10504. </dl>
  10505. <dl>
  10506. <dt>Attribute</dt>
  10507. <dd>-</dd>
  10508. </dl>
  10509. <dl>
  10510. <dt>Type</dt>
  10511. <dd>-</dd>
  10512. </dl>
  10513. <dl>
  10514. <dt>DP</dt>
  10515. <dd>-</dl>
  10516. <dl>
  10517. <dt>PlayCost</dt>
  10518. <dd>-</dd>
  10519. </dl>
  10520. <dl>
  10521. <dt>DigivolveCost1</dt>
  10522. <dd>-</dd>
  10523. </dl>
  10524. <dl>
  10525. <dt>DigivolveCost2</dt>
  10526. <dd>-</dd>
  10527. </dl>
  10528. </div>
  10529. </div>
  10530. <divclass="cardinfo_bottom">
  10531. <dl>
  10532. <dt>Effect</dt>
  10533. <dd>[Main] 1 of your opponent's Digimon gains "[On Deletion] Lose 2 memory" until the end of their next turn.</dd>
  10534. </dl>
  10535. <dl>
  10536. <dt>Digivolveeffect</dt>
  10537. <dd>-</dd>
  10538. </dl>
  10539. <dl>
  10540. <dt>Securityeffect</dt>
  10541. <dd>-</dd>
  10542. </dl>
  10543. <dl>
  10544. <dt>Notes</dt>
  10545. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10546. </div>
  10547. </div>
  10548. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10549. </div>
  10550. </div>
  10551. </li>
  10552. <liclass="image_lists_itemdatapage-4">
  10553. <aclass="card_img">
  10554. <imgsrc="../images/cardlist/card/BT6-103.png"alt="BT6-103BlastedDisaster"></a>
  10555. <divclass="popup">
  10556. <divclass="card_detailcard_detail_green">
  10557. <divclass="card_detail_inner">
  10558. <ulclass="cardinfo_head">
  10559. <liclass="cardno">BT6-103</li>
  10560. <li>U</li>
  10561. <liclass="cardtype">Option</li>
  10562. </ul>
  10563. <divclass="card_name">BlastedDisaster</div>
  10564. <divclass="cardinfo_top">
  10565. <divclass="card_img">
  10566. <imgsrc="../images/cardlist/card/BT6-103.png"alt="BT6-103BlastedDisaster"></div>
  10567. <divclass="cardinfo_top_body">
  10568. <dl>
  10569. <dt>Form</dt>
  10570. <dd>-</dd>
  10571. </dl>
  10572. <dl>
  10573. <dt>Attribute</dt>
  10574. <dd>-</dd>
  10575. </dl>
  10576. <dl>
  10577. <dt>Type</dt>
  10578. <dd>-</dd>
  10579. </dl>
  10580. <dl>
  10581. <dt>DP</dt>
  10582. <dd>-</dl>
  10583. <dl>
  10584. <dt>PlayCost</dt>
  10585. <dd>6</dd>
  10586. </dl>
  10587. <dl>
  10588. <dt>DigivolveCost1</dt>
  10589. <dd>-</dd>
  10590. </dl>
  10591. <dl>
  10592. <dt>DigivolveCost2</dt>
  10593. <dd>-</dd>
  10594. </dl>
  10595. </div>
  10596. </div>
  10597. <divclass="cardinfo_bottom">
  10598. <dl>
  10599. <dt>Effect</dt>
  10600. <dd>[Main] Suspend all of your opponent's Digimon. Then, gain 1 memory for each of your opponent's suspended Digimon.</dd>
  10601. </dl>
  10602. <dl>
  10603. <dt>Digivolveeffect</dt>
  10604. <dd>-</dd>
  10605. </dl>
  10606. <dl>
  10607. <dt>Securityeffect</dt>
  10608. <dd>[Security] Suspend 1 of your opponent's Digimon.</dd>
  10609. </dl>
  10610. <dl>
  10611. <dt>Notes</dt>
  10612. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10613. </div>
  10614. </div>
  10615. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10616. </div>
  10617. </div>
  10618. </li>
  10619. <liclass="image_lists_itemdatapage-4">
  10620. <aclass="card_img">
  10621. <imgsrc="../images/cardlist/card/BT6-104.png"alt="BT6-104ParabolicJunk"></a>
  10622. <divclass="popup">
  10623. <divclass="card_detailcard_detail_black">
  10624. <divclass="card_detail_inner">
  10625. <ulclass="cardinfo_head">
  10626. <liclass="cardno">BT6-104</li>
  10627. <li>C</li>
  10628. <liclass="cardtype">Option</li>
  10629. </ul>
  10630. <divclass="card_name">ParabolicJunk</div>
  10631. <divclass="cardinfo_top">
  10632. <divclass="card_img">
  10633. <imgsrc="../images/cardlist/card/BT6-104.png"alt="BT6-104ParabolicJunk"></div>
  10634. <divclass="cardinfo_top_body">
  10635. <dl>
  10636. <dt>Form</dt>
  10637. <dd>-</dd>
  10638. </dl>
  10639. <dl>
  10640. <dt>Attribute</dt>
  10641. <dd>-</dd>
  10642. </dl>
  10643. <dl>
  10644. <dt>Type</dt>
  10645. <dd>-</dd>
  10646. </dl>
  10647. <dl>
  10648. <dt>DP</dt>
  10649. <dd>-</dl>
  10650. <dl>
  10651. <dt>PlayCost</dt>
  10652. <dd>-</dd>
  10653. </dl>
  10654. <dl>
  10655. <dt>DigivolveCost1</dt>
  10656. <dd>-</dd>
  10657. </dl>
  10658. <dl>
  10659. <dt>DigivolveCost2</dt>
  10660. <dd>-</dd>
  10661. </dl>
  10662. </div>
  10663. </div>
  10664. <divclass="cardinfo_bottom">
  10665. <dl>
  10666. <dt>Effect</dt>
  10667. <dd>[Main] 1 of your Digimon gains "[On Deletion] Gain 2 memory" until the end of your opponent's next turn.</dd>
  10668. </dl>
  10669. <dl>
  10670. <dt>Digivolveeffect</dt>
  10671. <dd>-</dd>
  10672. </dl>
  10673. <dl>
  10674. <dt>Securityeffect</dt>
  10675. <dd>[Security] Add this card to its owner's hand.</dd>
  10676. </dl>
  10677. <dl>
  10678. <dt>Notes</dt>
  10679. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10680. </div>
  10681. </div>
  10682. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10683. </div>
  10684. </div>
  10685. </li>
  10686. <liclass="image_lists_itemdatapage-4">
  10687. <aclass="card_img">
  10688. <imgsrc="../images/cardlist/card/BT6-105.png"alt="BT6-105GewaltSchwärmer"></a>
  10689. <divclass="popup">
  10690. <divclass="card_detailcard_detail_black">
  10691. <divclass="card_detail_inner">
  10692. <ulclass="cardinfo_head">
  10693. <liclass="cardno">BT6-105</li>
  10694. <li>U</li>
  10695. <liclass="cardtype">Option</li>
  10696. </ul>
  10697. <divclass="card_name">GewaltSchwärmer</div>
  10698. <divclass="cardinfo_top">
  10699. <divclass="card_img">
  10700. <imgsrc="../images/cardlist/card/BT6-105.png"alt="BT6-105GewaltSchwärmer"></div>
  10701. <divclass="cardinfo_top_body">
  10702. <dl>
  10703. <dt>Form</dt>
  10704. <dd>-</dd>
  10705. </dl>
  10706. <dl>
  10707. <dt>Attribute</dt>
  10708. <dd>-</dd>
  10709. </dl>
  10710. <dl>
  10711. <dt>Type</dt>
  10712. <dd>-</dd>
  10713. </dl>
  10714. <dl>
  10715. <dt>DP</dt>
  10716. <dd>-</dl>
  10717. <dl>
  10718. <dt>PlayCost</dt>
  10719. <dd>7</dd>
  10720. </dl>
  10721. <dl>
  10722. <dt>DigivolveCost1</dt>
  10723. <dd>-</dd>
  10724. </dl>
  10725. <dl>
  10726. <dt>DigivolveCost2</dt>
  10727. <dd>-</dd>
  10728. </dl>
  10729. </div>
  10730. </div>
  10731. <divclass="cardinfo_bottom">
  10732. <dl>
  10733. <dt>Effect</dt>
  10734. <dd>If you have a Digimon with [Three Musketeers] in its type in play, you may use this Option card without meeting its color requirements.[Main] Delete all Digimon with play costs of 7 or less.</dd>
  10735. </dl>
  10736. <dl>
  10737. <dt>Digivolveeffect</dt>
  10738. <dd>-</dd>
  10739. </dl>
  10740. <dl>
  10741. <dt>Securityeffect</dt>
  10742. <dd>[Security] Add this card to its owner's hand.</dd>
  10743. </dl>
  10744. <dl>
  10745. <dt>Notes</dt>
  10746. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10747. </div>
  10748. </div>
  10749. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10750. </div>
  10751. </div>
  10752. </li>
  10753. <liclass="image_lists_itemdatapage-4">
  10754. <aclass="card_img">
  10755. <imgsrc="../images/cardlist/card/BT6-106.png"alt="BT6-106Iron-FistedOnslaught"></a>
  10756. <divclass="popup">
  10757. <divclass="card_detailcard_detail_black">
  10758. <divclass="card_detail_inner">
  10759. <ulclass="cardinfo_head">
  10760. <liclass="cardno">BT6-106</li>
  10761. <li>R</li>
  10762. <liclass="cardtype">Option</li>
  10763. </ul>
  10764. <divclass="card_name">Iron-FistedOnslaught</div>
  10765. <divclass="cardinfo_top">
  10766. <divclass="card_img">
  10767. <imgsrc="../images/cardlist/card/BT6-106.png"alt="BT6-106Iron-FistedOnslaught"></div>
  10768. <divclass="cardinfo_top_body">
  10769. <dl>
  10770. <dt>Form</dt>
  10771. <dd>-</dd>
  10772. </dl>
  10773. <dl>
  10774. <dt>Attribute</dt>
  10775. <dd>-</dd>
  10776. </dl>
  10777. <dl>
  10778. <dt>Type</dt>
  10779. <dd>-</dd>
  10780. </dl>
  10781. <dl>
  10782. <dt>DP</dt>
  10783. <dd>-</dl>
  10784. <dl>
  10785. <dt>PlayCost</dt>
  10786. <dd>8</dd>
  10787. </dl>
  10788. <dl>
  10789. <dt>DigivolveCost1</dt>
  10790. <dd>-</dd>
  10791. </dl>
  10792. <dl>
  10793. <dt>DigivolveCost2</dt>
  10794. <dd>-</dd>
  10795. </dl>
  10796. </div>
  10797. </div>
  10798. <divclass="cardinfo_bottom">
  10799. <dl>
  10800. <dt>Effect</dt>
  10801. <dd>[Main] Delete all of your opponent's Digimon with the highest play cost.</dd>
  10802. </dl>
  10803. <dl>
  10804. <dt>Digivolveeffect</dt>
  10805. <dd>-</dd>
  10806. </dl>
  10807. <dl>
  10808. <dt>Securityeffect</dt>
  10809. <dd>[Security] Activate this card's [Main] effect.</dd>
  10810. </dl>
  10811. <dl>
  10812. <dt>Notes</dt>
  10813. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10814. </div>
  10815. </div>
  10816. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10817. </div>
  10818. </div>
  10819. </li>
  10820. <liclass="image_lists_itemdatapage-4">
  10821. <aclass="card_img">
  10822. <imgsrc="../images/cardlist/card/BT6-107.png"alt="BT6-107GlaiveMemoryBoost!"></a>
  10823. <divclass="popup">
  10824. <divclass="card_detailcard_detail_purple">
  10825. <divclass="card_detail_inner">
  10826. <ulclass="cardinfo_head">
  10827. <liclass="cardno">BT6-107</li>
  10828. <li>C</li>
  10829. <liclass="cardtype">Option</li>
  10830. </ul>
  10831. <divclass="card_name">GlaiveMemoryBoost!</div>
  10832. <divclass="cardinfo_top">
  10833. <divclass="card_img">
  10834. <imgsrc="../images/cardlist/card/BT6-107.png"alt="BT6-107GlaiveMemoryBoost!"></div>
  10835. <divclass="cardinfo_top_body">
  10836. <dl>
  10837. <dt>Form</dt>
  10838. <dd>-</dd>
  10839. </dl>
  10840. <dl>
  10841. <dt>Attribute</dt>
  10842. <dd>-</dd>
  10843. </dl>
  10844. <dl>
  10845. <dt>Type</dt>
  10846. <dd>-</dd>
  10847. </dl>
  10848. <dl>
  10849. <dt>DP</dt>
  10850. <dd>-</dl>
  10851. <dl>
  10852. <dt>PlayCost</dt>
  10853. <dd>3</dd>
  10854. </dl>
  10855. <dl>
  10856. <dt>DigivolveCost1</dt>
  10857. <dd>-</dd>
  10858. </dl>
  10859. <dl>
  10860. <dt>DigivolveCost2</dt>
  10861. <dd>-</dd>
  10862. </dl>
  10863. </div>
  10864. </div>
  10865. <divclass="cardinfo_bottom">
  10866. <dl>
  10867. <dt>Effect</dt>
  10868. <dd>[Main] Return 1 purple Digimon card from your trash to your hand. Then, place this card in your battle area.[Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.)・Gain 2 memory.</dd>
  10869. </dl>
  10870. <dl>
  10871. <dt>Digivolveeffect</dt>
  10872. <dd>-</dd>
  10873. </dl>
  10874. <dl>
  10875. <dt>Securityeffect</dt>
  10876. <dd>[Security] Place this card in its owner's battle area.</dd>
  10877. </dl>
  10878. <dl>
  10879. <dt>Notes</dt>
  10880. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10881. </div>
  10882. </div>
  10883. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10884. </div>
  10885. </div>
  10886. </li>
  10887. <liclass="image_lists_itemdatapage-4">
  10888. <aclass="card_img">
  10889. <imgsrc="../images/cardlist/card/BT6-108.png"alt="BT6-108Underworld'sCall"></a>
  10890. <divclass="popup">
  10891. <divclass="card_detailcard_detail_purple">
  10892. <divclass="card_detail_inner">
  10893. <ulclass="cardinfo_head">
  10894. <liclass="cardno">BT6-108</li>
  10895. <li>R</li>
  10896. <liclass="cardtype">Option</li>
  10897. </ul>
  10898. <divclass="card_name">Underworld'sCall</div>
  10899. <divclass="cardinfo_top">
  10900. <divclass="card_img">
  10901. <imgsrc="../images/cardlist/card/BT6-108.png"alt="BT6-108Underworld'sCall"></div>
  10902. <divclass="cardinfo_top_body">
  10903. <dl>
  10904. <dt>Form</dt>
  10905. <dd>-</dd>
  10906. </dl>
  10907. <dl>
  10908. <dt>Attribute</dt>
  10909. <dd>-</dd>
  10910. </dl>
  10911. <dl>
  10912. <dt>Type</dt>
  10913. <dd>-</dd>
  10914. </dl>
  10915. <dl>
  10916. <dt>DP</dt>
  10917. <dd>-</dl>
  10918. <dl>
  10919. <dt>PlayCost</dt>
  10920. <dd>4</dd>
  10921. </dl>
  10922. <dl>
  10923. <dt>DigivolveCost1</dt>
  10924. <dd>-</dd>
  10925. </dl>
  10926. <dl>
  10927. <dt>DigivolveCost2</dt>
  10928. <dd>-</dd>
  10929. </dl>
  10930. </div>
  10931. </div>
  10932. <divclass="cardinfo_bottom">
  10933. <dl>
  10934. <dt>Effect</dt>
  10935. <dd>When you trash this card in your hand using one of your effects, trigger <Draw 1>. (Draw 1 card from your deck.)[Main] You may play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost.</dd>
  10936. </dl>
  10937. <dl>
  10938. <dt>Digivolveeffect</dt>
  10939. <dd>-</dd>
  10940. </dl>
  10941. <dl>
  10942. <dt>Securityeffect</dt>
  10943. <dd>[Security] Activate this card's [Main] effect.</dd>
  10944. </dl>
  10945. <dl>
  10946. <dt>Notes</dt>
  10947. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  10948. </div>
  10949. </div>
  10950. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10951. </div>
  10952. </div>
  10953. </li>
  10954. <liclass="image_lists_itemdatapage-5">
  10955. <aclass="card_img">
  10956. <imgsrc="../images/cardlist/card/BT6-109.png"alt="BT6-109FlyBullet"></a>
  10957. <divclass="popup">
  10958. <divclass="card_detailcard_detail_purple">
  10959. <divclass="card_detail_inner">
  10960. <ulclass="cardinfo_head">
  10961. <liclass="cardno">BT6-109</li>
  10962. <li>U</li>
  10963. <liclass="cardtype">Option</li>
  10964. </ul>
  10965. <divclass="card_name">FlyBullet</div>
  10966. <divclass="cardinfo_top">
  10967. <divclass="card_img">
  10968. <imgsrc="../images/cardlist/card/BT6-109.png"alt="BT6-109FlyBullet"></div>
  10969. <divclass="cardinfo_top_body">
  10970. <dl>
  10971. <dt>Form</dt>
  10972. <dd>-</dd>
  10973. </dl>
  10974. <dl>
  10975. <dt>Attribute</dt>
  10976. <dd>-</dd>
  10977. </dl>
  10978. <dl>
  10979. <dt>Type</dt>
  10980. <dd>-</dd>
  10981. </dl>
  10982. <dl>
  10983. <dt>DP</dt>
  10984. <dd>-</dl>
  10985. <dl>
  10986. <dt>PlayCost</dt>
  10987. <dd>7</dd>
  10988. </dl>
  10989. <dl>
  10990. <dt>DigivolveCost1</dt>
  10991. <dd>-</dd>
  10992. </dl>
  10993. <dl>
  10994. <dt>DigivolveCost2</dt>
  10995. <dd>-</dd>
  10996. </dl>
  10997. </div>
  10998. </div>
  10999. <divclass="cardinfo_bottom">
  11000. <dl>
  11001. <dt>Effect</dt>
  11002. <dd>If you have a Digimon with [Three Musketeers] in its type in play, you may use this Option card without meeting its color requirements.[Main] Delete 1 of your opponent's level 6 or lower Digimon.</dd>
  11003. </dl>
  11004. <dl>
  11005. <dt>Digivolveeffect</dt>
  11006. <dd>-</dd>
  11007. </dl>
  11008. <dl>
  11009. <dt>Securityeffect</dt>
  11010. <dd>[Security] Activate this card's [Main] effect.</dd>
  11011. </dl>
  11012. <dl>
  11013. <dt>Notes</dt>
  11014. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  11015. </div>
  11016. </div>
  11017. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11018. </div>
  11019. </div>
  11020. </li>
  11021. <liclass="image_lists_itemdatapage-5">
  11022. <aclass="card_img">
  11023. <imgsrc="../images/cardlist/card/BT6-109_P1.png"alt="BT6-109FlyBullet"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  11024. </a>
  11025. <divclass="popup">
  11026. <divclass="card_detailcard_detail_purple">
  11027. <divclass="card_detail_inner">
  11028. <ulclass="cardinfo_head">
  11029. <liclass="cardno">BT6-109</li>
  11030. <li>U</li>
  11031. <liclass="cardtype">Option</li>
  11032. <liclass="cardtypecardParallel">AlternativeArt</li>
  11033. </ul>
  11034. <divclass="card_name">FlyBullet</div>
  11035. <divclass="cardinfo_top">
  11036. <divclass="card_img">
  11037. <imgsrc="../images/cardlist/card/BT6-109_P1.png"alt="BT6-109FlyBullet"></div>
  11038. <divclass="cardinfo_top_body">
  11039. <dl>
  11040. <dt>Form</dt>
  11041. <dd>-</dd>
  11042. </dl>
  11043. <dl>
  11044. <dt>Attribute</dt>
  11045. <dd>-</dd>
  11046. </dl>
  11047. <dl>
  11048. <dt>Type</dt>
  11049. <dd>-</dd>
  11050. </dl>
  11051. <dl>
  11052. <dt>DP</dt>
  11053. <dd>-</dl>
  11054. <dl>
  11055. <dt>PlayCost</dt>
  11056. <dd>7</dd>
  11057. </dl>
  11058. <dl>
  11059. <dt>DigivolveCost1</dt>
  11060. <dd>-</dd>
  11061. </dl>
  11062. <dl>
  11063. <dt>DigivolveCost2</dt>
  11064. <dd>-</dd>
  11065. </dl>
  11066. </div>
  11067. </div>
  11068. <divclass="cardinfo_bottom">
  11069. <dl>
  11070. <dt>Effect</dt>
  11071. <dd>If you have a Digimon with [Three Musketeers] in its type in play, you may use this Option card without meeting its color requirements.[Main] Delete 1 of your opponent's level 6 or lower Digimon.</dd>
  11072. </dl>
  11073. <dl>
  11074. <dt>Digivolveeffect</dt>
  11075. <dd>-</dd>
  11076. </dl>
  11077. <dl>
  11078. <dt>Securityeffect</dt>
  11079. <dd>[Security] Activate this card's [Main] effect.</dd>
  11080. </dl>
  11081. <dl>
  11082. <dt>Notes</dt>
  11083. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  11084. </div>
  11085. </div>
  11086. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11087. </div>
  11088. </div>
  11089. </li>
  11090. <liclass="image_lists_itemdatapage-5">
  11091. <aclass="card_img">
  11092. <imgsrc="../images/cardlist/card/BT6-110.png"alt="BT6-110CuttingEdge"></a>
  11093. <divclass="popup">
  11094. <divclass="card_detailcard_detail_white">
  11095. <divclass="card_detail_inner">
  11096. <ulclass="cardinfo_head">
  11097. <liclass="cardno">BT6-110</li>
  11098. <li>R</li>
  11099. <liclass="cardtype">Option</li>
  11100. </ul>
  11101. <divclass="card_name">CuttingEdge</div>
  11102. <divclass="cardinfo_top">
  11103. <divclass="card_img">
  11104. <imgsrc="../images/cardlist/card/BT6-110.png"alt="BT6-110CuttingEdge"></div>
  11105. <divclass="cardinfo_top_body">
  11106. <dl>
  11107. <dt>Form</dt>
  11108. <dd>-</dd>
  11109. </dl>
  11110. <dl>
  11111. <dt>Attribute</dt>
  11112. <dd>-</dd>
  11113. </dl>
  11114. <dl>
  11115. <dt>Type</dt>
  11116. <dd>-</dd>
  11117. </dl>
  11118. <dl>
  11119. <dt>DP</dt>
  11120. <dd>-</dl>
  11121. <dl>
  11122. <dt>PlayCost</dt>
  11123. <dd>6</dd>
  11124. </dl>
  11125. <dl>
  11126. <dt>DigivolveCost1</dt>
  11127. <dd>-</dd>
  11128. </dl>
  11129. <dl>
  11130. <dt>DigivolveCost2</dt>
  11131. <dd>-</dd>
  11132. </dl>
  11133. </div>
  11134. </div>
  11135. <divclass="cardinfo_bottom">
  11136. <dl>
  11137. <dt>Effect</dt>
  11138. <dd>[Main] You may play 1 level 5 or lower [Eosmon] from your hand without paying its memory cost. Then, delete 1 of your opponent's Digimon with DP less than or equal to the Digimon played with this effect.</dd>
  11139. </dl>
  11140. <dl>
  11141. <dt>Digivolveeffect</dt>
  11142. <dd>-</dd>
  11143. </dl>
  11144. <dl>
  11145. <dt>Securityeffect</dt>
  11146. <dd>[Security] Activate this card's [Main] effect.</dd>
  11147. </dl>
  11148. <dl>
  11149. <dt>Notes</dt>
  11150. <dd><ahref="/products/pack/ver6.php">&rtri;BOOSTERDOUBLEDIAMOND[BT-06]</a></dd></dl>
  11151. </div>
  11152. </div>
  11153. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11154. </div>
  11155. </div>
  11156. </li>