522011.txt 222 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT10-001.png"alt="BT10-001DemiMeramon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT10-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/BT10-001.png"alt="BT10-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>[Your Turn] While a non-red card is in this Digimon's digivolution cards, this Digimon gets +1000 DP.</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/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</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/BT10-002.png"alt="BT10-002Bebydomon"></a>
  72. <divclass="popup">
  73. <divclass="card_detailcard_detail_blue">
  74. <divclass="card_detail_inner">
  75. <ulclass="cardinfo_head">
  76. <liclass="cardno">BT10-002</li>
  77. <li>U</li>
  78. <liclass="cardtype">Digi-Egg</li>
  79. <liclass="cardlv">Lv.2</li>
  80. </ul>
  81. <divclass="card_name">Bebydomon</div>
  82. <divclass="cardinfo_top">
  83. <divclass="card_img">
  84. <imgsrc="../images/cardlist/card/BT10-002.png"alt="BT10-002Bebydomon"></div>
  85. <divclass="cardinfo_top_body">
  86. <dl>
  87. <dt>Form</dt>
  88. <dd>In-Training</dd>
  89. </dl>
  90. <dl>
  91. <dt>Attribute</dt>
  92. <dd>-</dd>
  93. </dl>
  94. <dl>
  95. <dt>Type</dt>
  96. <dd>BabyDragon</dd>
  97. </dl>
  98. <dl>
  99. <dt>DP</dt>
  100. <dd>-</dl>
  101. <dl>
  102. <dt>PlayCost</dt>
  103. <dd>-</dd>
  104. </dl>
  105. <dl>
  106. <dt>DigivolveCost1</dt>
  107. <dd>-</dd>
  108. </dl>
  109. <dl>
  110. <dt>DigivolveCost2</dt>
  111. <dd>-</dd>
  112. </dl>
  113. </div>
  114. </div>
  115. <divclass="cardinfo_bottom">
  116. <dl>
  117. <dt>Effect</dt>
  118. <dd>-</dd>
  119. </dl>
  120. <dl>
  121. <dt>Digivolveeffect</dt>
  122. <dd>[When Attacking][Once Per Turn] If your opponent has 2 or more Digimon in play, <Draw 1>. (Draw 1 card from your deck.)</dd>
  123. </dl>
  124. <dl>
  125. <dt>Securityeffect</dt>
  126. <dd>-</dd>
  127. </dl>
  128. <dl>
  129. <dt>Notes</dt>
  130. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  131. </div>
  132. </div>
  133. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  134. </div>
  135. </div>
  136. </li>
  137. <liclass="image_lists_itemdatapage-1">
  138. <aclass="card_img">
  139. <imgsrc="../images/cardlist/card/BT10-003.png"alt="BT10-003Pickmons"></a>
  140. <divclass="popup">
  141. <divclass="card_detailcard_detail_yellow">
  142. <divclass="card_detail_inner">
  143. <ulclass="cardinfo_head">
  144. <liclass="cardno">BT10-003</li>
  145. <li>U</li>
  146. <liclass="cardtype">Digi-Egg</li>
  147. <liclass="cardlv">Lv.2</li>
  148. </ul>
  149. <divclass="card_name">Pickmons</div>
  150. <divclass="cardinfo_top">
  151. <divclass="card_img">
  152. <imgsrc="../images/cardlist/card/BT10-003.png"alt="BT10-003Pickmons"></div>
  153. <divclass="cardinfo_top_body">
  154. <dl>
  155. <dt>Form</dt>
  156. <dd>In-Training</dd>
  157. </dl>
  158. <dl>
  159. <dt>Attribute</dt>
  160. <dd>-</dd>
  161. </dl>
  162. <dl>
  163. <dt>Type</dt>
  164. <dd>Minor/XrosHeart</dd>
  165. </dl>
  166. <dl>
  167. <dt>DP</dt>
  168. <dd>-</dl>
  169. <dl>
  170. <dt>PlayCost</dt>
  171. <dd>-</dd>
  172. </dl>
  173. <dl>
  174. <dt>DigivolveCost1</dt>
  175. <dd>-</dd>
  176. </dl>
  177. <dl>
  178. <dt>DigivolveCost2</dt>
  179. <dd>-</dd>
  180. </dl>
  181. </div>
  182. </div>
  183. <divclass="cardinfo_bottom">
  184. <dl>
  185. <dt>Effect</dt>
  186. <dd>-</dd>
  187. </dl>
  188. <dl>
  189. <dt>Digivolveeffect</dt>
  190. <dd>[When Attacking] If this Digimon has [Xros Heart] in its traits, <Draw 1>. (Draw 1 card from your deck.)</dd>
  191. </dl>
  192. <dl>
  193. <dt>Securityeffect</dt>
  194. <dd>-</dd>
  195. </dl>
  196. <dl>
  197. <dt>Notes</dt>
  198. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  199. </div>
  200. </div>
  201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  202. </div>
  203. </div>
  204. </li>
  205. <liclass="image_lists_itemdatapage-1">
  206. <aclass="card_img">
  207. <imgsrc="../images/cardlist/card/BT10-003_P1.png"alt="BT10-003Pickmons"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  208. </a>
  209. <divclass="popup">
  210. <divclass="card_detailcard_detail_yellow">
  211. <divclass="card_detail_inner">
  212. <ulclass="cardinfo_head">
  213. <liclass="cardno">BT10-003</li>
  214. <li>U</li>
  215. <liclass="cardtype">Digi-Egg</li>
  216. <liclass="cardlv">Lv.2</li>
  217. <liclass="cardtypecardParallel">AlternativeArt</li>
  218. </ul>
  219. <divclass="card_name">Pickmons</div>
  220. <divclass="cardinfo_top">
  221. <divclass="card_img">
  222. <imgsrc="../images/cardlist/card/BT10-003_P1.png"alt="BT10-003Pickmons"></div>
  223. <divclass="cardinfo_top_body">
  224. <dl>
  225. <dt>Form</dt>
  226. <dd>In-Training</dd>
  227. </dl>
  228. <dl>
  229. <dt>Attribute</dt>
  230. <dd>-</dd>
  231. </dl>
  232. <dl>
  233. <dt>Type</dt>
  234. <dd>Minor/XrosHeart</dd>
  235. </dl>
  236. <dl>
  237. <dt>DP</dt>
  238. <dd>-</dl>
  239. <dl>
  240. <dt>PlayCost</dt>
  241. <dd>-</dd>
  242. </dl>
  243. <dl>
  244. <dt>DigivolveCost1</dt>
  245. <dd>-</dd>
  246. </dl>
  247. <dl>
  248. <dt>DigivolveCost2</dt>
  249. <dd>-</dd>
  250. </dl>
  251. </div>
  252. </div>
  253. <divclass="cardinfo_bottom">
  254. <dl>
  255. <dt>Effect</dt>
  256. <dd>-</dd>
  257. </dl>
  258. <dl>
  259. <dt>Digivolveeffect</dt>
  260. <dd>[When Attacking] If this Digimon has [Xros Heart] in its traits, <Draw 1>. (Draw 1 card from your deck.)</dd>
  261. </dl>
  262. <dl>
  263. <dt>Securityeffect</dt>
  264. <dd>-</dd>
  265. </dl>
  266. <dl>
  267. <dt>Notes</dt>
  268. <dd>TournamentPackVol.8</dd></dl>
  269. </div>
  270. </div>
  271. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  272. </div>
  273. </div>
  274. </li>
  275. <liclass="image_lists_itemdatapage-1">
  276. <aclass="card_img">
  277. <imgsrc="../images/cardlist/card/BT10-003_P2.png"alt="BT10-003Pickmons"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  278. </a>
  279. <divclass="popup">
  280. <divclass="card_detailcard_detail_yellow">
  281. <divclass="card_detail_inner">
  282. <ulclass="cardinfo_head">
  283. <liclass="cardno">BT10-003</li>
  284. <li>U</li>
  285. <liclass="cardtype">Digi-Egg</li>
  286. <liclass="cardlv">Lv.2</li>
  287. <liclass="cardtypecardParallel">AlternativeArt</li>
  288. </ul>
  289. <divclass="card_name">Pickmons</div>
  290. <divclass="cardinfo_top">
  291. <divclass="card_img">
  292. <imgsrc="../images/cardlist/card/BT10-003_P2.png"alt="BT10-003Pickmons"></div>
  293. <divclass="cardinfo_top_body">
  294. <dl>
  295. <dt>Form</dt>
  296. <dd>In-Training</dd>
  297. </dl>
  298. <dl>
  299. <dt>Attribute</dt>
  300. <dd>-</dd>
  301. </dl>
  302. <dl>
  303. <dt>Type</dt>
  304. <dd>Minor/XrosHeart</dd>
  305. </dl>
  306. <dl>
  307. <dt>DP</dt>
  308. <dd>-</dl>
  309. <dl>
  310. <dt>PlayCost</dt>
  311. <dd>-</dd>
  312. </dl>
  313. <dl>
  314. <dt>DigivolveCost1</dt>
  315. <dd>-</dd>
  316. </dl>
  317. <dl>
  318. <dt>DigivolveCost2</dt>
  319. <dd>-</dd>
  320. </dl>
  321. </div>
  322. </div>
  323. <divclass="cardinfo_bottom">
  324. <dl>
  325. <dt>Effect</dt>
  326. <dd>-</dd>
  327. </dl>
  328. <dl>
  329. <dt>Digivolveeffect</dt>
  330. <dd>[When Attacking] If this Digimon has [Xros Heart] in its traits, <Draw 1>. (Draw 1 card from your deck.)</dd>
  331. </dl>
  332. <dl>
  333. <dt>Securityeffect</dt>
  334. <dd>-</dd>
  335. </dl>
  336. <dl>
  337. <dt>Notes</dt>
  338. <dd>WinnerPack-DimensionalPhase-</dd></dl>
  339. </div>
  340. </div>
  341. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  342. </div>
  343. </div>
  344. </li>
  345. <liclass="image_lists_itemdatapage-1">
  346. <aclass="card_img">
  347. <imgsrc="../images/cardlist/card/BT10-004.png"alt="BT10-004Bosamon"></a>
  348. <divclass="popup">
  349. <divclass="card_detailcard_detail_green">
  350. <divclass="card_detail_inner">
  351. <ulclass="cardinfo_head">
  352. <liclass="cardno">BT10-004</li>
  353. <li>U</li>
  354. <liclass="cardtype">Digi-Egg</li>
  355. <liclass="cardlv">Lv.2</li>
  356. </ul>
  357. <divclass="card_name">Bosamon</div>
  358. <divclass="cardinfo_top">
  359. <divclass="card_img">
  360. <imgsrc="../images/cardlist/card/BT10-004.png"alt="BT10-004Bosamon"></div>
  361. <divclass="cardinfo_top_body">
  362. <dl>
  363. <dt>Form</dt>
  364. <dd>In-Training</dd>
  365. </dl>
  366. <dl>
  367. <dt>Attribute</dt>
  368. <dd>-</dd>
  369. </dl>
  370. <dl>
  371. <dt>Type</dt>
  372. <dd>Lesser</dd>
  373. </dl>
  374. <dl>
  375. <dt>DP</dt>
  376. <dd>-</dl>
  377. <dl>
  378. <dt>PlayCost</dt>
  379. <dd>-</dd>
  380. </dl>
  381. <dl>
  382. <dt>DigivolveCost1</dt>
  383. <dd>-</dd>
  384. </dl>
  385. <dl>
  386. <dt>DigivolveCost2</dt>
  387. <dd>-</dd>
  388. </dl>
  389. </div>
  390. </div>
  391. <divclass="cardinfo_bottom">
  392. <dl>
  393. <dt>Effect</dt>
  394. <dd>-</dd>
  395. </dl>
  396. <dl>
  397. <dt>Digivolveeffect</dt>
  398. <dd>[Your Turn] When an effect suspends a Digimon, this Digimon gets +1000 DP for the turn.</dd>
  399. </dl>
  400. <dl>
  401. <dt>Securityeffect</dt>
  402. <dd>-</dd>
  403. </dl>
  404. <dl>
  405. <dt>Notes</dt>
  406. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-004'>ErrataCard</a></dd></dl>
  407. </div>
  408. </div>
  409. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  410. </div>
  411. </div>
  412. </li>
  413. <liclass="image_lists_itemdatapage-1">
  414. <aclass="card_img">
  415. <imgsrc="../images/cardlist/card/BT10-005.png"alt="BT10-005Monimon"></a>
  416. <divclass="popup">
  417. <divclass="card_detailcard_detail_black">
  418. <divclass="card_detail_inner">
  419. <ulclass="cardinfo_head">
  420. <liclass="cardno">BT10-005</li>
  421. <li>U</li>
  422. <liclass="cardtype">Digi-Egg</li>
  423. <liclass="cardlv">Lv.2</li>
  424. </ul>
  425. <divclass="card_name">Monimon</div>
  426. <divclass="cardinfo_top">
  427. <divclass="card_img">
  428. <imgsrc="../images/cardlist/card/BT10-005.png"alt="BT10-005Monimon"></div>
  429. <divclass="cardinfo_top_body">
  430. <dl>
  431. <dt>Form</dt>
  432. <dd>In-Training</dd>
  433. </dl>
  434. <dl>
  435. <dt>Attribute</dt>
  436. <dd>-</dd>
  437. </dl>
  438. <dl>
  439. <dt>Type</dt>
  440. <dd>CRT/Twilight/XrosHeart</dd>
  441. </dl>
  442. <dl>
  443. <dt>DP</dt>
  444. <dd>-</dl>
  445. <dl>
  446. <dt>PlayCost</dt>
  447. <dd>-</dd>
  448. </dl>
  449. <dl>
  450. <dt>DigivolveCost1</dt>
  451. <dd>-</dd>
  452. </dl>
  453. <dl>
  454. <dt>DigivolveCost2</dt>
  455. <dd>-</dd>
  456. </dl>
  457. </div>
  458. </div>
  459. <divclass="cardinfo_bottom">
  460. <dl>
  461. <dt>Effect</dt>
  462. <dd>-</dd>
  463. </dl>
  464. <dl>
  465. <dt>Digivolveeffect</dt>
  466. <dd>[All Turns] While this Digimon has [Twilight] in its traits, it gets +1000 DP.</dd>
  467. </dl>
  468. <dl>
  469. <dt>Securityeffect</dt>
  470. <dd>-</dd>
  471. </dl>
  472. <dl>
  473. <dt>Notes</dt>
  474. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  475. </div>
  476. </div>
  477. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  478. </div>
  479. </div>
  480. </li>
  481. <liclass="image_lists_itemdatapage-1">
  482. <aclass="card_img">
  483. <imgsrc="../images/cardlist/card/BT10-006.png"alt="BT10-006Tokomon"></a>
  484. <divclass="popup">
  485. <divclass="card_detailcard_detail_purple">
  486. <divclass="card_detail_inner">
  487. <ulclass="cardinfo_head">
  488. <liclass="cardno">BT10-006</li>
  489. <li>U</li>
  490. <liclass="cardtype">Digi-Egg</li>
  491. <liclass="cardlv">Lv.2</li>
  492. </ul>
  493. <divclass="card_name">Tokomon</div>
  494. <divclass="cardinfo_top">
  495. <divclass="card_img">
  496. <imgsrc="../images/cardlist/card/BT10-006.png"alt="BT10-006Tokomon"></div>
  497. <divclass="cardinfo_top_body">
  498. <dl>
  499. <dt>Form</dt>
  500. <dd>In-Training</dd>
  501. </dl>
  502. <dl>
  503. <dt>Attribute</dt>
  504. <dd>-</dd>
  505. </dl>
  506. <dl>
  507. <dt>Type</dt>
  508. <dd>Lesser</dd>
  509. </dl>
  510. <dl>
  511. <dt>DP</dt>
  512. <dd>-</dl>
  513. <dl>
  514. <dt>PlayCost</dt>
  515. <dd>-</dd>
  516. </dl>
  517. <dl>
  518. <dt>DigivolveCost1</dt>
  519. <dd>-</dd>
  520. </dl>
  521. <dl>
  522. <dt>DigivolveCost2</dt>
  523. <dd>-</dd>
  524. </dl>
  525. </div>
  526. </div>
  527. <divclass="cardinfo_bottom">
  528. <dl>
  529. <dt>Effect</dt>
  530. <dd>-</dd>
  531. </dl>
  532. <dl>
  533. <dt>Digivolveeffect</dt>
  534. <dd>[Opponent's Turn] When an effect trashes this digivolution card, <Draw 1>. (Draw 1 card from your deck.)</dd>
  535. </dl>
  536. <dl>
  537. <dt>Securityeffect</dt>
  538. <dd>-</dd>
  539. </dl>
  540. <dl>
  541. <dt>Notes</dt>
  542. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  543. </div>
  544. </div>
  545. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  546. </div>
  547. </div>
  548. </li>
  549. <liclass="image_lists_itemdatapage-1">
  550. <aclass="card_img">
  551. <imgsrc="../images/cardlist/card/BT10-007.png"alt="BT10-007Dondokomon"></a>
  552. <divclass="popup">
  553. <divclass="card_detailcard_detail_red">
  554. <divclass="card_detail_inner">
  555. <ulclass="cardinfo_head">
  556. <liclass="cardno">BT10-007</li>
  557. <li>C</li>
  558. <liclass="cardtype">Digimon</li>
  559. <liclass="cardlv">Lv.3</li>
  560. </ul>
  561. <divclass="card_name">Dondokomon</div>
  562. <divclass="cardinfo_top">
  563. <divclass="card_img">
  564. <imgsrc="../images/cardlist/card/BT10-007.png"alt="BT10-007Dondokomon"></div>
  565. <divclass="cardinfo_top_body">
  566. <dl>
  567. <dt>Form</dt>
  568. <dd>Rookie</dd>
  569. </dl>
  570. <dl>
  571. <dt>Attribute</dt>
  572. <dd>Vaccine</dd>
  573. </dl>
  574. <dl>
  575. <dt>Type</dt>
  576. <dd>MusicalInstrument/XrosHeart</dd>
  577. </dl>
  578. <dl>
  579. <dt>DP</dt>
  580. <dd>4000</dl>
  581. <dl>
  582. <dt>PlayCost</dt>
  583. <dd>3</dd>
  584. </dl>
  585. <dl>
  586. <dt>DigivolveCost1</dt>
  587. <dd>0fromLv.2</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost2</dt>
  591. <dd>-</dd>
  592. </dl>
  593. </div>
  594. </div>
  595. <divclass="cardinfo_bottom">
  596. <dl>
  597. <dt>Effect</dt>
  598. <dd>Digivolve: 0 from Lv.2 w/[Xros Heart] in traits</dd>
  599. </dl>
  600. <dl>
  601. <dt>Digivolveeffect</dt>
  602. <dd>-</dd>
  603. </dl>
  604. <dl>
  605. <dt>Securityeffect</dt>
  606. <dd>-</dd>
  607. </dl>
  608. <dl>
  609. <dt>Notes</dt>
  610. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  611. </div>
  612. </div>
  613. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  614. </div>
  615. </div>
  616. </li>
  617. <liclass="image_lists_itemdatapage-1">
  618. <aclass="card_img">
  619. <imgsrc="../images/cardlist/card/BT10-008.png"alt="BT10-008Shoutmon"></a>
  620. <divclass="popup">
  621. <divclass="card_detailcard_detail_red">
  622. <divclass="card_detail_inner">
  623. <ulclass="cardinfo_head">
  624. <liclass="cardno">BT10-008</li>
  625. <li>U</li>
  626. <liclass="cardtype">Digimon</li>
  627. <liclass="cardlv">Lv.3</li>
  628. </ul>
  629. <divclass="card_name">Shoutmon</div>
  630. <divclass="cardinfo_top">
  631. <divclass="card_img">
  632. <imgsrc="../images/cardlist/card/BT10-008.png"alt="BT10-008Shoutmon"></div>
  633. <divclass="cardinfo_top_body">
  634. <dl>
  635. <dt>Form</dt>
  636. <dd>Rookie</dd>
  637. </dl>
  638. <dl>
  639. <dt>Attribute</dt>
  640. <dd>Data</dd>
  641. </dl>
  642. <dl>
  643. <dt>Type</dt>
  644. <dd>MiniDragon/XrosHeart</dd>
  645. </dl>
  646. <dl>
  647. <dt>DP</dt>
  648. <dd>2000</dl>
  649. <dl>
  650. <dt>PlayCost</dt>
  651. <dd>4</dd>
  652. </dl>
  653. <dl>
  654. <dt>DigivolveCost1</dt>
  655. <dd>0fromLv.2</dd>
  656. </dl>
  657. <dl>
  658. <dt>DigivolveCost2</dt>
  659. <dd>-</dd>
  660. </dl>
  661. </div>
  662. </div>
  663. <divclass="cardinfo_bottom">
  664. <dl>
  665. <dt>Effect</dt>
  666. <dd>Digivolve: 0 from Lv.2 w/[Xros Heart] in traits[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card and 1 Tamer card―both with [Xros Heart] in their traits―among them to your hand. Place the rest at the bottom of your deck in any order.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  667. </dl>
  668. <dl>
  669. <dt>Digivolveeffect</dt>
  670. <dd>[Your Turn] While this Digimon has [Shoutmon] in its name, it gains <Rush>. (This Digimon may attack the turn it was played.)</dd>
  671. </dl>
  672. <dl>
  673. <dt>Securityeffect</dt>
  674. <dd>-</dd>
  675. </dl>
  676. <dl>
  677. <dt>Notes</dt>
  678. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  679. </div>
  680. </div>
  681. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  682. </div>
  683. </div>
  684. </li>
  685. <liclass="image_lists_itemdatapage-1">
  686. <aclass="card_img">
  687. <imgsrc="../images/cardlist/card/BT10-009.png"alt="BT10-009ShoutmonX4"></a>
  688. <divclass="popup">
  689. <divclass="card_detailcard_detail_red_yellowmulticolor">
  690. <divclass="card_detail_inner">
  691. <ulclass="cardinfo_head">
  692. <liclass="cardno">BT10-009</li>
  693. <li>R</li>
  694. <liclass="cardtype">Digimon</li>
  695. <liclass="cardlv">Lv.4</li>
  696. </ul>
  697. <divclass="card_name">ShoutmonX4</div>
  698. <divclass="cardinfo_top">
  699. <divclass="card_img">
  700. <imgsrc="../images/cardlist/card/BT10-009.png"alt="BT10-009ShoutmonX4"></div>
  701. <divclass="cardinfo_top_body">
  702. <dl>
  703. <dt>Form</dt>
  704. <dd>Champion</dd>
  705. </dl>
  706. <dl>
  707. <dt>Attribute</dt>
  708. <dd>Data</dd>
  709. </dl>
  710. <dl>
  711. <dt>Type</dt>
  712. <dd>Composite/XrosHeart</dd>
  713. </dl>
  714. <dl>
  715. <dt>DP</dt>
  716. <dd>8000</dl>
  717. <dl>
  718. <dt>PlayCost</dt>
  719. <dd>9</dd>
  720. </dl>
  721. <dl>
  722. <dt>DigivolveCost1</dt>
  723. <dd>3fromLv.3</dd>
  724. </dl>
  725. <dl>
  726. <dt>DigivolveCost2</dt>
  727. <dd>Yellow</dd>
  728. </dl>
  729. </div>
  730. </div>
  731. <divclass="cardinfo_bottom">
  732. <dl>
  733. <dt>Effect</dt>
  734. <dd>DigiXros -2: [Shoutmon] + [Ballistamon] + [Dorulumon] + [Starmons] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Material Save 2> (When this Digimon is deleted, you may place 2 cards in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)<br>[On Play] <Draw 2>. (Draw 2 cards from your deck.)<br>[End of Attack] By placing all digivolution cards from under this Digimon under 1 of your Tamers, unsuspend 1 of your Tamers, and delete this Digimon.</dd>
  735. </dl>
  736. <dl>
  737. <dt>Digivolveeffect</dt>
  738. <dd>-</dd>
  739. </dl>
  740. <dl>
  741. <dt>Securityeffect</dt>
  742. <dd>-</dd>
  743. </dl>
  744. <dl>
  745. <dt>Notes</dt>
  746. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  747. </div>
  748. </div>
  749. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  750. </div>
  751. </div>
  752. </li>
  753. <liclass="image_lists_itemdatapage-1">
  754. <aclass="card_img">
  755. <imgsrc="../images/cardlist/card/BT10-010.png"alt="BT10-010Asuramon"></a>
  756. <divclass="popup">
  757. <divclass="card_detailcard_detail_red">
  758. <divclass="card_detail_inner">
  759. <ulclass="cardinfo_head">
  760. <liclass="cardno">BT10-010</li>
  761. <li>C</li>
  762. <liclass="cardtype">Digimon</li>
  763. <liclass="cardlv">Lv.5</li>
  764. </ul>
  765. <divclass="card_name">Asuramon</div>
  766. <divclass="cardinfo_top">
  767. <divclass="card_img">
  768. <imgsrc="../images/cardlist/card/BT10-010.png"alt="BT10-010Asuramon"></div>
  769. <divclass="cardinfo_top_body">
  770. <dl>
  771. <dt>Form</dt>
  772. <dd>Ultimate</dd>
  773. </dl>
  774. <dl>
  775. <dt>Attribute</dt>
  776. <dd>Vaccine</dd>
  777. </dl>
  778. <dl>
  779. <dt>Type</dt>
  780. <dd>Wizard</dd>
  781. </dl>
  782. <dl>
  783. <dt>DP</dt>
  784. <dd>8000</dl>
  785. <dl>
  786. <dt>PlayCost</dt>
  787. <dd>7</dd>
  788. </dl>
  789. <dl>
  790. <dt>DigivolveCost1</dt>
  791. <dd>2fromLv.4</dd>
  792. </dl>
  793. <dl>
  794. <dt>DigivolveCost2</dt>
  795. <dd>-</dd>
  796. </dl>
  797. </div>
  798. </div>
  799. <divclass="cardinfo_bottom">
  800. <dl>
  801. <dt>Effect</dt>
  802. <dd>-</dd>
  803. </dl>
  804. <dl>
  805. <dt>Digivolveeffect</dt>
  806. <dd>-</dd>
  807. </dl>
  808. <dl>
  809. <dt>Securityeffect</dt>
  810. <dd>-</dd>
  811. </dl>
  812. <dl>
  813. <dt>Notes</dt>
  814. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  815. </div>
  816. </div>
  817. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  818. </div>
  819. </div>
  820. </li>
  821. <liclass="image_lists_itemdatapage-1">
  822. <aclass="card_img">
  823. <imgsrc="../images/cardlist/card/BT10-011.png"alt="BT10-011Canoweissmon"></a>
  824. <divclass="popup">
  825. <divclass="card_detailcard_detail_red">
  826. <divclass="card_detail_inner">
  827. <ulclass="cardinfo_head">
  828. <liclass="cardno">BT10-011</li>
  829. <li>R</li>
  830. <liclass="cardtype">Digimon</li>
  831. <liclass="cardlv">Lv.5</li>
  832. </ul>
  833. <divclass="card_name">Canoweissmon</div>
  834. <divclass="cardinfo_top">
  835. <divclass="card_img">
  836. <imgsrc="../images/cardlist/card/BT10-011.png"alt="BT10-011Canoweissmon"></div>
  837. <divclass="cardinfo_top_body">
  838. <dl>
  839. <dt>Form</dt>
  840. <dd>Ultimate</dd>
  841. </dl>
  842. <dl>
  843. <dt>Attribute</dt>
  844. <dd>Vaccine</dd>
  845. </dl>
  846. <dl>
  847. <dt>Type</dt>
  848. <dd>SkyDragon</dd>
  849. </dl>
  850. <dl>
  851. <dt>DP</dt>
  852. <dd>8000</dl>
  853. <dl>
  854. <dt>PlayCost</dt>
  855. <dd>8</dd>
  856. </dl>
  857. <dl>
  858. <dt>DigivolveCost1</dt>
  859. <dd>4fromLv.4</dd>
  860. </dl>
  861. <dl>
  862. <dt>DigivolveCost2</dt>
  863. <dd>-</dd>
  864. </dl>
  865. </div>
  866. </div>
  867. <divclass="cardinfo_bottom">
  868. <dl>
  869. <dt>Effect</dt>
  870. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name[Your Turn][Once Per Turn] When one of your Tamers becomes suspended, this Digimon gets +2000 DP for the turn. Then, if this Digimon has 12000 DP or more, it gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  871. </dl>
  872. <dl>
  873. <dt>Digivolveeffect</dt>
  874. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  875. </dl>
  876. <dl>
  877. <dt>Securityeffect</dt>
  878. <dd>-</dd>
  879. </dl>
  880. <dl>
  881. <dt>Notes</dt>
  882. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  883. </div>
  884. </div>
  885. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  886. </div>
  887. </div>
  888. </li>
  889. <liclass="image_lists_itemdatapage-1">
  890. <aclass="card_img">
  891. <imgsrc="../images/cardlist/card/BT10-011_P1.png"alt="BT10-011Canoweissmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  892. </a>
  893. <divclass="popup">
  894. <divclass="card_detailcard_detail_red">
  895. <divclass="card_detail_inner">
  896. <ulclass="cardinfo_head">
  897. <liclass="cardno">BT10-011</li>
  898. <li>R</li>
  899. <liclass="cardtype">Digimon</li>
  900. <liclass="cardlv">Lv.5</li>
  901. <liclass="cardtypecardParallel">AlternativeArt</li>
  902. </ul>
  903. <divclass="card_name">Canoweissmon</div>
  904. <divclass="cardinfo_top">
  905. <divclass="card_img">
  906. <imgsrc="../images/cardlist/card/BT10-011_P1.png"alt="BT10-011Canoweissmon"></div>
  907. <divclass="cardinfo_top_body">
  908. <dl>
  909. <dt>Form</dt>
  910. <dd>Ultimate</dd>
  911. </dl>
  912. <dl>
  913. <dt>Attribute</dt>
  914. <dd>Vaccine</dd>
  915. </dl>
  916. <dl>
  917. <dt>Type</dt>
  918. <dd>SkyDragon</dd>
  919. </dl>
  920. <dl>
  921. <dt>DP</dt>
  922. <dd>8000</dl>
  923. <dl>
  924. <dt>PlayCost</dt>
  925. <dd>8</dd>
  926. </dl>
  927. <dl>
  928. <dt>DigivolveCost1</dt>
  929. <dd>4fromLv.4</dd>
  930. </dl>
  931. <dl>
  932. <dt>DigivolveCost2</dt>
  933. <dd>-</dd>
  934. </dl>
  935. </div>
  936. </div>
  937. <divclass="cardinfo_bottom">
  938. <dl>
  939. <dt>Effect</dt>
  940. <dd>Digivolve: 3 from Lv.4 w/[Gammamon] in name[Your Turn][Once Per Turn] When one of your Tamers becomes suspended, this Digimon gets +2000 DP for the turn. Then, if this Digimon has 12000 DP or more, it gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)<br>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  941. </dl>
  942. <dl>
  943. <dt>Digivolveeffect</dt>
  944. <dd>[All Turns] This Digimon gains all effects of cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  945. </dl>
  946. <dl>
  947. <dt>Securityeffect</dt>
  948. <dd>-</dd>
  949. </dl>
  950. <dl>
  951. <dt>Notes</dt>
  952. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  953. </div>
  954. </div>
  955. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  956. </div>
  957. </div>
  958. </li>
  959. <liclass="image_lists_itemdatapage-1">
  960. <aclass="card_img">
  961. <imgsrc="../images/cardlist/card/BT10-012.png"alt="BT10-012ShoutmonX4B"></a>
  962. <divclass="popup">
  963. <divclass="card_detailcard_detail_red_purplemulticolor">
  964. <divclass="card_detail_inner">
  965. <ulclass="cardinfo_head">
  966. <liclass="cardno">BT10-012</li>
  967. <li>U</li>
  968. <liclass="cardtype">Digimon</li>
  969. <liclass="cardlv">Lv.5</li>
  970. </ul>
  971. <divclass="card_name">ShoutmonX4B</div>
  972. <divclass="cardinfo_top">
  973. <divclass="card_img">
  974. <imgsrc="../images/cardlist/card/BT10-012.png"alt="BT10-012ShoutmonX4B"></div>
  975. <divclass="cardinfo_top_body">
  976. <dl>
  977. <dt>Form</dt>
  978. <dd>Ultimate</dd>
  979. </dl>
  980. <dl>
  981. <dt>Attribute</dt>
  982. <dd>Data</dd>
  983. </dl>
  984. <dl>
  985. <dt>Type</dt>
  986. <dd>Composite/XrosHeart</dd>
  987. </dl>
  988. <dl>
  989. <dt>DP</dt>
  990. <dd>9000</dl>
  991. <dl>
  992. <dt>PlayCost</dt>
  993. <dd>9</dd>
  994. </dl>
  995. <dl>
  996. <dt>DigivolveCost1</dt>
  997. <dd>3fromLv.4</dd>
  998. </dl>
  999. <dl>
  1000. <dt>DigivolveCost2</dt>
  1001. <dd>Purple</dd>
  1002. </dl>
  1003. </div>
  1004. </div>
  1005. <divclass="cardinfo_bottom">
  1006. <dl>
  1007. <dt>Effect</dt>
  1008. <dd>DigiXros -2: [Shoutmon X4] + [Beelzemon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Armor Purge><br>[On Play][When Digivolving] You may place 1 Digimon card with [Xros Heart] in its traits from your hand or from under one of your Tamers under this Digimon as its bottom digivolution card. Then, if [Beelzemon] is in this Digimon's digivolution cards, return 2 cards with [Xros Heart] in their traits from your trash to your hand.</dd>
  1009. </dl>
  1010. <dl>
  1011. <dt>Digivolveeffect</dt>
  1012. <dd>-</dd>
  1013. </dl>
  1014. <dl>
  1015. <dt>Securityeffect</dt>
  1016. <dd>-</dd>
  1017. </dl>
  1018. <dl>
  1019. <dt>Notes</dt>
  1020. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1021. </div>
  1022. </div>
  1023. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1024. </div>
  1025. </div>
  1026. </li>
  1027. <liclass="image_lists_itemdatapage-1">
  1028. <aclass="card_img">
  1029. <imgsrc="../images/cardlist/card/BT10-013.png"alt="BT10-013ShoutmonX5"></a>
  1030. <divclass="popup">
  1031. <divclass="card_detailcard_detail_red_blackmulticolor">
  1032. <divclass="card_detail_inner">
  1033. <ulclass="cardinfo_head">
  1034. <liclass="cardno">BT10-013</li>
  1035. <li>SR</li>
  1036. <liclass="cardtype">Digimon</li>
  1037. <liclass="cardlv">Lv.5</li>
  1038. </ul>
  1039. <divclass="card_name">ShoutmonX5</div>
  1040. <divclass="cardinfo_top">
  1041. <divclass="card_img">
  1042. <imgsrc="../images/cardlist/card/BT10-013.png"alt="BT10-013ShoutmonX5"></div>
  1043. <divclass="cardinfo_top_body">
  1044. <dl>
  1045. <dt>Form</dt>
  1046. <dd>Ultimate</dd>
  1047. </dl>
  1048. <dl>
  1049. <dt>Attribute</dt>
  1050. <dd>Data</dd>
  1051. </dl>
  1052. <dl>
  1053. <dt>Type</dt>
  1054. <dd>Composite/XrosHeart</dd>
  1055. </dl>
  1056. <dl>
  1057. <dt>DP</dt>
  1058. <dd>10000</dl>
  1059. <dl>
  1060. <dt>PlayCost</dt>
  1061. <dd>10</dd>
  1062. </dl>
  1063. <dl>
  1064. <dt>DigivolveCost1</dt>
  1065. <dd>4fromLv.4</dd>
  1066. </dl>
  1067. <dl>
  1068. <dt>DigivolveCost2</dt>
  1069. <dd>Black</dd>
  1070. </dl>
  1071. </div>
  1072. </div>
  1073. <divclass="cardinfo_bottom">
  1074. <dl>
  1075. <dt>Effect</dt>
  1076. <dd>DigiXros -2: [Shoutmon] + [Ballistamon] + [Dorulumon] + [Starmons] + [Sparrowmon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Security Attack +1><br><Blocker><br><Material Save 3> (When this Digimon is deleted, you may place 3 cards in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)</dd>
  1077. </dl>
  1078. <dl>
  1079. <dt>Digivolveeffect</dt>
  1080. <dd>-</dd>
  1081. </dl>
  1082. <dl>
  1083. <dt>Securityeffect</dt>
  1084. <dd>-</dd>
  1085. </dl>
  1086. <dl>
  1087. <dt>Notes</dt>
  1088. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1089. </div>
  1090. </div>
  1091. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1092. </div>
  1093. </div>
  1094. </li>
  1095. <liclass="image_lists_itemdatapage-1">
  1096. <aclass="card_img">
  1097. <imgsrc="../images/cardlist/card/BT10-013_P1.png"alt="BT10-013ShoutmonX5"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1098. </a>
  1099. <divclass="popup">
  1100. <divclass="card_detailcard_detail_red_blackmulticolor">
  1101. <divclass="card_detail_inner">
  1102. <ulclass="cardinfo_head">
  1103. <liclass="cardno">BT10-013</li>
  1104. <li>SR</li>
  1105. <liclass="cardtype">Digimon</li>
  1106. <liclass="cardlv">Lv.5</li>
  1107. <liclass="cardtypecardParallel">AlternativeArt</li>
  1108. </ul>
  1109. <divclass="card_name">ShoutmonX5</div>
  1110. <divclass="cardinfo_top">
  1111. <divclass="card_img">
  1112. <imgsrc="../images/cardlist/card/BT10-013_P1.png"alt="BT10-013ShoutmonX5"></div>
  1113. <divclass="cardinfo_top_body">
  1114. <dl>
  1115. <dt>Form</dt>
  1116. <dd>Ultimate</dd>
  1117. </dl>
  1118. <dl>
  1119. <dt>Attribute</dt>
  1120. <dd>Data</dd>
  1121. </dl>
  1122. <dl>
  1123. <dt>Type</dt>
  1124. <dd>Composite/XrosHeart</dd>
  1125. </dl>
  1126. <dl>
  1127. <dt>DP</dt>
  1128. <dd>10000</dl>
  1129. <dl>
  1130. <dt>PlayCost</dt>
  1131. <dd>10</dd>
  1132. </dl>
  1133. <dl>
  1134. <dt>DigivolveCost1</dt>
  1135. <dd>4fromLv.4</dd>
  1136. </dl>
  1137. <dl>
  1138. <dt>DigivolveCost2</dt>
  1139. <dd>Black</dd>
  1140. </dl>
  1141. </div>
  1142. </div>
  1143. <divclass="cardinfo_bottom">
  1144. <dl>
  1145. <dt>Effect</dt>
  1146. <dd>DigiXros -2: [Shoutmon] + [Ballistamon] + [Dorulumon] + [Starmons] + [Sparrowmon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Security Attack +1><br><Blocker><br><Material Save 3> (When this Digimon is deleted, you may place 3 cards in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)</dd>
  1147. </dl>
  1148. <dl>
  1149. <dt>Digivolveeffect</dt>
  1150. <dd>-</dd>
  1151. </dl>
  1152. <dl>
  1153. <dt>Securityeffect</dt>
  1154. <dd>-</dd>
  1155. </dl>
  1156. <dl>
  1157. <dt>Notes</dt>
  1158. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1159. </div>
  1160. </div>
  1161. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1162. </div>
  1163. </div>
  1164. </li>
  1165. <liclass="image_lists_itemdatapage-1">
  1166. <aclass="card_img">
  1167. <imgsrc="../images/cardlist/card/BT10-014.png"alt="BT10-014PileVolcamon"></a>
  1168. <divclass="popup">
  1169. <divclass="card_detailcard_detail_red">
  1170. <divclass="card_detail_inner">
  1171. <ulclass="cardinfo_head">
  1172. <liclass="cardno">BT10-014</li>
  1173. <li>U</li>
  1174. <liclass="cardtype">Digimon</li>
  1175. <liclass="cardlv">Lv.6</li>
  1176. </ul>
  1177. <divclass="card_name">PileVolcamon</div>
  1178. <divclass="cardinfo_top">
  1179. <divclass="card_img">
  1180. <imgsrc="../images/cardlist/card/BT10-014.png"alt="BT10-014PileVolcamon"></div>
  1181. <divclass="cardinfo_top_body">
  1182. <dl>
  1183. <dt>Form</dt>
  1184. <dd>Mega</dd>
  1185. </dl>
  1186. <dl>
  1187. <dt>Attribute</dt>
  1188. <dd>Data</dd>
  1189. </dl>
  1190. <dl>
  1191. <dt>Type</dt>
  1192. <dd>Cyborg</dd>
  1193. </dl>
  1194. <dl>
  1195. <dt>DP</dt>
  1196. <dd>11000</dl>
  1197. <dl>
  1198. <dt>PlayCost</dt>
  1199. <dd>10</dd>
  1200. </dl>
  1201. <dl>
  1202. <dt>DigivolveCost1</dt>
  1203. <dd>3fromLv.5</dd>
  1204. </dl>
  1205. <dl>
  1206. <dt>DigivolveCost2</dt>
  1207. <dd>-</dd>
  1208. </dl>
  1209. </div>
  1210. </div>
  1211. <divclass="cardinfo_bottom">
  1212. <dl>
  1213. <dt>Effect</dt>
  1214. <dd>[When Digivolving] <Blitz> (If your opponent has 1 or more memory, this Digimon may attack.)<br>[Your Turn] This Digimon gets +2000 DP.</dd>
  1215. </dl>
  1216. <dl>
  1217. <dt>Digivolveeffect</dt>
  1218. <dd>-</dd>
  1219. </dl>
  1220. <dl>
  1221. <dt>Securityeffect</dt>
  1222. <dd>-</dd>
  1223. </dl>
  1224. <dl>
  1225. <dt>Notes</dt>
  1226. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1227. </div>
  1228. </div>
  1229. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1230. </div>
  1231. </div>
  1232. </li>
  1233. <liclass="image_lists_itemdatapage-1">
  1234. <aclass="card_img">
  1235. <imgsrc="../images/cardlist/card/BT10-015.png"alt="BT10-015ShoutmonX5B"></a>
  1236. <divclass="popup">
  1237. <divclass="card_detailcard_detail_red_purplemulticolor">
  1238. <divclass="card_detail_inner">
  1239. <ulclass="cardinfo_head">
  1240. <liclass="cardno">BT10-015</li>
  1241. <li>R</li>
  1242. <liclass="cardtype">Digimon</li>
  1243. <liclass="cardlv">Lv.6</li>
  1244. </ul>
  1245. <divclass="card_name">ShoutmonX5B</div>
  1246. <divclass="cardinfo_top">
  1247. <divclass="card_img">
  1248. <imgsrc="../images/cardlist/card/BT10-015.png"alt="BT10-015ShoutmonX5B"></div>
  1249. <divclass="cardinfo_top_body">
  1250. <dl>
  1251. <dt>Form</dt>
  1252. <dd>Mega</dd>
  1253. </dl>
  1254. <dl>
  1255. <dt>Attribute</dt>
  1256. <dd>Data</dd>
  1257. </dl>
  1258. <dl>
  1259. <dt>Type</dt>
  1260. <dd>Composite/XrosHeart</dd>
  1261. </dl>
  1262. <dl>
  1263. <dt>DP</dt>
  1264. <dd>12000</dl>
  1265. <dl>
  1266. <dt>PlayCost</dt>
  1267. <dd>11</dd>
  1268. </dl>
  1269. <dl>
  1270. <dt>DigivolveCost1</dt>
  1271. <dd>4fromLv.5</dd>
  1272. </dl>
  1273. <dl>
  1274. <dt>DigivolveCost2</dt>
  1275. <dd>Purple</dd>
  1276. </dl>
  1277. </div>
  1278. </div>
  1279. <divclass="cardinfo_bottom">
  1280. <dl>
  1281. <dt>Effect</dt>
  1282. <dd>DigiXros -2: [Shoutmon X5] + [Beelzemon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Blocker> <Armor Purge><br>[On Play][When Digivolving] You may place 1 Digimon card with [Xros Heart] in its traits from your hand or from under one of your Tamers under this Digimon as its bottom digivolution card. Then, if [Beelzemon] is in this Digimon's digivolution cards, you may play 1 level 4 or lower Digimon card with [Xros Heart] in its traits from your trash without paying its cost.</dd>
  1283. </dl>
  1284. <dl>
  1285. <dt>Digivolveeffect</dt>
  1286. <dd>-</dd>
  1287. </dl>
  1288. <dl>
  1289. <dt>Securityeffect</dt>
  1290. <dd>-</dd>
  1291. </dl>
  1292. <dl>
  1293. <dt>Notes</dt>
  1294. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1295. </div>
  1296. </div>
  1297. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1298. </div>
  1299. </div>
  1300. </li>
  1301. <liclass="image_lists_itemdatapage-1">
  1302. <aclass="card_img">
  1303. <imgsrc="../images/cardlist/card/BT10-016.png"alt="BT10-016Jesmon(XAntibody)"></a>
  1304. <divclass="popup">
  1305. <divclass="card_detailcard_detail_red">
  1306. <divclass="card_detail_inner">
  1307. <ulclass="cardinfo_head">
  1308. <liclass="cardno">BT10-016</li>
  1309. <li>SR</li>
  1310. <liclass="cardtype">Digimon</li>
  1311. <liclass="cardlv">Lv.6</li>
  1312. </ul>
  1313. <divclass="card_name">Jesmon(XAntibody)</div>
  1314. <divclass="cardinfo_top">
  1315. <divclass="card_img">
  1316. <imgsrc="../images/cardlist/card/BT10-016.png"alt="BT10-016Jesmon(XAntibody)"></div>
  1317. <divclass="cardinfo_top_body">
  1318. <dl>
  1319. <dt>Form</dt>
  1320. <dd>Mega</dd>
  1321. </dl>
  1322. <dl>
  1323. <dt>Attribute</dt>
  1324. <dd>Data</dd>
  1325. </dl>
  1326. <dl>
  1327. <dt>Type</dt>
  1328. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  1329. </dl>
  1330. <dl>
  1331. <dt>DP</dt>
  1332. <dd>11000</dl>
  1333. <dl>
  1334. <dt>PlayCost</dt>
  1335. <dd>12</dd>
  1336. </dl>
  1337. <dl>
  1338. <dt>DigivolveCost1</dt>
  1339. <dd>3fromLv.5</dd>
  1340. </dl>
  1341. <dl>
  1342. <dt>DigivolveCost2</dt>
  1343. <dd>-</dd>
  1344. </dl>
  1345. </div>
  1346. </div>
  1347. <divclass="cardinfo_bottom">
  1348. <dl>
  1349. <dt>Effect</dt>
  1350. <dd>Digivolve: 0 from [Jesmon]<Piercing><br>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, if [Jesmon] is in this Digimon's digivolution cards or you have a Digimon with [Sistermon] in its name in play, until the end of your opponent's turn, all of your Digimon may also attack unsuspended Digimon and get +2000 DP.</dd>
  1351. </dl>
  1352. <dl>
  1353. <dt>Digivolveeffect</dt>
  1354. <dd>-</dd>
  1355. </dl>
  1356. <dl>
  1357. <dt>Securityeffect</dt>
  1358. <dd>-</dd>
  1359. </dl>
  1360. <dl>
  1361. <dt>Notes</dt>
  1362. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1363. </div>
  1364. </div>
  1365. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1366. </div>
  1367. </div>
  1368. </li>
  1369. <liclass="image_lists_itemdatapage-1">
  1370. <aclass="card_img">
  1371. <imgsrc="../images/cardlist/card/BT10-016_P1.png"alt="BT10-016Jesmon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1372. </a>
  1373. <divclass="popup">
  1374. <divclass="card_detailcard_detail_red">
  1375. <divclass="card_detail_inner">
  1376. <ulclass="cardinfo_head">
  1377. <liclass="cardno">BT10-016</li>
  1378. <li>SR</li>
  1379. <liclass="cardtype">Digimon</li>
  1380. <liclass="cardlv">Lv.6</li>
  1381. <liclass="cardtypecardParallel">AlternativeArt</li>
  1382. </ul>
  1383. <divclass="card_name">Jesmon(XAntibody)</div>
  1384. <divclass="cardinfo_top">
  1385. <divclass="card_img">
  1386. <imgsrc="../images/cardlist/card/BT10-016_P1.png"alt="BT10-016Jesmon(XAntibody)"></div>
  1387. <divclass="cardinfo_top_body">
  1388. <dl>
  1389. <dt>Form</dt>
  1390. <dd>Mega</dd>
  1391. </dl>
  1392. <dl>
  1393. <dt>Attribute</dt>
  1394. <dd>Data</dd>
  1395. </dl>
  1396. <dl>
  1397. <dt>Type</dt>
  1398. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  1399. </dl>
  1400. <dl>
  1401. <dt>DP</dt>
  1402. <dd>11000</dl>
  1403. <dl>
  1404. <dt>PlayCost</dt>
  1405. <dd>12</dd>
  1406. </dl>
  1407. <dl>
  1408. <dt>DigivolveCost1</dt>
  1409. <dd>3fromLv.5</dd>
  1410. </dl>
  1411. <dl>
  1412. <dt>DigivolveCost2</dt>
  1413. <dd>-</dd>
  1414. </dl>
  1415. </div>
  1416. </div>
  1417. <divclass="cardinfo_bottom">
  1418. <dl>
  1419. <dt>Effect</dt>
  1420. <dd>Digivolve: 0 from [Jesmon]<Piercing><br>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, if [Jesmon] is in this Digimon's digivolution cards or you have a Digimon with [Sistermon] in its name in play, until the end of your opponent's turn, all of your Digimon may also attack unsuspended Digimon and get +2000 DP.</dd>
  1421. </dl>
  1422. <dl>
  1423. <dt>Digivolveeffect</dt>
  1424. <dd>-</dd>
  1425. </dl>
  1426. <dl>
  1427. <dt>Securityeffect</dt>
  1428. <dd>-</dd>
  1429. </dl>
  1430. <dl>
  1431. <dt>Notes</dt>
  1432. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1433. </div>
  1434. </div>
  1435. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1436. </div>
  1437. </div>
  1438. </li>
  1439. <liclass="image_lists_itemdatapage-1">
  1440. <aclass="card_img">
  1441. <imgsrc="../images/cardlist/card/BT10-017.png"alt="BT10-017Bulucomon"></a>
  1442. <divclass="popup">
  1443. <divclass="card_detailcard_detail_blue">
  1444. <divclass="card_detail_inner">
  1445. <ulclass="cardinfo_head">
  1446. <liclass="cardno">BT10-017</li>
  1447. <li>C</li>
  1448. <liclass="cardtype">Digimon</li>
  1449. <liclass="cardlv">Lv.3</li>
  1450. </ul>
  1451. <divclass="card_name">Bulucomon</div>
  1452. <divclass="cardinfo_top">
  1453. <divclass="card_img">
  1454. <imgsrc="../images/cardlist/card/BT10-017.png"alt="BT10-017Bulucomon"></div>
  1455. <divclass="cardinfo_top_body">
  1456. <dl>
  1457. <dt>Form</dt>
  1458. <dd>Rookie</dd>
  1459. </dl>
  1460. <dl>
  1461. <dt>Attribute</dt>
  1462. <dd>Data</dd>
  1463. </dl>
  1464. <dl>
  1465. <dt>Type</dt>
  1466. <dd>MiniDragon</dd>
  1467. </dl>
  1468. <dl>
  1469. <dt>DP</dt>
  1470. <dd>5000</dl>
  1471. <dl>
  1472. <dt>PlayCost</dt>
  1473. <dd>2</dd>
  1474. </dl>
  1475. <dl>
  1476. <dt>DigivolveCost1</dt>
  1477. <dd>2fromLv.2</dd>
  1478. </dl>
  1479. <dl>
  1480. <dt>DigivolveCost2</dt>
  1481. <dd>-</dd>
  1482. </dl>
  1483. </div>
  1484. </div>
  1485. <divclass="cardinfo_bottom">
  1486. <dl>
  1487. <dt>Effect</dt>
  1488. <dd>-</dd>
  1489. </dl>
  1490. <dl>
  1491. <dt>Digivolveeffect</dt>
  1492. <dd>-</dd>
  1493. </dl>
  1494. <dl>
  1495. <dt>Securityeffect</dt>
  1496. <dd>-</dd>
  1497. </dl>
  1498. <dl>
  1499. <dt>Notes</dt>
  1500. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1501. </div>
  1502. </div>
  1503. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1504. </div>
  1505. </div>
  1506. </li>
  1507. <liclass="image_lists_itemdatapage-1">
  1508. <aclass="card_img">
  1509. <imgsrc="../images/cardlist/card/BT10-018.png"alt="BT10-018Gaossmon"></a>
  1510. <divclass="popup">
  1511. <divclass="card_detailcard_detail_blue">
  1512. <divclass="card_detail_inner">
  1513. <ulclass="cardinfo_head">
  1514. <liclass="cardno">BT10-018</li>
  1515. <li>C</li>
  1516. <liclass="cardtype">Digimon</li>
  1517. <liclass="cardlv">Lv.3</li>
  1518. </ul>
  1519. <divclass="card_name">Gaossmon</div>
  1520. <divclass="cardinfo_top">
  1521. <divclass="card_img">
  1522. <imgsrc="../images/cardlist/card/BT10-018.png"alt="BT10-018Gaossmon"></div>
  1523. <divclass="cardinfo_top_body">
  1524. <dl>
  1525. <dt>Form</dt>
  1526. <dd>Rookie</dd>
  1527. </dl>
  1528. <dl>
  1529. <dt>Attribute</dt>
  1530. <dd>Virus</dd>
  1531. </dl>
  1532. <dl>
  1533. <dt>Type</dt>
  1534. <dd>Reptile/BlueFlare</dd>
  1535. </dl>
  1536. <dl>
  1537. <dt>DP</dt>
  1538. <dd>1000</dl>
  1539. <dl>
  1540. <dt>PlayCost</dt>
  1541. <dd>3</dd>
  1542. </dl>
  1543. <dl>
  1544. <dt>DigivolveCost1</dt>
  1545. <dd>0fromLv.2</dd>
  1546. </dl>
  1547. <dl>
  1548. <dt>DigivolveCost2</dt>
  1549. <dd>-</dd>
  1550. </dl>
  1551. </div>
  1552. </div>
  1553. <divclass="cardinfo_bottom">
  1554. <dl>
  1555. <dt>Effect</dt>
  1556. <dd>[On Deletion] You may play 1 level 4 Digimon card with [Blue Flare] in its traits from your hand suspended without paying its memory cost.</dd>
  1557. </dl>
  1558. <dl>
  1559. <dt>Digivolveeffect</dt>
  1560. <dd>-</dd>
  1561. </dl>
  1562. <dl>
  1563. <dt>Securityeffect</dt>
  1564. <dd>-</dd>
  1565. </dl>
  1566. <dl>
  1567. <dt>Notes</dt>
  1568. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1569. </div>
  1570. </div>
  1571. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1572. </div>
  1573. </div>
  1574. </li>
  1575. <liclass="image_lists_itemdatapage-1">
  1576. <aclass="card_img">
  1577. <imgsrc="../images/cardlist/card/BT10-019.png"alt="BT10-019Greymon"></a>
  1578. <divclass="popup">
  1579. <divclass="card_detailcard_detail_blue">
  1580. <divclass="card_detail_inner">
  1581. <ulclass="cardinfo_head">
  1582. <liclass="cardno">BT10-019</li>
  1583. <li>R</li>
  1584. <liclass="cardtype">Digimon</li>
  1585. <liclass="cardlv">Lv.4</li>
  1586. </ul>
  1587. <divclass="card_name">Greymon</div>
  1588. <divclass="cardinfo_top">
  1589. <divclass="card_img">
  1590. <imgsrc="../images/cardlist/card/BT10-019.png"alt="BT10-019Greymon"></div>
  1591. <divclass="cardinfo_top_body">
  1592. <dl>
  1593. <dt>Form</dt>
  1594. <dd>Champion</dd>
  1595. </dl>
  1596. <dl>
  1597. <dt>Attribute</dt>
  1598. <dd>Virus</dd>
  1599. </dl>
  1600. <dl>
  1601. <dt>Type</dt>
  1602. <dd>Dinosaur/BlueFlare</dd>
  1603. </dl>
  1604. <dl>
  1605. <dt>DP</dt>
  1606. <dd>4000</dl>
  1607. <dl>
  1608. <dt>PlayCost</dt>
  1609. <dd>4</dd>
  1610. </dl>
  1611. <dl>
  1612. <dt>DigivolveCost1</dt>
  1613. <dd>2fromLv.3</dd>
  1614. </dl>
  1615. <dl>
  1616. <dt>DigivolveCost2</dt>
  1617. <dd>-</dd>
  1618. </dl>
  1619. </div>
  1620. </div>
  1621. <divclass="cardinfo_bottom">
  1622. <dl>
  1623. <dt>Effect</dt>
  1624. <dd>[On Play] Reveal the top 4 cards of your deck. Add 2 cards with [Blue Flare] in their traits among them to your hand. Place the rest at the bottom of your deck in any order. If you have a [Kiriha Aonuma] in play, you may return 1 [MetalGreymon] from your trash to your hand instead.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  1625. </dl>
  1626. <dl>
  1627. <dt>Digivolveeffect</dt>
  1628. <dd>[When Attacking][Once Per Turn] If this Digimon has [Blue Flare] in its traits and your opponent has 2 or more Digimon in play, unsuspend this Digimon.</dd>
  1629. </dl>
  1630. <dl>
  1631. <dt>Securityeffect</dt>
  1632. <dd>-</dd>
  1633. </dl>
  1634. <dl>
  1635. <dt>Notes</dt>
  1636. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1637. </div>
  1638. </div>
  1639. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1640. </div>
  1641. </div>
  1642. </li>
  1643. <liclass="image_lists_itemdatapage-1">
  1644. <aclass="card_img">
  1645. <imgsrc="../images/cardlist/card/BT10-020.png"alt="BT10-020Deckerdramon"></a>
  1646. <divclass="popup">
  1647. <divclass="card_detailcard_detail_blue">
  1648. <divclass="card_detail_inner">
  1649. <ulclass="cardinfo_head">
  1650. <liclass="cardno">BT10-020</li>
  1651. <li>U</li>
  1652. <liclass="cardtype">Digimon</li>
  1653. <liclass="cardlv">Lv.4</li>
  1654. </ul>
  1655. <divclass="card_name">Deckerdramon</div>
  1656. <divclass="cardinfo_top">
  1657. <divclass="card_img">
  1658. <imgsrc="../images/cardlist/card/BT10-020.png"alt="BT10-020Deckerdramon"></div>
  1659. <divclass="cardinfo_top_body">
  1660. <dl>
  1661. <dt>Form</dt>
  1662. <dd>Champion</dd>
  1663. </dl>
  1664. <dl>
  1665. <dt>Attribute</dt>
  1666. <dd>Virus</dd>
  1667. </dl>
  1668. <dl>
  1669. <dt>Type</dt>
  1670. <dd>Cyborg/BlueFlare</dd>
  1671. </dl>
  1672. <dl>
  1673. <dt>DP</dt>
  1674. <dd>5000</dl>
  1675. <dl>
  1676. <dt>PlayCost</dt>
  1677. <dd>5</dd>
  1678. </dl>
  1679. <dl>
  1680. <dt>DigivolveCost1</dt>
  1681. <dd>2fromLv.3</dd>
  1682. </dl>
  1683. <dl>
  1684. <dt>DigivolveCost2</dt>
  1685. <dd>-</dd>
  1686. </dl>
  1687. </div>
  1688. </div>
  1689. <divclass="cardinfo_bottom">
  1690. <dl>
  1691. <dt>Effect</dt>
  1692. <dd>[On Play] <Draw 1>. (Draw 1 card from your deck.) Then, for each Digimon your opponent has in play, <Draw 1>.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  1693. </dl>
  1694. <dl>
  1695. <dt>Digivolveeffect</dt>
  1696. <dd>[All Turns] While your opponent has 2 or more Digimon in play, this Digimon gets +1000 DP.</dd>
  1697. </dl>
  1698. <dl>
  1699. <dt>Securityeffect</dt>
  1700. <dd>-</dd>
  1701. </dl>
  1702. <dl>
  1703. <dt>Notes</dt>
  1704. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1705. </div>
  1706. </div>
  1707. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1708. </div>
  1709. </div>
  1710. </li>
  1711. <liclass="image_lists_itemdatapage-1">
  1712. <aclass="card_img">
  1713. <imgsrc="../images/cardlist/card/BT10-021.png"alt="BT10-021MailBirdramon"></a>
  1714. <divclass="popup">
  1715. <divclass="card_detailcard_detail_blue">
  1716. <divclass="card_detail_inner">
  1717. <ulclass="cardinfo_head">
  1718. <liclass="cardno">BT10-021</li>
  1719. <li>U</li>
  1720. <liclass="cardtype">Digimon</li>
  1721. <liclass="cardlv">Lv.4</li>
  1722. </ul>
  1723. <divclass="card_name">MailBirdramon</div>
  1724. <divclass="cardinfo_top">
  1725. <divclass="card_img">
  1726. <imgsrc="../images/cardlist/card/BT10-021.png"alt="BT10-021MailBirdramon"></div>
  1727. <divclass="cardinfo_top_body">
  1728. <dl>
  1729. <dt>Form</dt>
  1730. <dd>Champion</dd>
  1731. </dl>
  1732. <dl>
  1733. <dt>Attribute</dt>
  1734. <dd>Data</dd>
  1735. </dl>
  1736. <dl>
  1737. <dt>Type</dt>
  1738. <dd>Machine/BlueFlare</dd>
  1739. </dl>
  1740. <dl>
  1741. <dt>DP</dt>
  1742. <dd>5000</dl>
  1743. <dl>
  1744. <dt>PlayCost</dt>
  1745. <dd>5</dd>
  1746. </dl>
  1747. <dl>
  1748. <dt>DigivolveCost1</dt>
  1749. <dd>2fromLv.3</dd>
  1750. </dl>
  1751. <dl>
  1752. <dt>DigivolveCost2</dt>
  1753. <dd>-</dd>
  1754. </dl>
  1755. </div>
  1756. </div>
  1757. <divclass="cardinfo_bottom">
  1758. <dl>
  1759. <dt>Effect</dt>
  1760. <dd>[On Play] If you have a [Kiriha Aonuma] in play, you may return 1 [MetalGreymon] from your trash to your hand. If you don't have a [Kiriha Aonuma] in play, you may play 1 [Kiriha Aonuma] from your hand without paying its memory cost.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  1761. </dl>
  1762. <dl>
  1763. <dt>Digivolveeffect</dt>
  1764. <dd>[When Attacking][Once Per Turn] If this Digimon has [Blue Flare] in its traits and your opponent has 2 or more Digimon in play, 1 of your opponent's Digimon can't attack or block until the end of your opponent's turn.</dd>
  1765. </dl>
  1766. <dl>
  1767. <dt>Securityeffect</dt>
  1768. <dd>-</dd>
  1769. </dl>
  1770. <dl>
  1771. <dt>Notes</dt>
  1772. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1773. </div>
  1774. </div>
  1775. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1776. </div>
  1777. </div>
  1778. </li>
  1779. <liclass="image_lists_itemdatapage-1">
  1780. <aclass="card_img">
  1781. <imgsrc="../images/cardlist/card/BT10-022.png"alt="BT10-022Brachiomon"></a>
  1782. <divclass="popup">
  1783. <divclass="card_detailcard_detail_blue_blackmulticolor">
  1784. <divclass="card_detail_inner">
  1785. <ulclass="cardinfo_head">
  1786. <liclass="cardno">BT10-022</li>
  1787. <li>C</li>
  1788. <liclass="cardtype">Digimon</li>
  1789. <liclass="cardlv">Lv.5</li>
  1790. </ul>
  1791. <divclass="card_name">Brachiomon</div>
  1792. <divclass="cardinfo_top">
  1793. <divclass="card_img">
  1794. <imgsrc="../images/cardlist/card/BT10-022.png"alt="BT10-022Brachiomon"></div>
  1795. <divclass="cardinfo_top_body">
  1796. <dl>
  1797. <dt>Form</dt>
  1798. <dd>Ultimate</dd>
  1799. </dl>
  1800. <dl>
  1801. <dt>Attribute</dt>
  1802. <dd>Data</dd>
  1803. </dl>
  1804. <dl>
  1805. <dt>Type</dt>
  1806. <dd>Plesiosaur</dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>DP</dt>
  1810. <dd>9000</dl>
  1811. <dl>
  1812. <dt>PlayCost</dt>
  1813. <dd>6</dd>
  1814. </dl>
  1815. <dl>
  1816. <dt>DigivolveCost1</dt>
  1817. <dd>3fromLv.4</dd>
  1818. </dl>
  1819. <dl>
  1820. <dt>DigivolveCost2</dt>
  1821. <dd>Black</dd>
  1822. </dl>
  1823. </div>
  1824. </div>
  1825. <divclass="cardinfo_bottom">
  1826. <dl>
  1827. <dt>Effect</dt>
  1828. <dd>-</dd>
  1829. </dl>
  1830. <dl>
  1831. <dt>Digivolveeffect</dt>
  1832. <dd>-</dd>
  1833. </dl>
  1834. <dl>
  1835. <dt>Securityeffect</dt>
  1836. <dd>-</dd>
  1837. </dl>
  1838. <dl>
  1839. <dt>Notes</dt>
  1840. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1841. </div>
  1842. </div>
  1843. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1844. </div>
  1845. </div>
  1846. </li>
  1847. <liclass="image_lists_itemdatapage-1">
  1848. <aclass="card_img">
  1849. <imgsrc="../images/cardlist/card/BT10-023.png"alt="BT10-023Thetismon"></a>
  1850. <divclass="popup">
  1851. <divclass="card_detailcard_detail_blue">
  1852. <divclass="card_detail_inner">
  1853. <ulclass="cardinfo_head">
  1854. <liclass="cardno">BT10-023</li>
  1855. <li>R</li>
  1856. <liclass="cardtype">Digimon</li>
  1857. <liclass="cardlv">Lv.5</li>
  1858. </ul>
  1859. <divclass="card_name">Thetismon</div>
  1860. <divclass="cardinfo_top">
  1861. <divclass="card_img">
  1862. <imgsrc="../images/cardlist/card/BT10-023.png"alt="BT10-023Thetismon"></div>
  1863. <divclass="cardinfo_top_body">
  1864. <dl>
  1865. <dt>Form</dt>
  1866. <dd>Ultimate</dd>
  1867. </dl>
  1868. <dl>
  1869. <dt>Attribute</dt>
  1870. <dd>Data</dd>
  1871. </dl>
  1872. <dl>
  1873. <dt>Type</dt>
  1874. <dd>Aquabeast</dd>
  1875. </dl>
  1876. <dl>
  1877. <dt>DP</dt>
  1878. <dd>7000</dl>
  1879. <dl>
  1880. <dt>PlayCost</dt>
  1881. <dd>7</dd>
  1882. </dl>
  1883. <dl>
  1884. <dt>DigivolveCost1</dt>
  1885. <dd>3fromLv.4</dd>
  1886. </dl>
  1887. <dl>
  1888. <dt>DigivolveCost2</dt>
  1889. <dd>-</dd>
  1890. </dl>
  1891. </div>
  1892. </div>
  1893. <divclass="cardinfo_bottom">
  1894. <dl>
  1895. <dt>Effect</dt>
  1896. <dd>[When Digivolving] If you have 6 or fewer cards in your hand, <Draw 2>. (Draw 2 cards from your deck.)<br>[When Attacking][Once Per Turn] If you have 8 or more cards in your hand, by trashing 2 cards in your hand, unsuspend this Digimon.</dd>
  1897. </dl>
  1898. <dl>
  1899. <dt>Digivolveeffect</dt>
  1900. <dd>-</dd>
  1901. </dl>
  1902. <dl>
  1903. <dt>Securityeffect</dt>
  1904. <dd>-</dd>
  1905. </dl>
  1906. <dl>
  1907. <dt>Notes</dt>
  1908. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1909. </div>
  1910. </div>
  1911. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1912. </div>
  1913. </div>
  1914. </li>
  1915. <liclass="image_lists_itemdatapage-1">
  1916. <aclass="card_img">
  1917. <imgsrc="../images/cardlist/card/BT10-023_P1.png"alt="BT10-023Thetismon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1918. </a>
  1919. <divclass="popup">
  1920. <divclass="card_detailcard_detail_blue">
  1921. <divclass="card_detail_inner">
  1922. <ulclass="cardinfo_head">
  1923. <liclass="cardno">BT10-023</li>
  1924. <li>R</li>
  1925. <liclass="cardtype">Digimon</li>
  1926. <liclass="cardlv">Lv.5</li>
  1927. <liclass="cardtypecardParallel">AlternativeArt</li>
  1928. </ul>
  1929. <divclass="card_name">Thetismon</div>
  1930. <divclass="cardinfo_top">
  1931. <divclass="card_img">
  1932. <imgsrc="../images/cardlist/card/BT10-023_P1.png"alt="BT10-023Thetismon"></div>
  1933. <divclass="cardinfo_top_body">
  1934. <dl>
  1935. <dt>Form</dt>
  1936. <dd>Ultimate</dd>
  1937. </dl>
  1938. <dl>
  1939. <dt>Attribute</dt>
  1940. <dd>Data</dd>
  1941. </dl>
  1942. <dl>
  1943. <dt>Type</dt>
  1944. <dd>Aquabeast</dd>
  1945. </dl>
  1946. <dl>
  1947. <dt>DP</dt>
  1948. <dd>7000</dl>
  1949. <dl>
  1950. <dt>PlayCost</dt>
  1951. <dd>7</dd>
  1952. </dl>
  1953. <dl>
  1954. <dt>DigivolveCost1</dt>
  1955. <dd>3fromLv.4</dd>
  1956. </dl>
  1957. <dl>
  1958. <dt>DigivolveCost2</dt>
  1959. <dd>-</dd>
  1960. </dl>
  1961. </div>
  1962. </div>
  1963. <divclass="cardinfo_bottom">
  1964. <dl>
  1965. <dt>Effect</dt>
  1966. <dd>[When Digivolving] If you have 6 or fewer cards in your hand, <Draw 2>. (Draw 2 cards from your deck.)<br>[When Attacking][Once Per Turn] If you have 8 or more cards in your hand, by trashing 2 cards in your hand, unsuspend this Digimon.</dd>
  1967. </dl>
  1968. <dl>
  1969. <dt>Digivolveeffect</dt>
  1970. <dd>-</dd>
  1971. </dl>
  1972. <dl>
  1973. <dt>Securityeffect</dt>
  1974. <dd>-</dd>
  1975. </dl>
  1976. <dl>
  1977. <dt>Notes</dt>
  1978. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  1979. </div>
  1980. </div>
  1981. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1982. </div>
  1983. </div>
  1984. </li>
  1985. <liclass="image_lists_itemdatapage-1">
  1986. <aclass="card_img">
  1987. <imgsrc="../images/cardlist/card/BT10-024.png"alt="BT10-024MetalGreymon"></a>
  1988. <divclass="popup">
  1989. <divclass="card_detailcard_detail_blue">
  1990. <divclass="card_detail_inner">
  1991. <ulclass="cardinfo_head">
  1992. <liclass="cardno">BT10-024</li>
  1993. <li>SR</li>
  1994. <liclass="cardtype">Digimon</li>
  1995. <liclass="cardlv">Lv.5</li>
  1996. </ul>
  1997. <divclass="card_name">MetalGreymon</div>
  1998. <divclass="cardinfo_top">
  1999. <divclass="card_img">
  2000. <imgsrc="../images/cardlist/card/BT10-024.png"alt="BT10-024MetalGreymon"></div>
  2001. <divclass="cardinfo_top_body">
  2002. <dl>
  2003. <dt>Form</dt>
  2004. <dd>Ultimate</dd>
  2005. </dl>
  2006. <dl>
  2007. <dt>Attribute</dt>
  2008. <dd>Virus</dd>
  2009. </dl>
  2010. <dl>
  2011. <dt>Type</dt>
  2012. <dd>Cyborg/BlueFlare</dd>
  2013. </dl>
  2014. <dl>
  2015. <dt>DP</dt>
  2016. <dd>8000</dl>
  2017. <dl>
  2018. <dt>PlayCost</dt>
  2019. <dd>7</dd>
  2020. </dl>
  2021. <dl>
  2022. <dt>DigivolveCost1</dt>
  2023. <dd>4fromLv.4</dd>
  2024. </dl>
  2025. <dl>
  2026. <dt>DigivolveCost2</dt>
  2027. <dd>-</dd>
  2028. </dl>
  2029. </div>
  2030. </div>
  2031. <divclass="cardinfo_bottom">
  2032. <dl>
  2033. <dt>Effect</dt>
  2034. <dd>DigiXros -2: [Greymon] + [MailBirdramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Material Save 2> (When this Digimon is deleted, you may place 2 cards in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)<br>[On Play] This Digimon gains <Rush> for the turn. Then, if DigiXrosing, 3 of your opponent's Digimon with digivolution cards less than or equal to this Digimon's digivolution cards can't attack or block until the end of your opponent's turn.</dd>
  2035. </dl>
  2036. <dl>
  2037. <dt>Digivolveeffect</dt>
  2038. <dd>-</dd>
  2039. </dl>
  2040. <dl>
  2041. <dt>Securityeffect</dt>
  2042. <dd>-</dd>
  2043. </dl>
  2044. <dl>
  2045. <dt>Notes</dt>
  2046. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2047. </div>
  2048. </div>
  2049. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2050. </div>
  2051. </div>
  2052. </li>
  2053. <liclass="image_lists_itemdatapage-1">
  2054. <aclass="card_img">
  2055. <imgsrc="../images/cardlist/card/BT10-024_P1.png"alt="BT10-024MetalGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2056. </a>
  2057. <divclass="popup">
  2058. <divclass="card_detailcard_detail_blue">
  2059. <divclass="card_detail_inner">
  2060. <ulclass="cardinfo_head">
  2061. <liclass="cardno">BT10-024</li>
  2062. <li>SR</li>
  2063. <liclass="cardtype">Digimon</li>
  2064. <liclass="cardlv">Lv.5</li>
  2065. <liclass="cardtypecardParallel">AlternativeArt</li>
  2066. </ul>
  2067. <divclass="card_name">MetalGreymon</div>
  2068. <divclass="cardinfo_top">
  2069. <divclass="card_img">
  2070. <imgsrc="../images/cardlist/card/BT10-024_P1.png"alt="BT10-024MetalGreymon"></div>
  2071. <divclass="cardinfo_top_body">
  2072. <dl>
  2073. <dt>Form</dt>
  2074. <dd>Ultimate</dd>
  2075. </dl>
  2076. <dl>
  2077. <dt>Attribute</dt>
  2078. <dd>Virus</dd>
  2079. </dl>
  2080. <dl>
  2081. <dt>Type</dt>
  2082. <dd>Cyborg/BlueFlare</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>DP</dt>
  2086. <dd>8000</dl>
  2087. <dl>
  2088. <dt>PlayCost</dt>
  2089. <dd>7</dd>
  2090. </dl>
  2091. <dl>
  2092. <dt>DigivolveCost1</dt>
  2093. <dd>4fromLv.4</dd>
  2094. </dl>
  2095. <dl>
  2096. <dt>DigivolveCost2</dt>
  2097. <dd>-</dd>
  2098. </dl>
  2099. </div>
  2100. </div>
  2101. <divclass="cardinfo_bottom">
  2102. <dl>
  2103. <dt>Effect</dt>
  2104. <dd>DigiXros -2: [Greymon] + [MailBirdramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Material Save 2> (When this Digimon is deleted, you may place 2 cards in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)<br>[On Play] This Digimon gains <Rush> for the turn. Then, if DigiXrosing, 3 of your opponent's Digimon with digivolution cards less than or equal to this Digimon's digivolution cards can't attack or block until the end of your opponent's turn.</dd>
  2105. </dl>
  2106. <dl>
  2107. <dt>Digivolveeffect</dt>
  2108. <dd>-</dd>
  2109. </dl>
  2110. <dl>
  2111. <dt>Securityeffect</dt>
  2112. <dd>-</dd>
  2113. </dl>
  2114. <dl>
  2115. <dt>Notes</dt>
  2116. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2117. </div>
  2118. </div>
  2119. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2120. </div>
  2121. </div>
  2122. </li>
  2123. <liclass="image_lists_itemdatapage-1">
  2124. <aclass="card_img">
  2125. <imgsrc="../images/cardlist/card/BT10-025.png"alt="BT10-025Cyberdramon"></a>
  2126. <divclass="popup">
  2127. <divclass="card_detailcard_detail_blue">
  2128. <divclass="card_detail_inner">
  2129. <ulclass="cardinfo_head">
  2130. <liclass="cardno">BT10-025</li>
  2131. <li>C</li>
  2132. <liclass="cardtype">Digimon</li>
  2133. <liclass="cardlv">Lv.5</li>
  2134. </ul>
  2135. <divclass="card_name">Cyberdramon</div>
  2136. <divclass="cardinfo_top">
  2137. <divclass="card_img">
  2138. <imgsrc="../images/cardlist/card/BT10-025.png"alt="BT10-025Cyberdramon"></div>
  2139. <divclass="cardinfo_top_body">
  2140. <dl>
  2141. <dt>Form</dt>
  2142. <dd>Ultimate</dd>
  2143. </dl>
  2144. <dl>
  2145. <dt>Attribute</dt>
  2146. <dd>Vaccine</dd>
  2147. </dl>
  2148. <dl>
  2149. <dt>Type</dt>
  2150. <dd>AlienHumanoid/BlueFlare</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>DP</dt>
  2154. <dd>7000</dl>
  2155. <dl>
  2156. <dt>PlayCost</dt>
  2157. <dd>8</dd>
  2158. </dl>
  2159. <dl>
  2160. <dt>DigivolveCost1</dt>
  2161. <dd>3fromLv.4</dd>
  2162. </dl>
  2163. <dl>
  2164. <dt>DigivolveCost2</dt>
  2165. <dd>-</dd>
  2166. </dl>
  2167. </div>
  2168. </div>
  2169. <divclass="cardinfo_bottom">
  2170. <dl>
  2171. <dt>Effect</dt>
  2172. <dd>[Hand][Main] If you have a Digimon with [Blue Flare] in its traits in play, by paying 3 memory, place this card under 1 of those Digimon as its bottom digivolution card. Then, unsuspend that Digimon.</dd>
  2173. </dl>
  2174. <dl>
  2175. <dt>Digivolveeffect</dt>
  2176. <dd>[All Turns] While your opponent has 2 or more Digimon in play, this Digimon gets +1000 DP.</dd>
  2177. </dl>
  2178. <dl>
  2179. <dt>Securityeffect</dt>
  2180. <dd>-</dd>
  2181. </dl>
  2182. <dl>
  2183. <dt>Notes</dt>
  2184. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2185. </div>
  2186. </div>
  2187. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2188. </div>
  2189. </div>
  2190. </li>
  2191. <liclass="image_lists_itemdatapage-1">
  2192. <aclass="card_img">
  2193. <imgsrc="../images/cardlist/card/BT10-026.png"alt="BT10-026DeckerGreymon"></a>
  2194. <divclass="popup">
  2195. <divclass="card_detailcard_detail_blue">
  2196. <divclass="card_detail_inner">
  2197. <ulclass="cardinfo_head">
  2198. <liclass="cardno">BT10-026</li>
  2199. <li>R</li>
  2200. <liclass="cardtype">Digimon</li>
  2201. <liclass="cardlv">Lv.5</li>
  2202. </ul>
  2203. <divclass="card_name">DeckerGreymon</div>
  2204. <divclass="cardinfo_top">
  2205. <divclass="card_img">
  2206. <imgsrc="../images/cardlist/card/BT10-026.png"alt="BT10-026DeckerGreymon"></div>
  2207. <divclass="cardinfo_top_body">
  2208. <dl>
  2209. <dt>Form</dt>
  2210. <dd>Ultimate</dd>
  2211. </dl>
  2212. <dl>
  2213. <dt>Attribute</dt>
  2214. <dd>Virus</dd>
  2215. </dl>
  2216. <dl>
  2217. <dt>Type</dt>
  2218. <dd>Enhancement/BlueFlare</dd>
  2219. </dl>
  2220. <dl>
  2221. <dt>DP</dt>
  2222. <dd>10000</dl>
  2223. <dl>
  2224. <dt>PlayCost</dt>
  2225. <dd>9</dd>
  2226. </dl>
  2227. <dl>
  2228. <dt>DigivolveCost1</dt>
  2229. <dd>4fromLv.4</dd>
  2230. </dl>
  2231. <dl>
  2232. <dt>DigivolveCost2</dt>
  2233. <dd>Blue</dd>
  2234. </dl>
  2235. </div>
  2236. </div>
  2237. <divclass="cardinfo_bottom">
  2238. <dl>
  2239. <dt>Effect</dt>
  2240. <dd>DigiXros -2: [MetalGreymon] + [Deckerdramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Armor Purge><br>[On Play][When Digivolving] You may place 1 Digimon card with [Blue Flare] in its traits from your hand or from under one of your Tamers under this Digimon as its bottom digivolution card. Then, if [Deckerdramon] is in this Digimon's digivolution cards, 1 of your opponent's Digimon can't attack or block until the end of your opponent's turn.</dd>
  2241. </dl>
  2242. <dl>
  2243. <dt>Digivolveeffect</dt>
  2244. <dd>-</dd>
  2245. </dl>
  2246. <dl>
  2247. <dt>Securityeffect</dt>
  2248. <dd>-</dd>
  2249. </dl>
  2250. <dl>
  2251. <dt>Notes</dt>
  2252. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2253. </div>
  2254. </div>
  2255. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2256. </div>
  2257. </div>
  2258. </li>
  2259. <liclass="image_lists_itemdatapage-1">
  2260. <aclass="card_img">
  2261. <imgsrc="../images/cardlist/card/BT10-026_P1.png"alt="BT10-026DeckerGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2262. </a>
  2263. <divclass="popup">
  2264. <divclass="card_detailcard_detail_blue">
  2265. <divclass="card_detail_inner">
  2266. <ulclass="cardinfo_head">
  2267. <liclass="cardno">BT10-026</li>
  2268. <li>R</li>
  2269. <liclass="cardtype">Digimon</li>
  2270. <liclass="cardlv">Lv.5</li>
  2271. <liclass="cardtypecardParallel">AlternativeArt</li>
  2272. </ul>
  2273. <divclass="card_name">DeckerGreymon</div>
  2274. <divclass="cardinfo_top">
  2275. <divclass="card_img">
  2276. <imgsrc="../images/cardlist/card/BT10-026_P1.png"alt="BT10-026DeckerGreymon"></div>
  2277. <divclass="cardinfo_top_body">
  2278. <dl>
  2279. <dt>Form</dt>
  2280. <dd>Ultimate</dd>
  2281. </dl>
  2282. <dl>
  2283. <dt>Attribute</dt>
  2284. <dd>Virus</dd>
  2285. </dl>
  2286. <dl>
  2287. <dt>Type</dt>
  2288. <dd>Enhancement/BlueFlare</dd>
  2289. </dl>
  2290. <dl>
  2291. <dt>DP</dt>
  2292. <dd>10000</dl>
  2293. <dl>
  2294. <dt>PlayCost</dt>
  2295. <dd>9</dd>
  2296. </dl>
  2297. <dl>
  2298. <dt>DigivolveCost1</dt>
  2299. <dd>4fromLv.4</dd>
  2300. </dl>
  2301. <dl>
  2302. <dt>DigivolveCost2</dt>
  2303. <dd>Blue</dd>
  2304. </dl>
  2305. </div>
  2306. </div>
  2307. <divclass="cardinfo_bottom">
  2308. <dl>
  2309. <dt>Effect</dt>
  2310. <dd>DigiXros -2: [MetalGreymon] + [Deckerdramon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.<Armor Purge><br>[On Play][When Digivolving] You may place 1 Digimon card with [Blue Flare] in its traits from your hand or from under one of your Tamers under this Digimon as its bottom digivolution card. Then, if [Deckerdramon] is in this Digimon's digivolution cards, 1 of your opponent's Digimon can't attack or block until the end of your opponent's turn.</dd>
  2311. </dl>
  2312. <dl>
  2313. <dt>Digivolveeffect</dt>
  2314. <dd>-</dd>
  2315. </dl>
  2316. <dl>
  2317. <dt>Securityeffect</dt>
  2318. <dd>-</dd>
  2319. </dl>
  2320. <dl>
  2321. <dt>Notes</dt>
  2322. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2323. </div>
  2324. </div>
  2325. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2326. </div>
  2327. </div>
  2328. </li>
  2329. <liclass="image_lists_itemdatapage-1">
  2330. <aclass="card_img">
  2331. <imgsrc="../images/cardlist/card/BT10-027.png"alt="BT10-027Regalecusmon"></a>
  2332. <divclass="popup">
  2333. <divclass="card_detailcard_detail_blue">
  2334. <divclass="card_detail_inner">
  2335. <ulclass="cardinfo_head">
  2336. <liclass="cardno">BT10-027</li>
  2337. <li>C</li>
  2338. <liclass="cardtype">Digimon</li>
  2339. <liclass="cardlv">Lv.6</li>
  2340. </ul>
  2341. <divclass="card_name">Regalecusmon</div>
  2342. <divclass="cardinfo_top">
  2343. <divclass="card_img">
  2344. <imgsrc="../images/cardlist/card/BT10-027.png"alt="BT10-027Regalecusmon"></div>
  2345. <divclass="cardinfo_top_body">
  2346. <dl>
  2347. <dt>Form</dt>
  2348. <dd>Mega</dd>
  2349. </dl>
  2350. <dl>
  2351. <dt>Attribute</dt>
  2352. <dd>Virus</dd>
  2353. </dl>
  2354. <dl>
  2355. <dt>Type</dt>
  2356. <dd>Aquatic</dd>
  2357. </dl>
  2358. <dl>
  2359. <dt>DP</dt>
  2360. <dd>11000</dl>
  2361. <dl>
  2362. <dt>PlayCost</dt>
  2363. <dd>11</dd>
  2364. </dl>
  2365. <dl>
  2366. <dt>DigivolveCost1</dt>
  2367. <dd>3fromLv.5</dd>
  2368. </dl>
  2369. <dl>
  2370. <dt>DigivolveCost2</dt>
  2371. <dd>-</dd>
  2372. </dl>
  2373. </div>
  2374. </div>
  2375. <divclass="cardinfo_bottom">
  2376. <dl>
  2377. <dt>Effect</dt>
  2378. <dd>[When Digivolving] Trash 2 digivolution cards from the bottom of 1 of your opponent's Digimon.<br>[When Attacking] If your opponent has a Digimon with no digivolution cards in play, you may play 1 level 3 Digimon card and 1 level 4 Digimon card from this Digimon's digivolution cards without paying their memory costs.</dd>
  2379. </dl>
  2380. <dl>
  2381. <dt>Digivolveeffect</dt>
  2382. <dd>-</dd>
  2383. </dl>
  2384. <dl>
  2385. <dt>Securityeffect</dt>
  2386. <dd>-</dd>
  2387. </dl>
  2388. <dl>
  2389. <dt>Notes</dt>
  2390. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2391. </div>
  2392. </div>
  2393. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2394. </div>
  2395. </div>
  2396. </li>
  2397. <liclass="image_lists_itemdatapage-1">
  2398. <aclass="card_img">
  2399. <imgsrc="../images/cardlist/card/BT10-028.png"alt="BT10-028Cannondramon"></a>
  2400. <divclass="popup">
  2401. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2402. <divclass="card_detail_inner">
  2403. <ulclass="cardinfo_head">
  2404. <liclass="cardno">BT10-028</li>
  2405. <li>U</li>
  2406. <liclass="cardtype">Digimon</li>
  2407. <liclass="cardlv">Lv.6</li>
  2408. </ul>
  2409. <divclass="card_name">Cannondramon</div>
  2410. <divclass="cardinfo_top">
  2411. <divclass="card_img">
  2412. <imgsrc="../images/cardlist/card/BT10-028.png"alt="BT10-028Cannondramon"></div>
  2413. <divclass="cardinfo_top_body">
  2414. <dl>
  2415. <dt>Form</dt>
  2416. <dd>Mega</dd>
  2417. </dl>
  2418. <dl>
  2419. <dt>Attribute</dt>
  2420. <dd>Data</dd>
  2421. </dl>
  2422. <dl>
  2423. <dt>Type</dt>
  2424. <dd>Cyborg</dd>
  2425. </dl>
  2426. <dl>
  2427. <dt>DP</dt>
  2428. <dd>12000</dl>
  2429. <dl>
  2430. <dt>PlayCost</dt>
  2431. <dd>13</dd>
  2432. </dl>
  2433. <dl>
  2434. <dt>DigivolveCost1</dt>
  2435. <dd>4fromLv.5</dd>
  2436. </dl>
  2437. <dl>
  2438. <dt>DigivolveCost2</dt>
  2439. <dd>Black</dd>
  2440. </dl>
  2441. </div>
  2442. </div>
  2443. <divclass="cardinfo_bottom">
  2444. <dl>
  2445. <dt>Effect</dt>
  2446. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br>[When Digivolving] Unsuspend this Digimon.<br>[Opponent's Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, unsuspend this Digimon.</dd>
  2447. </dl>
  2448. <dl>
  2449. <dt>Digivolveeffect</dt>
  2450. <dd>-</dd>
  2451. </dl>
  2452. <dl>
  2453. <dt>Securityeffect</dt>
  2454. <dd>-</dd>
  2455. </dl>
  2456. <dl>
  2457. <dt>Notes</dt>
  2458. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2459. </div>
  2460. </div>
  2461. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2462. </div>
  2463. </div>
  2464. </li>
  2465. <liclass="image_lists_itemdatapage-1">
  2466. <aclass="card_img">
  2467. <imgsrc="../images/cardlist/card/BT10-029.png"alt="BT10-029Starmons"></a>
  2468. <divclass="popup">
  2469. <divclass="card_detailcard_detail_yellow">
  2470. <divclass="card_detail_inner">
  2471. <ulclass="cardinfo_head">
  2472. <liclass="cardno">BT10-029</li>
  2473. <li>C</li>
  2474. <liclass="cardtype">Digimon</li>
  2475. <liclass="cardlv">Lv.3</li>
  2476. </ul>
  2477. <divclass="card_name">Starmons</div>
  2478. <divclass="cardinfo_top">
  2479. <divclass="card_img">
  2480. <imgsrc="../images/cardlist/card/BT10-029.png"alt="BT10-029Starmons"></div>
  2481. <divclass="cardinfo_top_body">
  2482. <dl>
  2483. <dt>Form</dt>
  2484. <dd>Rookie</dd>
  2485. </dl>
  2486. <dl>
  2487. <dt>Attribute</dt>
  2488. <dd>Data</dd>
  2489. </dl>
  2490. <dl>
  2491. <dt>Type</dt>
  2492. <dd>Major/XrosHeart</dd>
  2493. </dl>
  2494. <dl>
  2495. <dt>DP</dt>
  2496. <dd>1000</dl>
  2497. <dl>
  2498. <dt>PlayCost</dt>
  2499. <dd>3</dd>
  2500. </dl>
  2501. <dl>
  2502. <dt>DigivolveCost1</dt>
  2503. <dd>0fromLv.2</dd>
  2504. </dl>
  2505. <dl>
  2506. <dt>DigivolveCost2</dt>
  2507. <dd>-</dd>
  2508. </dl>
  2509. </div>
  2510. </div>
  2511. <divclass="cardinfo_bottom">
  2512. <dl>
  2513. <dt>Effect</dt>
  2514. <dd>Digivolve: 0 from Lv.2 w/[Xros Heart] in traits[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  2515. </dl>
  2516. <dl>
  2517. <dt>Digivolveeffect</dt>
  2518. <dd>[When Attacking] If this Digimon has [Shoutmon] in its name, <Draw 1>. (Draw 1 card from your deck.)</dd>
  2519. </dl>
  2520. <dl>
  2521. <dt>Securityeffect</dt>
  2522. <dd>-</dd>
  2523. </dl>
  2524. <dl>
  2525. <dt>Notes</dt>
  2526. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2527. </div>
  2528. </div>
  2529. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2530. </div>
  2531. </div>
  2532. </li>
  2533. <liclass="image_lists_itemdatapage-1">
  2534. <aclass="card_img">
  2535. <imgsrc="../images/cardlist/card/BT10-030.png"alt="BT10-030Tinkermon"></a>
  2536. <divclass="popup">
  2537. <divclass="card_detailcard_detail_yellow">
  2538. <divclass="card_detail_inner">
  2539. <ulclass="cardinfo_head">
  2540. <liclass="cardno">BT10-030</li>
  2541. <li>C</li>
  2542. <liclass="cardtype">Digimon</li>
  2543. <liclass="cardlv">Lv.3</li>
  2544. </ul>
  2545. <divclass="card_name">Tinkermon</div>
  2546. <divclass="cardinfo_top">
  2547. <divclass="card_img">
  2548. <imgsrc="../images/cardlist/card/BT10-030.png"alt="BT10-030Tinkermon"></div>
  2549. <divclass="cardinfo_top_body">
  2550. <dl>
  2551. <dt>Form</dt>
  2552. <dd>Rookie</dd>
  2553. </dl>
  2554. <dl>
  2555. <dt>Attribute</dt>
  2556. <dd>Virus</dd>
  2557. </dl>
  2558. <dl>
  2559. <dt>Type</dt>
  2560. <dd>Fairy</dd>
  2561. </dl>
  2562. <dl>
  2563. <dt>DP</dt>
  2564. <dd>2000</dl>
  2565. <dl>
  2566. <dt>PlayCost</dt>
  2567. <dd>3</dd>
  2568. </dl>
  2569. <dl>
  2570. <dt>DigivolveCost1</dt>
  2571. <dd>0fromLv.2</dd>
  2572. </dl>
  2573. <dl>
  2574. <dt>DigivolveCost2</dt>
  2575. <dd>-</dd>
  2576. </dl>
  2577. </div>
  2578. </div>
  2579. <divclass="cardinfo_bottom">
  2580. <dl>
  2581. <dt>Effect</dt>
  2582. <dd>[On Play] 1 of your opponent's level 5 or lower Digimon gains <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)</dd>
  2583. </dl>
  2584. <dl>
  2585. <dt>Digivolveeffect</dt>
  2586. <dd>-</dd>
  2587. </dl>
  2588. <dl>
  2589. <dt>Securityeffect</dt>
  2590. <dd>-</dd>
  2591. </dl>
  2592. <dl>
  2593. <dt>Notes</dt>
  2594. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2595. </div>
  2596. </div>
  2597. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2598. </div>
  2599. </div>
  2600. </li>
  2601. <liclass="image_lists_itemdatapage-1">
  2602. <aclass="card_img">
  2603. <imgsrc="../images/cardlist/card/BT10-031.png"alt="BT10-031Pulsemon"></a>
  2604. <divclass="popup">
  2605. <divclass="card_detailcard_detail_yellow">
  2606. <divclass="card_detail_inner">
  2607. <ulclass="cardinfo_head">
  2608. <liclass="cardno">BT10-031</li>
  2609. <li>C</li>
  2610. <liclass="cardtype">Digimon</li>
  2611. <liclass="cardlv">Lv.3</li>
  2612. </ul>
  2613. <divclass="card_name">Pulsemon</div>
  2614. <divclass="cardinfo_top">
  2615. <divclass="card_img">
  2616. <imgsrc="../images/cardlist/card/BT10-031.png"alt="BT10-031Pulsemon"></div>
  2617. <divclass="cardinfo_top_body">
  2618. <dl>
  2619. <dt>Form</dt>
  2620. <dd>Rookie</dd>
  2621. </dl>
  2622. <dl>
  2623. <dt>Attribute</dt>
  2624. <dd>Vaccine</dd>
  2625. </dl>
  2626. <dl>
  2627. <dt>Type</dt>
  2628. <dd>Beastkin</dd>
  2629. </dl>
  2630. <dl>
  2631. <dt>DP</dt>
  2632. <dd>2000</dl>
  2633. <dl>
  2634. <dt>PlayCost</dt>
  2635. <dd>3</dd>
  2636. </dl>
  2637. <dl>
  2638. <dt>DigivolveCost1</dt>
  2639. <dd>0fromLv.2</dd>
  2640. </dl>
  2641. <dl>
  2642. <dt>DigivolveCost2</dt>
  2643. <dd>-</dd>
  2644. </dl>
  2645. </div>
  2646. </div>
  2647. <divclass="cardinfo_bottom">
  2648. <dl>
  2649. <dt>Effect</dt>
  2650. <dd>Digivolve: 0 from [Bibimon][Opponent's Turn] While you have 3 or fewer security cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  2651. </dl>
  2652. <dl>
  2653. <dt>Digivolveeffect</dt>
  2654. <dd>-</dd>
  2655. </dl>
  2656. <dl>
  2657. <dt>Securityeffect</dt>
  2658. <dd>-</dd>
  2659. </dl>
  2660. <dl>
  2661. <dt>Notes</dt>
  2662. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2663. </div>
  2664. </div>
  2665. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2666. </div>
  2667. </div>
  2668. </li>
  2669. <liclass="image_lists_itemdatapage-1">
  2670. <aclass="card_img">
  2671. <imgsrc="../images/cardlist/card/BT10-032.png"alt="BT10-032Renamon"></a>
  2672. <divclass="popup">
  2673. <divclass="card_detailcard_detail_yellow">
  2674. <divclass="card_detail_inner">
  2675. <ulclass="cardinfo_head">
  2676. <liclass="cardno">BT10-032</li>
  2677. <li>U</li>
  2678. <liclass="cardtype">Digimon</li>
  2679. <liclass="cardlv">Lv.3</li>
  2680. </ul>
  2681. <divclass="card_name">Renamon</div>
  2682. <divclass="cardinfo_top">
  2683. <divclass="card_img">
  2684. <imgsrc="../images/cardlist/card/BT10-032.png"alt="BT10-032Renamon"></div>
  2685. <divclass="cardinfo_top_body">
  2686. <dl>
  2687. <dt>Form</dt>
  2688. <dd>Rookie</dd>
  2689. </dl>
  2690. <dl>
  2691. <dt>Attribute</dt>
  2692. <dd>Data</dd>
  2693. </dl>
  2694. <dl>
  2695. <dt>Type</dt>
  2696. <dd>Beastkin</dd>
  2697. </dl>
  2698. <dl>
  2699. <dt>DP</dt>
  2700. <dd>1000</dl>
  2701. <dl>
  2702. <dt>PlayCost</dt>
  2703. <dd>3</dd>
  2704. </dl>
  2705. <dl>
  2706. <dt>DigivolveCost1</dt>
  2707. <dd>0fromLv.2</dd>
  2708. </dl>
  2709. <dl>
  2710. <dt>DigivolveCost2</dt>
  2711. <dd>-</dd>
  2712. </dl>
  2713. </div>
  2714. </div>
  2715. <divclass="cardinfo_bottom">
  2716. <dl>
  2717. <dt>Effect</dt>
  2718. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Option card with [Plug-In] in its name and 1 yellow Tamer card among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  2719. </dl>
  2720. <dl>
  2721. <dt>Digivolveeffect</dt>
  2722. <dd>[Your Turn][Once Per Turn] When you use an Option card with a cost of 2 or more, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  2723. </dl>
  2724. <dl>
  2725. <dt>Securityeffect</dt>
  2726. <dd>-</dd>
  2727. </dl>
  2728. <dl>
  2729. <dt>Notes</dt>
  2730. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2731. </div>
  2732. </div>
  2733. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2734. </div>
  2735. </div>
  2736. </li>
  2737. <liclass="image_lists_itemdatapage-2">
  2738. <aclass="card_img">
  2739. <imgsrc="../images/cardlist/card/BT10-033.png"alt="BT10-033Shortmon"></a>
  2740. <divclass="popup">
  2741. <divclass="card_detailcard_detail_yellow">
  2742. <divclass="card_detail_inner">
  2743. <ulclass="cardinfo_head">
  2744. <liclass="cardno">BT10-033</li>
  2745. <li>C</li>
  2746. <liclass="cardtype">Digimon</li>
  2747. <liclass="cardlv">Lv.4</li>
  2748. </ul>
  2749. <divclass="card_name">Shortmon</div>
  2750. <divclass="cardinfo_top">
  2751. <divclass="card_img">
  2752. <imgsrc="../images/cardlist/card/BT10-033.png"alt="BT10-033Shortmon"></div>
  2753. <divclass="cardinfo_top_body">
  2754. <dl>
  2755. <dt>Form</dt>
  2756. <dd>Champion</dd>
  2757. </dl>
  2758. <dl>
  2759. <dt>Attribute</dt>
  2760. <dd>Data</dd>
  2761. </dl>
  2762. <dl>
  2763. <dt>Type</dt>
  2764. <dd>Food</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>DP</dt>
  2768. <dd>3000</dl>
  2769. <dl>
  2770. <dt>PlayCost</dt>
  2771. <dd>3</dd>
  2772. </dl>
  2773. <dl>
  2774. <dt>DigivolveCost1</dt>
  2775. <dd>1fromLv.3</dd>
  2776. </dl>
  2777. <dl>
  2778. <dt>DigivolveCost2</dt>
  2779. <dd>-</dd>
  2780. </dl>
  2781. </div>
  2782. </div>
  2783. <divclass="cardinfo_bottom">
  2784. <dl>
  2785. <dt>Effect</dt>
  2786. <dd>-</dd>
  2787. </dl>
  2788. <dl>
  2789. <dt>Digivolveeffect</dt>
  2790. <dd>-</dd>
  2791. </dl>
  2792. <dl>
  2793. <dt>Securityeffect</dt>
  2794. <dd>-</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Notes</dt>
  2798. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2799. </div>
  2800. </div>
  2801. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2802. </div>
  2803. </div>
  2804. </li>
  2805. <liclass="image_lists_itemdatapage-2">
  2806. <aclass="card_img">
  2807. <imgsrc="../images/cardlist/card/BT10-034.png"alt="BT10-034Dorulumon"></a>
  2808. <divclass="popup">
  2809. <divclass="card_detailcard_detail_yellow">
  2810. <divclass="card_detail_inner">
  2811. <ulclass="cardinfo_head">
  2812. <liclass="cardno">BT10-034</li>
  2813. <li>C</li>
  2814. <liclass="cardtype">Digimon</li>
  2815. <liclass="cardlv">Lv.4</li>
  2816. </ul>
  2817. <divclass="card_name">Dorulumon</div>
  2818. <divclass="cardinfo_top">
  2819. <divclass="card_img">
  2820. <imgsrc="../images/cardlist/card/BT10-034.png"alt="BT10-034Dorulumon"></div>
  2821. <divclass="cardinfo_top_body">
  2822. <dl>
  2823. <dt>Form</dt>
  2824. <dd>Champion</dd>
  2825. </dl>
  2826. <dl>
  2827. <dt>Attribute</dt>
  2828. <dd>Virus</dd>
  2829. </dl>
  2830. <dl>
  2831. <dt>Type</dt>
  2832. <dd>Beast/XrosHeart</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>DP</dt>
  2836. <dd>4000</dl>
  2837. <dl>
  2838. <dt>PlayCost</dt>
  2839. <dd>4</dd>
  2840. </dl>
  2841. <dl>
  2842. <dt>DigivolveCost1</dt>
  2843. <dd>2fromLv.3</dd>
  2844. </dl>
  2845. <dl>
  2846. <dt>DigivolveCost2</dt>
  2847. <dd>-</dd>
  2848. </dl>
  2849. </div>
  2850. </div>
  2851. <divclass="cardinfo_bottom">
  2852. <dl>
  2853. <dt>Effect</dt>
  2854. <dd>Digivolve: 2 from Lv.3 w/[Xros Heart] in traits[On Play] If you have another Digimon or Tamer with [Xros Heart] in its traits in play, 1 of your opponent's Digimon gets -3000 DP until the end of your opponent's turn.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  2855. </dl>
  2856. <dl>
  2857. <dt>Digivolveeffect</dt>
  2858. <dd>[Your Turn] While this Digimon has [Shoutmon] in its name, all of your opponent's Security Digimon get -2000 DP.</dd>
  2859. </dl>
  2860. <dl>
  2861. <dt>Securityeffect</dt>
  2862. <dd>-</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Notes</dt>
  2866. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2867. </div>
  2868. </div>
  2869. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2870. </div>
  2871. </div>
  2872. </li>
  2873. <liclass="image_lists_itemdatapage-2">
  2874. <aclass="card_img">
  2875. <imgsrc="../images/cardlist/card/BT10-035.png"alt="BT10-035Darcmon"></a>
  2876. <divclass="popup">
  2877. <divclass="card_detailcard_detail_yellow">
  2878. <divclass="card_detail_inner">
  2879. <ulclass="cardinfo_head">
  2880. <liclass="cardno">BT10-035</li>
  2881. <li>C</li>
  2882. <liclass="cardtype">Digimon</li>
  2883. <liclass="cardlv">Lv.4</li>
  2884. </ul>
  2885. <divclass="card_name">Darcmon</div>
  2886. <divclass="cardinfo_top">
  2887. <divclass="card_img">
  2888. <imgsrc="../images/cardlist/card/BT10-035.png"alt="BT10-035Darcmon"></div>
  2889. <divclass="cardinfo_top_body">
  2890. <dl>
  2891. <dt>Form</dt>
  2892. <dd>Champion</dd>
  2893. </dl>
  2894. <dl>
  2895. <dt>Attribute</dt>
  2896. <dd>Vaccine</dd>
  2897. </dl>
  2898. <dl>
  2899. <dt>Type</dt>
  2900. <dd>Angel</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>DP</dt>
  2904. <dd>4000</dl>
  2905. <dl>
  2906. <dt>PlayCost</dt>
  2907. <dd>5</dd>
  2908. </dl>
  2909. <dl>
  2910. <dt>DigivolveCost1</dt>
  2911. <dd>2fromLv.3</dd>
  2912. </dl>
  2913. <dl>
  2914. <dt>DigivolveCost2</dt>
  2915. <dd>-</dd>
  2916. </dl>
  2917. </div>
  2918. </div>
  2919. <divclass="cardinfo_bottom">
  2920. <dl>
  2921. <dt>Effect</dt>
  2922. <dd>-</dd>
  2923. </dl>
  2924. <dl>
  2925. <dt>Digivolveeffect</dt>
  2926. <dd>[When Attacking][Once Per Turn] 1 of your opponent's Digimon gains <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)</dd>
  2927. </dl>
  2928. <dl>
  2929. <dt>Securityeffect</dt>
  2930. <dd>-</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Notes</dt>
  2934. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  2935. </div>
  2936. </div>
  2937. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2938. </div>
  2939. </div>
  2940. </li>
  2941. <liclass="image_lists_itemdatapage-2">
  2942. <aclass="card_img">
  2943. <imgsrc="../images/cardlist/card/BT10-036.png"alt="BT10-036Kyubimon"></a>
  2944. <divclass="popup">
  2945. <divclass="card_detailcard_detail_yellow">
  2946. <divclass="card_detail_inner">
  2947. <ulclass="cardinfo_head">
  2948. <liclass="cardno">BT10-036</li>
  2949. <li>C</li>
  2950. <liclass="cardtype">Digimon</li>
  2951. <liclass="cardlv">Lv.4</li>
  2952. </ul>
  2953. <divclass="card_name">Kyubimon</div>
  2954. <divclass="cardinfo_top">
  2955. <divclass="card_img">
  2956. <imgsrc="../images/cardlist/card/BT10-036.png"alt="BT10-036Kyubimon"></div>
  2957. <divclass="cardinfo_top_body">
  2958. <dl>
  2959. <dt>Form</dt>
  2960. <dd>Champion</dd>
  2961. </dl>
  2962. <dl>
  2963. <dt>Attribute</dt>
  2964. <dd>Data</dd>
  2965. </dl>
  2966. <dl>
  2967. <dt>Type</dt>
  2968. <dd>MysteriousBeast</dd>
  2969. </dl>
  2970. <dl>
  2971. <dt>DP</dt>
  2972. <dd>5000</dl>
  2973. <dl>
  2974. <dt>PlayCost</dt>
  2975. <dd>6</dd>
  2976. </dl>
  2977. <dl>
  2978. <dt>DigivolveCost1</dt>
  2979. <dd>2fromLv.3</dd>
  2980. </dl>
  2981. <dl>
  2982. <dt>DigivolveCost2</dt>
  2983. <dd>-</dd>
  2984. </dl>
  2985. </div>
  2986. </div>
  2987. <divclass="cardinfo_bottom">
  2988. <dl>
  2989. <dt>Effect</dt>
  2990. <dd>[When Digivolving] You may activate 1 of the effects below.<br>・Return 1 Option card with [Plug-In] in its name from your trash to your hand.<br>・By trashing 1 Option card with [Plug-In] in its name in your hand, <Draw 2>. (Draw 2 cards from your deck.)</dd>
  2991. </dl>
  2992. <dl>
  2993. <dt>Digivolveeffect</dt>
  2994. <dd>-</dd>
  2995. </dl>
  2996. <dl>
  2997. <dt>Securityeffect</dt>
  2998. <dd>-</dd>
  2999. </dl>
  3000. <dl>
  3001. <dt>Notes</dt>
  3002. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3003. </div>
  3004. </div>
  3005. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3006. </div>
  3007. </div>
  3008. </li>
  3009. <liclass="image_lists_itemdatapage-2">
  3010. <aclass="card_img">
  3011. <imgsrc="../images/cardlist/card/BT10-037.png"alt="BT10-037Weddinmon"></a>
  3012. <divclass="popup">
  3013. <divclass="card_detailcard_detail_yellow">
  3014. <divclass="card_detail_inner">
  3015. <ulclass="cardinfo_head">
  3016. <liclass="cardno">BT10-037</li>
  3017. <li>C</li>
  3018. <liclass="cardtype">Digimon</li>
  3019. <liclass="cardlv">Lv.5</li>
  3020. </ul>
  3021. <divclass="card_name">Weddinmon</div>
  3022. <divclass="cardinfo_top">
  3023. <divclass="card_img">
  3024. <imgsrc="../images/cardlist/card/BT10-037.png"alt="BT10-037Weddinmon"></div>
  3025. <divclass="cardinfo_top_body">
  3026. <dl>
  3027. <dt>Form</dt>
  3028. <dd>Ultimate</dd>
  3029. </dl>
  3030. <dl>
  3031. <dt>Attribute</dt>
  3032. <dd>Vaccine</dd>
  3033. </dl>
  3034. <dl>
  3035. <dt>Type</dt>
  3036. <dd>Fairy</dd>
  3037. </dl>
  3038. <dl>
  3039. <dt>DP</dt>
  3040. <dd>8000</dl>
  3041. <dl>
  3042. <dt>PlayCost</dt>
  3043. <dd>7</dd>
  3044. </dl>
  3045. <dl>
  3046. <dt>DigivolveCost1</dt>
  3047. <dd>2fromLv.4</dd>
  3048. </dl>
  3049. <dl>
  3050. <dt>DigivolveCost2</dt>
  3051. <dd>-</dd>
  3052. </dl>
  3053. </div>
  3054. </div>
  3055. <divclass="cardinfo_bottom">
  3056. <dl>
  3057. <dt>Effect</dt>
  3058. <dd>-</dd>
  3059. </dl>
  3060. <dl>
  3061. <dt>Digivolveeffect</dt>
  3062. <dd>-</dd>
  3063. </dl>
  3064. <dl>
  3065. <dt>Securityeffect</dt>
  3066. <dd>-</dd>
  3067. </dl>
  3068. <dl>
  3069. <dt>Notes</dt>
  3070. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3071. </div>
  3072. </div>
  3073. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3074. </div>
  3075. </div>
  3076. </li>
  3077. <liclass="image_lists_itemdatapage-2">
  3078. <aclass="card_img">
  3079. <imgsrc="../images/cardlist/card/BT10-038.png"alt="BT10-038Sanzomon"></a>
  3080. <divclass="popup">
  3081. <divclass="card_detailcard_detail_yellow">
  3082. <divclass="card_detail_inner">
  3083. <ulclass="cardinfo_head">
  3084. <liclass="cardno">BT10-038</li>
  3085. <li>R</li>
  3086. <liclass="cardtype">Digimon</li>
  3087. <liclass="cardlv">Lv.5</li>
  3088. </ul>
  3089. <divclass="card_name">Sanzomon</div>
  3090. <divclass="cardinfo_top">
  3091. <divclass="card_img">
  3092. <imgsrc="../images/cardlist/card/BT10-038.png"alt="BT10-038Sanzomon"></div>
  3093. <divclass="cardinfo_top_body">
  3094. <dl>
  3095. <dt>Form</dt>
  3096. <dd>Ultimate</dd>
  3097. </dl>
  3098. <dl>
  3099. <dt>Attribute</dt>
  3100. <dd>Vaccine</dd>
  3101. </dl>
  3102. <dl>
  3103. <dt>Type</dt>
  3104. <dd>Monk</dd>
  3105. </dl>
  3106. <dl>
  3107. <dt>DP</dt>
  3108. <dd>7000</dl>
  3109. <dl>
  3110. <dt>PlayCost</dt>
  3111. <dd>7</dd>
  3112. </dl>
  3113. <dl>
  3114. <dt>DigivolveCost1</dt>
  3115. <dd>3fromLv.4</dd>
  3116. </dl>
  3117. <dl>
  3118. <dt>DigivolveCost2</dt>
  3119. <dd>-</dd>
  3120. </dl>
  3121. </div>
  3122. </div>
  3123. <divclass="cardinfo_bottom">
  3124. <dl>
  3125. <dt>Effect</dt>
  3126. <dd>[When Digivolving] 1 of your opponent's Digimon gains <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)</dd>
  3127. </dl>
  3128. <dl>
  3129. <dt>Digivolveeffect</dt>
  3130. <dd>[When Attacking][Once Per Turn] 1 of your opponent's Digimon gains <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)</dd>
  3131. </dl>
  3132. <dl>
  3133. <dt>Securityeffect</dt>
  3134. <dd>-</dd>
  3135. </dl>
  3136. <dl>
  3137. <dt>Notes</dt>
  3138. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3139. </div>
  3140. </div>
  3141. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3142. </div>
  3143. </div>
  3144. </li>
  3145. <liclass="image_lists_itemdatapage-2">
  3146. <aclass="card_img">
  3147. <imgsrc="../images/cardlist/card/BT10-039.png"alt="BT10-039Taomon"></a>
  3148. <divclass="popup">
  3149. <divclass="card_detailcard_detail_yellow">
  3150. <divclass="card_detail_inner">
  3151. <ulclass="cardinfo_head">
  3152. <liclass="cardno">BT10-039</li>
  3153. <li>U</li>
  3154. <liclass="cardtype">Digimon</li>
  3155. <liclass="cardlv">Lv.5</li>
  3156. </ul>
  3157. <divclass="card_name">Taomon</div>
  3158. <divclass="cardinfo_top">
  3159. <divclass="card_img">
  3160. <imgsrc="../images/cardlist/card/BT10-039.png"alt="BT10-039Taomon"></div>
  3161. <divclass="cardinfo_top_body">
  3162. <dl>
  3163. <dt>Form</dt>
  3164. <dd>Ultimate</dd>
  3165. </dl>
  3166. <dl>
  3167. <dt>Attribute</dt>
  3168. <dd>Data</dd>
  3169. </dl>
  3170. <dl>
  3171. <dt>Type</dt>
  3172. <dd>Wizard</dd>
  3173. </dl>
  3174. <dl>
  3175. <dt>DP</dt>
  3176. <dd>8000</dl>
  3177. <dl>
  3178. <dt>PlayCost</dt>
  3179. <dd>8</dd>
  3180. </dl>
  3181. <dl>
  3182. <dt>DigivolveCost1</dt>
  3183. <dd>3fromLv.4</dd>
  3184. </dl>
  3185. <dl>
  3186. <dt>DigivolveCost2</dt>
  3187. <dd>-</dd>
  3188. </dl>
  3189. </div>
  3190. </div>
  3191. <divclass="cardinfo_bottom">
  3192. <dl>
  3193. <dt>Effect</dt>
  3194. <dd>[When Digivolving] You may use 1 Option card with [Plug-In] in its name from your hand without meeting its color requirements or paying its memory cost.</dd>
  3195. </dl>
  3196. <dl>
  3197. <dt>Digivolveeffect</dt>
  3198. <dd>-</dd>
  3199. </dl>
  3200. <dl>
  3201. <dt>Securityeffect</dt>
  3202. <dd>-</dd>
  3203. </dl>
  3204. <dl>
  3205. <dt>Notes</dt>
  3206. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3207. </div>
  3208. </div>
  3209. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3210. </div>
  3211. </div>
  3212. </li>
  3213. <liclass="image_lists_itemdatapage-2">
  3214. <aclass="card_img">
  3215. <imgsrc="../images/cardlist/card/BT10-040.png"alt="BT10-040Achillesmon"></a>
  3216. <divclass="popup">
  3217. <divclass="card_detailcard_detail_yellow">
  3218. <divclass="card_detail_inner">
  3219. <ulclass="cardinfo_head">
  3220. <liclass="cardno">BT10-040</li>
  3221. <li>R</li>
  3222. <liclass="cardtype">Digimon</li>
  3223. <liclass="cardlv">Lv.6</li>
  3224. </ul>
  3225. <divclass="card_name">Achillesmon</div>
  3226. <divclass="cardinfo_top">
  3227. <divclass="card_img">
  3228. <imgsrc="../images/cardlist/card/BT10-040.png"alt="BT10-040Achillesmon"></div>
  3229. <divclass="cardinfo_top_body">
  3230. <dl>
  3231. <dt>Form</dt>
  3232. <dd>Mega</dd>
  3233. </dl>
  3234. <dl>
  3235. <dt>Attribute</dt>
  3236. <dd>Virus</dd>
  3237. </dl>
  3238. <dl>
  3239. <dt>Type</dt>
  3240. <dd>Beastkin</dd>
  3241. </dl>
  3242. <dl>
  3243. <dt>DP</dt>
  3244. <dd>11000</dl>
  3245. <dl>
  3246. <dt>PlayCost</dt>
  3247. <dd>12</dd>
  3248. </dl>
  3249. <dl>
  3250. <dt>DigivolveCost1</dt>
  3251. <dd>3fromLv.5</dd>
  3252. </dl>
  3253. <dl>
  3254. <dt>DigivolveCost2</dt>
  3255. <dd>Green</dd>
  3256. </dl>
  3257. </div>
  3258. </div>
  3259. <divclass="cardinfo_bottom">
  3260. <dl>
  3261. <dt>Effect</dt>
  3262. <dd>[When Digivolving] If you have 2 or fewer security cards, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)<br>[When Attacking][Once Per Turn] If you have 3 or more security cards, 1 of your opponent's Digimon gets -5000 DP for the turn. If you have 3 or fewer security cards, gain 2 memory.</dd>
  3263. </dl>
  3264. <dl>
  3265. <dt>Digivolveeffect</dt>
  3266. <dd>-</dd>
  3267. </dl>
  3268. <dl>
  3269. <dt>Securityeffect</dt>
  3270. <dd>-</dd>
  3271. </dl>
  3272. <dl>
  3273. <dt>Notes</dt>
  3274. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3275. </div>
  3276. </div>
  3277. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3278. </div>
  3279. </div>
  3280. </li>
  3281. <liclass="image_lists_itemdatapage-2">
  3282. <aclass="card_img">
  3283. <imgsrc="../images/cardlist/card/BT10-041.png"alt="BT10-041Sakuyamon:MaidMode"></a>
  3284. <divclass="popup">
  3285. <divclass="card_detailcard_detail_yellow">
  3286. <divclass="card_detail_inner">
  3287. <ulclass="cardinfo_head">
  3288. <liclass="cardno">BT10-041</li>
  3289. <li>SR</li>
  3290. <liclass="cardtype">Digimon</li>
  3291. <liclass="cardlv">Lv.6</li>
  3292. </ul>
  3293. <divclass="card_name">Sakuyamon:MaidMode</div>
  3294. <divclass="cardinfo_top">
  3295. <divclass="card_img">
  3296. <imgsrc="../images/cardlist/card/BT10-041.png"alt="BT10-041Sakuyamon:MaidMode"></div>
  3297. <divclass="cardinfo_top_body">
  3298. <dl>
  3299. <dt>Form</dt>
  3300. <dd>Mega</dd>
  3301. </dl>
  3302. <dl>
  3303. <dt>Attribute</dt>
  3304. <dd>Data</dd>
  3305. </dl>
  3306. <dl>
  3307. <dt>Type</dt>
  3308. <dd>Shaman</dd>
  3309. </dl>
  3310. <dl>
  3311. <dt>DP</dt>
  3312. <dd>11000</dl>
  3313. <dl>
  3314. <dt>PlayCost</dt>
  3315. <dd>12</dd>
  3316. </dl>
  3317. <dl>
  3318. <dt>DigivolveCost1</dt>
  3319. <dd>3fromLv.5</dd>
  3320. </dl>
  3321. <dl>
  3322. <dt>DigivolveCost2</dt>
  3323. <dd>Yellow</dd>
  3324. </dl>
  3325. </div>
  3326. </div>
  3327. <divclass="cardinfo_bottom">
  3328. <dl>
  3329. <dt>Effect</dt>
  3330. <dd>[When Digivolving] You may use 1 Option card with [Plug-In] in its name or that's yellow and has a memory cost of 5 or less from your hand without meeting its color requirements or paying its memory cost. Place the Option card used with this effect on top of your security stack face down instead of placing it in your trash.<br>[When Attacking] This Digimon may digivolve into a [Sakuyamon] in your hand for a cost of 1, ignoring its digivolution requirements.</dd>
  3331. </dl>
  3332. <dl>
  3333. <dt>Digivolveeffect</dt>
  3334. <dd>-</dd>
  3335. </dl>
  3336. <dl>
  3337. <dt>Securityeffect</dt>
  3338. <dd>-</dd>
  3339. </dl>
  3340. <dl>
  3341. <dt>Notes</dt>
  3342. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3343. </div>
  3344. </div>
  3345. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3346. </div>
  3347. </div>
  3348. </li>
  3349. <liclass="image_lists_itemdatapage-2">
  3350. <aclass="card_img">
  3351. <imgsrc="../images/cardlist/card/BT10-041_P1.png"alt="BT10-041Sakuyamon:MaidMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3352. </a>
  3353. <divclass="popup">
  3354. <divclass="card_detailcard_detail_yellow">
  3355. <divclass="card_detail_inner">
  3356. <ulclass="cardinfo_head">
  3357. <liclass="cardno">BT10-041</li>
  3358. <li>SR</li>
  3359. <liclass="cardtype">Digimon</li>
  3360. <liclass="cardlv">Lv.6</li>
  3361. <liclass="cardtypecardParallel">AlternativeArt</li>
  3362. </ul>
  3363. <divclass="card_name">Sakuyamon:MaidMode</div>
  3364. <divclass="cardinfo_top">
  3365. <divclass="card_img">
  3366. <imgsrc="../images/cardlist/card/BT10-041_P1.png"alt="BT10-041Sakuyamon:MaidMode"></div>
  3367. <divclass="cardinfo_top_body">
  3368. <dl>
  3369. <dt>Form</dt>
  3370. <dd>Mega</dd>
  3371. </dl>
  3372. <dl>
  3373. <dt>Attribute</dt>
  3374. <dd>Data</dd>
  3375. </dl>
  3376. <dl>
  3377. <dt>Type</dt>
  3378. <dd>Shaman</dd>
  3379. </dl>
  3380. <dl>
  3381. <dt>DP</dt>
  3382. <dd>11000</dl>
  3383. <dl>
  3384. <dt>PlayCost</dt>
  3385. <dd>12</dd>
  3386. </dl>
  3387. <dl>
  3388. <dt>DigivolveCost1</dt>
  3389. <dd>3fromLv.5</dd>
  3390. </dl>
  3391. <dl>
  3392. <dt>DigivolveCost2</dt>
  3393. <dd>Yellow</dd>
  3394. </dl>
  3395. </div>
  3396. </div>
  3397. <divclass="cardinfo_bottom">
  3398. <dl>
  3399. <dt>Effect</dt>
  3400. <dd>[When Digivolving] You may use 1 Option card with [Plug-In] in its name or that's yellow and has a memory cost of 5 or less from your hand without meeting its color requirements or paying its memory cost. Place the Option card used with this effect on top of your security stack face down instead of placing it in your trash.<br>[When Attacking] This Digimon may digivolve into a [Sakuyamon] in your hand for a cost of 1, ignoring its digivolution requirements.</dd>
  3401. </dl>
  3402. <dl>
  3403. <dt>Digivolveeffect</dt>
  3404. <dd>-</dd>
  3405. </dl>
  3406. <dl>
  3407. <dt>Securityeffect</dt>
  3408. <dd>-</dd>
  3409. </dl>
  3410. <dl>
  3411. <dt>Notes</dt>
  3412. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3413. </div>
  3414. </div>
  3415. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3416. </div>
  3417. </div>
  3418. </li>
  3419. <liclass="image_lists_itemdatapage-2">
  3420. <aclass="card_img">
  3421. <imgsrc="../images/cardlist/card/BT10-042.png"alt="BT10-042Venusmon"></a>
  3422. <divclass="popup">
  3423. <divclass="card_detailcard_detail_yellow">
  3424. <divclass="card_detail_inner">
  3425. <ulclass="cardinfo_head">
  3426. <liclass="cardno">BT10-042</li>
  3427. <li>SR</li>
  3428. <liclass="cardtype">Digimon</li>
  3429. <liclass="cardlv">Lv.6</li>
  3430. </ul>
  3431. <divclass="card_name">Venusmon</div>
  3432. <divclass="cardinfo_top">
  3433. <divclass="card_img">
  3434. <imgsrc="../images/cardlist/card/BT10-042.png"alt="BT10-042Venusmon"></div>
  3435. <divclass="cardinfo_top_body">
  3436. <dl>
  3437. <dt>Form</dt>
  3438. <dd>Mega</dd>
  3439. </dl>
  3440. <dl>
  3441. <dt>Attribute</dt>
  3442. <dd>Vaccine</dd>
  3443. </dl>
  3444. <dl>
  3445. <dt>Type</dt>
  3446. <dd>Shaman/OlymposXII</dd>
  3447. </dl>
  3448. <dl>
  3449. <dt>DP</dt>
  3450. <dd>12000</dl>
  3451. <dl>
  3452. <dt>PlayCost</dt>
  3453. <dd>13</dd>
  3454. </dl>
  3455. <dl>
  3456. <dt>DigivolveCost1</dt>
  3457. <dd>4fromLv.5</dd>
  3458. </dl>
  3459. <dl>
  3460. <dt>DigivolveCost2</dt>
  3461. <dd>-</dd>
  3462. </dl>
  3463. </div>
  3464. </div>
  3465. <divclass="cardinfo_bottom">
  3466. <dl>
  3467. <dt>Effect</dt>
  3468. <dd>[When Digivolving] All of your opponent's Digimon gain <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)<br>[Opponent's Turn] All of your opponent's Digimon with <Security Attack> can't attack this Digimon and can't activate [When Attacking] and [When Digivolving] effects.</dd>
  3469. </dl>
  3470. <dl>
  3471. <dt>Digivolveeffect</dt>
  3472. <dd>-</dd>
  3473. </dl>
  3474. <dl>
  3475. <dt>Securityeffect</dt>
  3476. <dd>-</dd>
  3477. </dl>
  3478. <dl>
  3479. <dt>Notes</dt>
  3480. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3481. </div>
  3482. </div>
  3483. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3484. </div>
  3485. </div>
  3486. </li>
  3487. <liclass="image_lists_itemdatapage-2">
  3488. <aclass="card_img">
  3489. <imgsrc="../images/cardlist/card/BT10-042_P1.png"alt="BT10-042Venusmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3490. </a>
  3491. <divclass="popup">
  3492. <divclass="card_detailcard_detail_yellow">
  3493. <divclass="card_detail_inner">
  3494. <ulclass="cardinfo_head">
  3495. <liclass="cardno">BT10-042</li>
  3496. <li>SR</li>
  3497. <liclass="cardtype">Digimon</li>
  3498. <liclass="cardlv">Lv.6</li>
  3499. <liclass="cardtypecardParallel">AlternativeArt</li>
  3500. </ul>
  3501. <divclass="card_name">Venusmon</div>
  3502. <divclass="cardinfo_top">
  3503. <divclass="card_img">
  3504. <imgsrc="../images/cardlist/card/BT10-042_P1.png"alt="BT10-042Venusmon"></div>
  3505. <divclass="cardinfo_top_body">
  3506. <dl>
  3507. <dt>Form</dt>
  3508. <dd>Mega</dd>
  3509. </dl>
  3510. <dl>
  3511. <dt>Attribute</dt>
  3512. <dd>Vaccine</dd>
  3513. </dl>
  3514. <dl>
  3515. <dt>Type</dt>
  3516. <dd>Shaman/OlymposXII</dd>
  3517. </dl>
  3518. <dl>
  3519. <dt>DP</dt>
  3520. <dd>12000</dl>
  3521. <dl>
  3522. <dt>PlayCost</dt>
  3523. <dd>13</dd>
  3524. </dl>
  3525. <dl>
  3526. <dt>DigivolveCost1</dt>
  3527. <dd>4fromLv.5</dd>
  3528. </dl>
  3529. <dl>
  3530. <dt>DigivolveCost2</dt>
  3531. <dd>-</dd>
  3532. </dl>
  3533. </div>
  3534. </div>
  3535. <divclass="cardinfo_bottom">
  3536. <dl>
  3537. <dt>Effect</dt>
  3538. <dd>[When Digivolving] All of your opponent's Digimon gain <Security Attack -1> until the end of your opponent's turn. (This Digimon checks 1 fewer security cards.)<br>[Opponent's Turn] All of your opponent's Digimon with <Security Attack> can't attack this Digimon and can't activate [When Attacking] and [When Digivolving] effects.</dd>
  3539. </dl>
  3540. <dl>
  3541. <dt>Digivolveeffect</dt>
  3542. <dd>-</dd>
  3543. </dl>
  3544. <dl>
  3545. <dt>Securityeffect</dt>
  3546. <dd>-</dd>
  3547. </dl>
  3548. <dl>
  3549. <dt>Notes</dt>
  3550. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3551. </div>
  3552. </div>
  3553. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3554. </div>
  3555. </div>
  3556. </li>
  3557. <liclass="image_lists_itemdatapage-2">
  3558. <aclass="card_img">
  3559. <imgsrc="../images/cardlist/card/BT10-043.png"alt="BT10-043Mushroomon"></a>
  3560. <divclass="popup">
  3561. <divclass="card_detailcard_detail_green">
  3562. <divclass="card_detail_inner">
  3563. <ulclass="cardinfo_head">
  3564. <liclass="cardno">BT10-043</li>
  3565. <li>C</li>
  3566. <liclass="cardtype">Digimon</li>
  3567. <liclass="cardlv">Lv.3</li>
  3568. </ul>
  3569. <divclass="card_name">Mushroomon</div>
  3570. <divclass="cardinfo_top">
  3571. <divclass="card_img">
  3572. <imgsrc="../images/cardlist/card/BT10-043.png"alt="BT10-043Mushroomon"></div>
  3573. <divclass="cardinfo_top_body">
  3574. <dl>
  3575. <dt>Form</dt>
  3576. <dd>Rookie</dd>
  3577. </dl>
  3578. <dl>
  3579. <dt>Attribute</dt>
  3580. <dd>Virus</dd>
  3581. </dl>
  3582. <dl>
  3583. <dt>Type</dt>
  3584. <dd>Vegetation</dd>
  3585. </dl>
  3586. <dl>
  3587. <dt>DP</dt>
  3588. <dd>3000</dl>
  3589. <dl>
  3590. <dt>PlayCost</dt>
  3591. <dd>2</dd>
  3592. </dl>
  3593. <dl>
  3594. <dt>DigivolveCost1</dt>
  3595. <dd>0fromLv.2</dd>
  3596. </dl>
  3597. <dl>
  3598. <dt>DigivolveCost2</dt>
  3599. <dd>-</dd>
  3600. </dl>
  3601. </div>
  3602. </div>
  3603. <divclass="cardinfo_bottom">
  3604. <dl>
  3605. <dt>Effect</dt>
  3606. <dd>-</dd>
  3607. </dl>
  3608. <dl>
  3609. <dt>Digivolveeffect</dt>
  3610. <dd>-</dd>
  3611. </dl>
  3612. <dl>
  3613. <dt>Securityeffect</dt>
  3614. <dd>-</dd>
  3615. </dl>
  3616. <dl>
  3617. <dt>Notes</dt>
  3618. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3619. </div>
  3620. </div>
  3621. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3622. </div>
  3623. </div>
  3624. </li>
  3625. <liclass="image_lists_itemdatapage-2">
  3626. <aclass="card_img">
  3627. <imgsrc="../images/cardlist/card/BT10-044.png"alt="BT10-044Angoramon"></a>
  3628. <divclass="popup">
  3629. <divclass="card_detailcard_detail_green">
  3630. <divclass="card_detail_inner">
  3631. <ulclass="cardinfo_head">
  3632. <liclass="cardno">BT10-044</li>
  3633. <li>R</li>
  3634. <liclass="cardtype">Digimon</li>
  3635. <liclass="cardlv">Lv.3</li>
  3636. </ul>
  3637. <divclass="card_name">Angoramon</div>
  3638. <divclass="cardinfo_top">
  3639. <divclass="card_img">
  3640. <imgsrc="../images/cardlist/card/BT10-044.png"alt="BT10-044Angoramon"></div>
  3641. <divclass="cardinfo_top_body">
  3642. <dl>
  3643. <dt>Form</dt>
  3644. <dd>Rookie</dd>
  3645. </dl>
  3646. <dl>
  3647. <dt>Attribute</dt>
  3648. <dd>Vaccine</dd>
  3649. </dl>
  3650. <dl>
  3651. <dt>Type</dt>
  3652. <dd>Beast</dd>
  3653. </dl>
  3654. <dl>
  3655. <dt>DP</dt>
  3656. <dd>2000</dl>
  3657. <dl>
  3658. <dt>PlayCost</dt>
  3659. <dd>3</dd>
  3660. </dl>
  3661. <dl>
  3662. <dt>DigivolveCost1</dt>
  3663. <dd>0fromLv.2</dd>
  3664. </dl>
  3665. <dl>
  3666. <dt>DigivolveCost2</dt>
  3667. <dd>-</dd>
  3668. </dl>
  3669. </div>
  3670. </div>
  3671. <divclass="cardinfo_bottom">
  3672. <dl>
  3673. <dt>Effect</dt>
  3674. <dd>[Your Turn][Once Per Turn] When you play a green Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3675. </dl>
  3676. <dl>
  3677. <dt>Digivolveeffect</dt>
  3678. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon becomes suspended, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3679. </dl>
  3680. <dl>
  3681. <dt>Securityeffect</dt>
  3682. <dd>-</dd>
  3683. </dl>
  3684. <dl>
  3685. <dt>Notes</dt>
  3686. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3687. </div>
  3688. </div>
  3689. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3690. </div>
  3691. </div>
  3692. </li>
  3693. <liclass="image_lists_itemdatapage-2">
  3694. <aclass="card_img">
  3695. <imgsrc="../images/cardlist/card/BT10-044_P1.png"alt="BT10-044Angoramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  3696. </a>
  3697. <divclass="popup">
  3698. <divclass="card_detailcard_detail_green">
  3699. <divclass="card_detail_inner">
  3700. <ulclass="cardinfo_head">
  3701. <liclass="cardno">BT10-044</li>
  3702. <li>R</li>
  3703. <liclass="cardtype">Digimon</li>
  3704. <liclass="cardlv">Lv.3</li>
  3705. <liclass="cardtypecardParallel">AlternativeArt</li>
  3706. </ul>
  3707. <divclass="card_name">Angoramon</div>
  3708. <divclass="cardinfo_top">
  3709. <divclass="card_img">
  3710. <imgsrc="../images/cardlist/card/BT10-044_P1.png"alt="BT10-044Angoramon"></div>
  3711. <divclass="cardinfo_top_body">
  3712. <dl>
  3713. <dt>Form</dt>
  3714. <dd>Rookie</dd>
  3715. </dl>
  3716. <dl>
  3717. <dt>Attribute</dt>
  3718. <dd>Vaccine</dd>
  3719. </dl>
  3720. <dl>
  3721. <dt>Type</dt>
  3722. <dd>Beast</dd>
  3723. </dl>
  3724. <dl>
  3725. <dt>DP</dt>
  3726. <dd>2000</dl>
  3727. <dl>
  3728. <dt>PlayCost</dt>
  3729. <dd>3</dd>
  3730. </dl>
  3731. <dl>
  3732. <dt>DigivolveCost1</dt>
  3733. <dd>0fromLv.2</dd>
  3734. </dl>
  3735. <dl>
  3736. <dt>DigivolveCost2</dt>
  3737. <dd>-</dd>
  3738. </dl>
  3739. </div>
  3740. </div>
  3741. <divclass="cardinfo_bottom">
  3742. <dl>
  3743. <dt>Effect</dt>
  3744. <dd>[Your Turn][Once Per Turn] When you play a green Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3745. </dl>
  3746. <dl>
  3747. <dt>Digivolveeffect</dt>
  3748. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon becomes suspended, <Draw 1>. (Draw 1 card from your deck.)</dd>
  3749. </dl>
  3750. <dl>
  3751. <dt>Securityeffect</dt>
  3752. <dd>-</dd>
  3753. </dl>
  3754. <dl>
  3755. <dt>Notes</dt>
  3756. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3757. </div>
  3758. </div>
  3759. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3760. </div>
  3761. </div>
  3762. </li>
  3763. <liclass="image_lists_itemdatapage-2">
  3764. <aclass="card_img">
  3765. <imgsrc="../images/cardlist/card/BT10-045.png"alt="BT10-045Kokuwamon"></a>
  3766. <divclass="popup">
  3767. <divclass="card_detailcard_detail_green">
  3768. <divclass="card_detail_inner">
  3769. <ulclass="cardinfo_head">
  3770. <liclass="cardno">BT10-045</li>
  3771. <li>C</li>
  3772. <liclass="cardtype">Digimon</li>
  3773. <liclass="cardlv">Lv.3</li>
  3774. </ul>
  3775. <divclass="card_name">Kokuwamon</div>
  3776. <divclass="cardinfo_top">
  3777. <divclass="card_img">
  3778. <imgsrc="../images/cardlist/card/BT10-045.png"alt="BT10-045Kokuwamon"></div>
  3779. <divclass="cardinfo_top_body">
  3780. <dl>
  3781. <dt>Form</dt>
  3782. <dd>Rookie</dd>
  3783. </dl>
  3784. <dl>
  3785. <dt>Attribute</dt>
  3786. <dd>Data</dd>
  3787. </dl>
  3788. <dl>
  3789. <dt>Type</dt>
  3790. <dd>Machine</dd>
  3791. </dl>
  3792. <dl>
  3793. <dt>DP</dt>
  3794. <dd>2000</dl>
  3795. <dl>
  3796. <dt>PlayCost</dt>
  3797. <dd>3</dd>
  3798. </dl>
  3799. <dl>
  3800. <dt>DigivolveCost1</dt>
  3801. <dd>0fromLv.2</dd>
  3802. </dl>
  3803. <dl>
  3804. <dt>DigivolveCost2</dt>
  3805. <dd>-</dd>
  3806. </dl>
  3807. </div>
  3808. </div>
  3809. <divclass="cardinfo_bottom">
  3810. <dl>
  3811. <dt>Effect</dt>
  3812. <dd>-</dd>
  3813. </dl>
  3814. <dl>
  3815. <dt>Digivolveeffect</dt>
  3816. <dd>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, gain 1 memory.</dd>
  3817. </dl>
  3818. <dl>
  3819. <dt>Securityeffect</dt>
  3820. <dd>-</dd>
  3821. </dl>
  3822. <dl>
  3823. <dt>Notes</dt>
  3824. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3825. </div>
  3826. </div>
  3827. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3828. </div>
  3829. </div>
  3830. </li>
  3831. <liclass="image_lists_itemdatapage-2">
  3832. <aclass="card_img">
  3833. <imgsrc="../images/cardlist/card/BT10-046.png"alt="BT10-046Palmon"></a>
  3834. <divclass="popup">
  3835. <divclass="card_detailcard_detail_green">
  3836. <divclass="card_detail_inner">
  3837. <ulclass="cardinfo_head">
  3838. <liclass="cardno">BT10-046</li>
  3839. <li>U</li>
  3840. <liclass="cardtype">Digimon</li>
  3841. <liclass="cardlv">Lv.3</li>
  3842. </ul>
  3843. <divclass="card_name">Palmon</div>
  3844. <divclass="cardinfo_top">
  3845. <divclass="card_img">
  3846. <imgsrc="../images/cardlist/card/BT10-046.png"alt="BT10-046Palmon"></div>
  3847. <divclass="cardinfo_top_body">
  3848. <dl>
  3849. <dt>Form</dt>
  3850. <dd>Rookie</dd>
  3851. </dl>
  3852. <dl>
  3853. <dt>Attribute</dt>
  3854. <dd>Data</dd>
  3855. </dl>
  3856. <dl>
  3857. <dt>Type</dt>
  3858. <dd>Vegetation</dd>
  3859. </dl>
  3860. <dl>
  3861. <dt>DP</dt>
  3862. <dd>2000</dl>
  3863. <dl>
  3864. <dt>PlayCost</dt>
  3865. <dd>3</dd>
  3866. </dl>
  3867. <dl>
  3868. <dt>DigivolveCost1</dt>
  3869. <dd>0fromLv.2</dd>
  3870. </dl>
  3871. <dl>
  3872. <dt>DigivolveCost2</dt>
  3873. <dd>-</dd>
  3874. </dl>
  3875. </div>
  3876. </div>
  3877. <divclass="cardinfo_bottom">
  3878. <dl>
  3879. <dt>Effect</dt>
  3880. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Vegetation] in its traits and 1 card with [Fairy] in its traits among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  3881. </dl>
  3882. <dl>
  3883. <dt>Digivolveeffect</dt>
  3884. <dd>-</dd>
  3885. </dl>
  3886. <dl>
  3887. <dt>Securityeffect</dt>
  3888. <dd>-</dd>
  3889. </dl>
  3890. <dl>
  3891. <dt>Notes</dt>
  3892. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3893. </div>
  3894. </div>
  3895. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3896. </div>
  3897. </div>
  3898. </li>
  3899. <liclass="image_lists_itemdatapage-2">
  3900. <aclass="card_img">
  3901. <imgsrc="../images/cardlist/card/BT10-047.png"alt="BT10-047RedVegiemon"></a>
  3902. <divclass="popup">
  3903. <divclass="card_detailcard_detail_green">
  3904. <divclass="card_detail_inner">
  3905. <ulclass="cardinfo_head">
  3906. <liclass="cardno">BT10-047</li>
  3907. <li>C</li>
  3908. <liclass="cardtype">Digimon</li>
  3909. <liclass="cardlv">Lv.4</li>
  3910. </ul>
  3911. <divclass="card_name">RedVegiemon</div>
  3912. <divclass="cardinfo_top">
  3913. <divclass="card_img">
  3914. <imgsrc="../images/cardlist/card/BT10-047.png"alt="BT10-047RedVegiemon"></div>
  3915. <divclass="cardinfo_top_body">
  3916. <dl>
  3917. <dt>Form</dt>
  3918. <dd>Champion</dd>
  3919. </dl>
  3920. <dl>
  3921. <dt>Attribute</dt>
  3922. <dd>Virus</dd>
  3923. </dl>
  3924. <dl>
  3925. <dt>Type</dt>
  3926. <dd>Vegetation</dd>
  3927. </dl>
  3928. <dl>
  3929. <dt>DP</dt>
  3930. <dd>3000</dl>
  3931. <dl>
  3932. <dt>PlayCost</dt>
  3933. <dd>3</dd>
  3934. </dl>
  3935. <dl>
  3936. <dt>DigivolveCost1</dt>
  3937. <dd>1fromLv.3</dd>
  3938. </dl>
  3939. <dl>
  3940. <dt>DigivolveCost2</dt>
  3941. <dd>-</dd>
  3942. </dl>
  3943. </div>
  3944. </div>
  3945. <divclass="cardinfo_bottom">
  3946. <dl>
  3947. <dt>Effect</dt>
  3948. <dd>-</dd>
  3949. </dl>
  3950. <dl>
  3951. <dt>Digivolveeffect</dt>
  3952. <dd>-</dd>
  3953. </dl>
  3954. <dl>
  3955. <dt>Securityeffect</dt>
  3956. <dd>-</dd>
  3957. </dl>
  3958. <dl>
  3959. <dt>Notes</dt>
  3960. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  3961. </div>
  3962. </div>
  3963. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3964. </div>
  3965. </div>
  3966. </li>
  3967. <liclass="image_lists_itemdatapage-2">
  3968. <aclass="card_img">
  3969. <imgsrc="../images/cardlist/card/BT10-048.png"alt="BT10-048Sunflowmon"></a>
  3970. <divclass="popup">
  3971. <divclass="card_detailcard_detail_green">
  3972. <divclass="card_detail_inner">
  3973. <ulclass="cardinfo_head">
  3974. <liclass="cardno">BT10-048</li>
  3975. <li>C</li>
  3976. <liclass="cardtype">Digimon</li>
  3977. <liclass="cardlv">Lv.4</li>
  3978. </ul>
  3979. <divclass="card_name">Sunflowmon</div>
  3980. <divclass="cardinfo_top">
  3981. <divclass="card_img">
  3982. <imgsrc="../images/cardlist/card/BT10-048.png"alt="BT10-048Sunflowmon"></div>
  3983. <divclass="cardinfo_top_body">
  3984. <dl>
  3985. <dt>Form</dt>
  3986. <dd>Champion</dd>
  3987. </dl>
  3988. <dl>
  3989. <dt>Attribute</dt>
  3990. <dd>Data</dd>
  3991. </dl>
  3992. <dl>
  3993. <dt>Type</dt>
  3994. <dd>Vegetation</dd>
  3995. </dl>
  3996. <dl>
  3997. <dt>DP</dt>
  3998. <dd>3000</dl>
  3999. <dl>
  4000. <dt>PlayCost</dt>
  4001. <dd>4</dd>
  4002. </dl>
  4003. <dl>
  4004. <dt>DigivolveCost1</dt>
  4005. <dd>2fromLv.3</dd>
  4006. </dl>
  4007. <dl>
  4008. <dt>DigivolveCost2</dt>
  4009. <dd>-</dd>
  4010. </dl>
  4011. </div>
  4012. </div>
  4013. <divclass="cardinfo_bottom">
  4014. <dl>
  4015. <dt>Effect</dt>
  4016. <dd>[When Digivolving] By suspending 1 of your green Digimon, you may play 1 Digimon card with [Vegetation] or [Fairy] in its traits and 3000 DP or less from your hand without paying its memory cost.</dd>
  4017. </dl>
  4018. <dl>
  4019. <dt>Digivolveeffect</dt>
  4020. <dd>[Your Turn][Once Per Turn] When an effect suspends one of your Digimon, <Draw 1>. (Draw 1 card from your deck.)</dd>
  4021. </dl>
  4022. <dl>
  4023. <dt>Securityeffect</dt>
  4024. <dd>-</dd>
  4025. </dl>
  4026. <dl>
  4027. <dt>Notes</dt>
  4028. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4029. </div>
  4030. </div>
  4031. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4032. </div>
  4033. </div>
  4034. </li>
  4035. <liclass="image_lists_itemdatapage-2">
  4036. <aclass="card_img">
  4037. <imgsrc="../images/cardlist/card/BT10-049.png"alt="BT10-049Ballistamon"></a>
  4038. <divclass="popup">
  4039. <divclass="card_detailcard_detail_green">
  4040. <divclass="card_detail_inner">
  4041. <ulclass="cardinfo_head">
  4042. <liclass="cardno">BT10-049</li>
  4043. <li>C</li>
  4044. <liclass="cardtype">Digimon</li>
  4045. <liclass="cardlv">Lv.4</li>
  4046. </ul>
  4047. <divclass="card_name">Ballistamon</div>
  4048. <divclass="cardinfo_top">
  4049. <divclass="card_img">
  4050. <imgsrc="../images/cardlist/card/BT10-049.png"alt="BT10-049Ballistamon"></div>
  4051. <divclass="cardinfo_top_body">
  4052. <dl>
  4053. <dt>Form</dt>
  4054. <dd>Champion</dd>
  4055. </dl>
  4056. <dl>
  4057. <dt>Attribute</dt>
  4058. <dd>Vaccine</dd>
  4059. </dl>
  4060. <dl>
  4061. <dt>Type</dt>
  4062. <dd>Machine/XrosHeart</dd>
  4063. </dl>
  4064. <dl>
  4065. <dt>DP</dt>
  4066. <dd>4000</dl>
  4067. <dl>
  4068. <dt>PlayCost</dt>
  4069. <dd>4</dd>
  4070. </dl>
  4071. <dl>
  4072. <dt>DigivolveCost1</dt>
  4073. <dd>2fromLv.3</dd>
  4074. </dl>
  4075. <dl>
  4076. <dt>DigivolveCost2</dt>
  4077. <dd>-</dd>
  4078. </dl>
  4079. </div>
  4080. </div>
  4081. <divclass="cardinfo_bottom">
  4082. <dl>
  4083. <dt>Effect</dt>
  4084. <dd>Digivolve: 2 from Lv.3 w/[Xros Heart] in traits[Opponent's Turn] While you have another Digimon or Tamer with [Xros Heart] in its traits in play, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  4085. </dl>
  4086. <dl>
  4087. <dt>Digivolveeffect</dt>
  4088. <dd>[Your Turn] While this Digimon has [Shoutmon] in its name, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon, it performs any security checks it normally would.)</dd>
  4089. </dl>
  4090. <dl>
  4091. <dt>Securityeffect</dt>
  4092. <dd>-</dd>
  4093. </dl>
  4094. <dl>
  4095. <dt>Notes</dt>
  4096. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4097. </div>
  4098. </div>
  4099. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4100. </div>
  4101. </div>
  4102. </li>
  4103. <liclass="image_lists_itemdatapage-2">
  4104. <aclass="card_img">
  4105. <imgsrc="../images/cardlist/card/BT10-050.png"alt="BT10-050WezenGammamon"></a>
  4106. <divclass="popup">
  4107. <divclass="card_detailcard_detail_green">
  4108. <divclass="card_detail_inner">
  4109. <ulclass="cardinfo_head">
  4110. <liclass="cardno">BT10-050</li>
  4111. <li>C</li>
  4112. <liclass="cardtype">Digimon</li>
  4113. <liclass="cardlv">Lv.4</li>
  4114. </ul>
  4115. <divclass="card_name">WezenGammamon</div>
  4116. <divclass="cardinfo_top">
  4117. <divclass="card_img">
  4118. <imgsrc="../images/cardlist/card/BT10-050.png"alt="BT10-050WezenGammamon"></div>
  4119. <divclass="cardinfo_top_body">
  4120. <dl>
  4121. <dt>Form</dt>
  4122. <dd>Champion</dd>
  4123. </dl>
  4124. <dl>
  4125. <dt>Attribute</dt>
  4126. <dd>Data</dd>
  4127. </dl>
  4128. <dl>
  4129. <dt>Type</dt>
  4130. <dd>Ceratopsian</dd>
  4131. </dl>
  4132. <dl>
  4133. <dt>DP</dt>
  4134. <dd>6000</dl>
  4135. <dl>
  4136. <dt>PlayCost</dt>
  4137. <dd>5</dd>
  4138. </dl>
  4139. <dl>
  4140. <dt>DigivolveCost1</dt>
  4141. <dd>2fromLv.3</dd>
  4142. </dl>
  4143. <dl>
  4144. <dt>DigivolveCost2</dt>
  4145. <dd>-</dd>
  4146. </dl>
  4147. </div>
  4148. </div>
  4149. <divclass="cardinfo_bottom">
  4150. <dl>
  4151. <dt>Effect</dt>
  4152. <dd>Digivolve: 2 from [Gammamon]<Piercing> (When this Digimon attacks and deletes an opponent's Digimon, it performs any security checks it normally would.)</dd>
  4153. </dl>
  4154. <dl>
  4155. <dt>Digivolveeffect</dt>
  4156. <dd>-</dd>
  4157. </dl>
  4158. <dl>
  4159. <dt>Securityeffect</dt>
  4160. <dd>-</dd>
  4161. </dl>
  4162. <dl>
  4163. <dt>Notes</dt>
  4164. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4165. </div>
  4166. </div>
  4167. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4168. </div>
  4169. </div>
  4170. </li>
  4171. <liclass="image_lists_itemdatapage-2">
  4172. <aclass="card_img">
  4173. <imgsrc="../images/cardlist/card/BT10-051.png"alt="BT10-051SymbareAngoramon"></a>
  4174. <divclass="popup">
  4175. <divclass="card_detailcard_detail_green">
  4176. <divclass="card_detail_inner">
  4177. <ulclass="cardinfo_head">
  4178. <liclass="cardno">BT10-051</li>
  4179. <li>C</li>
  4180. <liclass="cardtype">Digimon</li>
  4181. <liclass="cardlv">Lv.4</li>
  4182. </ul>
  4183. <divclass="card_name">SymbareAngoramon</div>
  4184. <divclass="cardinfo_top">
  4185. <divclass="card_img">
  4186. <imgsrc="../images/cardlist/card/BT10-051.png"alt="BT10-051SymbareAngoramon"></div>
  4187. <divclass="cardinfo_top_body">
  4188. <dl>
  4189. <dt>Form</dt>
  4190. <dd>Champion</dd>
  4191. </dl>
  4192. <dl>
  4193. <dt>Attribute</dt>
  4194. <dd>Vaccine</dd>
  4195. </dl>
  4196. <dl>
  4197. <dt>Type</dt>
  4198. <dd>Beastkin</dd>
  4199. </dl>
  4200. <dl>
  4201. <dt>DP</dt>
  4202. <dd>6000</dl>
  4203. <dl>
  4204. <dt>PlayCost</dt>
  4205. <dd>5</dd>
  4206. </dl>
  4207. <dl>
  4208. <dt>DigivolveCost1</dt>
  4209. <dd>2fromLv.3</dd>
  4210. </dl>
  4211. <dl>
  4212. <dt>DigivolveCost2</dt>
  4213. <dd>-</dd>
  4214. </dl>
  4215. </div>
  4216. </div>
  4217. <divclass="cardinfo_bottom">
  4218. <dl>
  4219. <dt>Effect</dt>
  4220. <dd>-</dd>
  4221. </dl>
  4222. <dl>
  4223. <dt>Digivolveeffect</dt>
  4224. <dd>[Your Turn][Once Per Turn] When an opponent's Digimon becomes suspended, gain 1 memory.</dd>
  4225. </dl>
  4226. <dl>
  4227. <dt>Securityeffect</dt>
  4228. <dd>-</dd>
  4229. </dl>
  4230. <dl>
  4231. <dt>Notes</dt>
  4232. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4233. </div>
  4234. </div>
  4235. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4236. </div>
  4237. </div>
  4238. </li>
  4239. <liclass="image_lists_itemdatapage-2">
  4240. <aclass="card_img">
  4241. <imgsrc="../images/cardlist/card/BT10-052.png"alt="BT10-052Cherrymon"></a>
  4242. <divclass="popup">
  4243. <divclass="card_detailcard_detail_green">
  4244. <divclass="card_detail_inner">
  4245. <ulclass="cardinfo_head">
  4246. <liclass="cardno">BT10-052</li>
  4247. <li>C</li>
  4248. <liclass="cardtype">Digimon</li>
  4249. <liclass="cardlv">Lv.5</li>
  4250. </ul>
  4251. <divclass="card_name">Cherrymon</div>
  4252. <divclass="cardinfo_top">
  4253. <divclass="card_img">
  4254. <imgsrc="../images/cardlist/card/BT10-052.png"alt="BT10-052Cherrymon"></div>
  4255. <divclass="cardinfo_top_body">
  4256. <dl>
  4257. <dt>Form</dt>
  4258. <dd>Ultimate</dd>
  4259. </dl>
  4260. <dl>
  4261. <dt>Attribute</dt>
  4262. <dd>Virus</dd>
  4263. </dl>
  4264. <dl>
  4265. <dt>Type</dt>
  4266. <dd>Vegetation</dd>
  4267. </dl>
  4268. <dl>
  4269. <dt>DP</dt>
  4270. <dd>7000</dl>
  4271. <dl>
  4272. <dt>PlayCost</dt>
  4273. <dd>7</dd>
  4274. </dl>
  4275. <dl>
  4276. <dt>DigivolveCost1</dt>
  4277. <dd>3fromLv.4</dd>
  4278. </dl>
  4279. <dl>
  4280. <dt>DigivolveCost2</dt>
  4281. <dd>-</dd>
  4282. </dl>
  4283. </div>
  4284. </div>
  4285. <divclass="cardinfo_bottom">
  4286. <dl>
  4287. <dt>Effect</dt>
  4288. <dd><Digisorption -2> (When one of your Digimon would digivolve into this card from your hand, you may suspend 1 of your Digimon to reduce digivolution cost by 2.)<br>[Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, you may switch the target of attack to 1 of your suspended Digimon.</dd>
  4289. </dl>
  4290. <dl>
  4291. <dt>Digivolveeffect</dt>
  4292. <dd>-</dd>
  4293. </dl>
  4294. <dl>
  4295. <dt>Securityeffect</dt>
  4296. <dd>-</dd>
  4297. </dl>
  4298. <dl>
  4299. <dt>Notes</dt>
  4300. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4301. </div>
  4302. </div>
  4303. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4304. </div>
  4305. </div>
  4306. </li>
  4307. <liclass="image_lists_itemdatapage-2">
  4308. <aclass="card_img">
  4309. <imgsrc="../images/cardlist/card/BT10-053.png"alt="BT10-053Ajatarmon"></a>
  4310. <divclass="popup">
  4311. <divclass="card_detailcard_detail_green">
  4312. <divclass="card_detail_inner">
  4313. <ulclass="cardinfo_head">
  4314. <liclass="cardno">BT10-053</li>
  4315. <li>U</li>
  4316. <liclass="cardtype">Digimon</li>
  4317. <liclass="cardlv">Lv.5</li>
  4318. </ul>
  4319. <divclass="card_name">Ajatarmon</div>
  4320. <divclass="cardinfo_top">
  4321. <divclass="card_img">
  4322. <imgsrc="../images/cardlist/card/BT10-053.png"alt="BT10-053Ajatarmon"></div>
  4323. <divclass="cardinfo_top_body">
  4324. <dl>
  4325. <dt>Form</dt>
  4326. <dd>Ultimate</dd>
  4327. </dl>
  4328. <dl>
  4329. <dt>Attribute</dt>
  4330. <dd>Vaccine</dd>
  4331. </dl>
  4332. <dl>
  4333. <dt>Type</dt>
  4334. <dd>Vegetation</dd>
  4335. </dl>
  4336. <dl>
  4337. <dt>DP</dt>
  4338. <dd>7000</dl>
  4339. <dl>
  4340. <dt>PlayCost</dt>
  4341. <dd>8</dd>
  4342. </dl>
  4343. <dl>
  4344. <dt>DigivolveCost1</dt>
  4345. <dd>3fromLv.4</dd>
  4346. </dl>
  4347. <dl>
  4348. <dt>DigivolveCost2</dt>
  4349. <dd>-</dd>
  4350. </dl>
  4351. </div>
  4352. </div>
  4353. <divclass="cardinfo_bottom">
  4354. <dl>
  4355. <dt>Effect</dt>
  4356. <dd>[Main][Once Per Turn] By suspending 1 of your green Digimon, you may play 1 Digimon card with [Vegetation] or [Fairy] in its traits and 3000 DP or less from your hand without paying its memory cost.</dd>
  4357. </dl>
  4358. <dl>
  4359. <dt>Digivolveeffect</dt>
  4360. <dd>[Your Turn][Once Per Turn] When an effect suspends one of your Digimon, gain 1 memory.</dd>
  4361. </dl>
  4362. <dl>
  4363. <dt>Securityeffect</dt>
  4364. <dd>-</dd>
  4365. </dl>
  4366. <dl>
  4367. <dt>Notes</dt>
  4368. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4369. </div>
  4370. </div>
  4371. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4372. </div>
  4373. </div>
  4374. </li>
  4375. <liclass="image_lists_itemdatapage-2">
  4376. <aclass="card_img">
  4377. <imgsrc="../images/cardlist/card/BT10-054.png"alt="BT10-054Lamortmon"></a>
  4378. <divclass="popup">
  4379. <divclass="card_detailcard_detail_green">
  4380. <divclass="card_detail_inner">
  4381. <ulclass="cardinfo_head">
  4382. <liclass="cardno">BT10-054</li>
  4383. <li>R</li>
  4384. <liclass="cardtype">Digimon</li>
  4385. <liclass="cardlv">Lv.5</li>
  4386. </ul>
  4387. <divclass="card_name">Lamortmon</div>
  4388. <divclass="cardinfo_top">
  4389. <divclass="card_img">
  4390. <imgsrc="../images/cardlist/card/BT10-054.png"alt="BT10-054Lamortmon"></div>
  4391. <divclass="cardinfo_top_body">
  4392. <dl>
  4393. <dt>Form</dt>
  4394. <dd>Ultimate</dd>
  4395. </dl>
  4396. <dl>
  4397. <dt>Attribute</dt>
  4398. <dd>Vaccine</dd>
  4399. </dl>
  4400. <dl>
  4401. <dt>Type</dt>
  4402. <dd>Beast</dd>
  4403. </dl>
  4404. <dl>
  4405. <dt>DP</dt>
  4406. <dd>9000</dl>
  4407. <dl>
  4408. <dt>PlayCost</dt>
  4409. <dd>8</dd>
  4410. </dl>
  4411. <dl>
  4412. <dt>DigivolveCost1</dt>
  4413. <dd>3fromLv.4</dd>
  4414. </dl>
  4415. <dl>
  4416. <dt>DigivolveCost2</dt>
  4417. <dd>-</dd>
  4418. </dl>
  4419. </div>
  4420. </div>
  4421. <divclass="cardinfo_bottom">
  4422. <dl>
  4423. <dt>Effect</dt>
  4424. <dd>[When Digivolving] Suspend 1 of your opponent's Digimon.<br>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, unsuspend this Digimon.<br>[When Attacking] If you don't have a Tamer in play, lose 2 memory.</dd>
  4425. </dl>
  4426. <dl>
  4427. <dt>Digivolveeffect</dt>
  4428. <dd>-</dd>
  4429. </dl>
  4430. <dl>
  4431. <dt>Securityeffect</dt>
  4432. <dd>-</dd>
  4433. </dl>
  4434. <dl>
  4435. <dt>Notes</dt>
  4436. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4437. </div>
  4438. </div>
  4439. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4440. </div>
  4441. </div>
  4442. </li>
  4443. <liclass="image_lists_itemdatapage-2">
  4444. <aclass="card_img">
  4445. <imgsrc="../images/cardlist/card/BT10-054_P1.png"alt="BT10-054Lamortmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4446. </a>
  4447. <divclass="popup">
  4448. <divclass="card_detailcard_detail_green">
  4449. <divclass="card_detail_inner">
  4450. <ulclass="cardinfo_head">
  4451. <liclass="cardno">BT10-054</li>
  4452. <li>R</li>
  4453. <liclass="cardtype">Digimon</li>
  4454. <liclass="cardlv">Lv.5</li>
  4455. <liclass="cardtypecardParallel">AlternativeArt</li>
  4456. </ul>
  4457. <divclass="card_name">Lamortmon</div>
  4458. <divclass="cardinfo_top">
  4459. <divclass="card_img">
  4460. <imgsrc="../images/cardlist/card/BT10-054_P1.png"alt="BT10-054Lamortmon"></div>
  4461. <divclass="cardinfo_top_body">
  4462. <dl>
  4463. <dt>Form</dt>
  4464. <dd>Ultimate</dd>
  4465. </dl>
  4466. <dl>
  4467. <dt>Attribute</dt>
  4468. <dd>Vaccine</dd>
  4469. </dl>
  4470. <dl>
  4471. <dt>Type</dt>
  4472. <dd>Beast</dd>
  4473. </dl>
  4474. <dl>
  4475. <dt>DP</dt>
  4476. <dd>9000</dl>
  4477. <dl>
  4478. <dt>PlayCost</dt>
  4479. <dd>8</dd>
  4480. </dl>
  4481. <dl>
  4482. <dt>DigivolveCost1</dt>
  4483. <dd>3fromLv.4</dd>
  4484. </dl>
  4485. <dl>
  4486. <dt>DigivolveCost2</dt>
  4487. <dd>-</dd>
  4488. </dl>
  4489. </div>
  4490. </div>
  4491. <divclass="cardinfo_bottom">
  4492. <dl>
  4493. <dt>Effect</dt>
  4494. <dd>[When Digivolving] Suspend 1 of your opponent's Digimon.<br>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, unsuspend this Digimon.<br>[When Attacking] If you don't have a Tamer in play, lose 2 memory.</dd>
  4495. </dl>
  4496. <dl>
  4497. <dt>Digivolveeffect</dt>
  4498. <dd>-</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>Securityeffect</dt>
  4502. <dd>-</dd>
  4503. </dl>
  4504. <dl>
  4505. <dt>Notes</dt>
  4506. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4507. </div>
  4508. </div>
  4509. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4510. </div>
  4511. </div>
  4512. </li>
  4513. <liclass="image_lists_itemdatapage-2">
  4514. <aclass="card_img">
  4515. <imgsrc="../images/cardlist/card/BT10-055.png"alt="BT10-055Gryphonmon"></a>
  4516. <divclass="popup">
  4517. <divclass="card_detailcard_detail_green_yellowmulticolor">
  4518. <divclass="card_detail_inner">
  4519. <ulclass="cardinfo_head">
  4520. <liclass="cardno">BT10-055</li>
  4521. <li>U</li>
  4522. <liclass="cardtype">Digimon</li>
  4523. <liclass="cardlv">Lv.6</li>
  4524. </ul>
  4525. <divclass="card_name">Gryphonmon</div>
  4526. <divclass="cardinfo_top">
  4527. <divclass="card_img">
  4528. <imgsrc="../images/cardlist/card/BT10-055.png"alt="BT10-055Gryphonmon"></div>
  4529. <divclass="cardinfo_top_body">
  4530. <dl>
  4531. <dt>Form</dt>
  4532. <dd>Mega</dd>
  4533. </dl>
  4534. <dl>
  4535. <dt>Attribute</dt>
  4536. <dd>Data</dd>
  4537. </dl>
  4538. <dl>
  4539. <dt>Type</dt>
  4540. <dd>MythicalBeast</dd>
  4541. </dl>
  4542. <dl>
  4543. <dt>DP</dt>
  4544. <dd>13000</dl>
  4545. <dl>
  4546. <dt>PlayCost</dt>
  4547. <dd>10</dd>
  4548. </dl>
  4549. <dl>
  4550. <dt>DigivolveCost1</dt>
  4551. <dd>3fromLv.5</dd>
  4552. </dl>
  4553. <dl>
  4554. <dt>DigivolveCost2</dt>
  4555. <dd>Yellow</dd>
  4556. </dl>
  4557. </div>
  4558. </div>
  4559. <divclass="cardinfo_bottom">
  4560. <dl>
  4561. <dt>Effect</dt>
  4562. <dd>-</dd>
  4563. </dl>
  4564. <dl>
  4565. <dt>Digivolveeffect</dt>
  4566. <dd>-</dd>
  4567. </dl>
  4568. <dl>
  4569. <dt>Securityeffect</dt>
  4570. <dd>-</dd>
  4571. </dl>
  4572. <dl>
  4573. <dt>Notes</dt>
  4574. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4575. </div>
  4576. </div>
  4577. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4578. </div>
  4579. </div>
  4580. </li>
  4581. <liclass="image_lists_itemdatapage-2">
  4582. <aclass="card_img">
  4583. <imgsrc="../images/cardlist/card/BT10-056.png"alt="BT10-056Lotosmon"></a>
  4584. <divclass="popup">
  4585. <divclass="card_detailcard_detail_green">
  4586. <divclass="card_detail_inner">
  4587. <ulclass="cardinfo_head">
  4588. <liclass="cardno">BT10-056</li>
  4589. <li>R</li>
  4590. <liclass="cardtype">Digimon</li>
  4591. <liclass="cardlv">Lv.6</li>
  4592. </ul>
  4593. <divclass="card_name">Lotosmon</div>
  4594. <divclass="cardinfo_top">
  4595. <divclass="card_img">
  4596. <imgsrc="../images/cardlist/card/BT10-056.png"alt="BT10-056Lotosmon"></div>
  4597. <divclass="cardinfo_top_body">
  4598. <dl>
  4599. <dt>Form</dt>
  4600. <dd>Mega</dd>
  4601. </dl>
  4602. <dl>
  4603. <dt>Attribute</dt>
  4604. <dd>Data</dd>
  4605. </dl>
  4606. <dl>
  4607. <dt>Type</dt>
  4608. <dd>Fairy</dd>
  4609. </dl>
  4610. <dl>
  4611. <dt>DP</dt>
  4612. <dd>11000</dl>
  4613. <dl>
  4614. <dt>PlayCost</dt>
  4615. <dd>11</dd>
  4616. </dl>
  4617. <dl>
  4618. <dt>DigivolveCost1</dt>
  4619. <dd>4fromLv.5</dd>
  4620. </dl>
  4621. <dl>
  4622. <dt>DigivolveCost2</dt>
  4623. <dd>-</dd>
  4624. </dl>
  4625. </div>
  4626. </div>
  4627. <divclass="cardinfo_bottom">
  4628. <dl>
  4629. <dt>Effect</dt>
  4630. <dd>[When Digivolving] Suspend 1 of your opponent's Digimon. It doesn't unsuspend during your opponent's next unsuspend phase.<br>[Opponent's Turn] All of your other Digimon with [Vegetation] or [Fairy] in their traits gain "[On Deletion] Gain 2 memory, and return 1 Digimon card with 3000 DP or less from your trash to your hand."</dd>
  4631. </dl>
  4632. <dl>
  4633. <dt>Digivolveeffect</dt>
  4634. <dd>-</dd>
  4635. </dl>
  4636. <dl>
  4637. <dt>Securityeffect</dt>
  4638. <dd>-</dd>
  4639. </dl>
  4640. <dl>
  4641. <dt>Notes</dt>
  4642. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4643. </div>
  4644. </div>
  4645. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4646. </div>
  4647. </div>
  4648. </li>
  4649. <liclass="image_lists_itemdatapage-2">
  4650. <aclass="card_img">
  4651. <imgsrc="../images/cardlist/card/BT10-057.png"alt="BT10-057Bloomlordmon"></a>
  4652. <divclass="popup">
  4653. <divclass="card_detailcard_detail_green">
  4654. <divclass="card_detail_inner">
  4655. <ulclass="cardinfo_head">
  4656. <liclass="cardno">BT10-057</li>
  4657. <li>SR</li>
  4658. <liclass="cardtype">Digimon</li>
  4659. <liclass="cardlv">Lv.6</li>
  4660. </ul>
  4661. <divclass="card_name">Bloomlordmon</div>
  4662. <divclass="cardinfo_top">
  4663. <divclass="card_img">
  4664. <imgsrc="../images/cardlist/card/BT10-057.png"alt="BT10-057Bloomlordmon"></div>
  4665. <divclass="cardinfo_top_body">
  4666. <dl>
  4667. <dt>Form</dt>
  4668. <dd>Mega</dd>
  4669. </dl>
  4670. <dl>
  4671. <dt>Attribute</dt>
  4672. <dd>Vaccine</dd>
  4673. </dl>
  4674. <dl>
  4675. <dt>Type</dt>
  4676. <dd>Fairy</dd>
  4677. </dl>
  4678. <dl>
  4679. <dt>DP</dt>
  4680. <dd>12000</dl>
  4681. <dl>
  4682. <dt>PlayCost</dt>
  4683. <dd>12</dd>
  4684. </dl>
  4685. <dl>
  4686. <dt>DigivolveCost1</dt>
  4687. <dd>4fromLv.5</dd>
  4688. </dl>
  4689. <dl>
  4690. <dt>DigivolveCost2</dt>
  4691. <dd>-</dd>
  4692. </dl>
  4693. </div>
  4694. </div>
  4695. <divclass="cardinfo_bottom">
  4696. <dl>
  4697. <dt>Effect</dt>
  4698. <dd>[When Digivolving] You may suspend 1 of your Digimon. Then, gain 1 memory for each suspended Digimon with [Vegetation] or [Fairy] in their traits you have in play. If you gain 2 or more memory by this effect, unsuspend this Digimon and it gains <Piercing> for the turn.<br>[Your Turn] For every 2 suspended Digimon you have in play, this Digimon gets +2000 DP and gains <Security Attack +1>.</dd>
  4699. </dl>
  4700. <dl>
  4701. <dt>Digivolveeffect</dt>
  4702. <dd>-</dd>
  4703. </dl>
  4704. <dl>
  4705. <dt>Securityeffect</dt>
  4706. <dd>-</dd>
  4707. </dl>
  4708. <dl>
  4709. <dt>Notes</dt>
  4710. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4711. </div>
  4712. </div>
  4713. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4714. </div>
  4715. </div>
  4716. </li>
  4717. <liclass="image_lists_itemdatapage-2">
  4718. <aclass="card_img">
  4719. <imgsrc="../images/cardlist/card/BT10-057_P1.png"alt="BT10-057Bloomlordmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4720. </a>
  4721. <divclass="popup">
  4722. <divclass="card_detailcard_detail_green">
  4723. <divclass="card_detail_inner">
  4724. <ulclass="cardinfo_head">
  4725. <liclass="cardno">BT10-057</li>
  4726. <li>SR</li>
  4727. <liclass="cardtype">Digimon</li>
  4728. <liclass="cardlv">Lv.6</li>
  4729. <liclass="cardtypecardParallel">AlternativeArt</li>
  4730. </ul>
  4731. <divclass="card_name">Bloomlordmon</div>
  4732. <divclass="cardinfo_top">
  4733. <divclass="card_img">
  4734. <imgsrc="../images/cardlist/card/BT10-057_P1.png"alt="BT10-057Bloomlordmon"></div>
  4735. <divclass="cardinfo_top_body">
  4736. <dl>
  4737. <dt>Form</dt>
  4738. <dd>Mega</dd>
  4739. </dl>
  4740. <dl>
  4741. <dt>Attribute</dt>
  4742. <dd>Vaccine</dd>
  4743. </dl>
  4744. <dl>
  4745. <dt>Type</dt>
  4746. <dd>Fairy</dd>
  4747. </dl>
  4748. <dl>
  4749. <dt>DP</dt>
  4750. <dd>12000</dl>
  4751. <dl>
  4752. <dt>PlayCost</dt>
  4753. <dd>12</dd>
  4754. </dl>
  4755. <dl>
  4756. <dt>DigivolveCost1</dt>
  4757. <dd>4fromLv.5</dd>
  4758. </dl>
  4759. <dl>
  4760. <dt>DigivolveCost2</dt>
  4761. <dd>-</dd>
  4762. </dl>
  4763. </div>
  4764. </div>
  4765. <divclass="cardinfo_bottom">
  4766. <dl>
  4767. <dt>Effect</dt>
  4768. <dd>[When Digivolving] You may suspend 1 of your Digimon. Then, gain 1 memory for each suspended Digimon with [Vegetation] or [Fairy] in their traits you have in play. If you gain 2 or more memory by this effect, unsuspend this Digimon and it gains <Piercing> for the turn.<br>[Your Turn] For every 2 suspended Digimon you have in play, this Digimon gets +2000 DP and gains <Security Attack +1>.</dd>
  4769. </dl>
  4770. <dl>
  4771. <dt>Digivolveeffect</dt>
  4772. <dd>-</dd>
  4773. </dl>
  4774. <dl>
  4775. <dt>Securityeffect</dt>
  4776. <dd>-</dd>
  4777. </dl>
  4778. <dl>
  4779. <dt>Notes</dt>
  4780. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4781. </div>
  4782. </div>
  4783. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4784. </div>
  4785. </div>
  4786. </li>
  4787. <liclass="image_lists_itemdatapage-2">
  4788. <aclass="card_img">
  4789. <imgsrc="../images/cardlist/card/BT10-058.png"alt="BT10-058Monitamon"></a>
  4790. <divclass="popup">
  4791. <divclass="card_detailcard_detail_black">
  4792. <divclass="card_detail_inner">
  4793. <ulclass="cardinfo_head">
  4794. <liclass="cardno">BT10-058</li>
  4795. <li>C</li>
  4796. <liclass="cardtype">Digimon</li>
  4797. <liclass="cardlv">Lv.3</li>
  4798. </ul>
  4799. <divclass="card_name">Monitamon</div>
  4800. <divclass="cardinfo_top">
  4801. <divclass="card_img">
  4802. <imgsrc="../images/cardlist/card/BT10-058.png"alt="BT10-058Monitamon"></div>
  4803. <divclass="cardinfo_top_body">
  4804. <dl>
  4805. <dt>Form</dt>
  4806. <dd>Rookie</dd>
  4807. </dl>
  4808. <dl>
  4809. <dt>Attribute</dt>
  4810. <dd>Data</dd>
  4811. </dl>
  4812. <dl>
  4813. <dt>Type</dt>
  4814. <dd>CRT/Twilight/XrosHeart</dd>
  4815. </dl>
  4816. <dl>
  4817. <dt>DP</dt>
  4818. <dd>2000</dl>
  4819. <dl>
  4820. <dt>PlayCost</dt>
  4821. <dd>3</dd>
  4822. </dl>
  4823. <dl>
  4824. <dt>DigivolveCost1</dt>
  4825. <dd>0fromLv.2</dd>
  4826. </dl>
  4827. <dl>
  4828. <dt>DigivolveCost2</dt>
  4829. <dd>-</dd>
  4830. </dl>
  4831. </div>
  4832. </div>
  4833. <divclass="cardinfo_bottom">
  4834. <dl>
  4835. <dt>Effect</dt>
  4836. <dd>[On Play] Reveal the top 4 cards of your deck. Add 2 cards that are either black with [Knightmon] or [DeadlyAxemon] in their names or with [Twilight] in their traits among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  4837. </dl>
  4838. <dl>
  4839. <dt>Digivolveeffect</dt>
  4840. <dd>-</dd>
  4841. </dl>
  4842. <dl>
  4843. <dt>Securityeffect</dt>
  4844. <dd>-</dd>
  4845. </dl>
  4846. <dl>
  4847. <dt>Notes</dt>
  4848. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4849. </div>
  4850. </div>
  4851. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4852. </div>
  4853. </div>
  4854. </li>
  4855. <liclass="image_lists_itemdatapage-2">
  4856. <aclass="card_img">
  4857. <imgsrc="../images/cardlist/card/BT10-059.png"alt="BT10-059Spadamon"></a>
  4858. <divclass="popup">
  4859. <divclass="card_detailcard_detail_black_redmulticolor">
  4860. <divclass="card_detail_inner">
  4861. <ulclass="cardinfo_head">
  4862. <liclass="cardno">BT10-059</li>
  4863. <li>U</li>
  4864. <liclass="cardtype">Digimon</li>
  4865. <liclass="cardlv">Lv.3</li>
  4866. </ul>
  4867. <divclass="card_name">Spadamon</div>
  4868. <divclass="cardinfo_top">
  4869. <divclass="card_img">
  4870. <imgsrc="../images/cardlist/card/BT10-059.png"alt="BT10-059Spadamon"></div>
  4871. <divclass="cardinfo_top_body">
  4872. <dl>
  4873. <dt>Form</dt>
  4874. <dd>Rookie</dd>
  4875. </dl>
  4876. <dl>
  4877. <dt>Attribute</dt>
  4878. <dd>Free</dd>
  4879. </dl>
  4880. <dl>
  4881. <dt>Type</dt>
  4882. <dd>Weapon/Legend-Arms/XrosHeart</dd>
  4883. </dl>
  4884. <dl>
  4885. <dt>DP</dt>
  4886. <dd>2000</dl>
  4887. <dl>
  4888. <dt>PlayCost</dt>
  4889. <dd>4</dd>
  4890. </dl>
  4891. <dl>
  4892. <dt>DigivolveCost1</dt>
  4893. <dd>1fromLv.2</dd>
  4894. </dl>
  4895. <dl>
  4896. <dt>DigivolveCost2</dt>
  4897. <dd>Red</dd>
  4898. </dl>
  4899. </div>
  4900. </div>
  4901. <divclass="cardinfo_bottom">
  4902. <dl>
  4903. <dt>Effect</dt>
  4904. <dd>[On Play] By placing this Digimon under 1 of your Digimon with [Legend-Arms] or [Xros Heart] in its traits as its bottom digivolution card, <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of 1 of your opponent's Digimon. Stop trashing when you would trash a level 3 card or the Digimon's last card.)</dd>
  4905. </dl>
  4906. <dl>
  4907. <dt>Digivolveeffect</dt>
  4908. <dd>[When Attacking][Once Per Turn] Reveal the top 3 cards of your deck. Add 1 card with [Legend-Arms] or [Xros Heart] in its traits among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>Securityeffect</dt>
  4912. <dd>-</dd>
  4913. </dl>
  4914. <dl>
  4915. <dt>Notes</dt>
  4916. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4917. </div>
  4918. </div>
  4919. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4920. </div>
  4921. </div>
  4922. </li>
  4923. <liclass="image_lists_itemdatapage-2">
  4924. <aclass="card_img">
  4925. <imgsrc="../images/cardlist/card/BT10-060.png"alt="BT10-060Sparrowmon"></a>
  4926. <divclass="popup">
  4927. <divclass="card_detailcard_detail_black">
  4928. <divclass="card_detail_inner">
  4929. <ulclass="cardinfo_head">
  4930. <liclass="cardno">BT10-060</li>
  4931. <li>R</li>
  4932. <liclass="cardtype">Digimon</li>
  4933. <liclass="cardlv">Lv.3</li>
  4934. </ul>
  4935. <divclass="card_name">Sparrowmon</div>
  4936. <divclass="cardinfo_top">
  4937. <divclass="card_img">
  4938. <imgsrc="../images/cardlist/card/BT10-060.png"alt="BT10-060Sparrowmon"></div>
  4939. <divclass="cardinfo_top_body">
  4940. <dl>
  4941. <dt>Form</dt>
  4942. <dd>Rookie</dd>
  4943. </dl>
  4944. <dl>
  4945. <dt>Attribute</dt>
  4946. <dd>Data</dd>
  4947. </dl>
  4948. <dl>
  4949. <dt>Type</dt>
  4950. <dd>Bird/Twilight/XrosHeart</dd>
  4951. </dl>
  4952. <dl>
  4953. <dt>DP</dt>
  4954. <dd>2000</dl>
  4955. <dl>
  4956. <dt>PlayCost</dt>
  4957. <dd>4</dd>
  4958. </dl>
  4959. <dl>
  4960. <dt>DigivolveCost1</dt>
  4961. <dd>0fromLv.2</dd>
  4962. </dl>
  4963. <dl>
  4964. <dt>DigivolveCost2</dt>
  4965. <dd>-</dd>
  4966. </dl>
  4967. </div>
  4968. </div>
  4969. <divclass="cardinfo_bottom">
  4970. <dl>
  4971. <dt>Effect</dt>
  4972. <dd>Digivolve: 0 from Lv.2 w/[Xros Heart] in traits[All Turns] While you have another Digimon or Tamer with [Xros Heart] or [Twilight] in its traits in play, this Digimon gets +3000 DP.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  4973. </dl>
  4974. <dl>
  4975. <dt>Digivolveeffect</dt>
  4976. <dd>[Opponent's Turn] While this Digimon has [Shoutmon] or [Mervamon] in its name, it gains <Reboot>. (Unsuspend this Digimon during your opponent's unsuspend phase.)</dd>
  4977. </dl>
  4978. <dl>
  4979. <dt>Securityeffect</dt>
  4980. <dd>-</dd>
  4981. </dl>
  4982. <dl>
  4983. <dt>Notes</dt>
  4984. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  4985. </div>
  4986. </div>
  4987. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4988. </div>
  4989. </div>
  4990. </li>
  4991. <liclass="image_lists_itemdatapage-2">
  4992. <aclass="card_img">
  4993. <imgsrc="../images/cardlist/card/BT10-060_P1.png"alt="BT10-060Sparrowmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4994. </a>
  4995. <divclass="popup">
  4996. <divclass="card_detailcard_detail_black">
  4997. <divclass="card_detail_inner">
  4998. <ulclass="cardinfo_head">
  4999. <liclass="cardno">BT10-060</li>
  5000. <li>R</li>
  5001. <liclass="cardtype">Digimon</li>
  5002. <liclass="cardlv">Lv.3</li>
  5003. <liclass="cardtypecardParallel">AlternativeArt</li>
  5004. </ul>
  5005. <divclass="card_name">Sparrowmon</div>
  5006. <divclass="cardinfo_top">
  5007. <divclass="card_img">
  5008. <imgsrc="../images/cardlist/card/BT10-060_P1.png"alt="BT10-060Sparrowmon"></div>
  5009. <divclass="cardinfo_top_body">
  5010. <dl>
  5011. <dt>Form</dt>
  5012. <dd>Rookie</dd>
  5013. </dl>
  5014. <dl>
  5015. <dt>Attribute</dt>
  5016. <dd>Data</dd>
  5017. </dl>
  5018. <dl>
  5019. <dt>Type</dt>
  5020. <dd>Bird/Twilight/XrosHeart</dd>
  5021. </dl>
  5022. <dl>
  5023. <dt>DP</dt>
  5024. <dd>2000</dl>
  5025. <dl>
  5026. <dt>PlayCost</dt>
  5027. <dd>4</dd>
  5028. </dl>
  5029. <dl>
  5030. <dt>DigivolveCost1</dt>
  5031. <dd>0fromLv.2</dd>
  5032. </dl>
  5033. <dl>
  5034. <dt>DigivolveCost2</dt>
  5035. <dd>-</dd>
  5036. </dl>
  5037. </div>
  5038. </div>
  5039. <divclass="cardinfo_bottom">
  5040. <dl>
  5041. <dt>Effect</dt>
  5042. <dd>Digivolve: 0 from Lv.2 w/[Xros Heart] in traits[All Turns] While you have another Digimon or Tamer with [Xros Heart] or [Twilight] in its traits in play, this Digimon gets +3000 DP.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  5043. </dl>
  5044. <dl>
  5045. <dt>Digivolveeffect</dt>
  5046. <dd>[Opponent's Turn] While this Digimon has [Shoutmon] or [Mervamon] in its name, it gains <Reboot>. (Unsuspend this Digimon during your opponent's unsuspend phase.)</dd>
  5047. </dl>
  5048. <dl>
  5049. <dt>Securityeffect</dt>
  5050. <dd>-</dd>
  5051. </dl>
  5052. <dl>
  5053. <dt>Notes</dt>
  5054. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5055. </div>
  5056. </div>
  5057. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5058. </div>
  5059. </div>
  5060. </li>
  5061. <liclass="image_lists_itemdatapage-2">
  5062. <aclass="card_img">
  5063. <imgsrc="../images/cardlist/card/BT10-061.png"alt="BT10-061SkullKnightmon:MightyAxeMode"></a>
  5064. <divclass="popup">
  5065. <divclass="card_detailcard_detail_black">
  5066. <divclass="card_detail_inner">
  5067. <ulclass="cardinfo_head">
  5068. <liclass="cardno">BT10-061</li>
  5069. <li>C</li>
  5070. <liclass="cardtype">Digimon</li>
  5071. <liclass="cardlv">Lv.4</li>
  5072. </ul>
  5073. <divclass="card_name">SkullKnightmon:MightyAxeMode</div>
  5074. <divclass="cardinfo_top">
  5075. <divclass="card_img">
  5076. <imgsrc="../images/cardlist/card/BT10-061.png"alt="BT10-061SkullKnightmon:MightyAxeMode"></div>
  5077. <divclass="cardinfo_top_body">
  5078. <dl>
  5079. <dt>Form</dt>
  5080. <dd>Champion</dd>
  5081. </dl>
  5082. <dl>
  5083. <dt>Attribute</dt>
  5084. <dd>Virus</dd>
  5085. </dl>
  5086. <dl>
  5087. <dt>Type</dt>
  5088. <dd>Enhancement/Twilight</dd>
  5089. </dl>
  5090. <dl>
  5091. <dt>DP</dt>
  5092. <dd>5000</dl>
  5093. <dl>
  5094. <dt>PlayCost</dt>
  5095. <dd>4</dd>
  5096. </dl>
  5097. <dl>
  5098. <dt>DigivolveCost1</dt>
  5099. <dd>3fromLv.3</dd>
  5100. </dl>
  5101. <dl>
  5102. <dt>DigivolveCost2</dt>
  5103. <dd>-</dd>
  5104. </dl>
  5105. </div>
  5106. </div>
  5107. <divclass="cardinfo_bottom">
  5108. <dl>
  5109. <dt>Effect</dt>
  5110. <dd>DigiXros -1: [SkullKnightmon] + [DeadlyAxemon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.The name of this card/Digimon is also treated as [SkullKnightmon] and [DeadlyAxemon].<br>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Knightmon] in its name, 1 [DeadlyAxemon], or 1 [Nene Amano] among them to your hand. Trash the rest. Then, if DigiXrosing with 2 cards, delete 1 of your opponent's Digimon with a play cost of 4 or less.</dd>
  5111. </dl>
  5112. <dl>
  5113. <dt>Digivolveeffect</dt>
  5114. <dd>-</dd>
  5115. </dl>
  5116. <dl>
  5117. <dt>Securityeffect</dt>
  5118. <dd>-</dd>
  5119. </dl>
  5120. <dl>
  5121. <dt>Notes</dt>
  5122. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5123. </div>
  5124. </div>
  5125. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5126. </div>
  5127. </div>
  5128. </li>
  5129. <liclass="image_lists_itemdatapage-2">
  5130. <aclass="card_img">
  5131. <imgsrc="../images/cardlist/card/BT10-062.png"alt="BT10-062Golemon"></a>
  5132. <divclass="popup">
  5133. <divclass="card_detailcard_detail_black">
  5134. <divclass="card_detail_inner">
  5135. <ulclass="cardinfo_head">
  5136. <liclass="cardno">BT10-062</li>
  5137. <li>C</li>
  5138. <liclass="cardtype">Digimon</li>
  5139. <liclass="cardlv">Lv.4</li>
  5140. </ul>
  5141. <divclass="card_name">Golemon</div>
  5142. <divclass="cardinfo_top">
  5143. <divclass="card_img">
  5144. <imgsrc="../images/cardlist/card/BT10-062.png"alt="BT10-062Golemon"></div>
  5145. <divclass="cardinfo_top_body">
  5146. <dl>
  5147. <dt>Form</dt>
  5148. <dd>Champion</dd>
  5149. </dl>
  5150. <dl>
  5151. <dt>Attribute</dt>
  5152. <dd>Virus</dd>
  5153. </dl>
  5154. <dl>
  5155. <dt>Type</dt>
  5156. <dd>Mineral</dd>
  5157. </dl>
  5158. <dl>
  5159. <dt>DP</dt>
  5160. <dd>5000</dl>
  5161. <dl>
  5162. <dt>PlayCost</dt>
  5163. <dd>5</dd>
  5164. </dl>
  5165. <dl>
  5166. <dt>DigivolveCost1</dt>
  5167. <dd>1fromLv.3</dd>
  5168. </dl>
  5169. <dl>
  5170. <dt>DigivolveCost2</dt>
  5171. <dd>-</dd>
  5172. </dl>
  5173. </div>
  5174. </div>
  5175. <divclass="cardinfo_bottom">
  5176. <dl>
  5177. <dt>Effect</dt>
  5178. <dd>-</dd>
  5179. </dl>
  5180. <dl>
  5181. <dt>Digivolveeffect</dt>
  5182. <dd>-</dd>
  5183. </dl>
  5184. <dl>
  5185. <dt>Securityeffect</dt>
  5186. <dd>-</dd>
  5187. </dl>
  5188. <dl>
  5189. <dt>Notes</dt>
  5190. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5191. </div>
  5192. </div>
  5193. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5194. </div>
  5195. </div>
  5196. </li>
  5197. <liclass="image_lists_itemdatapage-2">
  5198. <aclass="card_img">
  5199. <imgsrc="../images/cardlist/card/BT10-063.png"alt="BT10-063Hi-VisionMonitamon"></a>
  5200. <divclass="popup">
  5201. <divclass="card_detailcard_detail_black">
  5202. <divclass="card_detail_inner">
  5203. <ulclass="cardinfo_head">
  5204. <liclass="cardno">BT10-063</li>
  5205. <li>C</li>
  5206. <liclass="cardtype">Digimon</li>
  5207. <liclass="cardlv">Lv.4</li>
  5208. </ul>
  5209. <divclass="card_name">Hi-VisionMonitamon</div>
  5210. <divclass="cardinfo_top">
  5211. <divclass="card_img">
  5212. <imgsrc="../images/cardlist/card/BT10-063.png"alt="BT10-063Hi-VisionMonitamon"></div>
  5213. <divclass="cardinfo_top_body">
  5214. <dl>
  5215. <dt>Form</dt>
  5216. <dd>Champion</dd>
  5217. </dl>
  5218. <dl>
  5219. <dt>Attribute</dt>
  5220. <dd>Data</dd>
  5221. </dl>
  5222. <dl>
  5223. <dt>Type</dt>
  5224. <dd>LCD/Twilight/XrosHeart</dd>
  5225. </dl>
  5226. <dl>
  5227. <dt>DP</dt>
  5228. <dd>7000</dl>
  5229. <dl>
  5230. <dt>PlayCost</dt>
  5231. <dd>6</dd>
  5232. </dl>
  5233. <dl>
  5234. <dt>DigivolveCost1</dt>
  5235. <dd>2fromLv.3</dd>
  5236. </dl>
  5237. <dl>
  5238. <dt>DigivolveCost2</dt>
  5239. <dd>-</dd>
  5240. </dl>
  5241. </div>
  5242. </div>
  5243. <divclass="cardinfo_bottom">
  5244. <dl>
  5245. <dt>Effect</dt>
  5246. <dd>DigiXros -2: [Monitamon] + [Monitamon] + [Monitamon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.</dd>
  5247. </dl>
  5248. <dl>
  5249. <dt>Digivolveeffect</dt>
  5250. <dd>-</dd>
  5251. </dl>
  5252. <dl>
  5253. <dt>Securityeffect</dt>
  5254. <dd>-</dd>
  5255. </dl>
  5256. <dl>
  5257. <dt>Notes</dt>
  5258. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5259. </div>
  5260. </div>
  5261. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5262. </div>
  5263. </div>
  5264. </li>
  5265. <liclass="image_lists_itemdatapage-2">
  5266. <aclass="card_img">
  5267. <imgsrc="../images/cardlist/card/BT10-064.png"alt="BT10-064Gogmamon"></a>
  5268. <divclass="popup">
  5269. <divclass="card_detailcard_detail_black">
  5270. <divclass="card_detail_inner">
  5271. <ulclass="cardinfo_head">
  5272. <liclass="cardno">BT10-064</li>
  5273. <li>C</li>
  5274. <liclass="cardtype">Digimon</li>
  5275. <liclass="cardlv">Lv.5</li>
  5276. </ul>
  5277. <divclass="card_name">Gogmamon</div>
  5278. <divclass="cardinfo_top">
  5279. <divclass="card_img">
  5280. <imgsrc="../images/cardlist/card/BT10-064.png"alt="BT10-064Gogmamon"></div>
  5281. <divclass="cardinfo_top_body">
  5282. <dl>
  5283. <dt>Form</dt>
  5284. <dd>Ultimate</dd>
  5285. </dl>
  5286. <dl>
  5287. <dt>Attribute</dt>
  5288. <dd>Vaccine</dd>
  5289. </dl>
  5290. <dl>
  5291. <dt>Type</dt>
  5292. <dd>Rock</dd>
  5293. </dl>
  5294. <dl>
  5295. <dt>DP</dt>
  5296. <dd>8000</dl>
  5297. <dl>
  5298. <dt>PlayCost</dt>
  5299. <dd>5</dd>
  5300. </dl>
  5301. <dl>
  5302. <dt>DigivolveCost1</dt>
  5303. <dd>3fromLv.4</dd>
  5304. </dl>
  5305. <dl>
  5306. <dt>DigivolveCost2</dt>
  5307. <dd>-</dd>
  5308. </dl>
  5309. </div>
  5310. </div>
  5311. <divclass="cardinfo_bottom">
  5312. <dl>
  5313. <dt>Effect</dt>
  5314. <dd>-</dd>
  5315. </dl>
  5316. <dl>
  5317. <dt>Digivolveeffect</dt>
  5318. <dd>-</dd>
  5319. </dl>
  5320. <dl>
  5321. <dt>Securityeffect</dt>
  5322. <dd>-</dd>
  5323. </dl>
  5324. <dl>
  5325. <dt>Notes</dt>
  5326. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5327. </div>
  5328. </div>
  5329. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5330. </div>
  5331. </div>
  5332. </li>
  5333. <liclass="image_lists_itemdatapage-2">
  5334. <aclass="card_img">
  5335. <imgsrc="../images/cardlist/card/BT10-065.png"alt="BT10-065Assaultmon"></a>
  5336. <divclass="popup">
  5337. <divclass="card_detailcard_detail_black">
  5338. <divclass="card_detail_inner">
  5339. <ulclass="cardinfo_head">
  5340. <liclass="cardno">BT10-065</li>
  5341. <li>C</li>
  5342. <liclass="cardtype">Digimon</li>
  5343. <liclass="cardlv">Lv.5</li>
  5344. </ul>
  5345. <divclass="card_name">Assaultmon</div>
  5346. <divclass="cardinfo_top">
  5347. <divclass="card_img">
  5348. <imgsrc="../images/cardlist/card/BT10-065.png"alt="BT10-065Assaultmon"></div>
  5349. <divclass="cardinfo_top_body">
  5350. <dl>
  5351. <dt>Form</dt>
  5352. <dd>Ultimate</dd>
  5353. </dl>
  5354. <dl>
  5355. <dt>Attribute</dt>
  5356. <dd>Virus</dd>
  5357. </dl>
  5358. <dl>
  5359. <dt>Type</dt>
  5360. <dd>Cyborg</dd>
  5361. </dl>
  5362. <dl>
  5363. <dt>DP</dt>
  5364. <dd>10000</dl>
  5365. <dl>
  5366. <dt>PlayCost</dt>
  5367. <dd>7</dd>
  5368. </dl>
  5369. <dl>
  5370. <dt>DigivolveCost1</dt>
  5371. <dd>3fromLv.4</dd>
  5372. </dl>
  5373. <dl>
  5374. <dt>DigivolveCost2</dt>
  5375. <dd>-</dd>
  5376. </dl>
  5377. </div>
  5378. </div>
  5379. <divclass="cardinfo_bottom">
  5380. <dl>
  5381. <dt>Effect</dt>
  5382. <dd>-</dd>
  5383. </dl>
  5384. <dl>
  5385. <dt>Digivolveeffect</dt>
  5386. <dd>-</dd>
  5387. </dl>
  5388. <dl>
  5389. <dt>Securityeffect</dt>
  5390. <dd>-</dd>
  5391. </dl>
  5392. <dl>
  5393. <dt>Notes</dt>
  5394. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5395. </div>
  5396. </div>
  5397. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5398. </div>
  5399. </div>
  5400. </li>
  5401. <liclass="image_lists_itemdatapage-2">
  5402. <aclass="card_img">
  5403. <imgsrc="../images/cardlist/card/BT10-066.png"alt="BT10-066DarkKnightmon"></a>
  5404. <divclass="popup">
  5405. <divclass="card_detailcard_detail_black">
  5406. <divclass="card_detail_inner">
  5407. <ulclass="cardinfo_head">
  5408. <liclass="cardno">BT10-066</li>
  5409. <li>R</li>
  5410. <liclass="cardtype">Digimon</li>
  5411. <liclass="cardlv">Lv.5</li>
  5412. </ul>
  5413. <divclass="card_name">DarkKnightmon</div>
  5414. <divclass="cardinfo_top">
  5415. <divclass="card_img">
  5416. <imgsrc="../images/cardlist/card/BT10-066.png"alt="BT10-066DarkKnightmon"></div>
  5417. <divclass="cardinfo_top_body">
  5418. <dl>
  5419. <dt>Form</dt>
  5420. <dd>Ultimate</dd>
  5421. </dl>
  5422. <dl>
  5423. <dt>Attribute</dt>
  5424. <dd>Virus</dd>
  5425. </dl>
  5426. <dl>
  5427. <dt>Type</dt>
  5428. <dd>DarkKnight/Twilight</dd>
  5429. </dl>
  5430. <dl>
  5431. <dt>DP</dt>
  5432. <dd>7000</dl>
  5433. <dl>
  5434. <dt>PlayCost</dt>
  5435. <dd>8</dd>
  5436. </dl>
  5437. <dl>
  5438. <dt>DigivolveCost1</dt>
  5439. <dd>4fromLv.4</dd>
  5440. </dl>
  5441. <dl>
  5442. <dt>DigivolveCost2</dt>
  5443. <dd>-</dd>
  5444. </dl>
  5445. </div>
  5446. </div>
  5447. <divclass="cardinfo_bottom">
  5448. <dl>
  5449. <dt>Effect</dt>
  5450. <dd>DigiXros -2: [SkullKnightmon] + [DeadlyAxemon] When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[On Play] <De-Digivolve 1> 1 of your opponent's Digimon. Then, if DigiXrosing with 2 cards, delete 1 of your opponent's Digimon with a play cost of 5 or less.<br>[All Turns] When this Digimon would be deleted, by returning 1 black level 4 or lower Digimon card from this Digimon's digivolution cards to its owner's hand, you may play 1 [SkullKnightmon] or [DeadlyAxemon] from this Digimon's digivolution cards without paying its memory cost.</dd>
  5451. </dl>
  5452. <dl>
  5453. <dt>Digivolveeffect</dt>
  5454. <dd>-</dd>
  5455. </dl>
  5456. <dl>
  5457. <dt>Securityeffect</dt>
  5458. <dd>-</dd>
  5459. </dl>
  5460. <dl>
  5461. <dt>Notes</dt>
  5462. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5463. </div>
  5464. </div>
  5465. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5466. </div>
  5467. </div>
  5468. </li>
  5469. <liclass="image_lists_itemdatapage-3">
  5470. <aclass="card_img">
  5471. <imgsrc="../images/cardlist/card/BT10-067.png"alt="BT10-067Justimon:CriticalArm"></a>
  5472. <divclass="popup">
  5473. <divclass="card_detailcard_detail_black">
  5474. <divclass="card_detail_inner">
  5475. <ulclass="cardinfo_head">
  5476. <liclass="cardno">BT10-067</li>
  5477. <li>R</li>
  5478. <liclass="cardtype">Digimon</li>
  5479. <liclass="cardlv">Lv.6</li>
  5480. </ul>
  5481. <divclass="card_name">Justimon:CriticalArm</div>
  5482. <divclass="cardinfo_top">
  5483. <divclass="card_img">
  5484. <imgsrc="../images/cardlist/card/BT10-067.png"alt="BT10-067Justimon:CriticalArm"></div>
  5485. <divclass="cardinfo_top_body">
  5486. <dl>
  5487. <dt>Form</dt>
  5488. <dd>Mega</dd>
  5489. </dl>
  5490. <dl>
  5491. <dt>Attribute</dt>
  5492. <dd>Vaccine</dd>
  5493. </dl>
  5494. <dl>
  5495. <dt>Type</dt>
  5496. <dd>Cyborg</dd>
  5497. </dl>
  5498. <dl>
  5499. <dt>DP</dt>
  5500. <dd>11000</dl>
  5501. <dl>
  5502. <dt>PlayCost</dt>
  5503. <dd>11</dd>
  5504. </dl>
  5505. <dl>
  5506. <dt>DigivolveCost1</dt>
  5507. <dd>3fromLv.5</dd>
  5508. </dl>
  5509. <dl>
  5510. <dt>DigivolveCost2</dt>
  5511. <dd>-</dd>
  5512. </dl>
  5513. </div>
  5514. </div>
  5515. <divclass="cardinfo_bottom">
  5516. <dl>
  5517. <dt>Effect</dt>
  5518. <dd>Digivolve: 1 if name contains [Justimon][When Digivolving] By returning 1 card with [Justimon] in its name other than [Justimon: Critical Arm] from this Digimon's digivolution cards to its owner's hand, delete 1 of your opponent's Digimon with a play cost of 9 or less.<br>[When Attacking] If you have a Tamer in play, this Digimon may digivolve into a Digimon card with Justimon in its name other than [Justimon: Critical Arm] for a cost of 2, ignoring its digivolution requirements.</dd>
  5519. </dl>
  5520. <dl>
  5521. <dt>Digivolveeffect</dt>
  5522. <dd>-</dd>
  5523. </dl>
  5524. <dl>
  5525. <dt>Securityeffect</dt>
  5526. <dd>-</dd>
  5527. </dl>
  5528. <dl>
  5529. <dt>Notes</dt>
  5530. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5531. </div>
  5532. </div>
  5533. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5534. </div>
  5535. </div>
  5536. </li>
  5537. <liclass="image_lists_itemdatapage-3">
  5538. <aclass="card_img">
  5539. <imgsrc="../images/cardlist/card/BT10-068.png"alt="BT10-068Gankoomon(XAntibody)"></a>
  5540. <divclass="popup">
  5541. <divclass="card_detailcard_detail_black_redmulticolor">
  5542. <divclass="card_detail_inner">
  5543. <ulclass="cardinfo_head">
  5544. <liclass="cardno">BT10-068</li>
  5545. <li>SR</li>
  5546. <liclass="cardtype">Digimon</li>
  5547. <liclass="cardlv">Lv.6</li>
  5548. </ul>
  5549. <divclass="card_name">Gankoomon(XAntibody)</div>
  5550. <divclass="cardinfo_top">
  5551. <divclass="card_img">
  5552. <imgsrc="../images/cardlist/card/BT10-068.png"alt="BT10-068Gankoomon(XAntibody)"></div>
  5553. <divclass="cardinfo_top_body">
  5554. <dl>
  5555. <dt>Form</dt>
  5556. <dd>Mega</dd>
  5557. </dl>
  5558. <dl>
  5559. <dt>Attribute</dt>
  5560. <dd>Data</dd>
  5561. </dl>
  5562. <dl>
  5563. <dt>Type</dt>
  5564. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  5565. </dl>
  5566. <dl>
  5567. <dt>DP</dt>
  5568. <dd>12000</dl>
  5569. <dl>
  5570. <dt>PlayCost</dt>
  5571. <dd>13</dd>
  5572. </dl>
  5573. <dl>
  5574. <dt>DigivolveCost1</dt>
  5575. <dd>4fromLv.5</dd>
  5576. </dl>
  5577. <dl>
  5578. <dt>DigivolveCost2</dt>
  5579. <dd>Red</dd>
  5580. </dl>
  5581. </div>
  5582. </div>
  5583. <divclass="cardinfo_bottom">
  5584. <dl>
  5585. <dt>Effect</dt>
  5586. <dd>Digivolve: 1 from [Gankoomon]<Blocker><br>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, if [Gankoomon] is in this Digimon's digivolution cards or you have a Digimon with [Sistermon] in its name in play, until the end of your opponent's turn, all of your Digimon get +2000 DP and your opponent's effects can't return them to hands or decks or reduce their DP.</dd>
  5587. </dl>
  5588. <dl>
  5589. <dt>Digivolveeffect</dt>
  5590. <dd>-</dd>
  5591. </dl>
  5592. <dl>
  5593. <dt>Securityeffect</dt>
  5594. <dd>-</dd>
  5595. </dl>
  5596. <dl>
  5597. <dt>Notes</dt>
  5598. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5599. </div>
  5600. </div>
  5601. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5602. </div>
  5603. </div>
  5604. </li>
  5605. <liclass="image_lists_itemdatapage-3">
  5606. <aclass="card_img">
  5607. <imgsrc="../images/cardlist/card/BT10-068_P1.png"alt="BT10-068Gankoomon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  5608. </a>
  5609. <divclass="popup">
  5610. <divclass="card_detailcard_detail_black_redmulticolor">
  5611. <divclass="card_detail_inner">
  5612. <ulclass="cardinfo_head">
  5613. <liclass="cardno">BT10-068</li>
  5614. <li>SR</li>
  5615. <liclass="cardtype">Digimon</li>
  5616. <liclass="cardlv">Lv.6</li>
  5617. <liclass="cardtypecardParallel">AlternativeArt</li>
  5618. </ul>
  5619. <divclass="card_name">Gankoomon(XAntibody)</div>
  5620. <divclass="cardinfo_top">
  5621. <divclass="card_img">
  5622. <imgsrc="../images/cardlist/card/BT10-068_P1.png"alt="BT10-068Gankoomon(XAntibody)"></div>
  5623. <divclass="cardinfo_top_body">
  5624. <dl>
  5625. <dt>Form</dt>
  5626. <dd>Mega</dd>
  5627. </dl>
  5628. <dl>
  5629. <dt>Attribute</dt>
  5630. <dd>Data</dd>
  5631. </dl>
  5632. <dl>
  5633. <dt>Type</dt>
  5634. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  5635. </dl>
  5636. <dl>
  5637. <dt>DP</dt>
  5638. <dd>12000</dl>
  5639. <dl>
  5640. <dt>PlayCost</dt>
  5641. <dd>13</dd>
  5642. </dl>
  5643. <dl>
  5644. <dt>DigivolveCost1</dt>
  5645. <dd>4fromLv.5</dd>
  5646. </dl>
  5647. <dl>
  5648. <dt>DigivolveCost2</dt>
  5649. <dd>Red</dd>
  5650. </dl>
  5651. </div>
  5652. </div>
  5653. <divclass="cardinfo_bottom">
  5654. <dl>
  5655. <dt>Effect</dt>
  5656. <dd>Digivolve: 1 from [Gankoomon]<Blocker><br>[When Digivolving] You may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying its memory cost. Then, if [Gankoomon] is in this Digimon's digivolution cards or you have a Digimon with [Sistermon] in its name in play, until the end of your opponent's turn, all of your Digimon get +2000 DP and your opponent's effects can't return them to hands or decks or reduce their DP.</dd>
  5657. </dl>
  5658. <dl>
  5659. <dt>Digivolveeffect</dt>
  5660. <dd>-</dd>
  5661. </dl>
  5662. <dl>
  5663. <dt>Securityeffect</dt>
  5664. <dd>-</dd>
  5665. </dl>
  5666. <dl>
  5667. <dt>Notes</dt>
  5668. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5669. </div>
  5670. </div>
  5671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5672. </div>
  5673. </div>
  5674. </li>
  5675. <liclass="image_lists_itemdatapage-3">
  5676. <aclass="card_img">
  5677. <imgsrc="../images/cardlist/card/BT10-069.png"alt="BT10-069DarkKnightmon(XAntibody)"></a>
  5678. <divclass="popup">
  5679. <divclass="card_detailcard_detail_black_purplemulticolor">
  5680. <divclass="card_detail_inner">
  5681. <ulclass="cardinfo_head">
  5682. <liclass="cardno">BT10-069</li>
  5683. <li>SR</li>
  5684. <liclass="cardtype">Digimon</li>
  5685. <liclass="cardlv">Lv.6</li>
  5686. </ul>
  5687. <divclass="card_name">DarkKnightmon(XAntibody)</div>
  5688. <divclass="cardinfo_top">
  5689. <divclass="card_img">
  5690. <imgsrc="../images/cardlist/card/BT10-069.png"alt="BT10-069DarkKnightmon(XAntibody)"></div>
  5691. <divclass="cardinfo_top_body">
  5692. <dl>
  5693. <dt>Form</dt>
  5694. <dd>Mega</dd>
  5695. </dl>
  5696. <dl>
  5697. <dt>Attribute</dt>
  5698. <dd>Virus</dd>
  5699. </dl>
  5700. <dl>
  5701. <dt>Type</dt>
  5702. <dd>DarkKnight/XAntibody</dd>
  5703. </dl>
  5704. <dl>
  5705. <dt>DP</dt>
  5706. <dd>12000</dl>
  5707. <dl>
  5708. <dt>PlayCost</dt>
  5709. <dd>13</dd>
  5710. </dl>
  5711. <dl>
  5712. <dt>DigivolveCost1</dt>
  5713. <dd>5fromLv.5</dd>
  5714. </dl>
  5715. <dl>
  5716. <dt>DigivolveCost2</dt>
  5717. <dd>Purple</dd>
  5718. </dl>
  5719. </div>
  5720. </div>
  5721. <divclass="cardinfo_bottom">
  5722. <dl>
  5723. <dt>Effect</dt>
  5724. <dd>Digivolve: 4 from [DarkKnightmon][When Digivolving] Return 1 black or purple non-[DarkKnightmon (X Antibody)] Digimon card from your trash to your hand. Then, if [DarkKnightmon] or [X Antibody] is in this Digimon's digivolution cards, delete 1 Tamer, and unsuspend this Digimon.<br>[On Deletion] You may play 1 [DarkKnightmon] from your trash without paying its memory cost.</dd>
  5725. </dl>
  5726. <dl>
  5727. <dt>Digivolveeffect</dt>
  5728. <dd>-</dd>
  5729. </dl>
  5730. <dl>
  5731. <dt>Securityeffect</dt>
  5732. <dd>-</dd>
  5733. </dl>
  5734. <dl>
  5735. <dt>Notes</dt>
  5736. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5737. </div>
  5738. </div>
  5739. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5740. </div>
  5741. </div>
  5742. </li>
  5743. <liclass="image_lists_itemdatapage-3">
  5744. <aclass="card_img">
  5745. <imgsrc="../images/cardlist/card/BT10-069_P1.png"alt="BT10-069DarkKnightmon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  5746. </a>
  5747. <divclass="popup">
  5748. <divclass="card_detailcard_detail_black_purplemulticolor">
  5749. <divclass="card_detail_inner">
  5750. <ulclass="cardinfo_head">
  5751. <liclass="cardno">BT10-069</li>
  5752. <li>SR</li>
  5753. <liclass="cardtype">Digimon</li>
  5754. <liclass="cardlv">Lv.6</li>
  5755. <liclass="cardtypecardParallel">AlternativeArt</li>
  5756. </ul>
  5757. <divclass="card_name">DarkKnightmon(XAntibody)</div>
  5758. <divclass="cardinfo_top">
  5759. <divclass="card_img">
  5760. <imgsrc="../images/cardlist/card/BT10-069_P1.png"alt="BT10-069DarkKnightmon(XAntibody)"></div>
  5761. <divclass="cardinfo_top_body">
  5762. <dl>
  5763. <dt>Form</dt>
  5764. <dd>Mega</dd>
  5765. </dl>
  5766. <dl>
  5767. <dt>Attribute</dt>
  5768. <dd>Virus</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>Type</dt>
  5772. <dd>DarkKnight/XAntibody</dd>
  5773. </dl>
  5774. <dl>
  5775. <dt>DP</dt>
  5776. <dd>12000</dl>
  5777. <dl>
  5778. <dt>PlayCost</dt>
  5779. <dd>13</dd>
  5780. </dl>
  5781. <dl>
  5782. <dt>DigivolveCost1</dt>
  5783. <dd>5fromLv.5</dd>
  5784. </dl>
  5785. <dl>
  5786. <dt>DigivolveCost2</dt>
  5787. <dd>Purple</dd>
  5788. </dl>
  5789. </div>
  5790. </div>
  5791. <divclass="cardinfo_bottom">
  5792. <dl>
  5793. <dt>Effect</dt>
  5794. <dd>Digivolve: 4 from [DarkKnightmon][When Digivolving] Return 1 black or purple non-[DarkKnightmon (X Antibody)] Digimon card from your trash to your hand. Then, if [DarkKnightmon] or [X Antibody] is in this Digimon's digivolution cards, delete 1 Tamer, and unsuspend this Digimon.<br>[On Deletion] You may play 1 [DarkKnightmon] from your trash without paying its memory cost.</dd>
  5795. </dl>
  5796. <dl>
  5797. <dt>Digivolveeffect</dt>
  5798. <dd>-</dd>
  5799. </dl>
  5800. <dl>
  5801. <dt>Securityeffect</dt>
  5802. <dd>-</dd>
  5803. </dl>
  5804. <dl>
  5805. <dt>Notes</dt>
  5806. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5807. </div>
  5808. </div>
  5809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5810. </div>
  5811. </div>
  5812. </li>
  5813. <liclass="image_lists_itemdatapage-3">
  5814. <aclass="card_img">
  5815. <imgsrc="../images/cardlist/card/BT10-070.png"alt="BT10-070Blastmon"></a>
  5816. <divclass="popup">
  5817. <divclass="card_detailcard_detail_black_purplemulticolor">
  5818. <divclass="card_detail_inner">
  5819. <ulclass="cardinfo_head">
  5820. <liclass="cardno">BT10-070</li>
  5821. <li>U</li>
  5822. <liclass="cardtype">Digimon</li>
  5823. <liclass="cardlv">Lv.6</li>
  5824. </ul>
  5825. <divclass="card_name">Blastmon</div>
  5826. <divclass="cardinfo_top">
  5827. <divclass="card_img">
  5828. <imgsrc="../images/cardlist/card/BT10-070.png"alt="BT10-070Blastmon"></div>
  5829. <divclass="cardinfo_top_body">
  5830. <dl>
  5831. <dt>Form</dt>
  5832. <dd>Mega</dd>
  5833. </dl>
  5834. <dl>
  5835. <dt>Attribute</dt>
  5836. <dd>Vaccine</dd>
  5837. </dl>
  5838. <dl>
  5839. <dt>Type</dt>
  5840. <dd>Mineral/BagraArmy</dd>
  5841. </dl>
  5842. <dl>
  5843. <dt>DP</dt>
  5844. <dd>13000</dl>
  5845. <dl>
  5846. <dt>PlayCost</dt>
  5847. <dd>13</dd>
  5848. </dl>
  5849. <dl>
  5850. <dt>DigivolveCost1</dt>
  5851. <dd>5fromLv.5</dd>
  5852. </dl>
  5853. <dl>
  5854. <dt>DigivolveCost2</dt>
  5855. <dd>Purple</dd>
  5856. </dl>
  5857. </div>
  5858. </div>
  5859. <divclass="cardinfo_bottom">
  5860. <dl>
  5861. <dt>Effect</dt>
  5862. <dd><Rush> (This Digimon may attack the turn it was played.)<br>[On Play] If this Digimon has 3 digivolution cards, <Blitz>. (If your opponent has 1 or more memory, this Digimon may attack.)<br>[Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, by trashing 1 of this Digimon's digivolution cards, delete 1 of your opponent's level 4 or lower Digimon.</dd>
  5863. </dl>
  5864. <dl>
  5865. <dt>Digivolveeffect</dt>
  5866. <dd>-</dd>
  5867. </dl>
  5868. <dl>
  5869. <dt>Securityeffect</dt>
  5870. <dd>-</dd>
  5871. </dl>
  5872. <dl>
  5873. <dt>Notes</dt>
  5874. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5875. </div>
  5876. </div>
  5877. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5878. </div>
  5879. </div>
  5880. </li>
  5881. <liclass="image_lists_itemdatapage-3">
  5882. <aclass="card_img">
  5883. <imgsrc="../images/cardlist/card/BT10-071.png"alt="BT10-071Gazimon"></a>
  5884. <divclass="popup">
  5885. <divclass="card_detailcard_detail_purple">
  5886. <divclass="card_detail_inner">
  5887. <ulclass="cardinfo_head">
  5888. <liclass="cardno">BT10-071</li>
  5889. <li>C</li>
  5890. <liclass="cardtype">Digimon</li>
  5891. <liclass="cardlv">Lv.3</li>
  5892. </ul>
  5893. <divclass="card_name">Gazimon</div>
  5894. <divclass="cardinfo_top">
  5895. <divclass="card_img">
  5896. <imgsrc="../images/cardlist/card/BT10-071.png"alt="BT10-071Gazimon"></div>
  5897. <divclass="cardinfo_top_body">
  5898. <dl>
  5899. <dt>Form</dt>
  5900. <dd>Rookie</dd>
  5901. </dl>
  5902. <dl>
  5903. <dt>Attribute</dt>
  5904. <dd>Virus</dd>
  5905. </dl>
  5906. <dl>
  5907. <dt>Type</dt>
  5908. <dd>Mammal</dd>
  5909. </dl>
  5910. <dl>
  5911. <dt>DP</dt>
  5912. <dd>2000</dl>
  5913. <dl>
  5914. <dt>PlayCost</dt>
  5915. <dd>3</dd>
  5916. </dl>
  5917. <dl>
  5918. <dt>DigivolveCost1</dt>
  5919. <dd>0fromLv.2</dd>
  5920. </dl>
  5921. <dl>
  5922. <dt>DigivolveCost2</dt>
  5923. <dd>-</dd>
  5924. </dl>
  5925. </div>
  5926. </div>
  5927. <divclass="cardinfo_bottom">
  5928. <dl>
  5929. <dt>Effect</dt>
  5930. <dd>-</dd>
  5931. </dl>
  5932. <dl>
  5933. <dt>Digivolveeffect</dt>
  5934. <dd>[All Turns] While there are 10 or more cards in your trash, this Digimon gains <Retaliation>. (When this Digimon is deleted in battle, delete the Digimon it battled.)</dd>
  5935. </dl>
  5936. <dl>
  5937. <dt>Securityeffect</dt>
  5938. <dd>-</dd>
  5939. </dl>
  5940. <dl>
  5941. <dt>Notes</dt>
  5942. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  5943. </div>
  5944. </div>
  5945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5946. </div>
  5947. </div>
  5948. </li>
  5949. <liclass="image_lists_itemdatapage-3">
  5950. <aclass="card_img">
  5951. <imgsrc="../images/cardlist/card/BT10-072.png"alt="BT10-072Soundbirdmon"></a>
  5952. <divclass="popup">
  5953. <divclass="card_detailcard_detail_purple">
  5954. <divclass="card_detail_inner">
  5955. <ulclass="cardinfo_head">
  5956. <liclass="cardno">BT10-072</li>
  5957. <li>C</li>
  5958. <liclass="cardtype">Digimon</li>
  5959. <liclass="cardlv">Lv.3</li>
  5960. </ul>
  5961. <divclass="card_name">Soundbirdmon</div>
  5962. <divclass="cardinfo_top">
  5963. <divclass="card_img">
  5964. <imgsrc="../images/cardlist/card/BT10-072.png"alt="BT10-072Soundbirdmon"></div>
  5965. <divclass="cardinfo_top_body">
  5966. <dl>
  5967. <dt>Form</dt>
  5968. <dd>Rookie</dd>
  5969. </dl>
  5970. <dl>
  5971. <dt>Attribute</dt>
  5972. <dd>Virus</dd>
  5973. </dl>
  5974. <dl>
  5975. <dt>Type</dt>
  5976. <dd>Avian</dd>
  5977. </dl>
  5978. <dl>
  5979. <dt>DP</dt>
  5980. <dd>1000</dl>
  5981. <dl>
  5982. <dt>PlayCost</dt>
  5983. <dd>3</dd>
  5984. </dl>
  5985. <dl>
  5986. <dt>DigivolveCost1</dt>
  5987. <dd>0fromLv.2</dd>
  5988. </dl>
  5989. <dl>
  5990. <dt>DigivolveCost2</dt>
  5991. <dd>-</dd>
  5992. </dl>
  5993. </div>
  5994. </div>
  5995. <divclass="cardinfo_bottom">
  5996. <dl>
  5997. <dt>Effect</dt>
  5998. <dd>[When Attacking] By placing 1 purple Digimon card from your hand under one of your Tamers, <Draw 1>. (Draw 1 card from your deck.)<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  5999. </dl>
  6000. <dl>
  6001. <dt>Digivolveeffect</dt>
  6002. <dd>[Opponent's Turn] When an effect trashes this digivolution card, gain 1 memory.</dd>
  6003. </dl>
  6004. <dl>
  6005. <dt>Securityeffect</dt>
  6006. <dd>-</dd>
  6007. </dl>
  6008. <dl>
  6009. <dt>Notes</dt>
  6010. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6011. </div>
  6012. </div>
  6013. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6014. </div>
  6015. </div>
  6016. </li>
  6017. <liclass="image_lists_itemdatapage-3">
  6018. <aclass="card_img">
  6019. <imgsrc="../images/cardlist/card/BT10-073.png"alt="BT10-073ChuuChuumon"></a>
  6020. <divclass="popup">
  6021. <divclass="card_detailcard_detail_purple">
  6022. <divclass="card_detail_inner">
  6023. <ulclass="cardinfo_head">
  6024. <liclass="cardno">BT10-073</li>
  6025. <li>U</li>
  6026. <liclass="cardtype">Digimon</li>
  6027. <liclass="cardlv">Lv.3</li>
  6028. </ul>
  6029. <divclass="card_name">ChuuChuumon</div>
  6030. <divclass="cardinfo_top">
  6031. <divclass="card_img">
  6032. <imgsrc="../images/cardlist/card/BT10-073.png"alt="BT10-073ChuuChuumon"></div>
  6033. <divclass="cardinfo_top_body">
  6034. <dl>
  6035. <dt>Form</dt>
  6036. <dd>Rookie</dd>
  6037. </dl>
  6038. <dl>
  6039. <dt>Attribute</dt>
  6040. <dd>Virus</dd>
  6041. </dl>
  6042. <dl>
  6043. <dt>Type</dt>
  6044. <dd>Beast/BagraArmy</dd>
  6045. </dl>
  6046. <dl>
  6047. <dt>DP</dt>
  6048. <dd>1000</dl>
  6049. <dl>
  6050. <dt>PlayCost</dt>
  6051. <dd>4</dd>
  6052. </dl>
  6053. <dl>
  6054. <dt>DigivolveCost1</dt>
  6055. <dd>0fromLv.2</dd>
  6056. </dl>
  6057. <dl>
  6058. <dt>DigivolveCost2</dt>
  6059. <dd>-</dd>
  6060. </dl>
  6061. </div>
  6062. </div>
  6063. <divclass="cardinfo_bottom">
  6064. <dl>
  6065. <dt>Effect</dt>
  6066. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 Digimon card with [Bagra Army] in its traits and 1 [Yuu Amano] among them to your hand. Place the rest at the bottom of your deck in any order.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6067. </dl>
  6068. <dl>
  6069. <dt>Digivolveeffect</dt>
  6070. <dd>[Opponent's Turn] When an effect trashes this digivolution card, gain 1 memory.</dd>
  6071. </dl>
  6072. <dl>
  6073. <dt>Securityeffect</dt>
  6074. <dd>-</dd>
  6075. </dl>
  6076. <dl>
  6077. <dt>Notes</dt>
  6078. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6079. </div>
  6080. </div>
  6081. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6082. </div>
  6083. </div>
  6084. </li>
  6085. <liclass="image_lists_itemdatapage-3">
  6086. <aclass="card_img">
  6087. <imgsrc="../images/cardlist/card/BT10-074.png"alt="BT10-074Quetzalmon"></a>
  6088. <divclass="popup">
  6089. <divclass="card_detailcard_detail_purple">
  6090. <divclass="card_detail_inner">
  6091. <ulclass="cardinfo_head">
  6092. <liclass="cardno">BT10-074</li>
  6093. <li>C</li>
  6094. <liclass="cardtype">Digimon</li>
  6095. <liclass="cardlv">Lv.4</li>
  6096. </ul>
  6097. <divclass="card_name">Quetzalmon</div>
  6098. <divclass="cardinfo_top">
  6099. <divclass="card_img">
  6100. <imgsrc="../images/cardlist/card/BT10-074.png"alt="BT10-074Quetzalmon"></div>
  6101. <divclass="cardinfo_top_body">
  6102. <dl>
  6103. <dt>Form</dt>
  6104. <dd>ArmorForm</dd>
  6105. </dl>
  6106. <dl>
  6107. <dt>Attribute</dt>
  6108. <dd>Free</dd>
  6109. </dl>
  6110. <dl>
  6111. <dt>Type</dt>
  6112. <dd>MythicalBeast</dd>
  6113. </dl>
  6114. <dl>
  6115. <dt>DP</dt>
  6116. <dd>4000</dl>
  6117. <dl>
  6118. <dt>PlayCost</dt>
  6119. <dd>4</dd>
  6120. </dl>
  6121. <dl>
  6122. <dt>DigivolveCost1</dt>
  6123. <dd>2fromLv.3</dd>
  6124. </dl>
  6125. <dl>
  6126. <dt>DigivolveCost2</dt>
  6127. <dd>-</dd>
  6128. </dl>
  6129. </div>
  6130. </div>
  6131. <divclass="cardinfo_bottom">
  6132. <dl>
  6133. <dt>Effect</dt>
  6134. <dd><Armor Purge> (When this Digimon would be deleted, you may trash the top card of this Digimon to prevent that deletion.)</dd>
  6135. </dl>
  6136. <dl>
  6137. <dt>Digivolveeffect</dt>
  6138. <dd>-</dd>
  6139. </dl>
  6140. <dl>
  6141. <dt>Securityeffect</dt>
  6142. <dd>-</dd>
  6143. </dl>
  6144. <dl>
  6145. <dt>Notes</dt>
  6146. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6147. </div>
  6148. </div>
  6149. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6150. </div>
  6151. </div>
  6152. </li>
  6153. <liclass="image_lists_itemdatapage-3">
  6154. <aclass="card_img">
  6155. <imgsrc="../images/cardlist/card/BT10-075.png"alt="BT10-075Damemon"></a>
  6156. <divclass="popup">
  6157. <divclass="card_detailcard_detail_purple">
  6158. <divclass="card_detail_inner">
  6159. <ulclass="cardinfo_head">
  6160. <liclass="cardno">BT10-075</li>
  6161. <li>U</li>
  6162. <liclass="cardtype">Digimon</li>
  6163. <liclass="cardlv">Lv.4</li>
  6164. </ul>
  6165. <divclass="card_name">Damemon</div>
  6166. <divclass="cardinfo_top">
  6167. <divclass="card_img">
  6168. <imgsrc="../images/cardlist/card/BT10-075.png"alt="BT10-075Damemon"></div>
  6169. <divclass="cardinfo_top_body">
  6170. <dl>
  6171. <dt>Form</dt>
  6172. <dd>Champion</dd>
  6173. </dl>
  6174. <dl>
  6175. <dt>Attribute</dt>
  6176. <dd>Virus</dd>
  6177. </dl>
  6178. <dl>
  6179. <dt>Type</dt>
  6180. <dd>Mutant/BagraArmy</dd>
  6181. </dl>
  6182. <dl>
  6183. <dt>DP</dt>
  6184. <dd>4000</dl>
  6185. <dl>
  6186. <dt>PlayCost</dt>
  6187. <dd>5</dd>
  6188. </dl>
  6189. <dl>
  6190. <dt>DigivolveCost1</dt>
  6191. <dd>2fromLv.3</dd>
  6192. </dl>
  6193. <dl>
  6194. <dt>DigivolveCost2</dt>
  6195. <dd>-</dd>
  6196. </dl>
  6197. </div>
  6198. </div>
  6199. <divclass="cardinfo_bottom">
  6200. <dl>
  6201. <dt>Effect</dt>
  6202. <dd>[On Play][When Digivolving] If you don't have an [Yuu Amano] in play, you may play 1 [Yuu Amano] from your hand without paying its memory cost.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6203. </dl>
  6204. <dl>
  6205. <dt>Digivolveeffect</dt>
  6206. <dd>[Opponent's Turn] When an effect trashes this digivolution card, gain 1 memory.</dd>
  6207. </dl>
  6208. <dl>
  6209. <dt>Securityeffect</dt>
  6210. <dd>-</dd>
  6211. </dl>
  6212. <dl>
  6213. <dt>Notes</dt>
  6214. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6215. </div>
  6216. </div>
  6217. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6218. </div>
  6219. </div>
  6220. </li>
  6221. <liclass="image_lists_itemdatapage-3">
  6222. <aclass="card_img">
  6223. <imgsrc="../images/cardlist/card/BT10-076.png"alt="BT10-076Troopmon"></a>
  6224. <divclass="popup">
  6225. <divclass="card_detailcard_detail_purple">
  6226. <divclass="card_detail_inner">
  6227. <ulclass="cardinfo_head">
  6228. <liclass="cardno">BT10-076</li>
  6229. <li>C</li>
  6230. <liclass="cardtype">Digimon</li>
  6231. <liclass="cardlv">Lv.4</li>
  6232. </ul>
  6233. <divclass="card_name">Troopmon</div>
  6234. <divclass="cardinfo_top">
  6235. <divclass="card_img">
  6236. <imgsrc="../images/cardlist/card/BT10-076.png"alt="BT10-076Troopmon"></div>
  6237. <divclass="cardinfo_top_body">
  6238. <dl>
  6239. <dt>Form</dt>
  6240. <dd>Champion</dd>
  6241. </dl>
  6242. <dl>
  6243. <dt>Attribute</dt>
  6244. <dd>Data</dd>
  6245. </dl>
  6246. <dl>
  6247. <dt>Type</dt>
  6248. <dd>Undead/BagraArmy</dd>
  6249. </dl>
  6250. <dl>
  6251. <dt>DP</dt>
  6252. <dd>4000</dl>
  6253. <dl>
  6254. <dt>PlayCost</dt>
  6255. <dd>5</dd>
  6256. </dl>
  6257. <dl>
  6258. <dt>DigivolveCost1</dt>
  6259. <dd>2fromLv.3</dd>
  6260. </dl>
  6261. <dl>
  6262. <dt>DigivolveCost2</dt>
  6263. <dd>-</dd>
  6264. </dl>
  6265. </div>
  6266. </div>
  6267. <divclass="cardinfo_bottom">
  6268. <dl>
  6269. <dt>Effect</dt>
  6270. <dd>[Opponent's Turn][Once Per Turn] When an opponent plays a Digimon or Tamer, by trashing 1 of this Digimon's digivolution cards, gain 1 memory.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6271. </dl>
  6272. <dl>
  6273. <dt>Digivolveeffect</dt>
  6274. <dd>[Opponent's Turn] When an effect trashes this digivolution card, gain 1 memory.</dd>
  6275. </dl>
  6276. <dl>
  6277. <dt>Securityeffect</dt>
  6278. <dd>-</dd>
  6279. </dl>
  6280. <dl>
  6281. <dt>Notes</dt>
  6282. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6283. </div>
  6284. </div>
  6285. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6286. </div>
  6287. </div>
  6288. </li>
  6289. <liclass="image_lists_itemdatapage-3">
  6290. <aclass="card_img">
  6291. <imgsrc="../images/cardlist/card/BT10-077.png"alt="BT10-077MadLeomon"></a>
  6292. <divclass="popup">
  6293. <divclass="card_detailcard_detail_purple">
  6294. <divclass="card_detail_inner">
  6295. <ulclass="cardinfo_head">
  6296. <liclass="cardno">BT10-077</li>
  6297. <li>C</li>
  6298. <liclass="cardtype">Digimon</li>
  6299. <liclass="cardlv">Lv.4</li>
  6300. </ul>
  6301. <divclass="card_name">MadLeomon</div>
  6302. <divclass="cardinfo_top">
  6303. <divclass="card_img">
  6304. <imgsrc="../images/cardlist/card/BT10-077.png"alt="BT10-077MadLeomon"></div>
  6305. <divclass="cardinfo_top_body">
  6306. <dl>
  6307. <dt>Form</dt>
  6308. <dd>Champion</dd>
  6309. </dl>
  6310. <dl>
  6311. <dt>Attribute</dt>
  6312. <dd>Virus</dd>
  6313. </dl>
  6314. <dl>
  6315. <dt>Type</dt>
  6316. <dd>Undead/BagraArmy</dd>
  6317. </dl>
  6318. <dl>
  6319. <dt>DP</dt>
  6320. <dd>4000</dl>
  6321. <dl>
  6322. <dt>PlayCost</dt>
  6323. <dd>5</dd>
  6324. </dl>
  6325. <dl>
  6326. <dt>DigivolveCost1</dt>
  6327. <dd>2fromLv.3</dd>
  6328. </dl>
  6329. <dl>
  6330. <dt>DigivolveCost2</dt>
  6331. <dd>-</dd>
  6332. </dl>
  6333. </div>
  6334. </div>
  6335. <divclass="cardinfo_bottom">
  6336. <dl>
  6337. <dt>Effect</dt>
  6338. <dd>DigiXros -2: 1 Digimon card w/[Bagra Army] in traits<br>When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.[Opponent's Turn][Once Per Turn] When an effect adds cards to your opponent's hand, by trashing 1 of this Digimon's digivolution cards, your opponent trashes cards in their hand equal to the number of cards added to their hand by the effect.<br>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  6339. </dl>
  6340. <dl>
  6341. <dt>Digivolveeffect</dt>
  6342. <dd>[Opponent's Turn] When an effect trashes this digivolution card, gain 1 memory.</dd>
  6343. </dl>
  6344. <dl>
  6345. <dt>Securityeffect</dt>
  6346. <dd>-</dd>
  6347. </dl>
  6348. <dl>
  6349. <dt>Notes</dt>
  6350. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6351. </div>
  6352. </div>
  6353. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6354. </div>
  6355. </div>
  6356. </li>
  6357. <liclass="image_lists_itemdatapage-3">
  6358. <aclass="card_img">
  6359. <imgsrc="../images/cardlist/card/BT10-078.png"alt="BT10-078GulusGammamon"></a>
  6360. <divclass="popup">
  6361. <divclass="card_detailcard_detail_purple">
  6362. <divclass="card_detail_inner">
  6363. <ulclass="cardinfo_head">
  6364. <liclass="cardno">BT10-078</li>
  6365. <li>R</li>
  6366. <liclass="cardtype">Digimon</li>
  6367. <liclass="cardlv">Lv.4</li>
  6368. </ul>
  6369. <divclass="card_name">GulusGammamon</div>
  6370. <divclass="cardinfo_top">
  6371. <divclass="card_img">
  6372. <imgsrc="../images/cardlist/card/BT10-078.png"alt="BT10-078GulusGammamon"></div>
  6373. <divclass="cardinfo_top_body">
  6374. <dl>
  6375. <dt>Form</dt>
  6376. <dd>Champion</dd>
  6377. </dl>
  6378. <dl>
  6379. <dt>Attribute</dt>
  6380. <dd>Virus</dd>
  6381. </dl>
  6382. <dl>
  6383. <dt>Type</dt>
  6384. <dd>Dragonkin</dd>
  6385. </dl>
  6386. <dl>
  6387. <dt>DP</dt>
  6388. <dd>6000</dl>
  6389. <dl>
  6390. <dt>PlayCost</dt>
  6391. <dd>6</dd>
  6392. </dl>
  6393. <dl>
  6394. <dt>DigivolveCost1</dt>
  6395. <dd>3fromLv.3</dd>
  6396. </dl>
  6397. <dl>
  6398. <dt>DigivolveCost2</dt>
  6399. <dd>-</dd>
  6400. </dl>
  6401. </div>
  6402. </div>
  6403. <divclass="cardinfo_bottom">
  6404. <dl>
  6405. <dt>Effect</dt>
  6406. <dd>Digivolve: 2 from [Gammamon][All Turns] While a card with [Gammamon] in its name is in this Digimon's digivolution cards, this Digimon gains <Retaliation>. (When this Digimon is deleted in battle, delete the Digimon it battled.)<br>[On Deletion] You may play 1 [Gammamon] from your trash suspended without paying its memory cost.</dd>
  6407. </dl>
  6408. <dl>
  6409. <dt>Digivolveeffect</dt>
  6410. <dd>-</dd>
  6411. </dl>
  6412. <dl>
  6413. <dt>Securityeffect</dt>
  6414. <dd>-</dd>
  6415. </dl>
  6416. <dl>
  6417. <dt>Notes</dt>
  6418. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6419. </div>
  6420. </div>
  6421. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6422. </div>
  6423. </div>
  6424. </li>
  6425. <liclass="image_lists_itemdatapage-3">
  6426. <aclass="card_img">
  6427. <imgsrc="../images/cardlist/card/BT10-079.png"alt="BT10-079Sandiramon"></a>
  6428. <divclass="popup">
  6429. <divclass="card_detailcard_detail_purple">
  6430. <divclass="card_detail_inner">
  6431. <ulclass="cardinfo_head">
  6432. <liclass="cardno">BT10-079</li>
  6433. <li>C</li>
  6434. <liclass="cardtype">Digimon</li>
  6435. <liclass="cardlv">Lv.5</li>
  6436. </ul>
  6437. <divclass="card_name">Sandiramon</div>
  6438. <divclass="cardinfo_top">
  6439. <divclass="card_img">
  6440. <imgsrc="../images/cardlist/card/BT10-079.png"alt="BT10-079Sandiramon"></div>
  6441. <divclass="cardinfo_top_body">
  6442. <dl>
  6443. <dt>Form</dt>
  6444. <dd>Ultimate</dd>
  6445. </dl>
  6446. <dl>
  6447. <dt>Attribute</dt>
  6448. <dd>Virus</dd>
  6449. </dl>
  6450. <dl>
  6451. <dt>Type</dt>
  6452. <dd>HolyBeast/Deva</dd>
  6453. </dl>
  6454. <dl>
  6455. <dt>DP</dt>
  6456. <dd>6000</dl>
  6457. <dl>
  6458. <dt>PlayCost</dt>
  6459. <dd>5</dd>
  6460. </dl>
  6461. <dl>
  6462. <dt>DigivolveCost1</dt>
  6463. <dd>2fromLv.4</dd>
  6464. </dl>
  6465. <dl>
  6466. <dt>DigivolveCost2</dt>
  6467. <dd>-</dd>
  6468. </dl>
  6469. </div>
  6470. </div>
  6471. <divclass="cardinfo_bottom">
  6472. <dl>
  6473. <dt>Effect</dt>
  6474. <dd>-</dd>
  6475. </dl>
  6476. <dl>
  6477. <dt>Digivolveeffect</dt>
  6478. <dd>-</dd>
  6479. </dl>
  6480. <dl>
  6481. <dt>Securityeffect</dt>
  6482. <dd>-</dd>
  6483. </dl>
  6484. <dl>
  6485. <dt>Notes</dt>
  6486. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6487. </div>
  6488. </div>
  6489. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6490. </div>
  6491. </div>
  6492. </li>
  6493. <liclass="image_lists_itemdatapage-3">
  6494. <aclass="card_img">
  6495. <imgsrc="../images/cardlist/card/BT10-080.png"alt="BT10-080SkullBaluchimon"></a>
  6496. <divclass="popup">
  6497. <divclass="card_detailcard_detail_purple">
  6498. <divclass="card_detail_inner">
  6499. <ulclass="cardinfo_head">
  6500. <liclass="cardno">BT10-080</li>
  6501. <li>U</li>
  6502. <liclass="cardtype">Digimon</li>
  6503. <liclass="cardlv">Lv.5</li>
  6504. </ul>
  6505. <divclass="card_name">SkullBaluchimon</div>
  6506. <divclass="cardinfo_top">
  6507. <divclass="card_img">
  6508. <imgsrc="../images/cardlist/card/BT10-080.png"alt="BT10-080SkullBaluchimon"></div>
  6509. <divclass="cardinfo_top_body">
  6510. <dl>
  6511. <dt>Form</dt>
  6512. <dd>Ultimate</dd>
  6513. </dl>
  6514. <dl>
  6515. <dt>Attribute</dt>
  6516. <dd>Data</dd>
  6517. </dl>
  6518. <dl>
  6519. <dt>Type</dt>
  6520. <dd>Undead/XAntibody</dd>
  6521. </dl>
  6522. <dl>
  6523. <dt>DP</dt>
  6524. <dd>7000</dl>
  6525. <dl>
  6526. <dt>PlayCost</dt>
  6527. <dd>7</dd>
  6528. </dl>
  6529. <dl>
  6530. <dt>DigivolveCost1</dt>
  6531. <dd>3fromLv.4</dd>
  6532. </dl>
  6533. <dl>
  6534. <dt>DigivolveCost2</dt>
  6535. <dd>-</dd>
  6536. </dl>
  6537. </div>
  6538. </div>
  6539. <divclass="cardinfo_bottom">
  6540. <dl>
  6541. <dt>Effect</dt>
  6542. <dd>When one of your effects trashes this card in your hand, if it's your turn, 1 of your Digimon may digivolve into 1 purple Digimon card with [Undead] or [Dark Animal] in its traits from your trash for its digivolution cost.<br>[When Digivolving] If digivolving from the trash, this Digimon gains "[On Deletion] Delete 1 of your opponent's Digimon." until the end of your opponent's turn.</dd>
  6543. </dl>
  6544. <dl>
  6545. <dt>Digivolveeffect</dt>
  6546. <dd>-</dd>
  6547. </dl>
  6548. <dl>
  6549. <dt>Securityeffect</dt>
  6550. <dd>-</dd>
  6551. </dl>
  6552. <dl>
  6553. <dt>Notes</dt>
  6554. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6555. </div>
  6556. </div>
  6557. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6558. </div>
  6559. </div>
  6560. </li>
  6561. <liclass="image_lists_itemdatapage-3">
  6562. <aclass="card_img">
  6563. <imgsrc="../images/cardlist/card/BT10-081.png"alt="BT10-081Baalmon"></a>
  6564. <divclass="popup">
  6565. <divclass="card_detailcard_detail_purple">
  6566. <divclass="card_detail_inner">
  6567. <ulclass="cardinfo_head">
  6568. <liclass="cardno">BT10-081</li>
  6569. <li>C</li>
  6570. <liclass="cardtype">Digimon</li>
  6571. <liclass="cardlv">Lv.5</li>
  6572. </ul>
  6573. <divclass="card_name">Baalmon</div>
  6574. <divclass="cardinfo_top">
  6575. <divclass="card_img">
  6576. <imgsrc="../images/cardlist/card/BT10-081.png"alt="BT10-081Baalmon"></div>
  6577. <divclass="cardinfo_top_body">
  6578. <dl>
  6579. <dt>Form</dt>
  6580. <dd>Ultimate</dd>
  6581. </dl>
  6582. <dl>
  6583. <dt>Attribute</dt>
  6584. <dd>Free</dd>
  6585. </dl>
  6586. <dl>
  6587. <dt>Type</dt>
  6588. <dd>Wizard/BagraArmy</dd>
  6589. </dl>
  6590. <dl>
  6591. <dt>DP</dt>
  6592. <dd>7000</dl>
  6593. <dl>
  6594. <dt>PlayCost</dt>
  6595. <dd>7</dd>
  6596. </dl>
  6597. <dl>
  6598. <dt>DigivolveCost1</dt>
  6599. <dd>3fromLv.4</dd>
  6600. </dl>
  6601. <dl>
  6602. <dt>DigivolveCost2</dt>
  6603. <dd>-</dd>
  6604. </dl>
  6605. </div>
  6606. </div>
  6607. <divclass="cardinfo_bottom">
  6608. <dl>
  6609. <dt>Effect</dt>
  6610. <dd>[When Attacking] You may trash up to 3 cards from the top of your deck.<br>[On Deletion] If you have 10 or more cards in your trash, you may play 1 [Beelzemon] from your trash without paying its memory cost.</dd>
  6611. </dl>
  6612. <dl>
  6613. <dt>Digivolveeffect</dt>
  6614. <dd>-</dd>
  6615. </dl>
  6616. <dl>
  6617. <dt>Securityeffect</dt>
  6618. <dd>-</dd>
  6619. </dl>
  6620. <dl>
  6621. <dt>Notes</dt>
  6622. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6623. </div>
  6624. </div>
  6625. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6626. </div>
  6627. </div>
  6628. </li>
  6629. <liclass="image_lists_itemdatapage-3">
  6630. <aclass="card_img">
  6631. <imgsrc="../images/cardlist/card/BT10-082.png"alt="BT10-082Beelzemon"></a>
  6632. <divclass="popup">
  6633. <divclass="card_detailcard_detail_purple">
  6634. <divclass="card_detail_inner">
  6635. <ulclass="cardinfo_head">
  6636. <liclass="cardno">BT10-082</li>
  6637. <li>U</li>
  6638. <liclass="cardtype">Digimon</li>
  6639. <liclass="cardlv">Lv.6</li>
  6640. </ul>
  6641. <divclass="card_name">Beelzemon</div>
  6642. <divclass="cardinfo_top">
  6643. <divclass="card_img">
  6644. <imgsrc="../images/cardlist/card/BT10-082.png"alt="BT10-082Beelzemon"></div>
  6645. <divclass="cardinfo_top_body">
  6646. <dl>
  6647. <dt>Form</dt>
  6648. <dd>Mega</dd>
  6649. </dl>
  6650. <dl>
  6651. <dt>Attribute</dt>
  6652. <dd>Virus</dd>
  6653. </dl>
  6654. <dl>
  6655. <dt>Type</dt>
  6656. <dd>DemonLord/XrosHeart</dd>
  6657. </dl>
  6658. <dl>
  6659. <dt>DP</dt>
  6660. <dd>11000</dl>
  6661. <dl>
  6662. <dt>PlayCost</dt>
  6663. <dd>11</dd>
  6664. </dl>
  6665. <dl>
  6666. <dt>DigivolveCost1</dt>
  6667. <dd>3fromLv.5</dd>
  6668. </dl>
  6669. <dl>
  6670. <dt>DigivolveCost2</dt>
  6671. <dd>-</dd>
  6672. </dl>
  6673. </div>
  6674. </div>
  6675. <divclass="cardinfo_bottom">
  6676. <dl>
  6677. <dt>Effect</dt>
  6678. <dd>Digivolve: 3 from Lv.5 w/[Xros Heart] in traits[On Play][When Digivolving] You may trash the top 3 cards of your deck. Then, for every 10 cards in your trash, delete 1 of your opponent's level 4 or lower Digimon.</dd>
  6679. </dl>
  6680. <dl>
  6681. <dt>Digivolveeffect</dt>
  6682. <dd>[End of Attack][Once Per Turn] For every 10 cards in your trash, gain 1 memory.</dd>
  6683. </dl>
  6684. <dl>
  6685. <dt>Securityeffect</dt>
  6686. <dd>-</dd>
  6687. </dl>
  6688. <dl>
  6689. <dt>Notes</dt>
  6690. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6691. </div>
  6692. </div>
  6693. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6694. </div>
  6695. </div>
  6696. </li>
  6697. <liclass="image_lists_itemdatapage-3">
  6698. <aclass="card_img">
  6699. <imgsrc="../images/cardlist/card/BT10-082_P1.png"alt="BT10-082Beelzemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6700. </a>
  6701. <divclass="popup">
  6702. <divclass="card_detailcard_detail_purple">
  6703. <divclass="card_detail_inner">
  6704. <ulclass="cardinfo_head">
  6705. <liclass="cardno">BT10-082</li>
  6706. <li>U</li>
  6707. <liclass="cardtype">Digimon</li>
  6708. <liclass="cardlv">Lv.6</li>
  6709. <liclass="cardtypecardParallel">AlternativeArt</li>
  6710. </ul>
  6711. <divclass="card_name">Beelzemon</div>
  6712. <divclass="cardinfo_top">
  6713. <divclass="card_img">
  6714. <imgsrc="../images/cardlist/card/BT10-082_P1.png"alt="BT10-082Beelzemon"></div>
  6715. <divclass="cardinfo_top_body">
  6716. <dl>
  6717. <dt>Form</dt>
  6718. <dd>Mega</dd>
  6719. </dl>
  6720. <dl>
  6721. <dt>Attribute</dt>
  6722. <dd>Virus</dd>
  6723. </dl>
  6724. <dl>
  6725. <dt>Type</dt>
  6726. <dd>DemonLord/XrosHeart</dd>
  6727. </dl>
  6728. <dl>
  6729. <dt>DP</dt>
  6730. <dd>11000</dl>
  6731. <dl>
  6732. <dt>PlayCost</dt>
  6733. <dd>11</dd>
  6734. </dl>
  6735. <dl>
  6736. <dt>DigivolveCost1</dt>
  6737. <dd>3fromLv.5</dd>
  6738. </dl>
  6739. <dl>
  6740. <dt>DigivolveCost2</dt>
  6741. <dd>-</dd>
  6742. </dl>
  6743. </div>
  6744. </div>
  6745. <divclass="cardinfo_bottom">
  6746. <dl>
  6747. <dt>Effect</dt>
  6748. <dd>Digivolve: 3 from Lv.5 w/[Xros Heart] in traits[On Play][When Digivolving] You may trash the top 3 cards of your deck. Then, for every 10 cards in your trash, delete 1 of your opponent's level 4 or lower Digimon.</dd>
  6749. </dl>
  6750. <dl>
  6751. <dt>Digivolveeffect</dt>
  6752. <dd>[End of Attack][Once Per Turn] For every 10 cards in your trash, gain 1 memory.</dd>
  6753. </dl>
  6754. <dl>
  6755. <dt>Securityeffect</dt>
  6756. <dd>-</dd>
  6757. </dl>
  6758. <dl>
  6759. <dt>Notes</dt>
  6760. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6761. </div>
  6762. </div>
  6763. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6764. </div>
  6765. </div>
  6766. </li>
  6767. <liclass="image_lists_itemdatapage-3">
  6768. <aclass="card_img">
  6769. <imgsrc="../images/cardlist/card/BT10-083.png"alt="BT10-083Minervamon"></a>
  6770. <divclass="popup">
  6771. <divclass="card_detailcard_detail_purple">
  6772. <divclass="card_detail_inner">
  6773. <ulclass="cardinfo_head">
  6774. <liclass="cardno">BT10-083</li>
  6775. <li>SR</li>
  6776. <liclass="cardtype">Digimon</li>
  6777. <liclass="cardlv">Lv.6</li>
  6778. </ul>
  6779. <divclass="card_name">Minervamon</div>
  6780. <divclass="cardinfo_top">
  6781. <divclass="card_img">
  6782. <imgsrc="../images/cardlist/card/BT10-083.png"alt="BT10-083Minervamon"></div>
  6783. <divclass="cardinfo_top_body">
  6784. <dl>
  6785. <dt>Form</dt>
  6786. <dd>Mega</dd>
  6787. </dl>
  6788. <dl>
  6789. <dt>Attribute</dt>
  6790. <dd>Virus</dd>
  6791. </dl>
  6792. <dl>
  6793. <dt>Type</dt>
  6794. <dd>Shaman/OlymposXII</dd>
  6795. </dl>
  6796. <dl>
  6797. <dt>DP</dt>
  6798. <dd>11000</dl>
  6799. <dl>
  6800. <dt>PlayCost</dt>
  6801. <dd>12</dd>
  6802. </dl>
  6803. <dl>
  6804. <dt>DigivolveCost1</dt>
  6805. <dd>3fromLv.5</dd>
  6806. </dl>
  6807. <dl>
  6808. <dt>DigivolveCost2</dt>
  6809. <dd>-</dd>
  6810. </dl>
  6811. </div>
  6812. </div>
  6813. <divclass="cardinfo_bottom">
  6814. <dl>
  6815. <dt>Effect</dt>
  6816. <dd><Retaliation> (When this Digimon is deleted in battle, delete the Digimon it battled.)<br>[Opponent's Turn] When an opponent plays a Digimon, you may play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost. Any [On Play] effects on Digimon played by this effect don't activate.<br>[On Deletion] If your opponent has 2 or fewer Digimon in play, you may play 1 purple level 5 or lower Digimon card or 1 [Mervamon] from your trash without paying its memory cost.</dd>
  6817. </dl>
  6818. <dl>
  6819. <dt>Digivolveeffect</dt>
  6820. <dd>-</dd>
  6821. </dl>
  6822. <dl>
  6823. <dt>Securityeffect</dt>
  6824. <dd>-</dd>
  6825. </dl>
  6826. <dl>
  6827. <dt>Notes</dt>
  6828. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6829. </div>
  6830. </div>
  6831. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6832. </div>
  6833. </div>
  6834. </li>
  6835. <liclass="image_lists_itemdatapage-3">
  6836. <aclass="card_img">
  6837. <imgsrc="../images/cardlist/card/BT10-083_P1.png"alt="BT10-083Minervamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6838. </a>
  6839. <divclass="popup">
  6840. <divclass="card_detailcard_detail_purple">
  6841. <divclass="card_detail_inner">
  6842. <ulclass="cardinfo_head">
  6843. <liclass="cardno">BT10-083</li>
  6844. <li>SR</li>
  6845. <liclass="cardtype">Digimon</li>
  6846. <liclass="cardlv">Lv.6</li>
  6847. <liclass="cardtypecardParallel">AlternativeArt</li>
  6848. </ul>
  6849. <divclass="card_name">Minervamon</div>
  6850. <divclass="cardinfo_top">
  6851. <divclass="card_img">
  6852. <imgsrc="../images/cardlist/card/BT10-083_P1.png"alt="BT10-083Minervamon"></div>
  6853. <divclass="cardinfo_top_body">
  6854. <dl>
  6855. <dt>Form</dt>
  6856. <dd>Mega</dd>
  6857. </dl>
  6858. <dl>
  6859. <dt>Attribute</dt>
  6860. <dd>Virus</dd>
  6861. </dl>
  6862. <dl>
  6863. <dt>Type</dt>
  6864. <dd>Shaman/OlymposXII</dd>
  6865. </dl>
  6866. <dl>
  6867. <dt>DP</dt>
  6868. <dd>11000</dl>
  6869. <dl>
  6870. <dt>PlayCost</dt>
  6871. <dd>12</dd>
  6872. </dl>
  6873. <dl>
  6874. <dt>DigivolveCost1</dt>
  6875. <dd>3fromLv.5</dd>
  6876. </dl>
  6877. <dl>
  6878. <dt>DigivolveCost2</dt>
  6879. <dd>-</dd>
  6880. </dl>
  6881. </div>
  6882. </div>
  6883. <divclass="cardinfo_bottom">
  6884. <dl>
  6885. <dt>Effect</dt>
  6886. <dd><Retaliation> (When this Digimon is deleted in battle, delete the Digimon it battled.)<br>[Opponent's Turn] When an opponent plays a Digimon, you may play 1 purple level 4 or lower Digimon card from your trash without paying its memory cost. Any [On Play] effects on Digimon played by this effect don't activate.<br>[On Deletion] If your opponent has 2 or fewer Digimon in play, you may play 1 purple level 5 or lower Digimon card or 1 [Mervamon] from your trash without paying its memory cost.</dd>
  6887. </dl>
  6888. <dl>
  6889. <dt>Digivolveeffect</dt>
  6890. <dd>-</dd>
  6891. </dl>
  6892. <dl>
  6893. <dt>Securityeffect</dt>
  6894. <dd>-</dd>
  6895. </dl>
  6896. <dl>
  6897. <dt>Notes</dt>
  6898. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6899. </div>
  6900. </div>
  6901. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6902. </div>
  6903. </div>
  6904. </li>
  6905. <liclass="image_lists_itemdatapage-3">
  6906. <aclass="card_img">
  6907. <imgsrc="../images/cardlist/card/BT10-084.png"alt="BT10-084Tactimon"></a>
  6908. <divclass="popup">
  6909. <divclass="card_detailcard_detail_purple">
  6910. <divclass="card_detail_inner">
  6911. <ulclass="cardinfo_head">
  6912. <liclass="cardno">BT10-084</li>
  6913. <li>C</li>
  6914. <liclass="cardtype">Digimon</li>
  6915. <liclass="cardlv">Lv.6</li>
  6916. </ul>
  6917. <divclass="card_name">Tactimon</div>
  6918. <divclass="cardinfo_top">
  6919. <divclass="card_img">
  6920. <imgsrc="../images/cardlist/card/BT10-084.png"alt="BT10-084Tactimon"></div>
  6921. <divclass="cardinfo_top_body">
  6922. <dl>
  6923. <dt>Form</dt>
  6924. <dd>Mega</dd>
  6925. </dl>
  6926. <dl>
  6927. <dt>Attribute</dt>
  6928. <dd>Data</dd>
  6929. </dl>
  6930. <dl>
  6931. <dt>Type</dt>
  6932. <dd>Wizard/BagraArmy</dd>
  6933. </dl>
  6934. <dl>
  6935. <dt>DP</dt>
  6936. <dd>12000</dl>
  6937. <dl>
  6938. <dt>PlayCost</dt>
  6939. <dd>13</dd>
  6940. </dl>
  6941. <dl>
  6942. <dt>DigivolveCost1</dt>
  6943. <dd>4fromLv.5</dd>
  6944. </dl>
  6945. <dl>
  6946. <dt>DigivolveCost2</dt>
  6947. <dd>-</dd>
  6948. </dl>
  6949. </div>
  6950. </div>
  6951. <divclass="cardinfo_bottom">
  6952. <dl>
  6953. <dt>Effect</dt>
  6954. <dd>[On Play] You may play 2 level 4 or lower Digimon cards with [Bagra Army] in their traits from your trash without paying their memory costs. All Digimon played by this effect gain <Blocker> until the end of your opponent's turn.<br>[Opponent's Turn] When an effect would trash one of your other Digimon's digivolution cards, you may trash this Digimon's digivolution cards instead.</dd>
  6955. </dl>
  6956. <dl>
  6957. <dt>Digivolveeffect</dt>
  6958. <dd>-</dd>
  6959. </dl>
  6960. <dl>
  6961. <dt>Securityeffect</dt>
  6962. <dd>-</dd>
  6963. </dl>
  6964. <dl>
  6965. <dt>Notes</dt>
  6966. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  6967. </div>
  6968. </div>
  6969. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6970. </div>
  6971. </div>
  6972. </li>
  6973. <liclass="image_lists_itemdatapage-3">
  6974. <aclass="card_img">
  6975. <imgsrc="../images/cardlist/card/BT10-085.png"alt="BT10-085SistermonCiel"></a>
  6976. <divclass="popup">
  6977. <divclass="card_detailcard_detail_white">
  6978. <divclass="card_detail_inner">
  6979. <ulclass="cardinfo_head">
  6980. <liclass="cardno">BT10-085</li>
  6981. <li>R</li>
  6982. <liclass="cardtype">Digimon</li>
  6983. <liclass="cardlv">Lv.4</li>
  6984. </ul>
  6985. <divclass="card_name">SistermonCiel</div>
  6986. <divclass="cardinfo_top">
  6987. <divclass="card_img">
  6988. <imgsrc="../images/cardlist/card/BT10-085.png"alt="BT10-085SistermonCiel"></div>
  6989. <divclass="cardinfo_top_body">
  6990. <dl>
  6991. <dt>Form</dt>
  6992. <dd>Champion</dd>
  6993. </dl>
  6994. <dl>
  6995. <dt>Attribute</dt>
  6996. <dd>Data</dd>
  6997. </dl>
  6998. <dl>
  6999. <dt>Type</dt>
  7000. <dd>Puppet</dd>
  7001. </dl>
  7002. <dl>
  7003. <dt>DP</dt>
  7004. <dd>5000</dl>
  7005. <dl>
  7006. <dt>PlayCost</dt>
  7007. <dd>4</dd>
  7008. </dl>
  7009. <dl>
  7010. <dt>DigivolveCost1</dt>
  7011. <dd>-</dd>
  7012. </dl>
  7013. <dl>
  7014. <dt>DigivolveCost2</dt>
  7015. <dd>-</dd>
  7016. </dl>
  7017. </div>
  7018. </div>
  7019. <divclass="cardinfo_bottom">
  7020. <dl>
  7021. <dt>Effect</dt>
  7022. <dd>[On Play] If it's your turn, 1 of your Digimon may digivolve into a Digimon card with [Royal Knight] in its traits in your hand for its digivolution cost.<br>[Your Turn][Once Per Turn] When one of your Digimon digivolves into a Digimon with [Huckmon] in its name or [Royal Knight] in its traits, gain 1 memory.</dd>
  7023. </dl>
  7024. <dl>
  7025. <dt>Digivolveeffect</dt>
  7026. <dd>-</dd>
  7027. </dl>
  7028. <dl>
  7029. <dt>Securityeffect</dt>
  7030. <dd>-</dd>
  7031. </dl>
  7032. <dl>
  7033. <dt>Notes</dt>
  7034. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7035. </div>
  7036. </div>
  7037. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7038. </div>
  7039. </div>
  7040. </li>
  7041. <liclass="image_lists_itemdatapage-3">
  7042. <aclass="card_img">
  7043. <imgsrc="../images/cardlist/card/BT10-085_P1.png"alt="BT10-085SistermonCiel"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7044. </a>
  7045. <divclass="popup">
  7046. <divclass="card_detailcard_detail_white">
  7047. <divclass="card_detail_inner">
  7048. <ulclass="cardinfo_head">
  7049. <liclass="cardno">BT10-085</li>
  7050. <li>R</li>
  7051. <liclass="cardtype">Digimon</li>
  7052. <liclass="cardlv">Lv.4</li>
  7053. <liclass="cardtypecardParallel">AlternativeArt</li>
  7054. </ul>
  7055. <divclass="card_name">SistermonCiel</div>
  7056. <divclass="cardinfo_top">
  7057. <divclass="card_img">
  7058. <imgsrc="../images/cardlist/card/BT10-085_P1.png"alt="BT10-085SistermonCiel"></div>
  7059. <divclass="cardinfo_top_body">
  7060. <dl>
  7061. <dt>Form</dt>
  7062. <dd>Champion</dd>
  7063. </dl>
  7064. <dl>
  7065. <dt>Attribute</dt>
  7066. <dd>Data</dd>
  7067. </dl>
  7068. <dl>
  7069. <dt>Type</dt>
  7070. <dd>Puppet</dd>
  7071. </dl>
  7072. <dl>
  7073. <dt>DP</dt>
  7074. <dd>5000</dl>
  7075. <dl>
  7076. <dt>PlayCost</dt>
  7077. <dd>4</dd>
  7078. </dl>
  7079. <dl>
  7080. <dt>DigivolveCost1</dt>
  7081. <dd>-</dd>
  7082. </dl>
  7083. <dl>
  7084. <dt>DigivolveCost2</dt>
  7085. <dd>-</dd>
  7086. </dl>
  7087. </div>
  7088. </div>
  7089. <divclass="cardinfo_bottom">
  7090. <dl>
  7091. <dt>Effect</dt>
  7092. <dd>[On Play] If it's your turn, 1 of your Digimon may digivolve into a Digimon card with [Royal Knight] in its traits in your hand for its digivolution cost.<br>[Your Turn][Once Per Turn] When one of your Digimon digivolves into a Digimon with [Huckmon] in its name or [Royal Knight] in its traits, gain 1 memory.</dd>
  7093. </dl>
  7094. <dl>
  7095. <dt>Digivolveeffect</dt>
  7096. <dd>-</dd>
  7097. </dl>
  7098. <dl>
  7099. <dt>Securityeffect</dt>
  7100. <dd>-</dd>
  7101. </dl>
  7102. <dl>
  7103. <dt>Notes</dt>
  7104. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7105. </div>
  7106. </div>
  7107. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7108. </div>
  7109. </div>
  7110. </li>
  7111. <liclass="image_lists_itemdatapage-3">
  7112. <aclass="card_img">
  7113. <imgsrc="../images/cardlist/card/BT10-086.png"alt="BT10-086Omnimon(XAntibody)"></a>
  7114. <divclass="popup">
  7115. <divclass="card_detailcard_detail_white">
  7116. <divclass="card_detail_inner">
  7117. <ulclass="cardinfo_head">
  7118. <liclass="cardno">BT10-086</li>
  7119. <li>SR</li>
  7120. <liclass="cardtype">Digimon</li>
  7121. <liclass="cardlv">Lv.6</li>
  7122. </ul>
  7123. <divclass="card_name">Omnimon(XAntibody)</div>
  7124. <divclass="cardinfo_top">
  7125. <divclass="card_img">
  7126. <imgsrc="../images/cardlist/card/BT10-086.png"alt="BT10-086Omnimon(XAntibody)"></div>
  7127. <divclass="cardinfo_top_body">
  7128. <dl>
  7129. <dt>Form</dt>
  7130. <dd>Mega</dd>
  7131. </dl>
  7132. <dl>
  7133. <dt>Attribute</dt>
  7134. <dd>Vaccine</dd>
  7135. </dl>
  7136. <dl>
  7137. <dt>Type</dt>
  7138. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  7139. </dl>
  7140. <dl>
  7141. <dt>DP</dt>
  7142. <dd>16000</dl>
  7143. <dl>
  7144. <dt>PlayCost</dt>
  7145. <dd>16</dd>
  7146. </dl>
  7147. <dl>
  7148. <dt>DigivolveCost1</dt>
  7149. <dd>7fromLv.6</dd>
  7150. </dl>
  7151. <dl>
  7152. <dt>DigivolveCost2</dt>
  7153. <dd>Blue</dd>
  7154. </dl>
  7155. </div>
  7156. </div>
  7157. <divclass="cardinfo_bottom">
  7158. <dl>
  7159. <dt>Effect</dt>
  7160. <dd>Digivolve: 3 from [Omnimon]When one of your Digimon with [X Antibody] in its traits would digivolve into this card, reduce the digivolution cost by 2.<br>[When Digivolving] Return all of your opponent's Digimon with the highest level to the bottom of their owners' decks in any order.<br>[When Digivolving][When Attacking][Once Per Turn] By placing 1 [X Antibody] or level 6 card from this Digimon's digivolution cards at the bottom of its owner's deck, reveal all of your opponent's security cards, and trash 1 of them. Place the rest in your opponent's security stack face down. Then, your opponent shuffles their security stack.</dd>
  7161. </dl>
  7162. <dl>
  7163. <dt>Digivolveeffect</dt>
  7164. <dd>-</dd>
  7165. </dl>
  7166. <dl>
  7167. <dt>Securityeffect</dt>
  7168. <dd>-</dd>
  7169. </dl>
  7170. <dl>
  7171. <dt>Notes</dt>
  7172. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-086'>ErrataCard</a></dd></dl>
  7173. </div>
  7174. </div>
  7175. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7176. </div>
  7177. </div>
  7178. </li>
  7179. <liclass="image_lists_itemdatapage-3">
  7180. <aclass="card_img">
  7181. <imgsrc="../images/cardlist/card/BT10-086_P1.png"alt="BT10-086Omnimon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7182. </a>
  7183. <divclass="popup">
  7184. <divclass="card_detailcard_detail_white">
  7185. <divclass="card_detail_inner">
  7186. <ulclass="cardinfo_head">
  7187. <liclass="cardno">BT10-086</li>
  7188. <li>SR</li>
  7189. <liclass="cardtype">Digimon</li>
  7190. <liclass="cardlv">Lv.6</li>
  7191. <liclass="cardtypecardParallel">AlternativeArt</li>
  7192. </ul>
  7193. <divclass="card_name">Omnimon(XAntibody)</div>
  7194. <divclass="cardinfo_top">
  7195. <divclass="card_img">
  7196. <imgsrc="../images/cardlist/card/BT10-086_P1.png"alt="BT10-086Omnimon(XAntibody)"></div>
  7197. <divclass="cardinfo_top_body">
  7198. <dl>
  7199. <dt>Form</dt>
  7200. <dd>Mega</dd>
  7201. </dl>
  7202. <dl>
  7203. <dt>Attribute</dt>
  7204. <dd>Vaccine</dd>
  7205. </dl>
  7206. <dl>
  7207. <dt>Type</dt>
  7208. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  7209. </dl>
  7210. <dl>
  7211. <dt>DP</dt>
  7212. <dd>16000</dl>
  7213. <dl>
  7214. <dt>PlayCost</dt>
  7215. <dd>16</dd>
  7216. </dl>
  7217. <dl>
  7218. <dt>DigivolveCost1</dt>
  7219. <dd>7fromLv.6</dd>
  7220. </dl>
  7221. <dl>
  7222. <dt>DigivolveCost2</dt>
  7223. <dd>Blue</dd>
  7224. </dl>
  7225. </div>
  7226. </div>
  7227. <divclass="cardinfo_bottom">
  7228. <dl>
  7229. <dt>Effect</dt>
  7230. <dd>Digivolve: 3 from [Omnimon]When one of your Digimon with [X Antibody] in its traits would digivolve into this card, reduce the digivolution cost by 2.<br>[When Digivolving] Return all of your opponent's Digimon with the highest level to the bottom of their owners' decks in any order.<br>[When Digivolving][When Attacking][Once Per Turn] By placing 1 [X Antibody] or level 6 card from this Digimon's digivolution cards at the bottom of its owner's deck, reveal all of your opponent's security cards, and trash 1 of them. Place the rest in your opponent's security stack face down. Then, your opponent shuffles their security stack.</dd>
  7231. </dl>
  7232. <dl>
  7233. <dt>Digivolveeffect</dt>
  7234. <dd>-</dd>
  7235. </dl>
  7236. <dl>
  7237. <dt>Securityeffect</dt>
  7238. <dd>-</dd>
  7239. </dl>
  7240. <dl>
  7241. <dt>Notes</dt>
  7242. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-086'>ErrataCard</a></dd></dl>
  7243. </div>
  7244. </div>
  7245. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7246. </div>
  7247. </div>
  7248. </li>
  7249. <liclass="image_lists_itemdatapage-3">
  7250. <aclass="card_img">
  7251. <imgsrc="../images/cardlist/card/BT10-111.png"alt="BT10-111Shoutmon(KingVersion)"></a>
  7252. <divclass="popup">
  7253. <divclass="card_detailcard_detail_red">
  7254. <divclass="card_detail_inner">
  7255. <ulclass="cardinfo_head">
  7256. <liclass="cardno">BT10-111</li>
  7257. <li>SEC</li>
  7258. <liclass="cardtype">Digimon</li>
  7259. <liclass="cardlv">Lv.3</li>
  7260. </ul>
  7261. <divclass="card_name">Shoutmon(KingVersion)</div>
  7262. <divclass="cardinfo_top">
  7263. <divclass="card_img">
  7264. <imgsrc="../images/cardlist/card/BT10-111.png"alt="BT10-111Shoutmon(KingVersion)"></div>
  7265. <divclass="cardinfo_top_body">
  7266. <dl>
  7267. <dt>Form</dt>
  7268. <dd>Champion</dd>
  7269. </dl>
  7270. <dl>
  7271. <dt>Attribute</dt>
  7272. <dd>Data</dd>
  7273. </dl>
  7274. <dl>
  7275. <dt>Type</dt>
  7276. <dd>MiniDragon/XrosHeart</dd>
  7277. </dl>
  7278. <dl>
  7279. <dt>DP</dt>
  7280. <dd>4000</dl>
  7281. <dl>
  7282. <dt>PlayCost</dt>
  7283. <dd>5</dd>
  7284. </dl>
  7285. <dl>
  7286. <dt>DigivolveCost1</dt>
  7287. <dd>2fromLv.3</dd>
  7288. </dl>
  7289. <dl>
  7290. <dt>DigivolveCost2</dt>
  7291. <dd>-</dd>
  7292. </dl>
  7293. </div>
  7294. </div>
  7295. <divclass="cardinfo_bottom">
  7296. <dl>
  7297. <dt>Effect</dt>
  7298. <dd>DigiXros -2: 1 Digimon card w/[Xros Heart] in traits <br>When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.This card/Digimon is also treated as if its name is [Shoutmon].<br>[On Play] Return 1 card with a DigiXros requirement from your trash to your hand. When DigiXrosing this turn, you may use this Digimon in place of one of the DigiXros requirements.<br><Material Save 1> (When this Digimon is deleted, you may place 1 card in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)</dd>
  7299. </dl>
  7300. <dl>
  7301. <dt>Digivolveeffect</dt>
  7302. <dd>[Your Turn] While this Digimon has [Shoutmon] in its name, it gets +2000 DP.</dd>
  7303. </dl>
  7304. <dl>
  7305. <dt>Securityeffect</dt>
  7306. <dd>-</dd>
  7307. </dl>
  7308. <dl>
  7309. <dt>Notes</dt>
  7310. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7311. </div>
  7312. </div>
  7313. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7314. </div>
  7315. </div>
  7316. </li>
  7317. <liclass="image_lists_itemdatapage-3">
  7318. <aclass="card_img">
  7319. <imgsrc="../images/cardlist/card/BT10-111_P1.png"alt="BT10-111Shoutmon(KingVersion)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  7320. </a>
  7321. <divclass="popup">
  7322. <divclass="card_detailcard_detail_red">
  7323. <divclass="card_detail_inner">
  7324. <ulclass="cardinfo_head">
  7325. <liclass="cardno">BT10-111</li>
  7326. <li>SEC</li>
  7327. <liclass="cardtype">Digimon</li>
  7328. <liclass="cardlv">Lv.3</li>
  7329. <liclass="cardtypecardParallel">AlternativeArt</li>
  7330. </ul>
  7331. <divclass="card_name">Shoutmon(KingVersion)</div>
  7332. <divclass="cardinfo_top">
  7333. <divclass="card_img">
  7334. <imgsrc="../images/cardlist/card/BT10-111_P1.png"alt="BT10-111Shoutmon(KingVersion)"></div>
  7335. <divclass="cardinfo_top_body">
  7336. <dl>
  7337. <dt>Form</dt>
  7338. <dd>Champion</dd>
  7339. </dl>
  7340. <dl>
  7341. <dt>Attribute</dt>
  7342. <dd>Data</dd>
  7343. </dl>
  7344. <dl>
  7345. <dt>Type</dt>
  7346. <dd>MiniDragon/XrosHeart</dd>
  7347. </dl>
  7348. <dl>
  7349. <dt>DP</dt>
  7350. <dd>4000</dl>
  7351. <dl>
  7352. <dt>PlayCost</dt>
  7353. <dd>5</dd>
  7354. </dl>
  7355. <dl>
  7356. <dt>DigivolveCost1</dt>
  7357. <dd>2fromLv.3</dd>
  7358. </dl>
  7359. <dl>
  7360. <dt>DigivolveCost2</dt>
  7361. <dd>-</dd>
  7362. </dl>
  7363. </div>
  7364. </div>
  7365. <divclass="cardinfo_bottom">
  7366. <dl>
  7367. <dt>Effect</dt>
  7368. <dd>DigiXros -2: 1 Digimon card w/[Xros Heart] in traits <br>When you would play this card, you may place specified cards from your hand/battle area under it. Each placed card reduces the play cost.This card/Digimon is also treated as if its name is [Shoutmon].<br>[On Play] Return 1 card with a DigiXros requirement from your trash to your hand. When DigiXrosing this turn, you may use this Digimon in place of one of the DigiXros requirements.<br><Material Save 1> (When this Digimon is deleted, you may place 1 card in this Digimon's DigiXros conditions from this Digimon's digivolution cards under 1 of your Tamers.)</dd>
  7369. </dl>
  7370. <dl>
  7371. <dt>Digivolveeffect</dt>
  7372. <dd>[Your Turn] While this Digimon has [Shoutmon] in its name, it gets +2000 DP.</dd>
  7373. </dl>
  7374. <dl>
  7375. <dt>Securityeffect</dt>
  7376. <dd>-</dd>
  7377. </dl>
  7378. <dl>
  7379. <dt>Notes</dt>
  7380. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7381. </div>
  7382. </div>
  7383. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7384. </div>
  7385. </div>
  7386. </li>
  7387. <liclass="image_lists_itemdatapage-3">
  7388. <aclass="card_img">
  7389. <imgsrc="../images/cardlist/card/BT10-112.png"alt="BT10-112JesmonGX"></a>
  7390. <divclass="popup">
  7391. <divclass="card_detailcard_detail_red_blackmulticolor">
  7392. <divclass="card_detail_inner">
  7393. <ulclass="cardinfo_head">
  7394. <liclass="cardno">BT10-112</li>
  7395. <li>SEC</li>
  7396. <liclass="cardtype">Digimon</li>
  7397. <liclass="cardlv">Lv.6</li>
  7398. </ul>
  7399. <divclass="card_name">JesmonGX</div>
  7400. <divclass="cardinfo_top">
  7401. <divclass="card_img">
  7402. <imgsrc="../images/cardlist/card/BT10-112.png"alt="BT10-112JesmonGX"></div>
  7403. <divclass="cardinfo_top_body">
  7404. <dl>
  7405. <dt>Form</dt>
  7406. <dd>Mega</dd>
  7407. </dl>
  7408. <dl>
  7409. <dt>Attribute</dt>
  7410. <dd>Data</dd>
  7411. </dl>
  7412. <dl>
  7413. <dt>Type</dt>
  7414. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  7415. </dl>
  7416. <dl>
  7417. <dt>DP</dt>
  7418. <dd>15000</dl>
  7419. <dl>
  7420. <dt>PlayCost</dt>
  7421. <dd>15</dd>
  7422. </dl>
  7423. <dl>
  7424. <dt>DigivolveCost1</dt>
  7425. <dd>5fromLv.6</dd>
  7426. </dl>
  7427. <dl>
  7428. <dt>DigivolveCost2</dt>
  7429. <dd>Black</dd>
  7430. </dl>
  7431. </div>
  7432. </div>
  7433. <divclass="cardinfo_bottom">
  7434. <dl>
  7435. <dt>Effect</dt>
  7436. <dd>Digivolve: 5 from Lv.6 w/[Royal Knight] in traits[When Digivolving] You may place 1 card with [Royal Knight] in its traits and a play cost of 13 or less from your hand or trash under this Digimon as its bottom digivolution card. Activate 1 of that Digimon's [When Digivolving] effects as an effect of this Digimon. Then, <Blitz>.<br>[All Turns] While a card with [Royal Knight] in its traits is in this Digimon's digivolution cards, this Digimon gains <Piercing> and <Blocker>, and gains <Security Attack +1> for each card with [Royal Knights] in its traits in this Digimon's digivolution cards.</dd>
  7437. </dl>
  7438. <dl>
  7439. <dt>Digivolveeffect</dt>
  7440. <dd>-</dd>
  7441. </dl>
  7442. <dl>
  7443. <dt>Securityeffect</dt>
  7444. <dd>-</dd>
  7445. </dl>
  7446. <dl>
  7447. <dt>Notes</dt>
  7448. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7449. </div>
  7450. </div>
  7451. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7452. </div>
  7453. </div>
  7454. </li>
  7455. <liclass="image_lists_itemdatapage-3">
  7456. <aclass="card_img">
  7457. <imgsrc="../images/cardlist/card/BT10-112_P1.png"alt="BT10-112JesmonGX"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7458. </a>
  7459. <divclass="popup">
  7460. <divclass="card_detailcard_detail_red_blackmulticolor">
  7461. <divclass="card_detail_inner">
  7462. <ulclass="cardinfo_head">
  7463. <liclass="cardno">BT10-112</li>
  7464. <li>SEC</li>
  7465. <liclass="cardtype">Digimon</li>
  7466. <liclass="cardlv">Lv.6</li>
  7467. <liclass="cardtypecardParallel">AlternativeArt</li>
  7468. </ul>
  7469. <divclass="card_name">JesmonGX</div>
  7470. <divclass="cardinfo_top">
  7471. <divclass="card_img">
  7472. <imgsrc="../images/cardlist/card/BT10-112_P1.png"alt="BT10-112JesmonGX"></div>
  7473. <divclass="cardinfo_top_body">
  7474. <dl>
  7475. <dt>Form</dt>
  7476. <dd>Mega</dd>
  7477. </dl>
  7478. <dl>
  7479. <dt>Attribute</dt>
  7480. <dd>Data</dd>
  7481. </dl>
  7482. <dl>
  7483. <dt>Type</dt>
  7484. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  7485. </dl>
  7486. <dl>
  7487. <dt>DP</dt>
  7488. <dd>15000</dl>
  7489. <dl>
  7490. <dt>PlayCost</dt>
  7491. <dd>15</dd>
  7492. </dl>
  7493. <dl>
  7494. <dt>DigivolveCost1</dt>
  7495. <dd>5fromLv.6</dd>
  7496. </dl>
  7497. <dl>
  7498. <dt>DigivolveCost2</dt>
  7499. <dd>Black</dd>
  7500. </dl>
  7501. </div>
  7502. </div>
  7503. <divclass="cardinfo_bottom">
  7504. <dl>
  7505. <dt>Effect</dt>
  7506. <dd>Digivolve: 5 from Lv.6 w/[Royal Knight] in traits[When Digivolving] You may place 1 card with [Royal Knight] in its traits and a play cost of 13 or less from your hand or trash under this Digimon as its bottom digivolution card. Activate 1 of that Digimon's [When Digivolving] effects as an effect of this Digimon. Then, <Blitz>.<br>[All Turns] While a card with [Royal Knight] in its traits is in this Digimon's digivolution cards, this Digimon gains <Piercing> and <Blocker>, and gains <Security Attack +1> for each card with [Royal Knights] in its traits in this Digimon's digivolution cards.</dd>
  7507. </dl>
  7508. <dl>
  7509. <dt>Digivolveeffect</dt>
  7510. <dd>-</dd>
  7511. </dl>
  7512. <dl>
  7513. <dt>Securityeffect</dt>
  7514. <dd>-</dd>
  7515. </dl>
  7516. <dl>
  7517. <dt>Notes</dt>
  7518. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7519. </div>
  7520. </div>
  7521. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7522. </div>
  7523. </div>
  7524. </li>
  7525. <liclass="image_lists_itemdatapage-3">
  7526. <aclass="card_img">
  7527. <imgsrc="../images/cardlist/card/BT6-111.png"alt="BT6-111Alphamon"></a>
  7528. <divclass="popup">
  7529. <divclass="card_detailcard_detail_black">
  7530. <divclass="card_detail_inner">
  7531. <ulclass="cardinfo_head">
  7532. <liclass="cardno">BT6-111</li>
  7533. <li>SEC</li>
  7534. <liclass="cardtype">Digimon</li>
  7535. <liclass="cardlv">Lv.6</li>
  7536. </ul>
  7537. <divclass="card_name">Alphamon</div>
  7538. <divclass="cardinfo_top">
  7539. <divclass="card_img">
  7540. <imgsrc="../images/cardlist/card/BT6-111.png"alt="BT6-111Alphamon"></div>
  7541. <divclass="cardinfo_top_body">
  7542. <dl>
  7543. <dt>Form</dt>
  7544. <dd>Mega</dd>
  7545. </dl>
  7546. <dl>
  7547. <dt>Attribute</dt>
  7548. <dd>Vaccine</dd>
  7549. </dl>
  7550. <dl>
  7551. <dt>Type</dt>
  7552. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  7553. </dl>
  7554. <dl>
  7555. <dt>DP</dt>
  7556. <dd>11000</dl>
  7557. <dl>
  7558. <dt>PlayCost</dt>
  7559. <dd>13</dd>
  7560. </dl>
  7561. <dl>
  7562. <dt>DigivolveCost1</dt>
  7563. <dd>3fromLv.5</dd>
  7564. </dl>
  7565. <dl>
  7566. <dt>DigivolveCost2</dt>
  7567. <dd>-</dd>
  7568. </dl>
  7569. </div>
  7570. </div>
  7571. <divclass="cardinfo_bottom">
  7572. <dl>
  7573. <dt>Effect</dt>
  7574. <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.<br>[When Attacking] You may pay up to 5 memory. If you do, this Digimon gets +1000 DP for the turn for each memory paid.<br>[End of Attack] Gain 2 memory.</dd>
  7575. </dl>
  7576. <dl>
  7577. <dt>Digivolveeffect</dt>
  7578. <dd>-</dd>
  7579. </dl>
  7580. <dl>
  7581. <dt>Securityeffect</dt>
  7582. <dd>-</dd>
  7583. </dl>
  7584. <dl>
  7585. <dt>Notes</dt>
  7586. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7587. </div>
  7588. </div>
  7589. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7590. </div>
  7591. </div>
  7592. </li>
  7593. <liclass="image_lists_itemdatapage-3">
  7594. <aclass="card_img">
  7595. <imgsrc="../images/cardlist/card/BT10-087.png"alt="BT10-087TaikiKudo"></a>
  7596. <divclass="popup">
  7597. <divclass="card_detailcard_detail_red">
  7598. <divclass="card_detail_inner">
  7599. <ulclass="cardinfo_head">
  7600. <liclass="cardno">BT10-087</li>
  7601. <li>R</li>
  7602. <liclass="cardtype">Tamer</li>
  7603. </ul>
  7604. <divclass="card_name">TaikiKudo</div>
  7605. <divclass="cardinfo_top">
  7606. <divclass="card_img">
  7607. <imgsrc="../images/cardlist/card/BT10-087.png"alt="BT10-087TaikiKudo"></div>
  7608. <divclass="cardinfo_top_body">
  7609. <dl>
  7610. <dt>Form</dt>
  7611. <dd>-</dd>
  7612. </dl>
  7613. <dl>
  7614. <dt>Attribute</dt>
  7615. <dd>-</dd>
  7616. </dl>
  7617. <dl>
  7618. <dt>Type</dt>
  7619. <dd>General/XrosHeart</dd>
  7620. </dl>
  7621. <dl>
  7622. <dt>DP</dt>
  7623. <dd>-</dl>
  7624. <dl>
  7625. <dt>PlayCost</dt>
  7626. <dd>3</dd>
  7627. </dl>
  7628. <dl>
  7629. <dt>DigivolveCost1</dt>
  7630. <dd>-</dd>
  7631. </dl>
  7632. <dl>
  7633. <dt>DigivolveCost2</dt>
  7634. <dd>-</dd>
  7635. </dl>
  7636. </div>
  7637. </div>
  7638. <divclass="cardinfo_bottom">
  7639. <dl>
  7640. <dt>Effect</dt>
  7641. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Xros Heart] in its traits among them to your hand, and place 1 Digimon card with [Xros Heart] in its traits among them under this Tamer. Place the rest at the bottom of your deck in any order.<br>[Your Turn] When you play 1 Digimon with DigiXros requirements, by suspending this Tamer, you may place cards from under one of your Tamers as digivolution cards for a DigiXros.</dd>
  7642. </dl>
  7643. <dl>
  7644. <dt>Digivolveeffect</dt>
  7645. <dd>-</dd>
  7646. </dl>
  7647. <dl>
  7648. <dt>Securityeffect</dt>
  7649. <dd>[Security] Play this card without paying its memory cost.</dd>
  7650. </dl>
  7651. <dl>
  7652. <dt>Notes</dt>
  7653. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7654. </div>
  7655. </div>
  7656. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7657. </div>
  7658. </div>
  7659. </li>
  7660. <liclass="image_lists_itemdatapage-3">
  7661. <aclass="card_img">
  7662. <imgsrc="../images/cardlist/card/BT10-087_P1.png"alt="BT10-087TaikiKudo"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  7663. </a>
  7664. <divclass="popup">
  7665. <divclass="card_detailcard_detail_red">
  7666. <divclass="card_detail_inner">
  7667. <ulclass="cardinfo_head">
  7668. <liclass="cardno">BT10-087</li>
  7669. <li>R</li>
  7670. <liclass="cardtype">Tamer</li>
  7671. <liclass="cardtypecardParallel">AlternativeArt</li>
  7672. </ul>
  7673. <divclass="card_name">TaikiKudo</div>
  7674. <divclass="cardinfo_top">
  7675. <divclass="card_img">
  7676. <imgsrc="../images/cardlist/card/BT10-087_P1.png"alt="BT10-087TaikiKudo"></div>
  7677. <divclass="cardinfo_top_body">
  7678. <dl>
  7679. <dt>Form</dt>
  7680. <dd>-</dd>
  7681. </dl>
  7682. <dl>
  7683. <dt>Attribute</dt>
  7684. <dd>-</dd>
  7685. </dl>
  7686. <dl>
  7687. <dt>Type</dt>
  7688. <dd>General/XrosHeart</dd>
  7689. </dl>
  7690. <dl>
  7691. <dt>DP</dt>
  7692. <dd>-</dl>
  7693. <dl>
  7694. <dt>PlayCost</dt>
  7695. <dd>3</dd>
  7696. </dl>
  7697. <dl>
  7698. <dt>DigivolveCost1</dt>
  7699. <dd>-</dd>
  7700. </dl>
  7701. <dl>
  7702. <dt>DigivolveCost2</dt>
  7703. <dd>-</dd>
  7704. </dl>
  7705. </div>
  7706. </div>
  7707. <divclass="cardinfo_bottom">
  7708. <dl>
  7709. <dt>Effect</dt>
  7710. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Xros Heart] in its traits among them to your hand, and place 1 Digimon card with [Xros Heart] in its traits among them under this Tamer. Place the rest at the bottom of your deck in any order.<br>[Your Turn] When you play 1 Digimon with DigiXros requirements, by suspending this Tamer, you may place cards from under one of your Tamers as digivolution cards for a DigiXros.</dd>
  7711. </dl>
  7712. <dl>
  7713. <dt>Digivolveeffect</dt>
  7714. <dd>-</dd>
  7715. </dl>
  7716. <dl>
  7717. <dt>Securityeffect</dt>
  7718. <dd>[Security] Play this card without paying its memory cost.</dd>
  7719. </dl>
  7720. <dl>
  7721. <dt>Notes</dt>
  7722. <dd>BOOSTERXrosEncounter[BT10]BoxToppers</dd></dl>
  7723. </div>
  7724. </div>
  7725. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7726. </div>
  7727. </div>
  7728. </li>
  7729. <liclass="image_lists_itemdatapage-3">
  7730. <aclass="card_img">
  7731. <imgsrc="../images/cardlist/card/BT10-088.png"alt="BT10-088KirihaAonuma"></a>
  7732. <divclass="popup">
  7733. <divclass="card_detailcard_detail_blue">
  7734. <divclass="card_detail_inner">
  7735. <ulclass="cardinfo_head">
  7736. <liclass="cardno">BT10-088</li>
  7737. <li>R</li>
  7738. <liclass="cardtype">Tamer</li>
  7739. </ul>
  7740. <divclass="card_name">KirihaAonuma</div>
  7741. <divclass="cardinfo_top">
  7742. <divclass="card_img">
  7743. <imgsrc="../images/cardlist/card/BT10-088.png"alt="BT10-088KirihaAonuma"></div>
  7744. <divclass="cardinfo_top_body">
  7745. <dl>
  7746. <dt>Form</dt>
  7747. <dd>-</dd>
  7748. </dl>
  7749. <dl>
  7750. <dt>Attribute</dt>
  7751. <dd>-</dd>
  7752. </dl>
  7753. <dl>
  7754. <dt>Type</dt>
  7755. <dd>General/BlueFlare</dd>
  7756. </dl>
  7757. <dl>
  7758. <dt>DP</dt>
  7759. <dd>-</dl>
  7760. <dl>
  7761. <dt>PlayCost</dt>
  7762. <dd>4</dd>
  7763. </dl>
  7764. <dl>
  7765. <dt>DigivolveCost1</dt>
  7766. <dd>-</dd>
  7767. </dl>
  7768. <dl>
  7769. <dt>DigivolveCost2</dt>
  7770. <dd>-</dd>
  7771. </dl>
  7772. </div>
  7773. </div>
  7774. <divclass="cardinfo_bottom">
  7775. <dl>
  7776. <dt>Effect</dt>
  7777. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.<br>[Your Turn] When you play 1 Digimon with DigiXros requirements, by suspending this Tamer, you may place cards from under one of your Tamers as digivolution cards for a DigiXros.</dd>
  7778. </dl>
  7779. <dl>
  7780. <dt>Digivolveeffect</dt>
  7781. <dd>-</dd>
  7782. </dl>
  7783. <dl>
  7784. <dt>Securityeffect</dt>
  7785. <dd>[Security] Play this card without paying its memory cost.</dd>
  7786. </dl>
  7787. <dl>
  7788. <dt>Notes</dt>
  7789. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7790. </div>
  7791. </div>
  7792. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7793. </div>
  7794. </div>
  7795. </li>
  7796. <liclass="image_lists_itemdatapage-3">
  7797. <aclass="card_img">
  7798. <imgsrc="../images/cardlist/card/BT10-088_P1.png"alt="BT10-088KirihaAonuma"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  7799. </a>
  7800. <divclass="popup">
  7801. <divclass="card_detailcard_detail_blue">
  7802. <divclass="card_detail_inner">
  7803. <ulclass="cardinfo_head">
  7804. <liclass="cardno">BT10-088</li>
  7805. <li>R</li>
  7806. <liclass="cardtype">Tamer</li>
  7807. <liclass="cardtypecardParallel">AlternativeArt</li>
  7808. </ul>
  7809. <divclass="card_name">KirihaAonuma</div>
  7810. <divclass="cardinfo_top">
  7811. <divclass="card_img">
  7812. <imgsrc="../images/cardlist/card/BT10-088_P1.png"alt="BT10-088KirihaAonuma"></div>
  7813. <divclass="cardinfo_top_body">
  7814. <dl>
  7815. <dt>Form</dt>
  7816. <dd>-</dd>
  7817. </dl>
  7818. <dl>
  7819. <dt>Attribute</dt>
  7820. <dd>-</dd>
  7821. </dl>
  7822. <dl>
  7823. <dt>Type</dt>
  7824. <dd>General/BlueFlare</dd>
  7825. </dl>
  7826. <dl>
  7827. <dt>DP</dt>
  7828. <dd>-</dl>
  7829. <dl>
  7830. <dt>PlayCost</dt>
  7831. <dd>4</dd>
  7832. </dl>
  7833. <dl>
  7834. <dt>DigivolveCost1</dt>
  7835. <dd>-</dd>
  7836. </dl>
  7837. <dl>
  7838. <dt>DigivolveCost2</dt>
  7839. <dd>-</dd>
  7840. </dl>
  7841. </div>
  7842. </div>
  7843. <divclass="cardinfo_bottom">
  7844. <dl>
  7845. <dt>Effect</dt>
  7846. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.<br>[Your Turn] When you play 1 Digimon with DigiXros requirements, by suspending this Tamer, you may place cards from under one of your Tamers as digivolution cards for a DigiXros.</dd>
  7847. </dl>
  7848. <dl>
  7849. <dt>Digivolveeffect</dt>
  7850. <dd>-</dd>
  7851. </dl>
  7852. <dl>
  7853. <dt>Securityeffect</dt>
  7854. <dd>[Security] Play this card without paying its memory cost.</dd>
  7855. </dl>
  7856. <dl>
  7857. <dt>Notes</dt>
  7858. <dd>BOOSTERXrosEncounter[BT10]BoxToppers</dd></dl>
  7859. </div>
  7860. </div>
  7861. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7862. </div>
  7863. </div>
  7864. </li>
  7865. <liclass="image_lists_itemdatapage-3">
  7866. <aclass="card_img">
  7867. <imgsrc="../images/cardlist/card/BT10-089.png"alt="BT10-089AkariHinomoto"></a>
  7868. <divclass="popup">
  7869. <divclass="card_detailcard_detail_yellow">
  7870. <divclass="card_detail_inner">
  7871. <ulclass="cardinfo_head">
  7872. <liclass="cardno">BT10-089</li>
  7873. <li>R</li>
  7874. <liclass="cardtype">Tamer</li>
  7875. </ul>
  7876. <divclass="card_name">AkariHinomoto</div>
  7877. <divclass="cardinfo_top">
  7878. <divclass="card_img">
  7879. <imgsrc="../images/cardlist/card/BT10-089.png"alt="BT10-089AkariHinomoto"></div>
  7880. <divclass="cardinfo_top_body">
  7881. <dl>
  7882. <dt>Form</dt>
  7883. <dd>-</dd>
  7884. </dl>
  7885. <dl>
  7886. <dt>Attribute</dt>
  7887. <dd>-</dd>
  7888. </dl>
  7889. <dl>
  7890. <dt>Type</dt>
  7891. <dd>XrosHeart</dd>
  7892. </dl>
  7893. <dl>
  7894. <dt>DP</dt>
  7895. <dd>-</dl>
  7896. <dl>
  7897. <dt>PlayCost</dt>
  7898. <dd>3</dd>
  7899. </dl>
  7900. <dl>
  7901. <dt>DigivolveCost1</dt>
  7902. <dd>-</dd>
  7903. </dl>
  7904. <dl>
  7905. <dt>DigivolveCost2</dt>
  7906. <dd>-</dd>
  7907. </dl>
  7908. </div>
  7909. </div>
  7910. <divclass="cardinfo_bottom">
  7911. <dl>
  7912. <dt>Effect</dt>
  7913. <dd>[On Play] You may play 1 [Dorulumon] from your hand or from under one of your Tamers without paying its memory cost.<br>[Your Turn] When you play a Digimon with [Xros Heart] in its traits, by suspending this Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7914. </dl>
  7915. <dl>
  7916. <dt>Digivolveeffect</dt>
  7917. <dd>-</dd>
  7918. </dl>
  7919. <dl>
  7920. <dt>Securityeffect</dt>
  7921. <dd>[Security] Play this card without paying its memory cost.</dd>
  7922. </dl>
  7923. <dl>
  7924. <dt>Notes</dt>
  7925. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  7926. </div>
  7927. </div>
  7928. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7929. </div>
  7930. </div>
  7931. </li>
  7932. <liclass="image_lists_itemdatapage-3">
  7933. <aclass="card_img">
  7934. <imgsrc="../images/cardlist/card/BT10-089_P1.png"alt="BT10-089AkariHinomoto"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  7935. </a>
  7936. <divclass="popup">
  7937. <divclass="card_detailcard_detail_yellow">
  7938. <divclass="card_detail_inner">
  7939. <ulclass="cardinfo_head">
  7940. <liclass="cardno">BT10-089</li>
  7941. <li>R</li>
  7942. <liclass="cardtype">Tamer</li>
  7943. <liclass="cardtypecardParallel">AlternativeArt</li>
  7944. </ul>
  7945. <divclass="card_name">AkariHinomoto</div>
  7946. <divclass="cardinfo_top">
  7947. <divclass="card_img">
  7948. <imgsrc="../images/cardlist/card/BT10-089_P1.png"alt="BT10-089AkariHinomoto"></div>
  7949. <divclass="cardinfo_top_body">
  7950. <dl>
  7951. <dt>Form</dt>
  7952. <dd>-</dd>
  7953. </dl>
  7954. <dl>
  7955. <dt>Attribute</dt>
  7956. <dd>-</dd>
  7957. </dl>
  7958. <dl>
  7959. <dt>Type</dt>
  7960. <dd>XrosHeart</dd>
  7961. </dl>
  7962. <dl>
  7963. <dt>DP</dt>
  7964. <dd>-</dl>
  7965. <dl>
  7966. <dt>PlayCost</dt>
  7967. <dd>3</dd>
  7968. </dl>
  7969. <dl>
  7970. <dt>DigivolveCost1</dt>
  7971. <dd>-</dd>
  7972. </dl>
  7973. <dl>
  7974. <dt>DigivolveCost2</dt>
  7975. <dd>-</dd>
  7976. </dl>
  7977. </div>
  7978. </div>
  7979. <divclass="cardinfo_bottom">
  7980. <dl>
  7981. <dt>Effect</dt>
  7982. <dd>[On Play] You may play 1 [Dorulumon] from your hand or from under one of your Tamers without paying its memory cost.<br>[Your Turn] When you play a Digimon with [Xros Heart] in its traits, by suspending this Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7983. </dl>
  7984. <dl>
  7985. <dt>Digivolveeffect</dt>
  7986. <dd>-</dd>
  7987. </dl>
  7988. <dl>
  7989. <dt>Securityeffect</dt>
  7990. <dd>[Security] Play this card without paying its memory cost.</dd>
  7991. </dl>
  7992. <dl>
  7993. <dt>Notes</dt>
  7994. <dd>BOOSTERXrosEncounter[BT10]BoxToppers</dd></dl>
  7995. </div>
  7996. </div>
  7997. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7998. </div>
  7999. </div>
  8000. </li>
  8001. <liclass="image_lists_itemdatapage-3">
  8002. <aclass="card_img">
  8003. <imgsrc="../images/cardlist/card/BT10-090.png"alt="BT10-090ZenjiroTsurugi"></a>
  8004. <divclass="popup">
  8005. <divclass="card_detailcard_detail_green">
  8006. <divclass="card_detail_inner">
  8007. <ulclass="cardinfo_head">
  8008. <liclass="cardno">BT10-090</li>
  8009. <li>R</li>
  8010. <liclass="cardtype">Tamer</li>
  8011. </ul>
  8012. <divclass="card_name">ZenjiroTsurugi</div>
  8013. <divclass="cardinfo_top">
  8014. <divclass="card_img">
  8015. <imgsrc="../images/cardlist/card/BT10-090.png"alt="BT10-090ZenjiroTsurugi"></div>
  8016. <divclass="cardinfo_top_body">
  8017. <dl>
  8018. <dt>Form</dt>
  8019. <dd>-</dd>
  8020. </dl>
  8021. <dl>
  8022. <dt>Attribute</dt>
  8023. <dd>-</dd>
  8024. </dl>
  8025. <dl>
  8026. <dt>Type</dt>
  8027. <dd>XrosHeart</dd>
  8028. </dl>
  8029. <dl>
  8030. <dt>DP</dt>
  8031. <dd>-</dl>
  8032. <dl>
  8033. <dt>PlayCost</dt>
  8034. <dd>3</dd>
  8035. </dl>
  8036. <dl>
  8037. <dt>DigivolveCost1</dt>
  8038. <dd>-</dd>
  8039. </dl>
  8040. <dl>
  8041. <dt>DigivolveCost2</dt>
  8042. <dd>-</dd>
  8043. </dl>
  8044. </div>
  8045. </div>
  8046. <divclass="cardinfo_bottom">
  8047. <dl>
  8048. <dt>Effect</dt>
  8049. <dd>[On Play] You may play [Ballistamon] from your hand or from under one of your Tamers without paying its memory cost.<br>[Your Turn] When you play a Digimon with [Xros Heart] in its traits, by suspending this Tamer, gain 1 memory.</dd>
  8050. </dl>
  8051. <dl>
  8052. <dt>Digivolveeffect</dt>
  8053. <dd>-</dd>
  8054. </dl>
  8055. <dl>
  8056. <dt>Securityeffect</dt>
  8057. <dd>[Security] Play this card without paying its memory cost.</dd>
  8058. </dl>
  8059. <dl>
  8060. <dt>Notes</dt>
  8061. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8062. </div>
  8063. </div>
  8064. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8065. </div>
  8066. </div>
  8067. </li>
  8068. <liclass="image_lists_itemdatapage-3">
  8069. <aclass="card_img">
  8070. <imgsrc="../images/cardlist/card/BT10-090_P1.png"alt="BT10-090ZenjiroTsurugi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  8071. </a>
  8072. <divclass="popup">
  8073. <divclass="card_detailcard_detail_green">
  8074. <divclass="card_detail_inner">
  8075. <ulclass="cardinfo_head">
  8076. <liclass="cardno">BT10-090</li>
  8077. <li>R</li>
  8078. <liclass="cardtype">Tamer</li>
  8079. <liclass="cardtypecardParallel">AlternativeArt</li>
  8080. </ul>
  8081. <divclass="card_name">ZenjiroTsurugi</div>
  8082. <divclass="cardinfo_top">
  8083. <divclass="card_img">
  8084. <imgsrc="../images/cardlist/card/BT10-090_P1.png"alt="BT10-090ZenjiroTsurugi"></div>
  8085. <divclass="cardinfo_top_body">
  8086. <dl>
  8087. <dt>Form</dt>
  8088. <dd>-</dd>
  8089. </dl>
  8090. <dl>
  8091. <dt>Attribute</dt>
  8092. <dd>-</dd>
  8093. </dl>
  8094. <dl>
  8095. <dt>Type</dt>
  8096. <dd>XrosHeart</dd>
  8097. </dl>
  8098. <dl>
  8099. <dt>DP</dt>
  8100. <dd>-</dl>
  8101. <dl>
  8102. <dt>PlayCost</dt>
  8103. <dd>3</dd>
  8104. </dl>
  8105. <dl>
  8106. <dt>DigivolveCost1</dt>
  8107. <dd>-</dd>
  8108. </dl>
  8109. <dl>
  8110. <dt>DigivolveCost2</dt>
  8111. <dd>-</dd>
  8112. </dl>
  8113. </div>
  8114. </div>
  8115. <divclass="cardinfo_bottom">
  8116. <dl>
  8117. <dt>Effect</dt>
  8118. <dd>[On Play] You may play [Ballistamon] from your hand or from under one of your Tamers without paying its memory cost.<br>[Your Turn] When you play a Digimon with [Xros Heart] in its traits, by suspending this Tamer, gain 1 memory.</dd>
  8119. </dl>
  8120. <dl>
  8121. <dt>Digivolveeffect</dt>
  8122. <dd>-</dd>
  8123. </dl>
  8124. <dl>
  8125. <dt>Securityeffect</dt>
  8126. <dd>[Security] Play this card without paying its memory cost.</dd>
  8127. </dl>
  8128. <dl>
  8129. <dt>Notes</dt>
  8130. <dd>BOOSTERXrosEncounter[BT10]BoxToppers</dd></dl>
  8131. </div>
  8132. </div>
  8133. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8134. </div>
  8135. </div>
  8136. </li>
  8137. <liclass="image_lists_itemdatapage-3">
  8138. <aclass="card_img">
  8139. <imgsrc="../images/cardlist/card/BT10-091.png"alt="BT10-091RuliTsukiyono"></a>
  8140. <divclass="popup">
  8141. <divclass="card_detailcard_detail_green">
  8142. <divclass="card_detail_inner">
  8143. <ulclass="cardinfo_head">
  8144. <liclass="cardno">BT10-091</li>
  8145. <li>R</li>
  8146. <liclass="cardtype">Tamer</li>
  8147. </ul>
  8148. <divclass="card_name">RuliTsukiyono</div>
  8149. <divclass="cardinfo_top">
  8150. <divclass="card_img">
  8151. <imgsrc="../images/cardlist/card/BT10-091.png"alt="BT10-091RuliTsukiyono"></div>
  8152. <divclass="cardinfo_top_body">
  8153. <dl>
  8154. <dt>Form</dt>
  8155. <dd>-</dd>
  8156. </dl>
  8157. <dl>
  8158. <dt>Attribute</dt>
  8159. <dd>-</dd>
  8160. </dl>
  8161. <dl>
  8162. <dt>Type</dt>
  8163. <dd>-</dd>
  8164. </dl>
  8165. <dl>
  8166. <dt>DP</dt>
  8167. <dd>-</dl>
  8168. <dl>
  8169. <dt>PlayCost</dt>
  8170. <dd>4</dd>
  8171. </dl>
  8172. <dl>
  8173. <dt>DigivolveCost1</dt>
  8174. <dd>-</dd>
  8175. </dl>
  8176. <dl>
  8177. <dt>DigivolveCost2</dt>
  8178. <dd>-</dd>
  8179. </dl>
  8180. </div>
  8181. </div>
  8182. <divclass="cardinfo_bottom">
  8183. <dl>
  8184. <dt>Effect</dt>
  8185. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3.<br>[Your Turn] When you attack with a Digimon that has [Angoramon] in its name or is level 5 or higher, by suspending this Tamer, suspend 1 of your opponent's Digimon with 5000 DP or less.</dd>
  8186. </dl>
  8187. <dl>
  8188. <dt>Digivolveeffect</dt>
  8189. <dd>-</dd>
  8190. </dl>
  8191. <dl>
  8192. <dt>Securityeffect</dt>
  8193. <dd>[Security] Play this card without paying its memory cost.</dd>
  8194. </dl>
  8195. <dl>
  8196. <dt>Notes</dt>
  8197. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8198. </div>
  8199. </div>
  8200. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8201. </div>
  8202. </div>
  8203. </li>
  8204. <liclass="image_lists_itemdatapage-4">
  8205. <aclass="card_img">
  8206. <imgsrc="../images/cardlist/card/BT10-092.png"alt="BT10-092NeneAmano"></a>
  8207. <divclass="popup">
  8208. <divclass="card_detailcard_detail_black">
  8209. <divclass="card_detail_inner">
  8210. <ulclass="cardinfo_head">
  8211. <liclass="cardno">BT10-092</li>
  8212. <li>R</li>
  8213. <liclass="cardtype">Tamer</li>
  8214. </ul>
  8215. <divclass="card_name">NeneAmano</div>
  8216. <divclass="cardinfo_top">
  8217. <divclass="card_img">
  8218. <imgsrc="../images/cardlist/card/BT10-092.png"alt="BT10-092NeneAmano"></div>
  8219. <divclass="cardinfo_top_body">
  8220. <dl>
  8221. <dt>Form</dt>
  8222. <dd>-</dd>
  8223. </dl>
  8224. <dl>
  8225. <dt>Attribute</dt>
  8226. <dd>-</dd>
  8227. </dl>
  8228. <dl>
  8229. <dt>Type</dt>
  8230. <dd>General/Twilight</dd>
  8231. </dl>
  8232. <dl>
  8233. <dt>DP</dt>
  8234. <dd>-</dl>
  8235. <dl>
  8236. <dt>PlayCost</dt>
  8237. <dd>3</dd>
  8238. </dl>
  8239. <dl>
  8240. <dt>DigivolveCost1</dt>
  8241. <dd>-</dd>
  8242. </dl>
  8243. <dl>
  8244. <dt>DigivolveCost2</dt>
  8245. <dd>-</dd>
  8246. </dl>
  8247. </div>
  8248. </div>
  8249. <divclass="cardinfo_bottom">
  8250. <dl>
  8251. <dt>Effect</dt>
  8252. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Knightmon] or [DeadlyAxemon] in its name or [Twilight] in its traits among them to your hand. Place the rest at the bottom of your deck in any order.<br>[Opponent's Turn] All of your Digimon with [DarkKnightmon] in their names or [Twilight] in their traits gain <Blocker>.<br>[On Deletion] Gain 2 memory.</dd>
  8253. </dl>
  8254. <dl>
  8255. <dt>Digivolveeffect</dt>
  8256. <dd>-</dd>
  8257. </dl>
  8258. <dl>
  8259. <dt>Securityeffect</dt>
  8260. <dd>[Security] Play this card without paying its memory cost.</dd>
  8261. </dl>
  8262. <dl>
  8263. <dt>Notes</dt>
  8264. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8265. </div>
  8266. </div>
  8267. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8268. </div>
  8269. </div>
  8270. </li>
  8271. <liclass="image_lists_itemdatapage-4">
  8272. <aclass="card_img">
  8273. <imgsrc="../images/cardlist/card/BT10-092_P1.png"alt="BT10-092NeneAmano"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8274. </a>
  8275. <divclass="popup">
  8276. <divclass="card_detailcard_detail_black">
  8277. <divclass="card_detail_inner">
  8278. <ulclass="cardinfo_head">
  8279. <liclass="cardno">BT10-092</li>
  8280. <li>R</li>
  8281. <liclass="cardtype">Tamer</li>
  8282. <liclass="cardtypecardParallel">AlternativeArt</li>
  8283. </ul>
  8284. <divclass="card_name">NeneAmano</div>
  8285. <divclass="cardinfo_top">
  8286. <divclass="card_img">
  8287. <imgsrc="../images/cardlist/card/BT10-092_P1.png"alt="BT10-092NeneAmano"></div>
  8288. <divclass="cardinfo_top_body">
  8289. <dl>
  8290. <dt>Form</dt>
  8291. <dd>-</dd>
  8292. </dl>
  8293. <dl>
  8294. <dt>Attribute</dt>
  8295. <dd>-</dd>
  8296. </dl>
  8297. <dl>
  8298. <dt>Type</dt>
  8299. <dd>General/Twilight</dd>
  8300. </dl>
  8301. <dl>
  8302. <dt>DP</dt>
  8303. <dd>-</dl>
  8304. <dl>
  8305. <dt>PlayCost</dt>
  8306. <dd>3</dd>
  8307. </dl>
  8308. <dl>
  8309. <dt>DigivolveCost1</dt>
  8310. <dd>-</dd>
  8311. </dl>
  8312. <dl>
  8313. <dt>DigivolveCost2</dt>
  8314. <dd>-</dd>
  8315. </dl>
  8316. </div>
  8317. </div>
  8318. <divclass="cardinfo_bottom">
  8319. <dl>
  8320. <dt>Effect</dt>
  8321. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Knightmon] or [DeadlyAxemon] in its name or [Twilight] in its traits among them to your hand. Place the rest at the bottom of your deck in any order.<br>[Opponent's Turn] All of your Digimon with [DarkKnightmon] in their names or [Twilight] in their traits gain <Blocker>.<br>[On Deletion] Gain 2 memory.</dd>
  8322. </dl>
  8323. <dl>
  8324. <dt>Digivolveeffect</dt>
  8325. <dd>-</dd>
  8326. </dl>
  8327. <dl>
  8328. <dt>Securityeffect</dt>
  8329. <dd>[Security] Play this card without paying its memory cost.</dd>
  8330. </dl>
  8331. <dl>
  8332. <dt>Notes</dt>
  8333. <dd>BOOSTERXrosEncounter[BT10]BoxToppers</dd></dl>
  8334. </div>
  8335. </div>
  8336. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8337. </div>
  8338. </div>
  8339. </li>
  8340. <liclass="image_lists_itemdatapage-4">
  8341. <aclass="card_img">
  8342. <imgsrc="../images/cardlist/card/BT10-093.png"alt="BT10-093YuuAmano"></a>
  8343. <divclass="popup">
  8344. <divclass="card_detailcard_detail_purple">
  8345. <divclass="card_detail_inner">
  8346. <ulclass="cardinfo_head">
  8347. <liclass="cardno">BT10-093</li>
  8348. <li>R</li>
  8349. <liclass="cardtype">Tamer</li>
  8350. </ul>
  8351. <divclass="card_name">YuuAmano</div>
  8352. <divclass="cardinfo_top">
  8353. <divclass="card_img">
  8354. <imgsrc="../images/cardlist/card/BT10-093.png"alt="BT10-093YuuAmano"></div>
  8355. <divclass="cardinfo_top_body">
  8356. <dl>
  8357. <dt>Form</dt>
  8358. <dd>-</dd>
  8359. </dl>
  8360. <dl>
  8361. <dt>Attribute</dt>
  8362. <dd>-</dd>
  8363. </dl>
  8364. <dl>
  8365. <dt>Type</dt>
  8366. <dd>General/BagraArmy</dd>
  8367. </dl>
  8368. <dl>
  8369. <dt>DP</dt>
  8370. <dd>-</dl>
  8371. <dl>
  8372. <dt>PlayCost</dt>
  8373. <dd>3</dd>
  8374. </dl>
  8375. <dl>
  8376. <dt>DigivolveCost1</dt>
  8377. <dd>-</dd>
  8378. </dl>
  8379. <dl>
  8380. <dt>DigivolveCost2</dt>
  8381. <dd>-</dd>
  8382. </dl>
  8383. </div>
  8384. </div>
  8385. <divclass="cardinfo_bottom">
  8386. <dl>
  8387. <dt>Effect</dt>
  8388. <dd>[All Turns][Once Per Turn] When a purple card is placed under this Tamer, <Draw 1> (Draw 1 card from your deck), and gain 1 memory.<br>[Your Turn][Once Per Turn] When you would play a level 4 or higher Digimon card with [Bagra Army] in its traits, by placing up to 3 purple Digimon cards from under your Tamers in the digivolution cards of the Digimon card played, reduce the memory cost of that Digimon by 2 for each card placed.</dd>
  8389. </dl>
  8390. <dl>
  8391. <dt>Digivolveeffect</dt>
  8392. <dd>-</dd>
  8393. </dl>
  8394. <dl>
  8395. <dt>Securityeffect</dt>
  8396. <dd>[Security] Play this card without paying its memory cost.</dd>
  8397. </dl>
  8398. <dl>
  8399. <dt>Notes</dt>
  8400. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-093'>ErrataCard</a></dd></dl>
  8401. </div>
  8402. </div>
  8403. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8404. </div>
  8405. </div>
  8406. </li>
  8407. <liclass="image_lists_itemdatapage-4">
  8408. <aclass="card_img">
  8409. <imgsrc="../images/cardlist/card/BT10-093_P1.png"alt="BT10-093YuuAmano"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8410. </a>
  8411. <divclass="popup">
  8412. <divclass="card_detailcard_detail_purple">
  8413. <divclass="card_detail_inner">
  8414. <ulclass="cardinfo_head">
  8415. <liclass="cardno">BT10-093</li>
  8416. <li>R</li>
  8417. <liclass="cardtype">Tamer</li>
  8418. <liclass="cardtypecardParallel">AlternativeArt</li>
  8419. </ul>
  8420. <divclass="card_name">YuuAmano</div>
  8421. <divclass="cardinfo_top">
  8422. <divclass="card_img">
  8423. <imgsrc="../images/cardlist/card/BT10-093_P1.png"alt="BT10-093YuuAmano"></div>
  8424. <divclass="cardinfo_top_body">
  8425. <dl>
  8426. <dt>Form</dt>
  8427. <dd>-</dd>
  8428. </dl>
  8429. <dl>
  8430. <dt>Attribute</dt>
  8431. <dd>-</dd>
  8432. </dl>
  8433. <dl>
  8434. <dt>Type</dt>
  8435. <dd>General/BagraArmy</dd>
  8436. </dl>
  8437. <dl>
  8438. <dt>DP</dt>
  8439. <dd>-</dl>
  8440. <dl>
  8441. <dt>PlayCost</dt>
  8442. <dd>3</dd>
  8443. </dl>
  8444. <dl>
  8445. <dt>DigivolveCost1</dt>
  8446. <dd>-</dd>
  8447. </dl>
  8448. <dl>
  8449. <dt>DigivolveCost2</dt>
  8450. <dd>-</dd>
  8451. </dl>
  8452. </div>
  8453. </div>
  8454. <divclass="cardinfo_bottom">
  8455. <dl>
  8456. <dt>Effect</dt>
  8457. <dd>[All Turns][Once Per Turn] When a purple card is placed under this Tamer, <Draw 1> (Draw 1 card from your deck), and gain 1 memory.<br>[Your Turn][Once Per Turn] When you would play a level 4 or higher Digimon card with [Bagra Army] in its traits, by placing up to 3 purple Digimon cards from under your Tamers in the digivolution cards of the Digimon card played, reduce the memory cost of that Digimon by 2 for each card placed.</dd>
  8458. </dl>
  8459. <dl>
  8460. <dt>Digivolveeffect</dt>
  8461. <dd>-</dd>
  8462. </dl>
  8463. <dl>
  8464. <dt>Securityeffect</dt>
  8465. <dd>[Security] Play this card without paying its memory cost.</dd>
  8466. </dl>
  8467. <dl>
  8468. <dt>Notes</dt>
  8469. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-093'>ErrataCard</a></dd></dl>
  8470. </div>
  8471. </div>
  8472. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8473. </div>
  8474. </div>
  8475. </li>
  8476. <liclass="image_lists_itemdatapage-4">
  8477. <aclass="card_img">
  8478. <imgsrc="../images/cardlist/card/BT10-094.png"alt="BT10-094Breaclaw"></a>
  8479. <divclass="popup">
  8480. <divclass="card_detailcard_detail_red">
  8481. <divclass="card_detail_inner">
  8482. <ulclass="cardinfo_head">
  8483. <liclass="cardno">BT10-094</li>
  8484. <li>U</li>
  8485. <liclass="cardtype">Option</li>
  8486. </ul>
  8487. <divclass="card_name">Breaclaw</div>
  8488. <divclass="cardinfo_top">
  8489. <divclass="card_img">
  8490. <imgsrc="../images/cardlist/card/BT10-094.png"alt="BT10-094Breaclaw"></div>
  8491. <divclass="cardinfo_top_body">
  8492. <dl>
  8493. <dt>Form</dt>
  8494. <dd>-</dd>
  8495. </dl>
  8496. <dl>
  8497. <dt>Attribute</dt>
  8498. <dd>-</dd>
  8499. </dl>
  8500. <dl>
  8501. <dt>Type</dt>
  8502. <dd>-</dd>
  8503. </dl>
  8504. <dl>
  8505. <dt>DP</dt>
  8506. <dd>-</dl>
  8507. <dl>
  8508. <dt>PlayCost</dt>
  8509. <dd>4</dd>
  8510. </dl>
  8511. <dl>
  8512. <dt>DigivolveCost1</dt>
  8513. <dd>-</dd>
  8514. </dl>
  8515. <dl>
  8516. <dt>DigivolveCost2</dt>
  8517. <dd>-</dd>
  8518. </dl>
  8519. </div>
  8520. </div>
  8521. <divclass="cardinfo_bottom">
  8522. <dl>
  8523. <dt>Effect</dt>
  8524. <dd>[Main] 1 of your Digimon gets +2000 DP for the turn. Then, by placing 1 Digimon card with [Gammamon] in its name from your hand under 1 of your Digimon as its bottom digivolution card, <Draw 1>. (Draw 1 card from your deck.)</dd>
  8525. </dl>
  8526. <dl>
  8527. <dt>Digivolveeffect</dt>
  8528. <dd>-</dd>
  8529. </dl>
  8530. <dl>
  8531. <dt>Securityeffect</dt>
  8532. <dd>[Security] You may play 1 [Gammamon] from your hand or trash without payings its memory cost.</dd>
  8533. </dl>
  8534. <dl>
  8535. <dt>Notes</dt>
  8536. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8537. </div>
  8538. </div>
  8539. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8540. </div>
  8541. </div>
  8542. </li>
  8543. <liclass="image_lists_itemdatapage-4">
  8544. <aclass="card_img">
  8545. <imgsrc="../images/cardlist/card/BT10-095.png"alt="BT10-095HerooftheSkies!"></a>
  8546. <divclass="popup">
  8547. <divclass="card_detailcard_detail_red">
  8548. <divclass="card_detail_inner">
  8549. <ulclass="cardinfo_head">
  8550. <liclass="cardno">BT10-095</li>
  8551. <li>R</li>
  8552. <liclass="cardtype">Option</li>
  8553. </ul>
  8554. <divclass="card_name">HerooftheSkies!</div>
  8555. <divclass="cardinfo_top">
  8556. <divclass="card_img">
  8557. <imgsrc="../images/cardlist/card/BT10-095.png"alt="BT10-095HerooftheSkies!"></div>
  8558. <divclass="cardinfo_top_body">
  8559. <dl>
  8560. <dt>Form</dt>
  8561. <dd>-</dd>
  8562. </dl>
  8563. <dl>
  8564. <dt>Attribute</dt>
  8565. <dd>-</dd>
  8566. </dl>
  8567. <dl>
  8568. <dt>Type</dt>
  8569. <dd>XrosHeart</dd>
  8570. </dl>
  8571. <dl>
  8572. <dt>DP</dt>
  8573. <dd>-</dl>
  8574. <dl>
  8575. <dt>PlayCost</dt>
  8576. <dd>2</dd>
  8577. </dl>
  8578. <dl>
  8579. <dt>DigivolveCost1</dt>
  8580. <dd>-</dd>
  8581. </dl>
  8582. <dl>
  8583. <dt>DigivolveCost2</dt>
  8584. <dd>-</dd>
  8585. </dl>
  8586. </div>
  8587. </div>
  8588. <divclass="cardinfo_bottom">
  8589. <dl>
  8590. <dt>Effect</dt>
  8591. <dd>[Main] Activate 1 of the effects below. If you have a Digimon with [Shoutmon X5] in its name in play, activate all of the effects below instead.<br>・1 of your Digimon with [Xros Heart] in its traits gains <Security Attack +1> for the turn.<br>・<Draw 2> (Draw 2 cards from your deck.)</dd>
  8592. </dl>
  8593. <dl>
  8594. <dt>Digivolveeffect</dt>
  8595. <dd>-</dd>
  8596. </dl>
  8597. <dl>
  8598. <dt>Securityeffect</dt>
  8599. <dd>[Security] Add this card to its owner's hand.</dd>
  8600. </dl>
  8601. <dl>
  8602. <dt>Notes</dt>
  8603. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8604. </div>
  8605. </div>
  8606. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8607. </div>
  8608. </div>
  8609. </li>
  8610. <liclass="image_lists_itemdatapage-4">
  8611. <aclass="card_img">
  8612. <imgsrc="../images/cardlist/card/BT10-096.png"alt="BT10-096BurningStarCrusher"></a>
  8613. <divclass="popup">
  8614. <divclass="card_detailcard_detail_red">
  8615. <divclass="card_detail_inner">
  8616. <ulclass="cardinfo_head">
  8617. <liclass="cardno">BT10-096</li>
  8618. <li>C</li>
  8619. <liclass="cardtype">Option</li>
  8620. </ul>
  8621. <divclass="card_name">BurningStarCrusher</div>
  8622. <divclass="cardinfo_top">
  8623. <divclass="card_img">
  8624. <imgsrc="../images/cardlist/card/BT10-096.png"alt="BT10-096BurningStarCrusher"></div>
  8625. <divclass="cardinfo_top_body">
  8626. <dl>
  8627. <dt>Form</dt>
  8628. <dd>-</dd>
  8629. </dl>
  8630. <dl>
  8631. <dt>Attribute</dt>
  8632. <dd>-</dd>
  8633. </dl>
  8634. <dl>
  8635. <dt>Type</dt>
  8636. <dd>-</dd>
  8637. </dl>
  8638. <dl>
  8639. <dt>DP</dt>
  8640. <dd>-</dl>
  8641. <dl>
  8642. <dt>PlayCost</dt>
  8643. <dd>3</dd>
  8644. </dl>
  8645. <dl>
  8646. <dt>DigivolveCost1</dt>
  8647. <dd>-</dd>
  8648. </dl>
  8649. <dl>
  8650. <dt>DigivolveCost2</dt>
  8651. <dd>-</dd>
  8652. </dl>
  8653. </div>
  8654. </div>
  8655. <divclass="cardinfo_bottom">
  8656. <dl>
  8657. <dt>Effect</dt>
  8658. <dd>[Main] Choose 1 of your level 4 or higher Digimon with [Shoutmon] in its name. Delete 1 of your opponent's Digimon with DP less than or equal to the chosen Digimon.</dd>
  8659. </dl>
  8660. <dl>
  8661. <dt>Digivolveeffect</dt>
  8662. <dd>-</dd>
  8663. </dl>
  8664. <dl>
  8665. <dt>Securityeffect</dt>
  8666. <dd>[Security] Reveal the top 3 cards of your deck. Add 1 card with [Xros Heart] in its traits among them to your hand, and you may play 1 [Taiki Kudo] among them without paying its memory cost. Place the rest at the bottom of your deck in any order.</dd>
  8667. </dl>
  8668. <dl>
  8669. <dt>Notes</dt>
  8670. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-096'>ErrataCard</a></dd></dl>
  8671. </div>
  8672. </div>
  8673. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8674. </div>
  8675. </div>
  8676. </li>
  8677. <liclass="image_lists_itemdatapage-4">
  8678. <aclass="card_img">
  8679. <imgsrc="../images/cardlist/card/BT10-097.png"alt="BT10-097BlazingMemoryBoost!"></a>
  8680. <divclass="popup">
  8681. <divclass="card_detailcard_detail_blue">
  8682. <divclass="card_detail_inner">
  8683. <ulclass="cardinfo_head">
  8684. <liclass="cardno">BT10-097</li>
  8685. <li>R</li>
  8686. <liclass="cardtype">Option</li>
  8687. </ul>
  8688. <divclass="card_name">BlazingMemoryBoost!</div>
  8689. <divclass="cardinfo_top">
  8690. <divclass="card_img">
  8691. <imgsrc="../images/cardlist/card/BT10-097.png"alt="BT10-097BlazingMemoryBoost!"></div>
  8692. <divclass="cardinfo_top_body">
  8693. <dl>
  8694. <dt>Form</dt>
  8695. <dd>-</dd>
  8696. </dl>
  8697. <dl>
  8698. <dt>Attribute</dt>
  8699. <dd>-</dd>
  8700. </dl>
  8701. <dl>
  8702. <dt>Type</dt>
  8703. <dd>BlueFlare</dd>
  8704. </dl>
  8705. <dl>
  8706. <dt>DP</dt>
  8707. <dd>-</dl>
  8708. <dl>
  8709. <dt>PlayCost</dt>
  8710. <dd>7</dd>
  8711. </dl>
  8712. <dl>
  8713. <dt>DigivolveCost1</dt>
  8714. <dd>-</dd>
  8715. </dl>
  8716. <dl>
  8717. <dt>DigivolveCost2</dt>
  8718. <dd>-</dd>
  8719. </dl>
  8720. </div>
  8721. </div>
  8722. <divclass="cardinfo_bottom">
  8723. <dl>
  8724. <dt>Effect</dt>
  8725. <dd>[Main] Reveal the top 6 cards of your deck. Add 2 cards with [Blue Flare] in their traits among them to your hand, and you may play 1 [Kiriha Aonuma] among them without paying its memory cost. Place the rest at the bottom of your deck in any order. Then, place this card in your Battle Area.<br>[Main] <Delay> (By trashing this card in your battle area, activate the effect below. You can't activate this effect the turn this card enters play.)<br>・Gain 2 memory.</dd>
  8726. </dl>
  8727. <dl>
  8728. <dt>Digivolveeffect</dt>
  8729. <dd>-</dd>
  8730. </dl>
  8731. <dl>
  8732. <dt>Securityeffect</dt>
  8733. <dd>[Security] Place this card in its owner's battle area.</dd>
  8734. </dl>
  8735. <dl>
  8736. <dt>Notes</dt>
  8737. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-097'>ErrataCard</a></dd></dl>
  8738. </div>
  8739. </div>
  8740. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8741. </div>
  8742. </div>
  8743. </li>
  8744. <liclass="image_lists_itemdatapage-4">
  8745. <aclass="card_img">
  8746. <imgsrc="../images/cardlist/card/BT10-098.png"alt="BT10-098PlasmaDeckerdraLauncher"></a>
  8747. <divclass="popup">
  8748. <divclass="card_detailcard_detail_blue">
  8749. <divclass="card_detail_inner">
  8750. <ulclass="cardinfo_head">
  8751. <liclass="cardno">BT10-098</li>
  8752. <li>C</li>
  8753. <liclass="cardtype">Option</li>
  8754. </ul>
  8755. <divclass="card_name">PlasmaDeckerdraLauncher</div>
  8756. <divclass="cardinfo_top">
  8757. <divclass="card_img">
  8758. <imgsrc="../images/cardlist/card/BT10-098.png"alt="BT10-098PlasmaDeckerdraLauncher"></div>
  8759. <divclass="cardinfo_top_body">
  8760. <dl>
  8761. <dt>Form</dt>
  8762. <dd>-</dd>
  8763. </dl>
  8764. <dl>
  8765. <dt>Attribute</dt>
  8766. <dd>-</dd>
  8767. </dl>
  8768. <dl>
  8769. <dt>Type</dt>
  8770. <dd>-</dd>
  8771. </dl>
  8772. <dl>
  8773. <dt>DP</dt>
  8774. <dd>-</dl>
  8775. <dl>
  8776. <dt>PlayCost</dt>
  8777. <dd>6</dd>
  8778. </dl>
  8779. <dl>
  8780. <dt>DigivolveCost1</dt>
  8781. <dd>-</dd>
  8782. </dl>
  8783. <dl>
  8784. <dt>DigivolveCost2</dt>
  8785. <dd>-</dd>
  8786. </dl>
  8787. </div>
  8788. </div>
  8789. <divclass="cardinfo_bottom">
  8790. <dl>
  8791. <dt>Effect</dt>
  8792. <dd>When you would use this card, if your opponent has 2 or more Digimon in play, reduce the memory cost by 2.<br>[Main] Return 1 of your opponent's level 6 or higher Digimon to its owner's hand.</dd>
  8793. </dl>
  8794. <dl>
  8795. <dt>Digivolveeffect</dt>
  8796. <dd>-</dd>
  8797. </dl>
  8798. <dl>
  8799. <dt>Securityeffect</dt>
  8800. <dd>[Security] Return 1 of your opponent's Digimon to its owner's deck.</dd>
  8801. </dl>
  8802. <dl>
  8803. <dt>Notes</dt>
  8804. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8805. </div>
  8806. </div>
  8807. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8808. </div>
  8809. </div>
  8810. </li>
  8811. <liclass="image_lists_itemdatapage-4">
  8812. <aclass="card_img">
  8813. <imgsrc="../images/cardlist/card/BT10-099.png"alt="BT10-099HealingTherapy"></a>
  8814. <divclass="popup">
  8815. <divclass="card_detailcard_detail_yellow">
  8816. <divclass="card_detail_inner">
  8817. <ulclass="cardinfo_head">
  8818. <liclass="cardno">BT10-099</li>
  8819. <li>C</li>
  8820. <liclass="cardtype">Option</li>
  8821. </ul>
  8822. <divclass="card_name">HealingTherapy</div>
  8823. <divclass="cardinfo_top">
  8824. <divclass="card_img">
  8825. <imgsrc="../images/cardlist/card/BT10-099.png"alt="BT10-099HealingTherapy"></div>
  8826. <divclass="cardinfo_top_body">
  8827. <dl>
  8828. <dt>Form</dt>
  8829. <dd>-</dd>
  8830. </dl>
  8831. <dl>
  8832. <dt>Attribute</dt>
  8833. <dd>-</dd>
  8834. </dl>
  8835. <dl>
  8836. <dt>Type</dt>
  8837. <dd>-</dd>
  8838. </dl>
  8839. <dl>
  8840. <dt>DP</dt>
  8841. <dd>-</dl>
  8842. <dl>
  8843. <dt>PlayCost</dt>
  8844. <dd>2</dd>
  8845. </dl>
  8846. <dl>
  8847. <dt>DigivolveCost1</dt>
  8848. <dd>-</dd>
  8849. </dl>
  8850. <dl>
  8851. <dt>DigivolveCost2</dt>
  8852. <dd>-</dd>
  8853. </dl>
  8854. </div>
  8855. </div>
  8856. <divclass="cardinfo_bottom">
  8857. <dl>
  8858. <dt>Effect</dt>
  8859. <dd>[Main] Until the end of your opponent's turn, 1 of your opponent's Digimon gains <Security Attack -1>. (This Digimon checks 1 fewer security cards.) If you have a [Venusmon] in play, 3 of your opponent's Digimon gain it instead.</dd>
  8860. </dl>
  8861. <dl>
  8862. <dt>Digivolveeffect</dt>
  8863. <dd>-</dd>
  8864. </dl>
  8865. <dl>
  8866. <dt>Securityeffect</dt>
  8867. <dd>[Security] Activate this card's [Main] effect.</dd>
  8868. </dl>
  8869. <dl>
  8870. <dt>Notes</dt>
  8871. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8872. </div>
  8873. </div>
  8874. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8875. </div>
  8876. </div>
  8877. </li>
  8878. <liclass="image_lists_itemdatapage-4">
  8879. <aclass="card_img">
  8880. <imgsrc="../images/cardlist/card/BT10-100.png"alt="BT10-100ImpulseMemoryBoost!"></a>
  8881. <divclass="popup">
  8882. <divclass="card_detailcard_detail_yellow">
  8883. <divclass="card_detail_inner">
  8884. <ulclass="cardinfo_head">
  8885. <liclass="cardno">BT10-100</li>
  8886. <li>C</li>
  8887. <liclass="cardtype">Option</li>
  8888. </ul>
  8889. <divclass="card_name">ImpulseMemoryBoost!</div>
  8890. <divclass="cardinfo_top">
  8891. <divclass="card_img">
  8892. <imgsrc="../images/cardlist/card/BT10-100.png"alt="BT10-100ImpulseMemoryBoost!"></div>
  8893. <divclass="cardinfo_top_body">
  8894. <dl>
  8895. <dt>Form</dt>
  8896. <dd>-</dd>
  8897. </dl>
  8898. <dl>
  8899. <dt>Attribute</dt>
  8900. <dd>-</dd>
  8901. </dl>
  8902. <dl>
  8903. <dt>Type</dt>
  8904. <dd>-</dd>
  8905. </dl>
  8906. <dl>
  8907. <dt>DP</dt>
  8908. <dd>-</dl>
  8909. <dl>
  8910. <dt>PlayCost</dt>
  8911. <dd>8</dd>
  8912. </dl>
  8913. <dl>
  8914. <dt>DigivolveCost1</dt>
  8915. <dd>-</dd>
  8916. </dl>
  8917. <dl>
  8918. <dt>DigivolveCost2</dt>
  8919. <dd>-</dd>
  8920. </dl>
  8921. </div>
  8922. </div>
  8923. <divclass="cardinfo_bottom">
  8924. <dl>
  8925. <dt>Effect</dt>
  8926. <dd>[Main] You may play 1 [Pulsemon] from your hand without paying its memory cost. Then, place this card in your Battle Area.<br>[Main] <Delay> (By trashing this card in your battle area, activate the effect below. You can't activate this effect the turn this card enters play.)<br>・Gain 2 memory.</dd>
  8927. </dl>
  8928. <dl>
  8929. <dt>Digivolveeffect</dt>
  8930. <dd>-</dd>
  8931. </dl>
  8932. <dl>
  8933. <dt>Securityeffect</dt>
  8934. <dd>[Security] Place this card in its owner's battle area.</dd>
  8935. </dl>
  8936. <dl>
  8937. <dt>Notes</dt>
  8938. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  8939. </div>
  8940. </div>
  8941. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8942. </div>
  8943. </div>
  8944. </li>
  8945. <liclass="image_lists_itemdatapage-4">
  8946. <aclass="card_img">
  8947. <imgsrc="../images/cardlist/card/BT10-101.png"alt="BT10-101LónkhēAdistakto"></a>
  8948. <divclass="popup">
  8949. <divclass="card_detailcard_detail_yellow">
  8950. <divclass="card_detail_inner">
  8951. <ulclass="cardinfo_head">
  8952. <liclass="cardno">BT10-101</li>
  8953. <li>U</li>
  8954. <liclass="cardtype">Option</li>
  8955. </ul>
  8956. <divclass="card_name">LónkhēAdistakto</div>
  8957. <divclass="cardinfo_top">
  8958. <divclass="card_img">
  8959. <imgsrc="../images/cardlist/card/BT10-101.png"alt="BT10-101LónkhēAdistakto"></div>
  8960. <divclass="cardinfo_top_body">
  8961. <dl>
  8962. <dt>Form</dt>
  8963. <dd>-</dd>
  8964. </dl>
  8965. <dl>
  8966. <dt>Attribute</dt>
  8967. <dd>-</dd>
  8968. </dl>
  8969. <dl>
  8970. <dt>Type</dt>
  8971. <dd>-</dd>
  8972. </dl>
  8973. <dl>
  8974. <dt>DP</dt>
  8975. <dd>-</dl>
  8976. <dl>
  8977. <dt>PlayCost</dt>
  8978. <dd>3</dd>
  8979. </dl>
  8980. <dl>
  8981. <dt>DigivolveCost1</dt>
  8982. <dd>-</dd>
  8983. </dl>
  8984. <dl>
  8985. <dt>DigivolveCost2</dt>
  8986. <dd>-</dd>
  8987. </dl>
  8988. </div>
  8989. </div>
  8990. <divclass="cardinfo_bottom">
  8991. <dl>
  8992. <dt>Effect</dt>
  8993. <dd>If you have a [Pulsemon] or a Digimon with [Pulsemon] in its digivolution cards in play, you may use this card without meeting its color requirements.<br>[Main] If you have 3 or more security cards, 1 of your opponent's Digimon gets -12000 DP for the turn. If you have 3 or fewer security cards, place 1 of your opponent's Digimon face down on top of their security stack.</dd>
  8994. </dl>
  8995. <dl>
  8996. <dt>Digivolveeffect</dt>
  8997. <dd>-</dd>
  8998. </dl>
  8999. <dl>
  9000. <dt>Securityeffect</dt>
  9001. <dd>[Security] Activate this card's [Main] effect.</dd>
  9002. </dl>
  9003. <dl>
  9004. <dt>Notes</dt>
  9005. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-101'>ErrataCard</a></dd></dl>
  9006. </div>
  9007. </div>
  9008. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9009. </div>
  9010. </div>
  9011. </li>
  9012. <liclass="image_lists_itemdatapage-4">
  9013. <aclass="card_img">
  9014. <imgsrc="../images/cardlist/card/BT10-102.png"alt="BT10-102PyonDump"></a>
  9015. <divclass="popup">
  9016. <divclass="card_detailcard_detail_green">
  9017. <divclass="card_detail_inner">
  9018. <ulclass="cardinfo_head">
  9019. <liclass="cardno">BT10-102</li>
  9020. <li>C</li>
  9021. <liclass="cardtype">Option</li>
  9022. </ul>
  9023. <divclass="card_name">PyonDump</div>
  9024. <divclass="cardinfo_top">
  9025. <divclass="card_img">
  9026. <imgsrc="../images/cardlist/card/BT10-102.png"alt="BT10-102PyonDump"></div>
  9027. <divclass="cardinfo_top_body">
  9028. <dl>
  9029. <dt>Form</dt>
  9030. <dd>-</dd>
  9031. </dl>
  9032. <dl>
  9033. <dt>Attribute</dt>
  9034. <dd>-</dd>
  9035. </dl>
  9036. <dl>
  9037. <dt>Type</dt>
  9038. <dd>-</dd>
  9039. </dl>
  9040. <dl>
  9041. <dt>DP</dt>
  9042. <dd>-</dl>
  9043. <dl>
  9044. <dt>PlayCost</dt>
  9045. <dd>2</dd>
  9046. </dl>
  9047. <dl>
  9048. <dt>DigivolveCost1</dt>
  9049. <dd>-</dd>
  9050. </dl>
  9051. <dl>
  9052. <dt>DigivolveCost2</dt>
  9053. <dd>-</dd>
  9054. </dl>
  9055. </div>
  9056. </div>
  9057. <divclass="cardinfo_bottom">
  9058. <dl>
  9059. <dt>Effect</dt>
  9060. <dd>[Main] 1 of your Digimon gains <Piercing> for the turn. (When this Digimon attacks and deletes an opponent's Digimon, it performs any security checks it normally would.) Then, if you have a Digimon in play with [Angoramon] in its name or digivolution cards, suspend 1 of your opponent's Digimon.</dd>
  9061. </dl>
  9062. <dl>
  9063. <dt>Digivolveeffect</dt>
  9064. <dd>-</dd>
  9065. </dl>
  9066. <dl>
  9067. <dt>Securityeffect</dt>
  9068. <dd>[Security] Suspend 1 of your opponent's Digimon. Then, add this card to its owner's hand.</dd>
  9069. </dl>
  9070. <dl>
  9071. <dt>Notes</dt>
  9072. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9073. </div>
  9074. </div>
  9075. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9076. </div>
  9077. </div>
  9078. </li>
  9079. <liclass="image_lists_itemdatapage-4">
  9080. <aclass="card_img">
  9081. <imgsrc="../images/cardlist/card/BT10-103.png"alt="BT10-103GrandelSol"></a>
  9082. <divclass="popup">
  9083. <divclass="card_detailcard_detail_green">
  9084. <divclass="card_detail_inner">
  9085. <ulclass="cardinfo_head">
  9086. <liclass="cardno">BT10-103</li>
  9087. <li>U</li>
  9088. <liclass="cardtype">Option</li>
  9089. </ul>
  9090. <divclass="card_name">GrandelSol</div>
  9091. <divclass="cardinfo_top">
  9092. <divclass="card_img">
  9093. <imgsrc="../images/cardlist/card/BT10-103.png"alt="BT10-103GrandelSol"></div>
  9094. <divclass="cardinfo_top_body">
  9095. <dl>
  9096. <dt>Form</dt>
  9097. <dd>-</dd>
  9098. </dl>
  9099. <dl>
  9100. <dt>Attribute</dt>
  9101. <dd>-</dd>
  9102. </dl>
  9103. <dl>
  9104. <dt>Type</dt>
  9105. <dd>-</dd>
  9106. </dl>
  9107. <dl>
  9108. <dt>DP</dt>
  9109. <dd>-</dl>
  9110. <dl>
  9111. <dt>PlayCost</dt>
  9112. <dd>8</dd>
  9113. </dl>
  9114. <dl>
  9115. <dt>DigivolveCost1</dt>
  9116. <dd>-</dd>
  9117. </dl>
  9118. <dl>
  9119. <dt>DigivolveCost2</dt>
  9120. <dd>-</dd>
  9121. </dl>
  9122. </div>
  9123. </div>
  9124. <divclass="cardinfo_bottom">
  9125. <dl>
  9126. <dt>Effect</dt>
  9127. <dd>When you would use this card, if you have 2 or more suspended green Digimon in play, reduce the memory cost by 2.<br>[Main] Suspend 1 of your opponent's Digimon. Then, return 1 of your opponent's suspended Digimon to the bottom of its owner's deck.</dd>
  9128. </dl>
  9129. <dl>
  9130. <dt>Digivolveeffect</dt>
  9131. <dd>-</dd>
  9132. </dl>
  9133. <dl>
  9134. <dt>Securityeffect</dt>
  9135. <dd>[Security] Activate this card's [Main] effect.</dd>
  9136. </dl>
  9137. <dl>
  9138. <dt>Notes</dt>
  9139. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9140. </div>
  9141. </div>
  9142. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9143. </div>
  9144. </div>
  9145. </li>
  9146. <liclass="image_lists_itemdatapage-4">
  9147. <aclass="card_img">
  9148. <imgsrc="../images/cardlist/card/BT10-104.png"alt="BT10-104ImmortalRuler"></a>
  9149. <divclass="popup">
  9150. <divclass="card_detailcard_detail_black_purplemulticolor">
  9151. <divclass="card_detail_inner">
  9152. <ulclass="cardinfo_head">
  9153. <liclass="cardno">BT10-104</li>
  9154. <li>R</li>
  9155. <liclass="cardtype">Option</li>
  9156. </ul>
  9157. <divclass="card_name">ImmortalRuler</div>
  9158. <divclass="cardinfo_top">
  9159. <divclass="card_img">
  9160. <imgsrc="../images/cardlist/card/BT10-104.png"alt="BT10-104ImmortalRuler"></div>
  9161. <divclass="cardinfo_top_body">
  9162. <dl>
  9163. <dt>Form</dt>
  9164. <dd>-</dd>
  9165. </dl>
  9166. <dl>
  9167. <dt>Attribute</dt>
  9168. <dd>-</dd>
  9169. </dl>
  9170. <dl>
  9171. <dt>Type</dt>
  9172. <dd>Twilight</dd>
  9173. </dl>
  9174. <dl>
  9175. <dt>DP</dt>
  9176. <dd>-</dl>
  9177. <dl>
  9178. <dt>PlayCost</dt>
  9179. <dd>5</dd>
  9180. </dl>
  9181. <dl>
  9182. <dt>DigivolveCost1</dt>
  9183. <dd>-</dd>
  9184. </dl>
  9185. <dl>
  9186. <dt>DigivolveCost2</dt>
  9187. <dd>-</dd>
  9188. </dl>
  9189. </div>
  9190. </div>
  9191. <divclass="cardinfo_bottom">
  9192. <dl>
  9193. <dt>Effect</dt>
  9194. <dd>While you have a [Nene Amano] in play, you may use this card without meeting its color requirements.<br>[Main] Trash 3 cards from the top of your deck. Then, you may play 1 [DarkKnightmon] from your trash for its memory cost. If you play a Digimon card with DigiXros requirements by this effect, you may also place cards from your trash in digivolution cards for a DigiXros.</dd>
  9195. </dl>
  9196. <dl>
  9197. <dt>Digivolveeffect</dt>
  9198. <dd>-</dd>
  9199. </dl>
  9200. <dl>
  9201. <dt>Securityeffect</dt>
  9202. <dd>[Security] Add this card to its owner's hand.</dd>
  9203. </dl>
  9204. <dl>
  9205. <dt>Notes</dt>
  9206. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9207. </div>
  9208. </div>
  9209. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9210. </div>
  9211. </div>
  9212. </li>
  9213. <liclass="image_lists_itemdatapage-4">
  9214. <aclass="card_img">
  9215. <imgsrc="../images/cardlist/card/BT10-105.png"alt="BT10-105DefensePlug-InC"></a>
  9216. <divclass="popup">
  9217. <divclass="card_detailcard_detail_black">
  9218. <divclass="card_detail_inner">
  9219. <ulclass="cardinfo_head">
  9220. <liclass="cardno">BT10-105</li>
  9221. <li>C</li>
  9222. <liclass="cardtype">Option</li>
  9223. </ul>
  9224. <divclass="card_name">DefensePlug-InC</div>
  9225. <divclass="cardinfo_top">
  9226. <divclass="card_img">
  9227. <imgsrc="../images/cardlist/card/BT10-105.png"alt="BT10-105DefensePlug-InC"></div>
  9228. <divclass="cardinfo_top_body">
  9229. <dl>
  9230. <dt>Form</dt>
  9231. <dd>-</dd>
  9232. </dl>
  9233. <dl>
  9234. <dt>Attribute</dt>
  9235. <dd>-</dd>
  9236. </dl>
  9237. <dl>
  9238. <dt>Type</dt>
  9239. <dd>-</dd>
  9240. </dl>
  9241. <dl>
  9242. <dt>DP</dt>
  9243. <dd>-</dl>
  9244. <dl>
  9245. <dt>PlayCost</dt>
  9246. <dd>12</dd>
  9247. </dl>
  9248. <dl>
  9249. <dt>DigivolveCost1</dt>
  9250. <dd>-</dd>
  9251. </dl>
  9252. <dl>
  9253. <dt>DigivolveCost2</dt>
  9254. <dd>-</dd>
  9255. </dl>
  9256. </div>
  9257. </div>
  9258. <divclass="cardinfo_bottom">
  9259. <dl>
  9260. <dt>Effect</dt>
  9261. <dd>While you have a Tamer in play, you may use this card without meeting its color requirements.<br>[Main] Until the end of your opponent's turn, 1 of your Digimon gains <Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead), and <Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase), and can't be deleted by your opponent's effects.</dd>
  9262. </dl>
  9263. <dl>
  9264. <dt>Digivolveeffect</dt>
  9265. <dd>-</dd>
  9266. </dl>
  9267. <dl>
  9268. <dt>Securityeffect</dt>
  9269. <dd>[Security] Reveal the top 3 cards of your deck. You may play 1 Digimon card with a play cost of 4 or less among them without paying its memory cost. Place the rest at the bottom of your deck in any order. Then, add this card to its owner's hand.</dd>
  9270. </dl>
  9271. <dl>
  9272. <dt>Notes</dt>
  9273. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9274. </div>
  9275. </div>
  9276. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9277. </div>
  9278. </div>
  9279. </li>
  9280. <liclass="image_lists_itemdatapage-4">
  9281. <aclass="card_img">
  9282. <imgsrc="../images/cardlist/card/BT10-106.png"alt="BT10-106JusticeKick"></a>
  9283. <divclass="popup">
  9284. <divclass="card_detailcard_detail_black">
  9285. <divclass="card_detail_inner">
  9286. <ulclass="cardinfo_head">
  9287. <liclass="cardno">BT10-106</li>
  9288. <li>U</li>
  9289. <liclass="cardtype">Option</li>
  9290. </ul>
  9291. <divclass="card_name">JusticeKick</div>
  9292. <divclass="cardinfo_top">
  9293. <divclass="card_img">
  9294. <imgsrc="../images/cardlist/card/BT10-106.png"alt="BT10-106JusticeKick"></div>
  9295. <divclass="cardinfo_top_body">
  9296. <dl>
  9297. <dt>Form</dt>
  9298. <dd>-</dd>
  9299. </dl>
  9300. <dl>
  9301. <dt>Attribute</dt>
  9302. <dd>-</dd>
  9303. </dl>
  9304. <dl>
  9305. <dt>Type</dt>
  9306. <dd>-</dd>
  9307. </dl>
  9308. <dl>
  9309. <dt>DP</dt>
  9310. <dd>-</dl>
  9311. <dl>
  9312. <dt>PlayCost</dt>
  9313. <dd>-</dd>
  9314. </dl>
  9315. <dl>
  9316. <dt>DigivolveCost1</dt>
  9317. <dd>-</dd>
  9318. </dl>
  9319. <dl>
  9320. <dt>DigivolveCost2</dt>
  9321. <dd>-</dd>
  9322. </dl>
  9323. </div>
  9324. </div>
  9325. <divclass="cardinfo_bottom">
  9326. <dl>
  9327. <dt>Effect</dt>
  9328. <dd>When you would use this card, reduce its memory cost by 1 for each Tamer you have in play.<br>[Main] You may play 1 Digimon card with [Justimon] in its name from your hand without paying its memory cost. If you do, delete 1 of your opponent's Digimon with a play cost less than or equal to the Digimon you played.</dd>
  9329. </dl>
  9330. <dl>
  9331. <dt>Digivolveeffect</dt>
  9332. <dd>-</dd>
  9333. </dl>
  9334. <dl>
  9335. <dt>Securityeffect</dt>
  9336. <dd>[Security] You may play 1 black Tamer card from your hand without paying its memory cost. Then, add this card to its owner's hand.</dd>
  9337. </dl>
  9338. <dl>
  9339. <dt>Notes</dt>
  9340. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9341. </div>
  9342. </div>
  9343. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9344. </div>
  9345. </div>
  9346. </li>
  9347. <liclass="image_lists_itemdatapage-4">
  9348. <aclass="card_img">
  9349. <imgsrc="../images/cardlist/card/BT10-107.png"alt="BT10-107BuzzingFist"></a>
  9350. <divclass="popup">
  9351. <divclass="card_detailcard_detail_purple">
  9352. <divclass="card_detail_inner">
  9353. <ulclass="cardinfo_head">
  9354. <liclass="cardno">BT10-107</li>
  9355. <li>C</li>
  9356. <liclass="cardtype">Option</li>
  9357. </ul>
  9358. <divclass="card_name">BuzzingFist</div>
  9359. <divclass="cardinfo_top">
  9360. <divclass="card_img">
  9361. <imgsrc="../images/cardlist/card/BT10-107.png"alt="BT10-107BuzzingFist"></div>
  9362. <divclass="cardinfo_top_body">
  9363. <dl>
  9364. <dt>Form</dt>
  9365. <dd>-</dd>
  9366. </dl>
  9367. <dl>
  9368. <dt>Attribute</dt>
  9369. <dd>-</dd>
  9370. </dl>
  9371. <dl>
  9372. <dt>Type</dt>
  9373. <dd>-</dd>
  9374. </dl>
  9375. <dl>
  9376. <dt>DP</dt>
  9377. <dd>-</dl>
  9378. <dl>
  9379. <dt>PlayCost</dt>
  9380. <dd>1</dd>
  9381. </dl>
  9382. <dl>
  9383. <dt>DigivolveCost1</dt>
  9384. <dd>-</dd>
  9385. </dl>
  9386. <dl>
  9387. <dt>DigivolveCost2</dt>
  9388. <dd>-</dd>
  9389. </dl>
  9390. </div>
  9391. </div>
  9392. <divclass="cardinfo_bottom">
  9393. <dl>
  9394. <dt>Effect</dt>
  9395. <dd>[Main] Reveal the top 3 cards of your deck. Add up to 1 card with [Bagra Army] in its traits among them to your hand. Trash the rest. Then, you may place 1 Digimon card with [Bagra Army] in its traits from your trash under one of your Tamers.</dd>
  9396. </dl>
  9397. <dl>
  9398. <dt>Digivolveeffect</dt>
  9399. <dd>-</dd>
  9400. </dl>
  9401. <dl>
  9402. <dt>Securityeffect</dt>
  9403. <dd>[Security] You may play 1 [Yuu Amano] from your hand or trash without paying its memory cost. Then, add this card to its owner's hand.</dd>
  9404. </dl>
  9405. <dl>
  9406. <dt>Notes</dt>
  9407. <dd>BOOSTERXrosEncounter[BT10]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT10-107'>ErrataCard</a></dd></dl>
  9408. </div>
  9409. </div>
  9410. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9411. </div>
  9412. </div>
  9413. </li>
  9414. <liclass="image_lists_itemdatapage-4">
  9415. <aclass="card_img">
  9416. <imgsrc="../images/cardlist/card/BT10-108.png"alt="BT10-108DeaththeCannon"></a>
  9417. <divclass="popup">
  9418. <divclass="card_detailcard_detail_purple">
  9419. <divclass="card_detail_inner">
  9420. <ulclass="cardinfo_head">
  9421. <liclass="cardno">BT10-108</li>
  9422. <li>U</li>
  9423. <liclass="cardtype">Option</li>
  9424. </ul>
  9425. <divclass="card_name">DeaththeCannon</div>
  9426. <divclass="cardinfo_top">
  9427. <divclass="card_img">
  9428. <imgsrc="../images/cardlist/card/BT10-108.png"alt="BT10-108DeaththeCannon"></div>
  9429. <divclass="cardinfo_top_body">
  9430. <dl>
  9431. <dt>Form</dt>
  9432. <dd>-</dd>
  9433. </dl>
  9434. <dl>
  9435. <dt>Attribute</dt>
  9436. <dd>-</dd>
  9437. </dl>
  9438. <dl>
  9439. <dt>Type</dt>
  9440. <dd>-</dd>
  9441. </dl>
  9442. <dl>
  9443. <dt>DP</dt>
  9444. <dd>-</dl>
  9445. <dl>
  9446. <dt>PlayCost</dt>
  9447. <dd>7</dd>
  9448. </dl>
  9449. <dl>
  9450. <dt>DigivolveCost1</dt>
  9451. <dd>-</dd>
  9452. </dl>
  9453. <dl>
  9454. <dt>DigivolveCost2</dt>
  9455. <dd>-</dd>
  9456. </dl>
  9457. </div>
  9458. </div>
  9459. <divclass="cardinfo_bottom">
  9460. <dl>
  9461. <dt>Effect</dt>
  9462. <dd>When this card is trashed from your deck, return it to your hand.<br>[Main] Delete 1 of your opponent's level 6 or lower Digimon. If there are 10 or more cards in your trash, add 1 to the level of the Digimon you can select with this effect.</dd>
  9463. </dl>
  9464. <dl>
  9465. <dt>Digivolveeffect</dt>
  9466. <dd>-</dd>
  9467. </dl>
  9468. <dl>
  9469. <dt>Securityeffect</dt>
  9470. <dd>[Security] Activate this card's [Main] effect.</dd>
  9471. </dl>
  9472. <dl>
  9473. <dt>Notes</dt>
  9474. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9475. </div>
  9476. </div>
  9477. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9478. </div>
  9479. </div>
  9480. </li>
  9481. <liclass="image_lists_itemdatapage-4">
  9482. <aclass="card_img">
  9483. <imgsrc="../images/cardlist/card/BT10-109.png"alt="BT10-109ReinforcementPlug-InO"></a>
  9484. <divclass="popup">
  9485. <divclass="card_detailcard_detail_white">
  9486. <divclass="card_detail_inner">
  9487. <ulclass="cardinfo_head">
  9488. <liclass="cardno">BT10-109</li>
  9489. <li>U</li>
  9490. <liclass="cardtype">Option</li>
  9491. </ul>
  9492. <divclass="card_name">ReinforcementPlug-InO</div>
  9493. <divclass="cardinfo_top">
  9494. <divclass="card_img">
  9495. <imgsrc="../images/cardlist/card/BT10-109.png"alt="BT10-109ReinforcementPlug-InO"></div>
  9496. <divclass="cardinfo_top_body">
  9497. <dl>
  9498. <dt>Form</dt>
  9499. <dd>-</dd>
  9500. </dl>
  9501. <dl>
  9502. <dt>Attribute</dt>
  9503. <dd>-</dd>
  9504. </dl>
  9505. <dl>
  9506. <dt>Type</dt>
  9507. <dd>-</dd>
  9508. </dl>
  9509. <dl>
  9510. <dt>DP</dt>
  9511. <dd>-</dl>
  9512. <dl>
  9513. <dt>PlayCost</dt>
  9514. <dd>2</dd>
  9515. </dl>
  9516. <dl>
  9517. <dt>DigivolveCost1</dt>
  9518. <dd>-</dd>
  9519. </dl>
  9520. <dl>
  9521. <dt>DigivolveCost2</dt>
  9522. <dd>-</dd>
  9523. </dl>
  9524. </div>
  9525. </div>
  9526. <divclass="cardinfo_bottom">
  9527. <dl>
  9528. <dt>Effect</dt>
  9529. <dd>While you have a Tamer in play, you may use this card without meeting its color requirements.<br>[Main] 1 of your Digimon gets +3000 DP until the end of your opponent's turn.</dd>
  9530. </dl>
  9531. <dl>
  9532. <dt>Digivolveeffect</dt>
  9533. <dd>-</dd>
  9534. </dl>
  9535. <dl>
  9536. <dt>Securityeffect</dt>
  9537. <dd>[Security] Gain 1 memory and add this card to its owner's hand.</dd>
  9538. </dl>
  9539. <dl>
  9540. <dt>Notes</dt>
  9541. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9542. </div>
  9543. </div>
  9544. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9545. </div>
  9546. </div>
  9547. </li>
  9548. <liclass="image_lists_itemdatapage-4">
  9549. <aclass="card_img">
  9550. <imgsrc="../images/cardlist/card/BT10-110.png"alt="BT10-110SeikenMeppa"></a>
  9551. <divclass="popup">
  9552. <divclass="card_detailcard_detail_white">
  9553. <divclass="card_detail_inner">
  9554. <ulclass="cardinfo_head">
  9555. <liclass="cardno">BT10-110</li>
  9556. <li>U</li>
  9557. <liclass="cardtype">Option</li>
  9558. </ul>
  9559. <divclass="card_name">SeikenMeppa</div>
  9560. <divclass="cardinfo_top">
  9561. <divclass="card_img">
  9562. <imgsrc="../images/cardlist/card/BT10-110.png"alt="BT10-110SeikenMeppa"></div>
  9563. <divclass="cardinfo_top_body">
  9564. <dl>
  9565. <dt>Form</dt>
  9566. <dd>-</dd>
  9567. </dl>
  9568. <dl>
  9569. <dt>Attribute</dt>
  9570. <dd>-</dd>
  9571. </dl>
  9572. <dl>
  9573. <dt>Type</dt>
  9574. <dd>RoyalKnight</dd>
  9575. </dl>
  9576. <dl>
  9577. <dt>DP</dt>
  9578. <dd>-</dl>
  9579. <dl>
  9580. <dt>PlayCost</dt>
  9581. <dd>3</dd>
  9582. </dl>
  9583. <dl>
  9584. <dt>DigivolveCost1</dt>
  9585. <dd>-</dd>
  9586. </dl>
  9587. <dl>
  9588. <dt>DigivolveCost2</dt>
  9589. <dd>-</dd>
  9590. </dl>
  9591. </div>
  9592. </div>
  9593. <divclass="cardinfo_bottom">
  9594. <dl>
  9595. <dt>Effect</dt>
  9596. <dd>While you have a Digimon with [Royal Knight] in its traits in play, you may use this card without meeting its color requirements.<br>[Main] Unsuspend 1 of your Digimon. Then, if that Digimon is [Jesmon GX], activate 1 of its [When Digivolving] effects.</dd>
  9597. </dl>
  9598. <dl>
  9599. <dt>Digivolveeffect</dt>
  9600. <dd>-</dd>
  9601. </dl>
  9602. <dl>
  9603. <dt>Securityeffect</dt>
  9604. <dd>[Security] Add this card to its owner's hand.</dd>
  9605. </dl>
  9606. <dl>
  9607. <dt>Notes</dt>
  9608. <dd><ahref="/products/pack/ver10.php">&rtri;BOOSTERXrosEncounter[BT10]</a></dd></dl>
  9609. </div>
  9610. </div>
  9611. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9612. </div>
  9613. </div>
  9614. </li>