522010.txt 208 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT9-001.png"alt="BT9-001Koromon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT9-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Koromon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT9-001.png"alt="BT9-001Koromon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Form</dt>
  20. <dd>In-Training</dd>
  21. </dl>
  22. <dl>
  23. <dt>Attribute</dt>
  24. <dd>-</dd>
  25. </dl>
  26. <dl>
  27. <dt>Type</dt>
  28. <dd>Lesser</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>-</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>-</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>-</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[Your Turn] While this Digimon has [Agumon] or [Greymon] in its name, it 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/ver9.php">&rtri;BOOSTERXRECORD[BT09]</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/BT9-001_P1.png"alt="BT9-001Koromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  72. </a>
  73. <divclass="popup">
  74. <divclass="card_detailcard_detail_red">
  75. <divclass="card_detail_inner">
  76. <ulclass="cardinfo_head">
  77. <liclass="cardno">BT9-001</li>
  78. <li>U</li>
  79. <liclass="cardtype">Digi-Egg</li>
  80. <liclass="cardlv">Lv.2</li>
  81. <liclass="cardtypecardParallel">AlternativeArt</li>
  82. </ul>
  83. <divclass="card_name">Koromon</div>
  84. <divclass="cardinfo_top">
  85. <divclass="card_img">
  86. <imgsrc="../images/cardlist/card/BT9-001_P1.png"alt="BT9-001Koromon"></div>
  87. <divclass="cardinfo_top_body">
  88. <dl>
  89. <dt>Form</dt>
  90. <dd>In-Training</dd>
  91. </dl>
  92. <dl>
  93. <dt>Attribute</dt>
  94. <dd>-</dd>
  95. </dl>
  96. <dl>
  97. <dt>Type</dt>
  98. <dd>Lesser</dd>
  99. </dl>
  100. <dl>
  101. <dt>DP</dt>
  102. <dd>-</dl>
  103. <dl>
  104. <dt>PlayCost</dt>
  105. <dd>-</dd>
  106. </dl>
  107. <dl>
  108. <dt>DigivolveCost1</dt>
  109. <dd>-</dd>
  110. </dl>
  111. <dl>
  112. <dt>DigivolveCost2</dt>
  113. <dd>-</dd>
  114. </dl>
  115. </div>
  116. </div>
  117. <divclass="cardinfo_bottom">
  118. <dl>
  119. <dt>Effect</dt>
  120. <dd>-</dd>
  121. </dl>
  122. <dl>
  123. <dt>Digivolveeffect</dt>
  124. <dd>[Your Turn] While this Digimon has [Agumon] or [Greymon] in its name, it gets +1000 DP.</dd>
  125. </dl>
  126. <dl>
  127. <dt>Securityeffect</dt>
  128. <dd>-</dd>
  129. </dl>
  130. <dl>
  131. <dt>Notes</dt>
  132. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  133. </div>
  134. </div>
  135. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  136. </div>
  137. </div>
  138. </li>
  139. <liclass="image_lists_itemdatapage-1">
  140. <aclass="card_img">
  141. <imgsrc="../images/cardlist/card/BT9-002.png"alt="BT9-002Puyoyomon"></a>
  142. <divclass="popup">
  143. <divclass="card_detailcard_detail_blue">
  144. <divclass="card_detail_inner">
  145. <ulclass="cardinfo_head">
  146. <liclass="cardno">BT9-002</li>
  147. <li>U</li>
  148. <liclass="cardtype">Digi-Egg</li>
  149. <liclass="cardlv">Lv.2</li>
  150. </ul>
  151. <divclass="card_name">Puyoyomon</div>
  152. <divclass="cardinfo_top">
  153. <divclass="card_img">
  154. <imgsrc="../images/cardlist/card/BT9-002.png"alt="BT9-002Puyoyomon"></div>
  155. <divclass="cardinfo_top_body">
  156. <dl>
  157. <dt>Form</dt>
  158. <dd>In-Training</dd>
  159. </dl>
  160. <dl>
  161. <dt>Attribute</dt>
  162. <dd>-</dd>
  163. </dl>
  164. <dl>
  165. <dt>Type</dt>
  166. <dd>Lesser</dd>
  167. </dl>
  168. <dl>
  169. <dt>DP</dt>
  170. <dd>-</dl>
  171. <dl>
  172. <dt>PlayCost</dt>
  173. <dd>-</dd>
  174. </dl>
  175. <dl>
  176. <dt>DigivolveCost1</dt>
  177. <dd>-</dd>
  178. </dl>
  179. <dl>
  180. <dt>DigivolveCost2</dt>
  181. <dd>-</dd>
  182. </dl>
  183. </div>
  184. </div>
  185. <divclass="cardinfo_bottom">
  186. <dl>
  187. <dt>Effect</dt>
  188. <dd>-</dd>
  189. </dl>
  190. <dl>
  191. <dt>Digivolveeffect</dt>
  192. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, this Digimon gets +1000 DP for the turn.</dd>
  193. </dl>
  194. <dl>
  195. <dt>Securityeffect</dt>
  196. <dd>-</dd>
  197. </dl>
  198. <dl>
  199. <dt>Notes</dt>
  200. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  201. </div>
  202. </div>
  203. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  204. </div>
  205. </div>
  206. </li>
  207. <liclass="image_lists_itemdatapage-1">
  208. <aclass="card_img">
  209. <imgsrc="../images/cardlist/card/BT9-002_P1.png"alt="BT9-002Puyoyomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  210. </a>
  211. <divclass="popup">
  212. <divclass="card_detailcard_detail_blue">
  213. <divclass="card_detail_inner">
  214. <ulclass="cardinfo_head">
  215. <liclass="cardno">BT9-002</li>
  216. <li>U</li>
  217. <liclass="cardtype">Digi-Egg</li>
  218. <liclass="cardlv">Lv.2</li>
  219. <liclass="cardtypecardParallel">AlternativeArt</li>
  220. </ul>
  221. <divclass="card_name">Puyoyomon</div>
  222. <divclass="cardinfo_top">
  223. <divclass="card_img">
  224. <imgsrc="../images/cardlist/card/BT9-002_P1.png"alt="BT9-002Puyoyomon"></div>
  225. <divclass="cardinfo_top_body">
  226. <dl>
  227. <dt>Form</dt>
  228. <dd>In-Training</dd>
  229. </dl>
  230. <dl>
  231. <dt>Attribute</dt>
  232. <dd>-</dd>
  233. </dl>
  234. <dl>
  235. <dt>Type</dt>
  236. <dd>Lesser</dd>
  237. </dl>
  238. <dl>
  239. <dt>DP</dt>
  240. <dd>-</dl>
  241. <dl>
  242. <dt>PlayCost</dt>
  243. <dd>-</dd>
  244. </dl>
  245. <dl>
  246. <dt>DigivolveCost1</dt>
  247. <dd>-</dd>
  248. </dl>
  249. <dl>
  250. <dt>DigivolveCost2</dt>
  251. <dd>-</dd>
  252. </dl>
  253. </div>
  254. </div>
  255. <divclass="cardinfo_bottom">
  256. <dl>
  257. <dt>Effect</dt>
  258. <dd>-</dd>
  259. </dl>
  260. <dl>
  261. <dt>Digivolveeffect</dt>
  262. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, this Digimon gets +1000 DP for the turn.</dd>
  263. </dl>
  264. <dl>
  265. <dt>Securityeffect</dt>
  266. <dd>-</dd>
  267. </dl>
  268. <dl>
  269. <dt>Notes</dt>
  270. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  271. </div>
  272. </div>
  273. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  274. </div>
  275. </div>
  276. </li>
  277. <liclass="image_lists_itemdatapage-1">
  278. <aclass="card_img">
  279. <imgsrc="../images/cardlist/card/BT9-003.png"alt="BT9-003Tokomon(XAntibody)"></a>
  280. <divclass="popup">
  281. <divclass="card_detailcard_detail_yellow">
  282. <divclass="card_detail_inner">
  283. <ulclass="cardinfo_head">
  284. <liclass="cardno">BT9-003</li>
  285. <li>U</li>
  286. <liclass="cardtype">Digi-Egg</li>
  287. <liclass="cardlv">Lv.2</li>
  288. </ul>
  289. <divclass="card_name">Tokomon(XAntibody)</div>
  290. <divclass="cardinfo_top">
  291. <divclass="card_img">
  292. <imgsrc="../images/cardlist/card/BT9-003.png"alt="BT9-003Tokomon(XAntibody)"></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>Lesser/XAntibody</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>[Your Turn][Once Per Turn] When a card is added to your security stack, 1 of your opponent's Digimon gets -1000 DP for the turn.</dd>
  331. </dl>
  332. <dl>
  333. <dt>Securityeffect</dt>
  334. <dd>-</dd>
  335. </dl>
  336. <dl>
  337. <dt>Notes</dt>
  338. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></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/BT9-003_P1.png"alt="BT9-003Tokomon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  348. </a>
  349. <divclass="popup">
  350. <divclass="card_detailcard_detail_yellow">
  351. <divclass="card_detail_inner">
  352. <ulclass="cardinfo_head">
  353. <liclass="cardno">BT9-003</li>
  354. <li>U</li>
  355. <liclass="cardtype">Digi-Egg</li>
  356. <liclass="cardlv">Lv.2</li>
  357. <liclass="cardtypecardParallel">AlternativeArt</li>
  358. </ul>
  359. <divclass="card_name">Tokomon(XAntibody)</div>
  360. <divclass="cardinfo_top">
  361. <divclass="card_img">
  362. <imgsrc="../images/cardlist/card/BT9-003_P1.png"alt="BT9-003Tokomon(XAntibody)"></div>
  363. <divclass="cardinfo_top_body">
  364. <dl>
  365. <dt>Form</dt>
  366. <dd>In-Training</dd>
  367. </dl>
  368. <dl>
  369. <dt>Attribute</dt>
  370. <dd>-</dd>
  371. </dl>
  372. <dl>
  373. <dt>Type</dt>
  374. <dd>Lesser/XAntibody</dd>
  375. </dl>
  376. <dl>
  377. <dt>DP</dt>
  378. <dd>-</dl>
  379. <dl>
  380. <dt>PlayCost</dt>
  381. <dd>-</dd>
  382. </dl>
  383. <dl>
  384. <dt>DigivolveCost1</dt>
  385. <dd>-</dd>
  386. </dl>
  387. <dl>
  388. <dt>DigivolveCost2</dt>
  389. <dd>-</dd>
  390. </dl>
  391. </div>
  392. </div>
  393. <divclass="cardinfo_bottom">
  394. <dl>
  395. <dt>Effect</dt>
  396. <dd>-</dd>
  397. </dl>
  398. <dl>
  399. <dt>Digivolveeffect</dt>
  400. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, 1 of your opponent's Digimon gets -1000 DP for the turn.</dd>
  401. </dl>
  402. <dl>
  403. <dt>Securityeffect</dt>
  404. <dd>-</dd>
  405. </dl>
  406. <dl>
  407. <dt>Notes</dt>
  408. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  409. </div>
  410. </div>
  411. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  412. </div>
  413. </div>
  414. </li>
  415. <liclass="image_lists_itemdatapage-1">
  416. <aclass="card_img">
  417. <imgsrc="../images/cardlist/card/BT9-004.png"alt="BT9-004Motimon"></a>
  418. <divclass="popup">
  419. <divclass="card_detailcard_detail_green">
  420. <divclass="card_detail_inner">
  421. <ulclass="cardinfo_head">
  422. <liclass="cardno">BT9-004</li>
  423. <li>U</li>
  424. <liclass="cardtype">Digi-Egg</li>
  425. <liclass="cardlv">Lv.2</li>
  426. </ul>
  427. <divclass="card_name">Motimon</div>
  428. <divclass="cardinfo_top">
  429. <divclass="card_img">
  430. <imgsrc="../images/cardlist/card/BT9-004.png"alt="BT9-004Motimon"></div>
  431. <divclass="cardinfo_top_body">
  432. <dl>
  433. <dt>Form</dt>
  434. <dd>In-Training</dd>
  435. </dl>
  436. <dl>
  437. <dt>Attribute</dt>
  438. <dd>-</dd>
  439. </dl>
  440. <dl>
  441. <dt>Type</dt>
  442. <dd>Lesser</dd>
  443. </dl>
  444. <dl>
  445. <dt>DP</dt>
  446. <dd>-</dl>
  447. <dl>
  448. <dt>PlayCost</dt>
  449. <dd>-</dd>
  450. </dl>
  451. <dl>
  452. <dt>DigivolveCost1</dt>
  453. <dd>-</dd>
  454. </dl>
  455. <dl>
  456. <dt>DigivolveCost2</dt>
  457. <dd>-</dd>
  458. </dl>
  459. </div>
  460. </div>
  461. <divclass="cardinfo_bottom">
  462. <dl>
  463. <dt>Effect</dt>
  464. <dd>-</dd>
  465. </dl>
  466. <dl>
  467. <dt>Digivolveeffect</dt>
  468. <dd>[Your Turn] While this Digimon has [Insectoid] in its traits, it gets +1000 DP.</dd>
  469. </dl>
  470. <dl>
  471. <dt>Securityeffect</dt>
  472. <dd>-</dd>
  473. </dl>
  474. <dl>
  475. <dt>Notes</dt>
  476. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  477. </div>
  478. </div>
  479. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  480. </div>
  481. </div>
  482. </li>
  483. <liclass="image_lists_itemdatapage-1">
  484. <aclass="card_img">
  485. <imgsrc="../images/cardlist/card/BT9-004_P1.png"alt="BT9-004Motimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  486. </a>
  487. <divclass="popup">
  488. <divclass="card_detailcard_detail_green">
  489. <divclass="card_detail_inner">
  490. <ulclass="cardinfo_head">
  491. <liclass="cardno">BT9-004</li>
  492. <li>U</li>
  493. <liclass="cardtype">Digi-Egg</li>
  494. <liclass="cardlv">Lv.2</li>
  495. <liclass="cardtypecardParallel">AlternativeArt</li>
  496. </ul>
  497. <divclass="card_name">Motimon</div>
  498. <divclass="cardinfo_top">
  499. <divclass="card_img">
  500. <imgsrc="../images/cardlist/card/BT9-004_P1.png"alt="BT9-004Motimon"></div>
  501. <divclass="cardinfo_top_body">
  502. <dl>
  503. <dt>Form</dt>
  504. <dd>In-Training</dd>
  505. </dl>
  506. <dl>
  507. <dt>Attribute</dt>
  508. <dd>-</dd>
  509. </dl>
  510. <dl>
  511. <dt>Type</dt>
  512. <dd>Lesser</dd>
  513. </dl>
  514. <dl>
  515. <dt>DP</dt>
  516. <dd>-</dl>
  517. <dl>
  518. <dt>PlayCost</dt>
  519. <dd>-</dd>
  520. </dl>
  521. <dl>
  522. <dt>DigivolveCost1</dt>
  523. <dd>-</dd>
  524. </dl>
  525. <dl>
  526. <dt>DigivolveCost2</dt>
  527. <dd>-</dd>
  528. </dl>
  529. </div>
  530. </div>
  531. <divclass="cardinfo_bottom">
  532. <dl>
  533. <dt>Effect</dt>
  534. <dd>-</dd>
  535. </dl>
  536. <dl>
  537. <dt>Digivolveeffect</dt>
  538. <dd>[Your Turn] While this Digimon has [Insectoid] in its traits, it gets +1000 DP.</dd>
  539. </dl>
  540. <dl>
  541. <dt>Securityeffect</dt>
  542. <dd>-</dd>
  543. </dl>
  544. <dl>
  545. <dt>Notes</dt>
  546. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  547. </div>
  548. </div>
  549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  550. </div>
  551. </div>
  552. </li>
  553. <liclass="image_lists_itemdatapage-1">
  554. <aclass="card_img">
  555. <imgsrc="../images/cardlist/card/BT9-004_P2.png"alt="BT9-004Motimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  556. </a>
  557. <divclass="popup">
  558. <divclass="card_detailcard_detail_green">
  559. <divclass="card_detail_inner">
  560. <ulclass="cardinfo_head">
  561. <liclass="cardno">BT9-004</li>
  562. <li>U</li>
  563. <liclass="cardtype">Digi-Egg</li>
  564. <liclass="cardlv">Lv.2</li>
  565. <liclass="cardtypecardParallel">AlternativeArt</li>
  566. </ul>
  567. <divclass="card_name">Motimon</div>
  568. <divclass="cardinfo_top">
  569. <divclass="card_img">
  570. <imgsrc="../images/cardlist/card/BT9-004_P2.png"alt="BT9-004Motimon"></div>
  571. <divclass="cardinfo_top_body">
  572. <dl>
  573. <dt>Form</dt>
  574. <dd>In-Training</dd>
  575. </dl>
  576. <dl>
  577. <dt>Attribute</dt>
  578. <dd>-</dd>
  579. </dl>
  580. <dl>
  581. <dt>Type</dt>
  582. <dd>Lesser</dd>
  583. </dl>
  584. <dl>
  585. <dt>DP</dt>
  586. <dd>-</dl>
  587. <dl>
  588. <dt>PlayCost</dt>
  589. <dd>-</dd>
  590. </dl>
  591. <dl>
  592. <dt>DigivolveCost1</dt>
  593. <dd>-</dd>
  594. </dl>
  595. <dl>
  596. <dt>DigivolveCost2</dt>
  597. <dd>-</dd>
  598. </dl>
  599. </div>
  600. </div>
  601. <divclass="cardinfo_bottom">
  602. <dl>
  603. <dt>Effect</dt>
  604. <dd>-</dd>
  605. </dl>
  606. <dl>
  607. <dt>Digivolveeffect</dt>
  608. <dd>[Your Turn] While this Digimon has [Insectoid] in its traits, it gets +1000 DP.</dd>
  609. </dl>
  610. <dl>
  611. <dt>Securityeffect</dt>
  612. <dd>-</dd>
  613. </dl>
  614. <dl>
  615. <dt>Notes</dt>
  616. <dd>TournamentPackVol.8</dd></dl>
  617. </div>
  618. </div>
  619. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  620. </div>
  621. </div>
  622. </li>
  623. <liclass="image_lists_itemdatapage-1">
  624. <aclass="card_img">
  625. <imgsrc="../images/cardlist/card/BT9-005.png"alt="BT9-005Tumblemon"></a>
  626. <divclass="popup">
  627. <divclass="card_detailcard_detail_black">
  628. <divclass="card_detail_inner">
  629. <ulclass="cardinfo_head">
  630. <liclass="cardno">BT9-005</li>
  631. <li>U</li>
  632. <liclass="cardtype">Digi-Egg</li>
  633. <liclass="cardlv">Lv.2</li>
  634. </ul>
  635. <divclass="card_name">Tumblemon</div>
  636. <divclass="cardinfo_top">
  637. <divclass="card_img">
  638. <imgsrc="../images/cardlist/card/BT9-005.png"alt="BT9-005Tumblemon"></div>
  639. <divclass="cardinfo_top_body">
  640. <dl>
  641. <dt>Form</dt>
  642. <dd>In-Training</dd>
  643. </dl>
  644. <dl>
  645. <dt>Attribute</dt>
  646. <dd>-</dd>
  647. </dl>
  648. <dl>
  649. <dt>Type</dt>
  650. <dd>Rock</dd>
  651. </dl>
  652. <dl>
  653. <dt>DP</dt>
  654. <dd>-</dl>
  655. <dl>
  656. <dt>PlayCost</dt>
  657. <dd>-</dd>
  658. </dl>
  659. <dl>
  660. <dt>DigivolveCost1</dt>
  661. <dd>-</dd>
  662. </dl>
  663. <dl>
  664. <dt>DigivolveCost2</dt>
  665. <dd>-</dd>
  666. </dl>
  667. </div>
  668. </div>
  669. <divclass="cardinfo_bottom">
  670. <dl>
  671. <dt>Effect</dt>
  672. <dd>-</dd>
  673. </dl>
  674. <dl>
  675. <dt>Digivolveeffect</dt>
  676. <dd>[Opponent's Turn] While this Digimon has <Blocker>, it gets +1000 DP.</dd>
  677. </dl>
  678. <dl>
  679. <dt>Securityeffect</dt>
  680. <dd>-</dd>
  681. </dl>
  682. <dl>
  683. <dt>Notes</dt>
  684. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  685. </div>
  686. </div>
  687. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  688. </div>
  689. </div>
  690. </li>
  691. <liclass="image_lists_itemdatapage-1">
  692. <aclass="card_img">
  693. <imgsrc="../images/cardlist/card/BT9-005_P1.png"alt="BT9-005Tumblemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  694. </a>
  695. <divclass="popup">
  696. <divclass="card_detailcard_detail_black">
  697. <divclass="card_detail_inner">
  698. <ulclass="cardinfo_head">
  699. <liclass="cardno">BT9-005</li>
  700. <li>U</li>
  701. <liclass="cardtype">Digi-Egg</li>
  702. <liclass="cardlv">Lv.2</li>
  703. <liclass="cardtypecardParallel">AlternativeArt</li>
  704. </ul>
  705. <divclass="card_name">Tumblemon</div>
  706. <divclass="cardinfo_top">
  707. <divclass="card_img">
  708. <imgsrc="../images/cardlist/card/BT9-005_P1.png"alt="BT9-005Tumblemon"></div>
  709. <divclass="cardinfo_top_body">
  710. <dl>
  711. <dt>Form</dt>
  712. <dd>In-Training</dd>
  713. </dl>
  714. <dl>
  715. <dt>Attribute</dt>
  716. <dd>-</dd>
  717. </dl>
  718. <dl>
  719. <dt>Type</dt>
  720. <dd>Rock</dd>
  721. </dl>
  722. <dl>
  723. <dt>DP</dt>
  724. <dd>-</dl>
  725. <dl>
  726. <dt>PlayCost</dt>
  727. <dd>-</dd>
  728. </dl>
  729. <dl>
  730. <dt>DigivolveCost1</dt>
  731. <dd>-</dd>
  732. </dl>
  733. <dl>
  734. <dt>DigivolveCost2</dt>
  735. <dd>-</dd>
  736. </dl>
  737. </div>
  738. </div>
  739. <divclass="cardinfo_bottom">
  740. <dl>
  741. <dt>Effect</dt>
  742. <dd>-</dd>
  743. </dl>
  744. <dl>
  745. <dt>Digivolveeffect</dt>
  746. <dd>[Opponent's Turn] While this Digimon has <Blocker>, it gets +1000 DP.</dd>
  747. </dl>
  748. <dl>
  749. <dt>Securityeffect</dt>
  750. <dd>-</dd>
  751. </dl>
  752. <dl>
  753. <dt>Notes</dt>
  754. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  755. </div>
  756. </div>
  757. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  758. </div>
  759. </div>
  760. </li>
  761. <liclass="image_lists_itemdatapage-1">
  762. <aclass="card_img">
  763. <imgsrc="../images/cardlist/card/BT9-006.png"alt="BT9-006Pagumon"></a>
  764. <divclass="popup">
  765. <divclass="card_detailcard_detail_purple">
  766. <divclass="card_detail_inner">
  767. <ulclass="cardinfo_head">
  768. <liclass="cardno">BT9-006</li>
  769. <li>U</li>
  770. <liclass="cardtype">Digi-Egg</li>
  771. <liclass="cardlv">Lv.2</li>
  772. </ul>
  773. <divclass="card_name">Pagumon</div>
  774. <divclass="cardinfo_top">
  775. <divclass="card_img">
  776. <imgsrc="../images/cardlist/card/BT9-006.png"alt="BT9-006Pagumon"></div>
  777. <divclass="cardinfo_top_body">
  778. <dl>
  779. <dt>Form</dt>
  780. <dd>In-Training</dd>
  781. </dl>
  782. <dl>
  783. <dt>Attribute</dt>
  784. <dd>-</dd>
  785. </dl>
  786. <dl>
  787. <dt>Type</dt>
  788. <dd>Lesser</dd>
  789. </dl>
  790. <dl>
  791. <dt>DP</dt>
  792. <dd>-</dl>
  793. <dl>
  794. <dt>PlayCost</dt>
  795. <dd>-</dd>
  796. </dl>
  797. <dl>
  798. <dt>DigivolveCost1</dt>
  799. <dd>-</dd>
  800. </dl>
  801. <dl>
  802. <dt>DigivolveCost2</dt>
  803. <dd>-</dd>
  804. </dl>
  805. </div>
  806. </div>
  807. <divclass="cardinfo_bottom">
  808. <dl>
  809. <dt>Effect</dt>
  810. <dd>-</dd>
  811. </dl>
  812. <dl>
  813. <dt>Digivolveeffect</dt>
  814. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon get +1000 DP for the turn.</dd>
  815. </dl>
  816. <dl>
  817. <dt>Securityeffect</dt>
  818. <dd>-</dd>
  819. </dl>
  820. <dl>
  821. <dt>Notes</dt>
  822. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  823. </div>
  824. </div>
  825. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  826. </div>
  827. </div>
  828. </li>
  829. <liclass="image_lists_itemdatapage-1">
  830. <aclass="card_img">
  831. <imgsrc="../images/cardlist/card/BT9-006_P1.png"alt="BT9-006Pagumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  832. </a>
  833. <divclass="popup">
  834. <divclass="card_detailcard_detail_purple">
  835. <divclass="card_detail_inner">
  836. <ulclass="cardinfo_head">
  837. <liclass="cardno">BT9-006</li>
  838. <li>U</li>
  839. <liclass="cardtype">Digi-Egg</li>
  840. <liclass="cardlv">Lv.2</li>
  841. <liclass="cardtypecardParallel">AlternativeArt</li>
  842. </ul>
  843. <divclass="card_name">Pagumon</div>
  844. <divclass="cardinfo_top">
  845. <divclass="card_img">
  846. <imgsrc="../images/cardlist/card/BT9-006_P1.png"alt="BT9-006Pagumon"></div>
  847. <divclass="cardinfo_top_body">
  848. <dl>
  849. <dt>Form</dt>
  850. <dd>In-Training</dd>
  851. </dl>
  852. <dl>
  853. <dt>Attribute</dt>
  854. <dd>-</dd>
  855. </dl>
  856. <dl>
  857. <dt>Type</dt>
  858. <dd>Lesser</dd>
  859. </dl>
  860. <dl>
  861. <dt>DP</dt>
  862. <dd>-</dl>
  863. <dl>
  864. <dt>PlayCost</dt>
  865. <dd>-</dd>
  866. </dl>
  867. <dl>
  868. <dt>DigivolveCost1</dt>
  869. <dd>-</dd>
  870. </dl>
  871. <dl>
  872. <dt>DigivolveCost2</dt>
  873. <dd>-</dd>
  874. </dl>
  875. </div>
  876. </div>
  877. <divclass="cardinfo_bottom">
  878. <dl>
  879. <dt>Effect</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Digivolveeffect</dt>
  884. <dd>[When Attacking] You may trash 1 card in your hand to have this Digimon get +1000 DP for the turn.</dd>
  885. </dl>
  886. <dl>
  887. <dt>Securityeffect</dt>
  888. <dd>-</dd>
  889. </dl>
  890. <dl>
  891. <dt>Notes</dt>
  892. <dd>BOOSTERXRECORD[BT09]BoxTopper</dd></dl>
  893. </div>
  894. </div>
  895. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  896. </div>
  897. </div>
  898. </li>
  899. <liclass="image_lists_itemdatapage-1">
  900. <aclass="card_img">
  901. <imgsrc="../images/cardlist/card/BT9-007.png"alt="BT9-007Minidekachimon"></a>
  902. <divclass="popup">
  903. <divclass="card_detailcard_detail_red">
  904. <divclass="card_detail_inner">
  905. <ulclass="cardinfo_head">
  906. <liclass="cardno">BT9-007</li>
  907. <li>C</li>
  908. <liclass="cardtype">Digimon</li>
  909. <liclass="cardlv">Lv.3</li>
  910. </ul>
  911. <divclass="card_name">Minidekachimon</div>
  912. <divclass="cardinfo_top">
  913. <divclass="card_img">
  914. <imgsrc="../images/cardlist/card/BT9-007.png"alt="BT9-007Minidekachimon"></div>
  915. <divclass="cardinfo_top_body">
  916. <dl>
  917. <dt>Form</dt>
  918. <dd>Rookie</dd>
  919. </dl>
  920. <dl>
  921. <dt>Attribute</dt>
  922. <dd>Data</dd>
  923. </dl>
  924. <dl>
  925. <dt>Type</dt>
  926. <dd>MiniDragon</dd>
  927. </dl>
  928. <dl>
  929. <dt>DP</dt>
  930. <dd>3000</dl>
  931. <dl>
  932. <dt>PlayCost</dt>
  933. <dd>2</dd>
  934. </dl>
  935. <dl>
  936. <dt>DigivolveCost1</dt>
  937. <dd>0</dd>
  938. </dl>
  939. <dl>
  940. <dt>DigivolveCost2</dt>
  941. <dd>-</dd>
  942. </dl>
  943. </div>
  944. </div>
  945. <divclass="cardinfo_bottom">
  946. <dl>
  947. <dt>Effect</dt>
  948. <dd>-</dd>
  949. </dl>
  950. <dl>
  951. <dt>Digivolveeffect</dt>
  952. <dd>-</dd>
  953. </dl>
  954. <dl>
  955. <dt>Securityeffect</dt>
  956. <dd>-</dd>
  957. </dl>
  958. <dl>
  959. <dt>Notes</dt>
  960. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  961. </div>
  962. </div>
  963. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  964. </div>
  965. </div>
  966. </li>
  967. <liclass="image_lists_itemdatapage-1">
  968. <aclass="card_img">
  969. <imgsrc="../images/cardlist/card/BT9-008.png"alt="BT9-008Agumon(XAntibody)"></a>
  970. <divclass="popup">
  971. <divclass="card_detailcard_detail_red">
  972. <divclass="card_detail_inner">
  973. <ulclass="cardinfo_head">
  974. <liclass="cardno">BT9-008</li>
  975. <li>U</li>
  976. <liclass="cardtype">Digimon</li>
  977. <liclass="cardlv">Lv.3</li>
  978. </ul>
  979. <divclass="card_name">Agumon(XAntibody)</div>
  980. <divclass="cardinfo_top">
  981. <divclass="card_img">
  982. <imgsrc="../images/cardlist/card/BT9-008.png"alt="BT9-008Agumon(XAntibody)"></div>
  983. <divclass="cardinfo_top_body">
  984. <dl>
  985. <dt>Form</dt>
  986. <dd>Rookie</dd>
  987. </dl>
  988. <dl>
  989. <dt>Attribute</dt>
  990. <dd>Vaccine</dd>
  991. </dl>
  992. <dl>
  993. <dt>Type</dt>
  994. <dd>Dinosaur/XAntibody</dd>
  995. </dl>
  996. <dl>
  997. <dt>DP</dt>
  998. <dd>2000</dl>
  999. <dl>
  1000. <dt>PlayCost</dt>
  1001. <dd>3</dd>
  1002. </dl>
  1003. <dl>
  1004. <dt>DigivolveCost1</dt>
  1005. <dd>0</dd>
  1006. </dl>
  1007. <dl>
  1008. <dt>DigivolveCost2</dt>
  1009. <dd>-</dd>
  1010. </dl>
  1011. </div>
  1012. </div>
  1013. <divclass="cardinfo_bottom">
  1014. <dl>
  1015. <dt>Effect</dt>
  1016. <dd>Digivolve: 0 from [Agumon][On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Greymon] or [Omnimon] in its name and 1 [X Antibody] among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  1017. </dl>
  1018. <dl>
  1019. <dt>Digivolveeffect</dt>
  1020. <dd>-</dd>
  1021. </dl>
  1022. <dl>
  1023. <dt>Securityeffect</dt>
  1024. <dd>-</dd>
  1025. </dl>
  1026. <dl>
  1027. <dt>Notes</dt>
  1028. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1029. </div>
  1030. </div>
  1031. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1032. </div>
  1033. </div>
  1034. </li>
  1035. <liclass="image_lists_itemdatapage-1">
  1036. <aclass="card_img">
  1037. <imgsrc="../images/cardlist/card/BT9-008_P1.png"alt="BT9-008Agumon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1038. </a>
  1039. <divclass="popup">
  1040. <divclass="card_detailcard_detail_red">
  1041. <divclass="card_detail_inner">
  1042. <ulclass="cardinfo_head">
  1043. <liclass="cardno">BT9-008</li>
  1044. <li>U</li>
  1045. <liclass="cardtype">Digimon</li>
  1046. <liclass="cardlv">Lv.3</li>
  1047. <liclass="cardtypecardParallel">AlternativeArt</li>
  1048. </ul>
  1049. <divclass="card_name">Agumon(XAntibody)</div>
  1050. <divclass="cardinfo_top">
  1051. <divclass="card_img">
  1052. <imgsrc="../images/cardlist/card/BT9-008_P1.png"alt="BT9-008Agumon(XAntibody)"></div>
  1053. <divclass="cardinfo_top_body">
  1054. <dl>
  1055. <dt>Form</dt>
  1056. <dd>Rookie</dd>
  1057. </dl>
  1058. <dl>
  1059. <dt>Attribute</dt>
  1060. <dd>Vaccine</dd>
  1061. </dl>
  1062. <dl>
  1063. <dt>Type</dt>
  1064. <dd>Dinosaur/XAntibody</dd>
  1065. </dl>
  1066. <dl>
  1067. <dt>DP</dt>
  1068. <dd>2000</dl>
  1069. <dl>
  1070. <dt>PlayCost</dt>
  1071. <dd>3</dd>
  1072. </dl>
  1073. <dl>
  1074. <dt>DigivolveCost1</dt>
  1075. <dd>0</dd>
  1076. </dl>
  1077. <dl>
  1078. <dt>DigivolveCost2</dt>
  1079. <dd>-</dd>
  1080. </dl>
  1081. </div>
  1082. </div>
  1083. <divclass="cardinfo_bottom">
  1084. <dl>
  1085. <dt>Effect</dt>
  1086. <dd>Digivolve: 0 from [Agumon][On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Greymon] or [Omnimon] in its name and 1 [X Antibody] among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  1087. </dl>
  1088. <dl>
  1089. <dt>Digivolveeffect</dt>
  1090. <dd>-</dd>
  1091. </dl>
  1092. <dl>
  1093. <dt>Securityeffect</dt>
  1094. <dd>-</dd>
  1095. </dl>
  1096. <dl>
  1097. <dt>Notes</dt>
  1098. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1099. </div>
  1100. </div>
  1101. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1102. </div>
  1103. </div>
  1104. </li>
  1105. <liclass="image_lists_itemdatapage-1">
  1106. <aclass="card_img">
  1107. <imgsrc="../images/cardlist/card/BT9-009.png"alt="BT9-009Guilmon(XAntibody)"></a>
  1108. <divclass="popup">
  1109. <divclass="card_detailcard_detail_red">
  1110. <divclass="card_detail_inner">
  1111. <ulclass="cardinfo_head">
  1112. <liclass="cardno">BT9-009</li>
  1113. <li>U</li>
  1114. <liclass="cardtype">Digimon</li>
  1115. <liclass="cardlv">Lv.3</li>
  1116. </ul>
  1117. <divclass="card_name">Guilmon(XAntibody)</div>
  1118. <divclass="cardinfo_top">
  1119. <divclass="card_img">
  1120. <imgsrc="../images/cardlist/card/BT9-009.png"alt="BT9-009Guilmon(XAntibody)"></div>
  1121. <divclass="cardinfo_top_body">
  1122. <dl>
  1123. <dt>Form</dt>
  1124. <dd>Rookie</dd>
  1125. </dl>
  1126. <dl>
  1127. <dt>Attribute</dt>
  1128. <dd>Virus</dd>
  1129. </dl>
  1130. <dl>
  1131. <dt>Type</dt>
  1132. <dd>DarkDragon/XAntibody</dd>
  1133. </dl>
  1134. <dl>
  1135. <dt>DP</dt>
  1136. <dd>3000</dl>
  1137. <dl>
  1138. <dt>PlayCost</dt>
  1139. <dd>4</dd>
  1140. </dl>
  1141. <dl>
  1142. <dt>DigivolveCost1</dt>
  1143. <dd>0</dd>
  1144. </dl>
  1145. <dl>
  1146. <dt>DigivolveCost2</dt>
  1147. <dd>-</dd>
  1148. </dl>
  1149. </div>
  1150. </div>
  1151. <divclass="cardinfo_bottom">
  1152. <dl>
  1153. <dt>Effect</dt>
  1154. <dd>Digivolve: 0 from [Guilmon][When Digivolving] Delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  1155. </dl>
  1156. <dl>
  1157. <dt>Digivolveeffect</dt>
  1158. <dd>[Your Turn] Add 1000 to the maximum DP you can choose with DP-based deletion effects.</dd>
  1159. </dl>
  1160. <dl>
  1161. <dt>Securityeffect</dt>
  1162. <dd>-</dd>
  1163. </dl>
  1164. <dl>
  1165. <dt>Notes</dt>
  1166. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1167. </div>
  1168. </div>
  1169. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1170. </div>
  1171. </div>
  1172. </li>
  1173. <liclass="image_lists_itemdatapage-1">
  1174. <aclass="card_img">
  1175. <imgsrc="../images/cardlist/card/BT9-010.png"alt="BT9-010Atamadekachimon"></a>
  1176. <divclass="popup">
  1177. <divclass="card_detailcard_detail_red">
  1178. <divclass="card_detail_inner">
  1179. <ulclass="cardinfo_head">
  1180. <liclass="cardno">BT9-010</li>
  1181. <li>C</li>
  1182. <liclass="cardtype">Digimon</li>
  1183. <liclass="cardlv">Lv.4</li>
  1184. </ul>
  1185. <divclass="card_name">Atamadekachimon</div>
  1186. <divclass="cardinfo_top">
  1187. <divclass="card_img">
  1188. <imgsrc="../images/cardlist/card/BT9-010.png"alt="BT9-010Atamadekachimon"></div>
  1189. <divclass="cardinfo_top_body">
  1190. <dl>
  1191. <dt>Form</dt>
  1192. <dd>Champion</dd>
  1193. </dl>
  1194. <dl>
  1195. <dt>Attribute</dt>
  1196. <dd>Data</dd>
  1197. </dl>
  1198. <dl>
  1199. <dt>Type</dt>
  1200. <dd>Dinosaur</dd>
  1201. </dl>
  1202. <dl>
  1203. <dt>DP</dt>
  1204. <dd>7000</dl>
  1205. <dl>
  1206. <dt>PlayCost</dt>
  1207. <dd>5</dd>
  1208. </dl>
  1209. <dl>
  1210. <dt>DigivolveCost1</dt>
  1211. <dd>2</dd>
  1212. </dl>
  1213. <dl>
  1214. <dt>DigivolveCost2</dt>
  1215. <dd>-</dd>
  1216. </dl>
  1217. </div>
  1218. </div>
  1219. <divclass="cardinfo_bottom">
  1220. <dl>
  1221. <dt>Effect</dt>
  1222. <dd>-</dd>
  1223. </dl>
  1224. <dl>
  1225. <dt>Digivolveeffect</dt>
  1226. <dd>-</dd>
  1227. </dl>
  1228. <dl>
  1229. <dt>Securityeffect</dt>
  1230. <dd>-</dd>
  1231. </dl>
  1232. <dl>
  1233. <dt>Notes</dt>
  1234. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1235. </div>
  1236. </div>
  1237. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1238. </div>
  1239. </div>
  1240. </li>
  1241. <liclass="image_lists_itemdatapage-1">
  1242. <aclass="card_img">
  1243. <imgsrc="../images/cardlist/card/BT9-011.png"alt="BT9-011Growlmon(XAntibody)"></a>
  1244. <divclass="popup">
  1245. <divclass="card_detailcard_detail_red">
  1246. <divclass="card_detail_inner">
  1247. <ulclass="cardinfo_head">
  1248. <liclass="cardno">BT9-011</li>
  1249. <li>C</li>
  1250. <liclass="cardtype">Digimon</li>
  1251. <liclass="cardlv">Lv.4</li>
  1252. </ul>
  1253. <divclass="card_name">Growlmon(XAntibody)</div>
  1254. <divclass="cardinfo_top">
  1255. <divclass="card_img">
  1256. <imgsrc="../images/cardlist/card/BT9-011.png"alt="BT9-011Growlmon(XAntibody)"></div>
  1257. <divclass="cardinfo_top_body">
  1258. <dl>
  1259. <dt>Form</dt>
  1260. <dd>Champion</dd>
  1261. </dl>
  1262. <dl>
  1263. <dt>Attribute</dt>
  1264. <dd>Virus</dd>
  1265. </dl>
  1266. <dl>
  1267. <dt>Type</dt>
  1268. <dd>DarkDragon/XAntibody</dd>
  1269. </dl>
  1270. <dl>
  1271. <dt>DP</dt>
  1272. <dd>6000</dl>
  1273. <dl>
  1274. <dt>PlayCost</dt>
  1275. <dd>5</dd>
  1276. </dl>
  1277. <dl>
  1278. <dt>DigivolveCost1</dt>
  1279. <dd>2</dd>
  1280. </dl>
  1281. <dl>
  1282. <dt>DigivolveCost2</dt>
  1283. <dd>-</dd>
  1284. </dl>
  1285. </div>
  1286. </div>
  1287. <divclass="cardinfo_bottom">
  1288. <dl>
  1289. <dt>Effect</dt>
  1290. <dd>Digivolve: 0 from [Growlmon]</dd>
  1291. </dl>
  1292. <dl>
  1293. <dt>Digivolveeffect</dt>
  1294. <dd>[Your Turn] Add 1000 to the maximum DP you can choose with DP-based deletion effects.</dd>
  1295. </dl>
  1296. <dl>
  1297. <dt>Securityeffect</dt>
  1298. <dd>-</dd>
  1299. </dl>
  1300. <dl>
  1301. <dt>Notes</dt>
  1302. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1303. </div>
  1304. </div>
  1305. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1306. </div>
  1307. </div>
  1308. </li>
  1309. <liclass="image_lists_itemdatapage-1">
  1310. <aclass="card_img">
  1311. <imgsrc="../images/cardlist/card/BT9-012.png"alt="BT9-012Greymon(XAntibody)"></a>
  1312. <divclass="popup">
  1313. <divclass="card_detailcard_detail_red">
  1314. <divclass="card_detail_inner">
  1315. <ulclass="cardinfo_head">
  1316. <liclass="cardno">BT9-012</li>
  1317. <li>C</li>
  1318. <liclass="cardtype">Digimon</li>
  1319. <liclass="cardlv">Lv.4</li>
  1320. </ul>
  1321. <divclass="card_name">Greymon(XAntibody)</div>
  1322. <divclass="cardinfo_top">
  1323. <divclass="card_img">
  1324. <imgsrc="../images/cardlist/card/BT9-012.png"alt="BT9-012Greymon(XAntibody)"></div>
  1325. <divclass="cardinfo_top_body">
  1326. <dl>
  1327. <dt>Form</dt>
  1328. <dd>Champion</dd>
  1329. </dl>
  1330. <dl>
  1331. <dt>Attribute</dt>
  1332. <dd>Vaccine</dd>
  1333. </dl>
  1334. <dl>
  1335. <dt>Type</dt>
  1336. <dd>Dinosaur/XAntibody</dd>
  1337. </dl>
  1338. <dl>
  1339. <dt>DP</dt>
  1340. <dd>6000</dl>
  1341. <dl>
  1342. <dt>PlayCost</dt>
  1343. <dd>5</dd>
  1344. </dl>
  1345. <dl>
  1346. <dt>DigivolveCost1</dt>
  1347. <dd>2</dd>
  1348. </dl>
  1349. <dl>
  1350. <dt>DigivolveCost2</dt>
  1351. <dd>-</dd>
  1352. </dl>
  1353. </div>
  1354. </div>
  1355. <divclass="cardinfo_bottom">
  1356. <dl>
  1357. <dt>Effect</dt>
  1358. <dd>Digivolve: 0 from [Greymon]</dd>
  1359. </dl>
  1360. <dl>
  1361. <dt>Digivolveeffect</dt>
  1362. <dd>[All Turns] When this Digimon has [Greymon] or [Omnimon] in its name and an effect would delete it or return it to your hand or deck, you may trash 2 cards of the same level in this Digimon’s digivolution cards to prevent it from leaving play.</dd>
  1363. </dl>
  1364. <dl>
  1365. <dt>Securityeffect</dt>
  1366. <dd>-</dd>
  1367. </dl>
  1368. <dl>
  1369. <dt>Notes</dt>
  1370. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1371. </div>
  1372. </div>
  1373. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1374. </div>
  1375. </div>
  1376. </li>
  1377. <liclass="image_lists_itemdatapage-1">
  1378. <aclass="card_img">
  1379. <imgsrc="../images/cardlist/card/BT9-013.png"alt="BT9-013OmniShoutmon(XAntibody)"></a>
  1380. <divclass="popup">
  1381. <divclass="card_detailcard_detail_red">
  1382. <divclass="card_detail_inner">
  1383. <ulclass="cardinfo_head">
  1384. <liclass="cardno">BT9-013</li>
  1385. <li>U</li>
  1386. <liclass="cardtype">Digimon</li>
  1387. <liclass="cardlv">Lv.5</li>
  1388. </ul>
  1389. <divclass="card_name">OmniShoutmon(XAntibody)</div>
  1390. <divclass="cardinfo_top">
  1391. <divclass="card_img">
  1392. <imgsrc="../images/cardlist/card/BT9-013.png"alt="BT9-013OmniShoutmon(XAntibody)"></div>
  1393. <divclass="cardinfo_top_body">
  1394. <dl>
  1395. <dt>Form</dt>
  1396. <dd>Ultimate</dd>
  1397. </dl>
  1398. <dl>
  1399. <dt>Attribute</dt>
  1400. <dd>Vaccine</dd>
  1401. </dl>
  1402. <dl>
  1403. <dt>Type</dt>
  1404. <dd>Dragonkin/XAntibody</dd>
  1405. </dl>
  1406. <dl>
  1407. <dt>DP</dt>
  1408. <dd>8000</dl>
  1409. <dl>
  1410. <dt>PlayCost</dt>
  1411. <dd>8</dd>
  1412. </dl>
  1413. <dl>
  1414. <dt>DigivolveCost1</dt>
  1415. <dd>3</dd>
  1416. </dl>
  1417. <dl>
  1418. <dt>DigivolveCost2</dt>
  1419. <dd>-</dd>
  1420. </dl>
  1421. </div>
  1422. </div>
  1423. <divclass="cardinfo_bottom">
  1424. <dl>
  1425. <dt>Effect</dt>
  1426. <dd>Digivolve: 0 from [OmniShoutmon][When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[Your Turn] While this Digimon has [OmniShoutmon] or [X Antibody] in its digivolution cards, this Digimon can also attack your opponent’s unsuspended Digimon.</dd>
  1427. </dl>
  1428. <dl>
  1429. <dt>Digivolveeffect</dt>
  1430. <dd>-</dd>
  1431. </dl>
  1432. <dl>
  1433. <dt>Securityeffect</dt>
  1434. <dd>-</dd>
  1435. </dl>
  1436. <dl>
  1437. <dt>Notes</dt>
  1438. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1439. </div>
  1440. </div>
  1441. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1442. </div>
  1443. </div>
  1444. </li>
  1445. <liclass="image_lists_itemdatapage-1">
  1446. <aclass="card_img">
  1447. <imgsrc="../images/cardlist/card/BT9-014.png"alt="BT9-014WarGrowlmon(XAntibody)"></a>
  1448. <divclass="popup">
  1449. <divclass="card_detailcard_detail_red">
  1450. <divclass="card_detail_inner">
  1451. <ulclass="cardinfo_head">
  1452. <liclass="cardno">BT9-014</li>
  1453. <li>R</li>
  1454. <liclass="cardtype">Digimon</li>
  1455. <liclass="cardlv">Lv.5</li>
  1456. </ul>
  1457. <divclass="card_name">WarGrowlmon(XAntibody)</div>
  1458. <divclass="cardinfo_top">
  1459. <divclass="card_img">
  1460. <imgsrc="../images/cardlist/card/BT9-014.png"alt="BT9-014WarGrowlmon(XAntibody)"></div>
  1461. <divclass="cardinfo_top_body">
  1462. <dl>
  1463. <dt>Form</dt>
  1464. <dd>Ultimate</dd>
  1465. </dl>
  1466. <dl>
  1467. <dt>Attribute</dt>
  1468. <dd>Virus</dd>
  1469. </dl>
  1470. <dl>
  1471. <dt>Type</dt>
  1472. <dd>Cyborg/XAntibody</dd>
  1473. </dl>
  1474. <dl>
  1475. <dt>DP</dt>
  1476. <dd>8000</dl>
  1477. <dl>
  1478. <dt>PlayCost</dt>
  1479. <dd>8</dd>
  1480. </dl>
  1481. <dl>
  1482. <dt>DigivolveCost1</dt>
  1483. <dd>3</dd>
  1484. </dl>
  1485. <dl>
  1486. <dt>DigivolveCost2</dt>
  1487. <dd>-</dd>
  1488. </dl>
  1489. </div>
  1490. </div>
  1491. <divclass="cardinfo_bottom">
  1492. <dl>
  1493. <dt>Effect</dt>
  1494. <dd>Digivolve: 0 from [WarGrowlmon][When Digivolving] Until the end of your opponent's turn, 2 of their Digimon gain "[On Deletion] Lose 1 memory." Then, if [WarGrowlmon] or [X Antibody] is in this Digimon's digivolution cards, choose any number of your opponent's Digimon whose total DP adds up to 6000 or less and delete them.</dd>
  1495. </dl>
  1496. <dl>
  1497. <dt>Digivolveeffect</dt>
  1498. <dd>-</dd>
  1499. </dl>
  1500. <dl>
  1501. <dt>Securityeffect</dt>
  1502. <dd>-</dd>
  1503. </dl>
  1504. <dl>
  1505. <dt>Notes</dt>
  1506. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1507. </div>
  1508. </div>
  1509. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1510. </div>
  1511. </div>
  1512. </li>
  1513. <liclass="image_lists_itemdatapage-1">
  1514. <aclass="card_img">
  1515. <imgsrc="../images/cardlist/card/BT9-015.png"alt="BT9-015MetalGreymon(XAntibody)"></a>
  1516. <divclass="popup">
  1517. <divclass="card_detailcard_detail_red">
  1518. <divclass="card_detail_inner">
  1519. <ulclass="cardinfo_head">
  1520. <liclass="cardno">BT9-015</li>
  1521. <li>R</li>
  1522. <liclass="cardtype">Digimon</li>
  1523. <liclass="cardlv">Lv.5</li>
  1524. </ul>
  1525. <divclass="card_name">MetalGreymon(XAntibody)</div>
  1526. <divclass="cardinfo_top">
  1527. <divclass="card_img">
  1528. <imgsrc="../images/cardlist/card/BT9-015.png"alt="BT9-015MetalGreymon(XAntibody)"></div>
  1529. <divclass="cardinfo_top_body">
  1530. <dl>
  1531. <dt>Form</dt>
  1532. <dd>Ultimate</dd>
  1533. </dl>
  1534. <dl>
  1535. <dt>Attribute</dt>
  1536. <dd>Vaccine</dd>
  1537. </dl>
  1538. <dl>
  1539. <dt>Type</dt>
  1540. <dd>Cyborg/XAntibody</dd>
  1541. </dl>
  1542. <dl>
  1543. <dt>DP</dt>
  1544. <dd>8000</dl>
  1545. <dl>
  1546. <dt>PlayCost</dt>
  1547. <dd>8</dd>
  1548. </dl>
  1549. <dl>
  1550. <dt>DigivolveCost1</dt>
  1551. <dd>3</dd>
  1552. </dl>
  1553. <dl>
  1554. <dt>DigivolveCost2</dt>
  1555. <dd>-</dd>
  1556. </dl>
  1557. </div>
  1558. </div>
  1559. <divclass="cardinfo_bottom">
  1560. <dl>
  1561. <dt>Effect</dt>
  1562. <dd>Digivolve: 0 from [MetalGreymon][When Digivolving] This Digimon gains <Security Attack +1> (This Digimon checks 1 additional security card) until the end of your opponent's turn. Then, if this Digimon has [MetalGreymon] or [X Antibody] in its digivolution cards, this Digimon gets +3000 DP until the end of your opponent’s next turn.</dd>
  1563. </dl>
  1564. <dl>
  1565. <dt>Digivolveeffect</dt>
  1566. <dd>-</dd>
  1567. </dl>
  1568. <dl>
  1569. <dt>Securityeffect</dt>
  1570. <dd>-</dd>
  1571. </dl>
  1572. <dl>
  1573. <dt>Notes</dt>
  1574. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1575. </div>
  1576. </div>
  1577. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1578. </div>
  1579. </div>
  1580. </li>
  1581. <liclass="image_lists_itemdatapage-1">
  1582. <aclass="card_img">
  1583. <imgsrc="../images/cardlist/card/BT9-016.png"alt="BT9-016WarGreymon(XAntibody)"></a>
  1584. <divclass="popup">
  1585. <divclass="card_detailcard_detail_red">
  1586. <divclass="card_detail_inner">
  1587. <ulclass="cardinfo_head">
  1588. <liclass="cardno">BT9-016</li>
  1589. <li>SR</li>
  1590. <liclass="cardtype">Digimon</li>
  1591. <liclass="cardlv">Lv.6</li>
  1592. </ul>
  1593. <divclass="card_name">WarGreymon(XAntibody)</div>
  1594. <divclass="cardinfo_top">
  1595. <divclass="card_img">
  1596. <imgsrc="../images/cardlist/card/BT9-016.png"alt="BT9-016WarGreymon(XAntibody)"></div>
  1597. <divclass="cardinfo_top_body">
  1598. <dl>
  1599. <dt>Form</dt>
  1600. <dd>Mega</dd>
  1601. </dl>
  1602. <dl>
  1603. <dt>Attribute</dt>
  1604. <dd>Vaccine</dd>
  1605. </dl>
  1606. <dl>
  1607. <dt>Type</dt>
  1608. <dd>Dragonkin/XAntibody</dd>
  1609. </dl>
  1610. <dl>
  1611. <dt>DP</dt>
  1612. <dd>12000</dl>
  1613. <dl>
  1614. <dt>PlayCost</dt>
  1615. <dd>12</dd>
  1616. </dl>
  1617. <dl>
  1618. <dt>DigivolveCost1</dt>
  1619. <dd>4</dd>
  1620. </dl>
  1621. <dl>
  1622. <dt>DigivolveCost2</dt>
  1623. <dd>-</dd>
  1624. </dl>
  1625. </div>
  1626. </div>
  1627. <divclass="cardinfo_bottom">
  1628. <dl>
  1629. <dt>Effect</dt>
  1630. <dd>Digivolve: 1 from [WarGreymon][All Turns] When a card is removed from your opponent’s security stack, gain 1 memory. [End of Attack][Once Per Turn] If [WarGreymon] or [X Antibody] is in this Digimon’s digivolution cards, delete 1 of your opponent’s Digimon with DP less than or equal to this Digimon’s DP.</dd>
  1631. </dl>
  1632. <dl>
  1633. <dt>Digivolveeffect</dt>
  1634. <dd>-</dd>
  1635. </dl>
  1636. <dl>
  1637. <dt>Securityeffect</dt>
  1638. <dd>-</dd>
  1639. </dl>
  1640. <dl>
  1641. <dt>Notes</dt>
  1642. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1643. </div>
  1644. </div>
  1645. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1646. </div>
  1647. </div>
  1648. </li>
  1649. <liclass="image_lists_itemdatapage-1">
  1650. <aclass="card_img">
  1651. <imgsrc="../images/cardlist/card/BT9-016_P1.png"alt="BT9-016WarGreymon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1652. </a>
  1653. <divclass="popup">
  1654. <divclass="card_detailcard_detail_red">
  1655. <divclass="card_detail_inner">
  1656. <ulclass="cardinfo_head">
  1657. <liclass="cardno">BT9-016</li>
  1658. <li>SR</li>
  1659. <liclass="cardtype">Digimon</li>
  1660. <liclass="cardlv">Lv.6</li>
  1661. <liclass="cardtypecardParallel">AlternativeArt</li>
  1662. </ul>
  1663. <divclass="card_name">WarGreymon(XAntibody)</div>
  1664. <divclass="cardinfo_top">
  1665. <divclass="card_img">
  1666. <imgsrc="../images/cardlist/card/BT9-016_P1.png"alt="BT9-016WarGreymon(XAntibody)"></div>
  1667. <divclass="cardinfo_top_body">
  1668. <dl>
  1669. <dt>Form</dt>
  1670. <dd>Mega</dd>
  1671. </dl>
  1672. <dl>
  1673. <dt>Attribute</dt>
  1674. <dd>Vaccine</dd>
  1675. </dl>
  1676. <dl>
  1677. <dt>Type</dt>
  1678. <dd>Dragonkin/XAntibody</dd>
  1679. </dl>
  1680. <dl>
  1681. <dt>DP</dt>
  1682. <dd>12000</dl>
  1683. <dl>
  1684. <dt>PlayCost</dt>
  1685. <dd>12</dd>
  1686. </dl>
  1687. <dl>
  1688. <dt>DigivolveCost1</dt>
  1689. <dd>4</dd>
  1690. </dl>
  1691. <dl>
  1692. <dt>DigivolveCost2</dt>
  1693. <dd>-</dd>
  1694. </dl>
  1695. </div>
  1696. </div>
  1697. <divclass="cardinfo_bottom">
  1698. <dl>
  1699. <dt>Effect</dt>
  1700. <dd>Digivolve: 1 from [WarGreymon][All Turns] When a card is removed from your opponent’s security stack, gain 1 memory. [End of Attack][Once Per Turn] If [WarGreymon] or [X Antibody] is in this Digimon’s digivolution cards, delete 1 of your opponent’s Digimon with DP less than or equal to this Digimon’s DP.</dd>
  1701. </dl>
  1702. <dl>
  1703. <dt>Digivolveeffect</dt>
  1704. <dd>-</dd>
  1705. </dl>
  1706. <dl>
  1707. <dt>Securityeffect</dt>
  1708. <dd>-</dd>
  1709. </dl>
  1710. <dl>
  1711. <dt>Notes</dt>
  1712. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1713. </div>
  1714. </div>
  1715. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1716. </div>
  1717. </div>
  1718. </li>
  1719. <liclass="image_lists_itemdatapage-1">
  1720. <aclass="card_img">
  1721. <imgsrc="../images/cardlist/card/BT9-017.png"alt="BT9-017Gallantmon(XAntibody)"></a>
  1722. <divclass="popup">
  1723. <divclass="card_detailcard_detail_red">
  1724. <divclass="card_detail_inner">
  1725. <ulclass="cardinfo_head">
  1726. <liclass="cardno">BT9-017</li>
  1727. <li>SR</li>
  1728. <liclass="cardtype">Digimon</li>
  1729. <liclass="cardlv">Lv.6</li>
  1730. </ul>
  1731. <divclass="card_name">Gallantmon(XAntibody)</div>
  1732. <divclass="cardinfo_top">
  1733. <divclass="card_img">
  1734. <imgsrc="../images/cardlist/card/BT9-017.png"alt="BT9-017Gallantmon(XAntibody)"></div>
  1735. <divclass="cardinfo_top_body">
  1736. <dl>
  1737. <dt>Form</dt>
  1738. <dd>Mega</dd>
  1739. </dl>
  1740. <dl>
  1741. <dt>Attribute</dt>
  1742. <dd>Virus</dd>
  1743. </dl>
  1744. <dl>
  1745. <dt>Type</dt>
  1746. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  1747. </dl>
  1748. <dl>
  1749. <dt>DP</dt>
  1750. <dd>12000</dl>
  1751. <dl>
  1752. <dt>PlayCost</dt>
  1753. <dd>12</dd>
  1754. </dl>
  1755. <dl>
  1756. <dt>DigivolveCost1</dt>
  1757. <dd>4</dd>
  1758. </dl>
  1759. <dl>
  1760. <dt>DigivolveCost2</dt>
  1761. <dd>-</dd>
  1762. </dl>
  1763. </div>
  1764. </div>
  1765. <divclass="cardinfo_bottom">
  1766. <dl>
  1767. <dt>Effect</dt>
  1768. <dd>Digivolve: 1 from [Gallantmon][When Digivolving] Delete 1 of your opponent's Digimon with the lowest DP. If no Digimon is deleted by this effect, unsuspend this Digimon. [Your Turn][Once Per Turn] When an opponent’s Digimon is deleted, if [Gallantmon] or [X Antibody] is in this Digimon’s digivolution cards, trash the top card of your opponent's security stack.</dd>
  1769. </dl>
  1770. <dl>
  1771. <dt>Digivolveeffect</dt>
  1772. <dd>-</dd>
  1773. </dl>
  1774. <dl>
  1775. <dt>Securityeffect</dt>
  1776. <dd>-</dd>
  1777. </dl>
  1778. <dl>
  1779. <dt>Notes</dt>
  1780. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1781. </div>
  1782. </div>
  1783. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1784. </div>
  1785. </div>
  1786. </li>
  1787. <liclass="image_lists_itemdatapage-1">
  1788. <aclass="card_img">
  1789. <imgsrc="../images/cardlist/card/BT9-017_P1.png"alt="BT9-017Gallantmon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1790. </a>
  1791. <divclass="popup">
  1792. <divclass="card_detailcard_detail_red">
  1793. <divclass="card_detail_inner">
  1794. <ulclass="cardinfo_head">
  1795. <liclass="cardno">BT9-017</li>
  1796. <li>SR</li>
  1797. <liclass="cardtype">Digimon</li>
  1798. <liclass="cardlv">Lv.6</li>
  1799. <liclass="cardtypecardParallel">AlternativeArt</li>
  1800. </ul>
  1801. <divclass="card_name">Gallantmon(XAntibody)</div>
  1802. <divclass="cardinfo_top">
  1803. <divclass="card_img">
  1804. <imgsrc="../images/cardlist/card/BT9-017_P1.png"alt="BT9-017Gallantmon(XAntibody)"></div>
  1805. <divclass="cardinfo_top_body">
  1806. <dl>
  1807. <dt>Form</dt>
  1808. <dd>Mega</dd>
  1809. </dl>
  1810. <dl>
  1811. <dt>Attribute</dt>
  1812. <dd>Virus</dd>
  1813. </dl>
  1814. <dl>
  1815. <dt>Type</dt>
  1816. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  1817. </dl>
  1818. <dl>
  1819. <dt>DP</dt>
  1820. <dd>12000</dl>
  1821. <dl>
  1822. <dt>PlayCost</dt>
  1823. <dd>12</dd>
  1824. </dl>
  1825. <dl>
  1826. <dt>DigivolveCost1</dt>
  1827. <dd>4</dd>
  1828. </dl>
  1829. <dl>
  1830. <dt>DigivolveCost2</dt>
  1831. <dd>-</dd>
  1832. </dl>
  1833. </div>
  1834. </div>
  1835. <divclass="cardinfo_bottom">
  1836. <dl>
  1837. <dt>Effect</dt>
  1838. <dd>Digivolve: 1 from [Gallantmon][When Digivolving] Delete 1 of your opponent's Digimon with the lowest DP. If no Digimon is deleted by this effect, unsuspend this Digimon. [Your Turn][Once Per Turn] When an opponent’s Digimon is deleted, if [Gallantmon] or [X Antibody] is in this Digimon’s digivolution cards, trash the top card of your opponent's security stack.</dd>
  1839. </dl>
  1840. <dl>
  1841. <dt>Digivolveeffect</dt>
  1842. <dd>-</dd>
  1843. </dl>
  1844. <dl>
  1845. <dt>Securityeffect</dt>
  1846. <dd>-</dd>
  1847. </dl>
  1848. <dl>
  1849. <dt>Notes</dt>
  1850. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1851. </div>
  1852. </div>
  1853. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1854. </div>
  1855. </div>
  1856. </li>
  1857. <liclass="image_lists_itemdatapage-1">
  1858. <aclass="card_img">
  1859. <imgsrc="../images/cardlist/card/BT9-018.png"alt="BT9-018Dinorexmon"></a>
  1860. <divclass="popup">
  1861. <divclass="card_detailcard_detail_red_greenmulticolor">
  1862. <divclass="card_detail_inner">
  1863. <ulclass="cardinfo_head">
  1864. <liclass="cardno">BT9-018</li>
  1865. <li>R</li>
  1866. <liclass="cardtype">Digimon</li>
  1867. <liclass="cardlv">Lv.6</li>
  1868. </ul>
  1869. <divclass="card_name">Dinorexmon</div>
  1870. <divclass="cardinfo_top">
  1871. <divclass="card_img">
  1872. <imgsrc="../images/cardlist/card/BT9-018.png"alt="BT9-018Dinorexmon"></div>
  1873. <divclass="cardinfo_top_body">
  1874. <dl>
  1875. <dt>Form</dt>
  1876. <dd>Mega</dd>
  1877. </dl>
  1878. <dl>
  1879. <dt>Attribute</dt>
  1880. <dd>Data</dd>
  1881. </dl>
  1882. <dl>
  1883. <dt>Type</dt>
  1884. <dd>Dinosaur/XAntibody</dd>
  1885. </dl>
  1886. <dl>
  1887. <dt>DP</dt>
  1888. <dd>13000</dl>
  1889. <dl>
  1890. <dt>PlayCost</dt>
  1891. <dd>13</dd>
  1892. </dl>
  1893. <dl>
  1894. <dt>DigivolveCost1</dt>
  1895. <dd>5</dd>
  1896. </dl>
  1897. <dl>
  1898. <dt>DigivolveCost2</dt>
  1899. <dd>Green</dd>
  1900. </dl>
  1901. </div>
  1902. </div>
  1903. <divclass="cardinfo_bottom">
  1904. <dl>
  1905. <dt>Effect</dt>
  1906. <dd>[When Digivolving] For each Tamer your opponent has in play, suspend 1 of your opponent’s Digimon and gain 1 memory. [All Turns][Once Per Turn] When an opponent’s Digimon with 6000 DP or less becomes suspended, you may delete that Digimon.</dd>
  1907. </dl>
  1908. <dl>
  1909. <dt>Digivolveeffect</dt>
  1910. <dd>-</dd>
  1911. </dl>
  1912. <dl>
  1913. <dt>Securityeffect</dt>
  1914. <dd>-</dd>
  1915. </dl>
  1916. <dl>
  1917. <dt>Notes</dt>
  1918. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1919. </div>
  1920. </div>
  1921. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1922. </div>
  1923. </div>
  1924. </li>
  1925. <liclass="image_lists_itemdatapage-1">
  1926. <aclass="card_img">
  1927. <imgsrc="../images/cardlist/card/BT9-019.png"alt="BT9-019Crabmon"></a>
  1928. <divclass="popup">
  1929. <divclass="card_detailcard_detail_blue">
  1930. <divclass="card_detail_inner">
  1931. <ulclass="cardinfo_head">
  1932. <liclass="cardno">BT9-019</li>
  1933. <li>C</li>
  1934. <liclass="cardtype">Digimon</li>
  1935. <liclass="cardlv">Lv.3</li>
  1936. </ul>
  1937. <divclass="card_name">Crabmon</div>
  1938. <divclass="cardinfo_top">
  1939. <divclass="card_img">
  1940. <imgsrc="../images/cardlist/card/BT9-019.png"alt="BT9-019Crabmon"></div>
  1941. <divclass="cardinfo_top_body">
  1942. <dl>
  1943. <dt>Form</dt>
  1944. <dd>Rookie</dd>
  1945. </dl>
  1946. <dl>
  1947. <dt>Attribute</dt>
  1948. <dd>Data</dd>
  1949. </dl>
  1950. <dl>
  1951. <dt>Type</dt>
  1952. <dd>Crustacean</dd>
  1953. </dl>
  1954. <dl>
  1955. <dt>DP</dt>
  1956. <dd>3000</dl>
  1957. <dl>
  1958. <dt>PlayCost</dt>
  1959. <dd>2</dd>
  1960. </dl>
  1961. <dl>
  1962. <dt>DigivolveCost1</dt>
  1963. <dd>0</dd>
  1964. </dl>
  1965. <dl>
  1966. <dt>DigivolveCost2</dt>
  1967. <dd>-</dd>
  1968. </dl>
  1969. </div>
  1970. </div>
  1971. <divclass="cardinfo_bottom">
  1972. <dl>
  1973. <dt>Effect</dt>
  1974. <dd>-</dd>
  1975. </dl>
  1976. <dl>
  1977. <dt>Digivolveeffect</dt>
  1978. <dd>-</dd>
  1979. </dl>
  1980. <dl>
  1981. <dt>Securityeffect</dt>
  1982. <dd>-</dd>
  1983. </dl>
  1984. <dl>
  1985. <dt>Notes</dt>
  1986. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  1987. </div>
  1988. </div>
  1989. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1990. </div>
  1991. </div>
  1992. </li>
  1993. <liclass="image_lists_itemdatapage-1">
  1994. <aclass="card_img">
  1995. <imgsrc="../images/cardlist/card/BT9-020.png"alt="BT9-020Gabumon(XAntibody)"></a>
  1996. <divclass="popup">
  1997. <divclass="card_detailcard_detail_blue">
  1998. <divclass="card_detail_inner">
  1999. <ulclass="cardinfo_head">
  2000. <liclass="cardno">BT9-020</li>
  2001. <li>U</li>
  2002. <liclass="cardtype">Digimon</li>
  2003. <liclass="cardlv">Lv.3</li>
  2004. </ul>
  2005. <divclass="card_name">Gabumon(XAntibody)</div>
  2006. <divclass="cardinfo_top">
  2007. <divclass="card_img">
  2008. <imgsrc="../images/cardlist/card/BT9-020.png"alt="BT9-020Gabumon(XAntibody)"></div>
  2009. <divclass="cardinfo_top_body">
  2010. <dl>
  2011. <dt>Form</dt>
  2012. <dd>Rookie</dd>
  2013. </dl>
  2014. <dl>
  2015. <dt>Attribute</dt>
  2016. <dd>Data</dd>
  2017. </dl>
  2018. <dl>
  2019. <dt>Type</dt>
  2020. <dd>Beast/XAntibody</dd>
  2021. </dl>
  2022. <dl>
  2023. <dt>DP</dt>
  2024. <dd>2000</dl>
  2025. <dl>
  2026. <dt>PlayCost</dt>
  2027. <dd>3</dd>
  2028. </dl>
  2029. <dl>
  2030. <dt>DigivolveCost1</dt>
  2031. <dd>0</dd>
  2032. </dl>
  2033. <dl>
  2034. <dt>DigivolveCost2</dt>
  2035. <dd>-</dd>
  2036. </dl>
  2037. </div>
  2038. </div>
  2039. <divclass="cardinfo_bottom">
  2040. <dl>
  2041. <dt>Effect</dt>
  2042. <dd>Digivolve: 0 from [Gabumon][On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Garurumon] or [Omnimon] in its name and 1 [X Antibody] among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  2043. </dl>
  2044. <dl>
  2045. <dt>Digivolveeffect</dt>
  2046. <dd>-</dd>
  2047. </dl>
  2048. <dl>
  2049. <dt>Securityeffect</dt>
  2050. <dd>-</dd>
  2051. </dl>
  2052. <dl>
  2053. <dt>Notes</dt>
  2054. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2055. </div>
  2056. </div>
  2057. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2058. </div>
  2059. </div>
  2060. </li>
  2061. <liclass="image_lists_itemdatapage-1">
  2062. <aclass="card_img">
  2063. <imgsrc="../images/cardlist/card/BT9-020_P1.png"alt="BT9-020Gabumon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2064. </a>
  2065. <divclass="popup">
  2066. <divclass="card_detailcard_detail_blue">
  2067. <divclass="card_detail_inner">
  2068. <ulclass="cardinfo_head">
  2069. <liclass="cardno">BT9-020</li>
  2070. <li>U</li>
  2071. <liclass="cardtype">Digimon</li>
  2072. <liclass="cardlv">Lv.3</li>
  2073. <liclass="cardtypecardParallel">AlternativeArt</li>
  2074. </ul>
  2075. <divclass="card_name">Gabumon(XAntibody)</div>
  2076. <divclass="cardinfo_top">
  2077. <divclass="card_img">
  2078. <imgsrc="../images/cardlist/card/BT9-020_P1.png"alt="BT9-020Gabumon(XAntibody)"></div>
  2079. <divclass="cardinfo_top_body">
  2080. <dl>
  2081. <dt>Form</dt>
  2082. <dd>Rookie</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>Attribute</dt>
  2086. <dd>Data</dd>
  2087. </dl>
  2088. <dl>
  2089. <dt>Type</dt>
  2090. <dd>Beast/XAntibody</dd>
  2091. </dl>
  2092. <dl>
  2093. <dt>DP</dt>
  2094. <dd>2000</dl>
  2095. <dl>
  2096. <dt>PlayCost</dt>
  2097. <dd>3</dd>
  2098. </dl>
  2099. <dl>
  2100. <dt>DigivolveCost1</dt>
  2101. <dd>0</dd>
  2102. </dl>
  2103. <dl>
  2104. <dt>DigivolveCost2</dt>
  2105. <dd>-</dd>
  2106. </dl>
  2107. </div>
  2108. </div>
  2109. <divclass="cardinfo_bottom">
  2110. <dl>
  2111. <dt>Effect</dt>
  2112. <dd>Digivolve: 0 from [Gabumon][On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Garurumon] or [Omnimon] in its name and 1 [X Antibody] among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  2113. </dl>
  2114. <dl>
  2115. <dt>Digivolveeffect</dt>
  2116. <dd>-</dd>
  2117. </dl>
  2118. <dl>
  2119. <dt>Securityeffect</dt>
  2120. <dd>-</dd>
  2121. </dl>
  2122. <dl>
  2123. <dt>Notes</dt>
  2124. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2125. </div>
  2126. </div>
  2127. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2128. </div>
  2129. </div>
  2130. </li>
  2131. <liclass="image_lists_itemdatapage-1">
  2132. <aclass="card_img">
  2133. <imgsrc="../images/cardlist/card/BT9-021.png"alt="BT9-021Jellymon"></a>
  2134. <divclass="popup">
  2135. <divclass="card_detailcard_detail_blue">
  2136. <divclass="card_detail_inner">
  2137. <ulclass="cardinfo_head">
  2138. <liclass="cardno">BT9-021</li>
  2139. <li>R</li>
  2140. <liclass="cardtype">Digimon</li>
  2141. <liclass="cardlv">Lv.3</li>
  2142. </ul>
  2143. <divclass="card_name">Jellymon</div>
  2144. <divclass="cardinfo_top">
  2145. <divclass="card_img">
  2146. <imgsrc="../images/cardlist/card/BT9-021.png"alt="BT9-021Jellymon"></div>
  2147. <divclass="cardinfo_top_body">
  2148. <dl>
  2149. <dt>Form</dt>
  2150. <dd>Rookie</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>Attribute</dt>
  2154. <dd>Data</dd>
  2155. </dl>
  2156. <dl>
  2157. <dt>Type</dt>
  2158. <dd>Mollusk</dd>
  2159. </dl>
  2160. <dl>
  2161. <dt>DP</dt>
  2162. <dd>2000</dl>
  2163. <dl>
  2164. <dt>PlayCost</dt>
  2165. <dd>3</dd>
  2166. </dl>
  2167. <dl>
  2168. <dt>DigivolveCost1</dt>
  2169. <dd>0</dd>
  2170. </dl>
  2171. <dl>
  2172. <dt>DigivolveCost2</dt>
  2173. <dd>-</dd>
  2174. </dl>
  2175. </div>
  2176. </div>
  2177. <divclass="cardinfo_bottom">
  2178. <dl>
  2179. <dt>Effect</dt>
  2180. <dd>[Your Turn][Once Per Turn] When you play a blue Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  2181. </dl>
  2182. <dl>
  2183. <dt>Digivolveeffect</dt>
  2184. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, return 1 of your opponent’s level 3 Digimon to its owner’s hand.</dd>
  2185. </dl>
  2186. <dl>
  2187. <dt>Securityeffect</dt>
  2188. <dd>-</dd>
  2189. </dl>
  2190. <dl>
  2191. <dt>Notes</dt>
  2192. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2193. </div>
  2194. </div>
  2195. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2196. </div>
  2197. </div>
  2198. </li>
  2199. <liclass="image_lists_itemdatapage-1">
  2200. <aclass="card_img">
  2201. <imgsrc="../images/cardlist/card/BT9-021_P1.png"alt="BT9-021Jellymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2202. </a>
  2203. <divclass="popup">
  2204. <divclass="card_detailcard_detail_blue">
  2205. <divclass="card_detail_inner">
  2206. <ulclass="cardinfo_head">
  2207. <liclass="cardno">BT9-021</li>
  2208. <li>R</li>
  2209. <liclass="cardtype">Digimon</li>
  2210. <liclass="cardlv">Lv.3</li>
  2211. <liclass="cardtypecardParallel">AlternativeArt</li>
  2212. </ul>
  2213. <divclass="card_name">Jellymon</div>
  2214. <divclass="cardinfo_top">
  2215. <divclass="card_img">
  2216. <imgsrc="../images/cardlist/card/BT9-021_P1.png"alt="BT9-021Jellymon"></div>
  2217. <divclass="cardinfo_top_body">
  2218. <dl>
  2219. <dt>Form</dt>
  2220. <dd>Rookie</dd>
  2221. </dl>
  2222. <dl>
  2223. <dt>Attribute</dt>
  2224. <dd>Data</dd>
  2225. </dl>
  2226. <dl>
  2227. <dt>Type</dt>
  2228. <dd>Mollusk</dd>
  2229. </dl>
  2230. <dl>
  2231. <dt>DP</dt>
  2232. <dd>2000</dl>
  2233. <dl>
  2234. <dt>PlayCost</dt>
  2235. <dd>3</dd>
  2236. </dl>
  2237. <dl>
  2238. <dt>DigivolveCost1</dt>
  2239. <dd>0</dd>
  2240. </dl>
  2241. <dl>
  2242. <dt>DigivolveCost2</dt>
  2243. <dd>-</dd>
  2244. </dl>
  2245. </div>
  2246. </div>
  2247. <divclass="cardinfo_bottom">
  2248. <dl>
  2249. <dt>Effect</dt>
  2250. <dd>[Your Turn][Once Per Turn] When you play a blue Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  2251. </dl>
  2252. <dl>
  2253. <dt>Digivolveeffect</dt>
  2254. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, return 1 of your opponent’s level 3 Digimon to its owner’s hand.</dd>
  2255. </dl>
  2256. <dl>
  2257. <dt>Securityeffect</dt>
  2258. <dd>-</dd>
  2259. </dl>
  2260. <dl>
  2261. <dt>Notes</dt>
  2262. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2263. </div>
  2264. </div>
  2265. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2266. </div>
  2267. </div>
  2268. </li>
  2269. <liclass="image_lists_itemdatapage-1">
  2270. <aclass="card_img">
  2271. <imgsrc="../images/cardlist/card/BT9-022.png"alt="BT9-022Ebidramon"></a>
  2272. <divclass="popup">
  2273. <divclass="card_detailcard_detail_blue">
  2274. <divclass="card_detail_inner">
  2275. <ulclass="cardinfo_head">
  2276. <liclass="cardno">BT9-022</li>
  2277. <li>C</li>
  2278. <liclass="cardtype">Digimon</li>
  2279. <liclass="cardlv">Lv.4</li>
  2280. </ul>
  2281. <divclass="card_name">Ebidramon</div>
  2282. <divclass="cardinfo_top">
  2283. <divclass="card_img">
  2284. <imgsrc="../images/cardlist/card/BT9-022.png"alt="BT9-022Ebidramon"></div>
  2285. <divclass="cardinfo_top_body">
  2286. <dl>
  2287. <dt>Form</dt>
  2288. <dd>Champion</dd>
  2289. </dl>
  2290. <dl>
  2291. <dt>Attribute</dt>
  2292. <dd>Data</dd>
  2293. </dl>
  2294. <dl>
  2295. <dt>Type</dt>
  2296. <dd>Aquatic</dd>
  2297. </dl>
  2298. <dl>
  2299. <dt>DP</dt>
  2300. <dd>5000</dl>
  2301. <dl>
  2302. <dt>PlayCost</dt>
  2303. <dd>3</dd>
  2304. </dl>
  2305. <dl>
  2306. <dt>DigivolveCost1</dt>
  2307. <dd>2</dd>
  2308. </dl>
  2309. <dl>
  2310. <dt>DigivolveCost2</dt>
  2311. <dd>-</dd>
  2312. </dl>
  2313. </div>
  2314. </div>
  2315. <divclass="cardinfo_bottom">
  2316. <dl>
  2317. <dt>Effect</dt>
  2318. <dd>-</dd>
  2319. </dl>
  2320. <dl>
  2321. <dt>Digivolveeffect</dt>
  2322. <dd>-</dd>
  2323. </dl>
  2324. <dl>
  2325. <dt>Securityeffect</dt>
  2326. <dd>-</dd>
  2327. </dl>
  2328. <dl>
  2329. <dt>Notes</dt>
  2330. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2331. </div>
  2332. </div>
  2333. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2334. </div>
  2335. </div>
  2336. </li>
  2337. <liclass="image_lists_itemdatapage-1">
  2338. <aclass="card_img">
  2339. <imgsrc="../images/cardlist/card/BT9-023.png"alt="BT9-023KausGammamon"></a>
  2340. <divclass="popup">
  2341. <divclass="card_detailcard_detail_blue">
  2342. <divclass="card_detail_inner">
  2343. <ulclass="cardinfo_head">
  2344. <liclass="cardno">BT9-023</li>
  2345. <li>C</li>
  2346. <liclass="cardtype">Digimon</li>
  2347. <liclass="cardlv">Lv.4</li>
  2348. </ul>
  2349. <divclass="card_name">KausGammamon</div>
  2350. <divclass="cardinfo_top">
  2351. <divclass="card_img">
  2352. <imgsrc="../images/cardlist/card/BT9-023.png"alt="BT9-023KausGammamon"></div>
  2353. <divclass="cardinfo_top_body">
  2354. <dl>
  2355. <dt>Form</dt>
  2356. <dd>Champion</dd>
  2357. </dl>
  2358. <dl>
  2359. <dt>Attribute</dt>
  2360. <dd>Data</dd>
  2361. </dl>
  2362. <dl>
  2363. <dt>Type</dt>
  2364. <dd>Dragonkin</dd>
  2365. </dl>
  2366. <dl>
  2367. <dt>DP</dt>
  2368. <dd>6000</dl>
  2369. <dl>
  2370. <dt>PlayCost</dt>
  2371. <dd>5</dd>
  2372. </dl>
  2373. <dl>
  2374. <dt>DigivolveCost1</dt>
  2375. <dd>2</dd>
  2376. </dl>
  2377. <dl>
  2378. <dt>DigivolveCost2</dt>
  2379. <dd>-</dd>
  2380. </dl>
  2381. </div>
  2382. </div>
  2383. <divclass="cardinfo_bottom">
  2384. <dl>
  2385. <dt>Effect</dt>
  2386. <dd>Digivolve: 2 from [Gammamon][Your Turn] This Digimon can't be blocked.</dd>
  2387. </dl>
  2388. <dl>
  2389. <dt>Digivolveeffect</dt>
  2390. <dd>-</dd>
  2391. </dl>
  2392. <dl>
  2393. <dt>Securityeffect</dt>
  2394. <dd>-</dd>
  2395. </dl>
  2396. <dl>
  2397. <dt>Notes</dt>
  2398. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2399. </div>
  2400. </div>
  2401. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2402. </div>
  2403. </div>
  2404. </li>
  2405. <liclass="image_lists_itemdatapage-1">
  2406. <aclass="card_img">
  2407. <imgsrc="../images/cardlist/card/BT9-024.png"alt="BT9-024Garurumon(XAntibody)"></a>
  2408. <divclass="popup">
  2409. <divclass="card_detailcard_detail_blue">
  2410. <divclass="card_detail_inner">
  2411. <ulclass="cardinfo_head">
  2412. <liclass="cardno">BT9-024</li>
  2413. <li>C</li>
  2414. <liclass="cardtype">Digimon</li>
  2415. <liclass="cardlv">Lv.4</li>
  2416. </ul>
  2417. <divclass="card_name">Garurumon(XAntibody)</div>
  2418. <divclass="cardinfo_top">
  2419. <divclass="card_img">
  2420. <imgsrc="../images/cardlist/card/BT9-024.png"alt="BT9-024Garurumon(XAntibody)"></div>
  2421. <divclass="cardinfo_top_body">
  2422. <dl>
  2423. <dt>Form</dt>
  2424. <dd>Champion</dd>
  2425. </dl>
  2426. <dl>
  2427. <dt>Attribute</dt>
  2428. <dd>Vaccine</dd>
  2429. </dl>
  2430. <dl>
  2431. <dt>Type</dt>
  2432. <dd>Beast/XAntibody</dd>
  2433. </dl>
  2434. <dl>
  2435. <dt>DP</dt>
  2436. <dd>6000</dl>
  2437. <dl>
  2438. <dt>PlayCost</dt>
  2439. <dd>5</dd>
  2440. </dl>
  2441. <dl>
  2442. <dt>DigivolveCost1</dt>
  2443. <dd>2</dd>
  2444. </dl>
  2445. <dl>
  2446. <dt>DigivolveCost2</dt>
  2447. <dd>-</dd>
  2448. </dl>
  2449. </div>
  2450. </div>
  2451. <divclass="cardinfo_bottom">
  2452. <dl>
  2453. <dt>Effect</dt>
  2454. <dd>Digivolve: 0 from [Garurumon]</dd>
  2455. </dl>
  2456. <dl>
  2457. <dt>Digivolveeffect</dt>
  2458. <dd>[All Turns] When this Digimon has [Garurumon] or [Omnimon] in its name and would be deleted in battle, you may trash 2 cards of the same level in this Digimon's digivolution cards to prevent that deletion.</dd>
  2459. </dl>
  2460. <dl>
  2461. <dt>Securityeffect</dt>
  2462. <dd>-</dd>
  2463. </dl>
  2464. <dl>
  2465. <dt>Notes</dt>
  2466. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2467. </div>
  2468. </div>
  2469. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2470. </div>
  2471. </div>
  2472. </li>
  2473. <liclass="image_lists_itemdatapage-1">
  2474. <aclass="card_img">
  2475. <imgsrc="../images/cardlist/card/BT9-025.png"alt="BT9-025TeslaJellymon"></a>
  2476. <divclass="popup">
  2477. <divclass="card_detailcard_detail_blue">
  2478. <divclass="card_detail_inner">
  2479. <ulclass="cardinfo_head">
  2480. <liclass="cardno">BT9-025</li>
  2481. <li>C</li>
  2482. <liclass="cardtype">Digimon</li>
  2483. <liclass="cardlv">Lv.4</li>
  2484. </ul>
  2485. <divclass="card_name">TeslaJellymon</div>
  2486. <divclass="cardinfo_top">
  2487. <divclass="card_img">
  2488. <imgsrc="../images/cardlist/card/BT9-025.png"alt="BT9-025TeslaJellymon"></div>
  2489. <divclass="cardinfo_top_body">
  2490. <dl>
  2491. <dt>Form</dt>
  2492. <dd>Champion</dd>
  2493. </dl>
  2494. <dl>
  2495. <dt>Attribute</dt>
  2496. <dd>Data</dd>
  2497. </dl>
  2498. <dl>
  2499. <dt>Type</dt>
  2500. <dd>Mollusk</dd>
  2501. </dl>
  2502. <dl>
  2503. <dt>DP</dt>
  2504. <dd>6000</dl>
  2505. <dl>
  2506. <dt>PlayCost</dt>
  2507. <dd>5</dd>
  2508. </dl>
  2509. <dl>
  2510. <dt>DigivolveCost1</dt>
  2511. <dd>2</dd>
  2512. </dl>
  2513. <dl>
  2514. <dt>DigivolveCost2</dt>
  2515. <dd>-</dd>
  2516. </dl>
  2517. </div>
  2518. </div>
  2519. <divclass="cardinfo_bottom">
  2520. <dl>
  2521. <dt>Effect</dt>
  2522. <dd>[End of Attack][Once Per Turn] You may trash 2 cards in your hand to unsuspend this Digimon.</dd>
  2523. </dl>
  2524. <dl>
  2525. <dt>Digivolveeffect</dt>
  2526. <dd>-</dd>
  2527. </dl>
  2528. <dl>
  2529. <dt>Securityeffect</dt>
  2530. <dd>-</dd>
  2531. </dl>
  2532. <dl>
  2533. <dt>Notes</dt>
  2534. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2535. </div>
  2536. </div>
  2537. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2538. </div>
  2539. </div>
  2540. </li>
  2541. <liclass="image_lists_itemdatapage-1">
  2542. <aclass="card_img">
  2543. <imgsrc="../images/cardlist/card/BT9-026.png"alt="BT9-026Piranimon"></a>
  2544. <divclass="popup">
  2545. <divclass="card_detailcard_detail_blue">
  2546. <divclass="card_detail_inner">
  2547. <ulclass="cardinfo_head">
  2548. <liclass="cardno">BT9-026</li>
  2549. <li>C</li>
  2550. <liclass="cardtype">Digimon</li>
  2551. <liclass="cardlv">Lv.5</li>
  2552. </ul>
  2553. <divclass="card_name">Piranimon</div>
  2554. <divclass="cardinfo_top">
  2555. <divclass="card_img">
  2556. <imgsrc="../images/cardlist/card/BT9-026.png"alt="BT9-026Piranimon"></div>
  2557. <divclass="cardinfo_top_body">
  2558. <dl>
  2559. <dt>Form</dt>
  2560. <dd>Ultimate</dd>
  2561. </dl>
  2562. <dl>
  2563. <dt>Attribute</dt>
  2564. <dd>Virus</dd>
  2565. </dl>
  2566. <dl>
  2567. <dt>Type</dt>
  2568. <dd>Aquatic</dd>
  2569. </dl>
  2570. <dl>
  2571. <dt>DP</dt>
  2572. <dd>7000</dl>
  2573. <dl>
  2574. <dt>PlayCost</dt>
  2575. <dd>6</dd>
  2576. </dl>
  2577. <dl>
  2578. <dt>DigivolveCost1</dt>
  2579. <dd>3</dd>
  2580. </dl>
  2581. <dl>
  2582. <dt>DigivolveCost2</dt>
  2583. <dd>-</dd>
  2584. </dl>
  2585. </div>
  2586. </div>
  2587. <divclass="cardinfo_bottom">
  2588. <dl>
  2589. <dt>Effect</dt>
  2590. <dd><Rush> (This Digimon can attack the turn it comes into play.)</dd>
  2591. </dl>
  2592. <dl>
  2593. <dt>Digivolveeffect</dt>
  2594. <dd>-</dd>
  2595. </dl>
  2596. <dl>
  2597. <dt>Securityeffect</dt>
  2598. <dd>-</dd>
  2599. </dl>
  2600. <dl>
  2601. <dt>Notes</dt>
  2602. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2603. </div>
  2604. </div>
  2605. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2606. </div>
  2607. </div>
  2608. </li>
  2609. <liclass="image_lists_itemdatapage-1">
  2610. <aclass="card_img">
  2611. <imgsrc="../images/cardlist/card/BT9-027.png"alt="BT9-027Divermon"></a>
  2612. <divclass="popup">
  2613. <divclass="card_detailcard_detail_blue">
  2614. <divclass="card_detail_inner">
  2615. <ulclass="cardinfo_head">
  2616. <liclass="cardno">BT9-027</li>
  2617. <li>C</li>
  2618. <liclass="cardtype">Digimon</li>
  2619. <liclass="cardlv">Lv.5</li>
  2620. </ul>
  2621. <divclass="card_name">Divermon</div>
  2622. <divclass="cardinfo_top">
  2623. <divclass="card_img">
  2624. <imgsrc="../images/cardlist/card/BT9-027.png"alt="BT9-027Divermon"></div>
  2625. <divclass="cardinfo_top_body">
  2626. <dl>
  2627. <dt>Form</dt>
  2628. <dd>Ultimate</dd>
  2629. </dl>
  2630. <dl>
  2631. <dt>Attribute</dt>
  2632. <dd>Data</dd>
  2633. </dl>
  2634. <dl>
  2635. <dt>Type</dt>
  2636. <dd>Aquabeast</dd>
  2637. </dl>
  2638. <dl>
  2639. <dt>DP</dt>
  2640. <dd>8000</dl>
  2641. <dl>
  2642. <dt>PlayCost</dt>
  2643. <dd>7</dd>
  2644. </dl>
  2645. <dl>
  2646. <dt>DigivolveCost1</dt>
  2647. <dd>2</dd>
  2648. </dl>
  2649. <dl>
  2650. <dt>DigivolveCost2</dt>
  2651. <dd>-</dd>
  2652. </dl>
  2653. </div>
  2654. </div>
  2655. <divclass="cardinfo_bottom">
  2656. <dl>
  2657. <dt>Effect</dt>
  2658. <dd>-</dd>
  2659. </dl>
  2660. <dl>
  2661. <dt>Digivolveeffect</dt>
  2662. <dd>-</dd>
  2663. </dl>
  2664. <dl>
  2665. <dt>Securityeffect</dt>
  2666. <dd>-</dd>
  2667. </dl>
  2668. <dl>
  2669. <dt>Notes</dt>
  2670. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2671. </div>
  2672. </div>
  2673. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2674. </div>
  2675. </div>
  2676. </li>
  2677. <liclass="image_lists_itemdatapage-1">
  2678. <aclass="card_img">
  2679. <imgsrc="../images/cardlist/card/BT9-028.png"alt="BT9-028WereGarurumon(XAntibody)"></a>
  2680. <divclass="popup">
  2681. <divclass="card_detailcard_detail_blue">
  2682. <divclass="card_detail_inner">
  2683. <ulclass="cardinfo_head">
  2684. <liclass="cardno">BT9-028</li>
  2685. <li>R</li>
  2686. <liclass="cardtype">Digimon</li>
  2687. <liclass="cardlv">Lv.5</li>
  2688. </ul>
  2689. <divclass="card_name">WereGarurumon(XAntibody)</div>
  2690. <divclass="cardinfo_top">
  2691. <divclass="card_img">
  2692. <imgsrc="../images/cardlist/card/BT9-028.png"alt="BT9-028WereGarurumon(XAntibody)"></div>
  2693. <divclass="cardinfo_top_body">
  2694. <dl>
  2695. <dt>Form</dt>
  2696. <dd>Ultimate</dd>
  2697. </dl>
  2698. <dl>
  2699. <dt>Attribute</dt>
  2700. <dd>Vaccine</dd>
  2701. </dl>
  2702. <dl>
  2703. <dt>Type</dt>
  2704. <dd>Beastkin/XAntibody</dd>
  2705. </dl>
  2706. <dl>
  2707. <dt>DP</dt>
  2708. <dd>8000</dl>
  2709. <dl>
  2710. <dt>PlayCost</dt>
  2711. <dd>8</dd>
  2712. </dl>
  2713. <dl>
  2714. <dt>DigivolveCost1</dt>
  2715. <dd>3</dd>
  2716. </dl>
  2717. <dl>
  2718. <dt>DigivolveCost2</dt>
  2719. <dd>-</dd>
  2720. </dl>
  2721. </div>
  2722. </div>
  2723. <divclass="cardinfo_bottom">
  2724. <dl>
  2725. <dt>Effect</dt>
  2726. <dd>Digivolve: 0 from [WereGarurumon][When Digivolving] Unsuspend this Digimon. Then, if [WereGarurumon] or [X Antibody] is in this Digimon’s digivolution cards, return 1 of your opponent’s level 4 or lower Digimon to its owner’s hand.</dd>
  2727. </dl>
  2728. <dl>
  2729. <dt>Digivolveeffect</dt>
  2730. <dd>-</dd>
  2731. </dl>
  2732. <dl>
  2733. <dt>Securityeffect</dt>
  2734. <dd>-</dd>
  2735. </dl>
  2736. <dl>
  2737. <dt>Notes</dt>
  2738. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2739. </div>
  2740. </div>
  2741. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2742. </div>
  2743. </div>
  2744. </li>
  2745. <liclass="image_lists_itemdatapage-2">
  2746. <aclass="card_img">
  2747. <imgsrc="../images/cardlist/card/BT9-029.png"alt="BT9-029Suijinmon"></a>
  2748. <divclass="popup">
  2749. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2750. <divclass="card_detail_inner">
  2751. <ulclass="cardinfo_head">
  2752. <liclass="cardno">BT9-029</li>
  2753. <li>U</li>
  2754. <liclass="cardtype">Digimon</li>
  2755. <liclass="cardlv">Lv.6</li>
  2756. </ul>
  2757. <divclass="card_name">Suijinmon</div>
  2758. <divclass="cardinfo_top">
  2759. <divclass="card_img">
  2760. <imgsrc="../images/cardlist/card/BT9-029.png"alt="BT9-029Suijinmon"></div>
  2761. <divclass="cardinfo_top_body">
  2762. <dl>
  2763. <dt>Form</dt>
  2764. <dd>Mega</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>Attribute</dt>
  2768. <dd>Data</dd>
  2769. </dl>
  2770. <dl>
  2771. <dt>Type</dt>
  2772. <dd>Machine</dd>
  2773. </dl>
  2774. <dl>
  2775. <dt>DP</dt>
  2776. <dd>11000</dl>
  2777. <dl>
  2778. <dt>PlayCost</dt>
  2779. <dd>11</dd>
  2780. </dl>
  2781. <dl>
  2782. <dt>DigivolveCost1</dt>
  2783. <dd>3</dd>
  2784. </dl>
  2785. <dl>
  2786. <dt>DigivolveCost2</dt>
  2787. <dd>Black</dd>
  2788. </dl>
  2789. </div>
  2790. </div>
  2791. <divclass="cardinfo_bottom">
  2792. <dl>
  2793. <dt>Effect</dt>
  2794. <dd>[Hand][Main] If you have a Digimon with [Justimon] or [Raidenmon] in its name in play, you may pay 1 memory to place this card under that Digimon as its bottom digivolution card.[When Digivolving] You may trash 1 Digimon card with [Machine] or [Cyborg] in its traits in your hand to place 1 of your opponent’s level 4 or lower Digimon at the bottom of its owner's deck.</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Digivolveeffect</dt>
  2798. <dd>[When Attacking] Return 1 of your opponent’s level 4 or lower Digimon to its owner’s hand.</dd>
  2799. </dl>
  2800. <dl>
  2801. <dt>Securityeffect</dt>
  2802. <dd>-</dd>
  2803. </dl>
  2804. <dl>
  2805. <dt>Notes</dt>
  2806. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2807. </div>
  2808. </div>
  2809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2810. </div>
  2811. </div>
  2812. </li>
  2813. <liclass="image_lists_itemdatapage-2">
  2814. <aclass="card_img">
  2815. <imgsrc="../images/cardlist/card/BT9-030.png"alt="BT9-030MetalPiranimon"></a>
  2816. <divclass="popup">
  2817. <divclass="card_detailcard_detail_blue">
  2818. <divclass="card_detail_inner">
  2819. <ulclass="cardinfo_head">
  2820. <liclass="cardno">BT9-030</li>
  2821. <li>C</li>
  2822. <liclass="cardtype">Digimon</li>
  2823. <liclass="cardlv">Lv.6</li>
  2824. </ul>
  2825. <divclass="card_name">MetalPiranimon</div>
  2826. <divclass="cardinfo_top">
  2827. <divclass="card_img">
  2828. <imgsrc="../images/cardlist/card/BT9-030.png"alt="BT9-030MetalPiranimon"></div>
  2829. <divclass="cardinfo_top_body">
  2830. <dl>
  2831. <dt>Form</dt>
  2832. <dd>Mega</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>Attribute</dt>
  2836. <dd>Virus</dd>
  2837. </dl>
  2838. <dl>
  2839. <dt>Type</dt>
  2840. <dd>Aquatic/XAntibody</dd>
  2841. </dl>
  2842. <dl>
  2843. <dt>DP</dt>
  2844. <dd>11000</dl>
  2845. <dl>
  2846. <dt>PlayCost</dt>
  2847. <dd>11</dd>
  2848. </dl>
  2849. <dl>
  2850. <dt>DigivolveCost1</dt>
  2851. <dd>3</dd>
  2852. </dl>
  2853. <dl>
  2854. <dt>DigivolveCost2</dt>
  2855. <dd>-</dd>
  2856. </dl>
  2857. </div>
  2858. </div>
  2859. <divclass="cardinfo_bottom">
  2860. <dl>
  2861. <dt>Effect</dt>
  2862. <dd>[When Attacking] You may play 1 Digimon card with [Piranimon] in its name from this Digimon’s digivolution cards without paying its memory cost.</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Digivolveeffect</dt>
  2866. <dd>-</dd>
  2867. </dl>
  2868. <dl>
  2869. <dt>Securityeffect</dt>
  2870. <dd>-</dd>
  2871. </dl>
  2872. <dl>
  2873. <dt>Notes</dt>
  2874. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2875. </div>
  2876. </div>
  2877. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2878. </div>
  2879. </div>
  2880. </li>
  2881. <liclass="image_lists_itemdatapage-2">
  2882. <aclass="card_img">
  2883. <imgsrc="../images/cardlist/card/BT9-031.png"alt="BT9-031MetalGarurumon(XAntibody)"></a>
  2884. <divclass="popup">
  2885. <divclass="card_detailcard_detail_blue">
  2886. <divclass="card_detail_inner">
  2887. <ulclass="cardinfo_head">
  2888. <liclass="cardno">BT9-031</li>
  2889. <li>SR</li>
  2890. <liclass="cardtype">Digimon</li>
  2891. <liclass="cardlv">Lv.6</li>
  2892. </ul>
  2893. <divclass="card_name">MetalGarurumon(XAntibody)</div>
  2894. <divclass="cardinfo_top">
  2895. <divclass="card_img">
  2896. <imgsrc="../images/cardlist/card/BT9-031.png"alt="BT9-031MetalGarurumon(XAntibody)"></div>
  2897. <divclass="cardinfo_top_body">
  2898. <dl>
  2899. <dt>Form</dt>
  2900. <dd>Mega</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>Attribute</dt>
  2904. <dd>Data</dd>
  2905. </dl>
  2906. <dl>
  2907. <dt>Type</dt>
  2908. <dd>Cyborg/XAntibody</dd>
  2909. </dl>
  2910. <dl>
  2911. <dt>DP</dt>
  2912. <dd>12000</dl>
  2913. <dl>
  2914. <dt>PlayCost</dt>
  2915. <dd>12</dd>
  2916. </dl>
  2917. <dl>
  2918. <dt>DigivolveCost1</dt>
  2919. <dd>4</dd>
  2920. </dl>
  2921. <dl>
  2922. <dt>DigivolveCost2</dt>
  2923. <dd>-</dd>
  2924. </dl>
  2925. </div>
  2926. </div>
  2927. <divclass="cardinfo_bottom">
  2928. <dl>
  2929. <dt>Effect</dt>
  2930. <dd>Digivolve: 1 from [MetalGarurumon][When Digivolving] Unsuspend this Digimon, and it gains <Blocker> until the end of your opponent’s turn. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.) [Your Turn][Once Per Turn] When this Digimon becomes unsuspended, if [MetalGarurumon] or [X Antibody] is in its digivolution cards, return all of your opponent’s Digimon with the lowest level to their owners’ hands.</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Digivolveeffect</dt>
  2934. <dd>-</dd>
  2935. </dl>
  2936. <dl>
  2937. <dt>Securityeffect</dt>
  2938. <dd>-</dd>
  2939. </dl>
  2940. <dl>
  2941. <dt>Notes</dt>
  2942. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  2943. </div>
  2944. </div>
  2945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2946. </div>
  2947. </div>
  2948. </li>
  2949. <liclass="image_lists_itemdatapage-2">
  2950. <aclass="card_img">
  2951. <imgsrc="../images/cardlist/card/BT9-031_P1.png"alt="BT9-031MetalGarurumon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2952. </a>
  2953. <divclass="popup">
  2954. <divclass="card_detailcard_detail_blue">
  2955. <divclass="card_detail_inner">
  2956. <ulclass="cardinfo_head">
  2957. <liclass="cardno">BT9-031</li>
  2958. <li>SR</li>
  2959. <liclass="cardtype">Digimon</li>
  2960. <liclass="cardlv">Lv.6</li>
  2961. <liclass="cardtypecardParallel">AlternativeArt</li>
  2962. </ul>
  2963. <divclass="card_name">MetalGarurumon(XAntibody)</div>
  2964. <divclass="cardinfo_top">
  2965. <divclass="card_img">
  2966. <imgsrc="../images/cardlist/card/BT9-031_P1.png"alt="BT9-031MetalGarurumon(XAntibody)"></div>
  2967. <divclass="cardinfo_top_body">
  2968. <dl>
  2969. <dt>Form</dt>
  2970. <dd>Mega</dd>
  2971. </dl>
  2972. <dl>
  2973. <dt>Attribute</dt>
  2974. <dd>Data</dd>
  2975. </dl>
  2976. <dl>
  2977. <dt>Type</dt>
  2978. <dd>Cyborg/XAntibody</dd>
  2979. </dl>
  2980. <dl>
  2981. <dt>DP</dt>
  2982. <dd>12000</dl>
  2983. <dl>
  2984. <dt>PlayCost</dt>
  2985. <dd>12</dd>
  2986. </dl>
  2987. <dl>
  2988. <dt>DigivolveCost1</dt>
  2989. <dd>4</dd>
  2990. </dl>
  2991. <dl>
  2992. <dt>DigivolveCost2</dt>
  2993. <dd>-</dd>
  2994. </dl>
  2995. </div>
  2996. </div>
  2997. <divclass="cardinfo_bottom">
  2998. <dl>
  2999. <dt>Effect</dt>
  3000. <dd>Digivolve: 1 from [MetalGarurumon][When Digivolving] Unsuspend this Digimon, and it gains <Blocker> until the end of your opponent’s turn. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.) [Your Turn][Once Per Turn] When this Digimon becomes unsuspended, if [MetalGarurumon] or [X Antibody] is in its digivolution cards, return all of your opponent’s Digimon with the lowest level to their owners’ hands.</dd>
  3001. </dl>
  3002. <dl>
  3003. <dt>Digivolveeffect</dt>
  3004. <dd>-</dd>
  3005. </dl>
  3006. <dl>
  3007. <dt>Securityeffect</dt>
  3008. <dd>-</dd>
  3009. </dl>
  3010. <dl>
  3011. <dt>Notes</dt>
  3012. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3013. </div>
  3014. </div>
  3015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3016. </div>
  3017. </div>
  3018. </li>
  3019. <liclass="image_lists_itemdatapage-2">
  3020. <aclass="card_img">
  3021. <imgsrc="../images/cardlist/card/BT9-032.png"alt="BT9-032ToyAgumon"></a>
  3022. <divclass="popup">
  3023. <divclass="card_detailcard_detail_yellow">
  3024. <divclass="card_detail_inner">
  3025. <ulclass="cardinfo_head">
  3026. <liclass="cardno">BT9-032</li>
  3027. <li>C</li>
  3028. <liclass="cardtype">Digimon</li>
  3029. <liclass="cardlv">Lv.3</li>
  3030. </ul>
  3031. <divclass="card_name">ToyAgumon</div>
  3032. <divclass="cardinfo_top">
  3033. <divclass="card_img">
  3034. <imgsrc="../images/cardlist/card/BT9-032.png"alt="BT9-032ToyAgumon"></div>
  3035. <divclass="cardinfo_top_body">
  3036. <dl>
  3037. <dt>Form</dt>
  3038. <dd>Rookie</dd>
  3039. </dl>
  3040. <dl>
  3041. <dt>Attribute</dt>
  3042. <dd>Vaccine</dd>
  3043. </dl>
  3044. <dl>
  3045. <dt>Type</dt>
  3046. <dd>Puppet</dd>
  3047. </dl>
  3048. <dl>
  3049. <dt>DP</dt>
  3050. <dd>3000</dl>
  3051. <dl>
  3052. <dt>PlayCost</dt>
  3053. <dd>2</dd>
  3054. </dl>
  3055. <dl>
  3056. <dt>DigivolveCost1</dt>
  3057. <dd>0</dd>
  3058. </dl>
  3059. <dl>
  3060. <dt>DigivolveCost2</dt>
  3061. <dd>-</dd>
  3062. </dl>
  3063. </div>
  3064. </div>
  3065. <divclass="cardinfo_bottom">
  3066. <dl>
  3067. <dt>Effect</dt>
  3068. <dd>-</dd>
  3069. </dl>
  3070. <dl>
  3071. <dt>Digivolveeffect</dt>
  3072. <dd>-</dd>
  3073. </dl>
  3074. <dl>
  3075. <dt>Securityeffect</dt>
  3076. <dd>-</dd>
  3077. </dl>
  3078. <dl>
  3079. <dt>Notes</dt>
  3080. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3081. </div>
  3082. </div>
  3083. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3084. </div>
  3085. </div>
  3086. </li>
  3087. <liclass="image_lists_itemdatapage-2">
  3088. <aclass="card_img">
  3089. <imgsrc="../images/cardlist/card/BT9-033.png"alt="BT9-033Pillomon"></a>
  3090. <divclass="popup">
  3091. <divclass="card_detailcard_detail_yellow">
  3092. <divclass="card_detail_inner">
  3093. <ulclass="cardinfo_head">
  3094. <liclass="cardno">BT9-033</li>
  3095. <li>C</li>
  3096. <liclass="cardtype">Digimon</li>
  3097. <liclass="cardlv">Lv.3</li>
  3098. </ul>
  3099. <divclass="card_name">Pillomon</div>
  3100. <divclass="cardinfo_top">
  3101. <divclass="card_img">
  3102. <imgsrc="../images/cardlist/card/BT9-033.png"alt="BT9-033Pillomon"></div>
  3103. <divclass="cardinfo_top_body">
  3104. <dl>
  3105. <dt>Form</dt>
  3106. <dd>Rookie</dd>
  3107. </dl>
  3108. <dl>
  3109. <dt>Attribute</dt>
  3110. <dd>Vaccine</dd>
  3111. </dl>
  3112. <dl>
  3113. <dt>Type</dt>
  3114. <dd>Mammal</dd>
  3115. </dl>
  3116. <dl>
  3117. <dt>DP</dt>
  3118. <dd>2000</dl>
  3119. <dl>
  3120. <dt>PlayCost</dt>
  3121. <dd>3</dd>
  3122. </dl>
  3123. <dl>
  3124. <dt>DigivolveCost1</dt>
  3125. <dd>0</dd>
  3126. </dl>
  3127. <dl>
  3128. <dt>DigivolveCost2</dt>
  3129. <dd>-</dd>
  3130. </dl>
  3131. </div>
  3132. </div>
  3133. <divclass="cardinfo_bottom">
  3134. <dl>
  3135. <dt>Effect</dt>
  3136. <dd>[All Turns] Players can’t play Digimon by effects.</dd>
  3137. </dl>
  3138. <dl>
  3139. <dt>Digivolveeffect</dt>
  3140. <dd>-</dd>
  3141. </dl>
  3142. <dl>
  3143. <dt>Securityeffect</dt>
  3144. <dd>-</dd>
  3145. </dl>
  3146. <dl>
  3147. <dt>Notes</dt>
  3148. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3149. </div>
  3150. </div>
  3151. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3152. </div>
  3153. </div>
  3154. </li>
  3155. <liclass="image_lists_itemdatapage-2">
  3156. <aclass="card_img">
  3157. <imgsrc="../images/cardlist/card/BT9-034.png"alt="BT9-034Salamon(XAntibody)"></a>
  3158. <divclass="popup">
  3159. <divclass="card_detailcard_detail_yellow">
  3160. <divclass="card_detail_inner">
  3161. <ulclass="cardinfo_head">
  3162. <liclass="cardno">BT9-034</li>
  3163. <li>C</li>
  3164. <liclass="cardtype">Digimon</li>
  3165. <liclass="cardlv">Lv.3</li>
  3166. </ul>
  3167. <divclass="card_name">Salamon(XAntibody)</div>
  3168. <divclass="cardinfo_top">
  3169. <divclass="card_img">
  3170. <imgsrc="../images/cardlist/card/BT9-034.png"alt="BT9-034Salamon(XAntibody)"></div>
  3171. <divclass="cardinfo_top_body">
  3172. <dl>
  3173. <dt>Form</dt>
  3174. <dd>Rookie</dd>
  3175. </dl>
  3176. <dl>
  3177. <dt>Attribute</dt>
  3178. <dd>Vaccine</dd>
  3179. </dl>
  3180. <dl>
  3181. <dt>Type</dt>
  3182. <dd>Mammal/XAntibody</dd>
  3183. </dl>
  3184. <dl>
  3185. <dt>DP</dt>
  3186. <dd>3000</dl>
  3187. <dl>
  3188. <dt>PlayCost</dt>
  3189. <dd>3</dd>
  3190. </dl>
  3191. <dl>
  3192. <dt>DigivolveCost1</dt>
  3193. <dd>0</dd>
  3194. </dl>
  3195. <dl>
  3196. <dt>DigivolveCost2</dt>
  3197. <dd>-</dd>
  3198. </dl>
  3199. </div>
  3200. </div>
  3201. <divclass="cardinfo_bottom">
  3202. <dl>
  3203. <dt>Effect</dt>
  3204. <dd>Digivolve: 0 from [Salamon][When Digivolving] Look at the top card of your security stack, and you may add it to your hand. If you do, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  3205. </dl>
  3206. <dl>
  3207. <dt>Digivolveeffect</dt>
  3208. <dd>-</dd>
  3209. </dl>
  3210. <dl>
  3211. <dt>Securityeffect</dt>
  3212. <dd>-</dd>
  3213. </dl>
  3214. <dl>
  3215. <dt>Notes</dt>
  3216. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3217. </div>
  3218. </div>
  3219. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3220. </div>
  3221. </div>
  3222. </li>
  3223. <liclass="image_lists_itemdatapage-2">
  3224. <aclass="card_img">
  3225. <imgsrc="../images/cardlist/card/BT9-035.png"alt="BT9-035Starmon"></a>
  3226. <divclass="popup">
  3227. <divclass="card_detailcard_detail_yellow">
  3228. <divclass="card_detail_inner">
  3229. <ulclass="cardinfo_head">
  3230. <liclass="cardno">BT9-035</li>
  3231. <li>C</li>
  3232. <liclass="cardtype">Digimon</li>
  3233. <liclass="cardlv">Lv.4</li>
  3234. </ul>
  3235. <divclass="card_name">Starmon</div>
  3236. <divclass="cardinfo_top">
  3237. <divclass="card_img">
  3238. <imgsrc="../images/cardlist/card/BT9-035.png"alt="BT9-035Starmon"></div>
  3239. <divclass="cardinfo_top_body">
  3240. <dl>
  3241. <dt>Form</dt>
  3242. <dd>Champion</dd>
  3243. </dl>
  3244. <dl>
  3245. <dt>Attribute</dt>
  3246. <dd>Data</dd>
  3247. </dl>
  3248. <dl>
  3249. <dt>Type</dt>
  3250. <dd>Mutant</dd>
  3251. </dl>
  3252. <dl>
  3253. <dt>DP</dt>
  3254. <dd>6000</dl>
  3255. <dl>
  3256. <dt>PlayCost</dt>
  3257. <dd>4</dd>
  3258. </dl>
  3259. <dl>
  3260. <dt>DigivolveCost1</dt>
  3261. <dd>2</dd>
  3262. </dl>
  3263. <dl>
  3264. <dt>DigivolveCost2</dt>
  3265. <dd>-</dd>
  3266. </dl>
  3267. </div>
  3268. </div>
  3269. <divclass="cardinfo_bottom">
  3270. <dl>
  3271. <dt>Effect</dt>
  3272. <dd>-</dd>
  3273. </dl>
  3274. <dl>
  3275. <dt>Digivolveeffect</dt>
  3276. <dd>-</dd>
  3277. </dl>
  3278. <dl>
  3279. <dt>Securityeffect</dt>
  3280. <dd>-</dd>
  3281. </dl>
  3282. <dl>
  3283. <dt>Notes</dt>
  3284. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3285. </div>
  3286. </div>
  3287. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3288. </div>
  3289. </div>
  3290. </li>
  3291. <liclass="image_lists_itemdatapage-2">
  3292. <aclass="card_img">
  3293. <imgsrc="../images/cardlist/card/BT9-036.png"alt="BT9-036Gatomon(XAntibody)"></a>
  3294. <divclass="popup">
  3295. <divclass="card_detailcard_detail_yellow">
  3296. <divclass="card_detail_inner">
  3297. <ulclass="cardinfo_head">
  3298. <liclass="cardno">BT9-036</li>
  3299. <li>C</li>
  3300. <liclass="cardtype">Digimon</li>
  3301. <liclass="cardlv">Lv.4</li>
  3302. </ul>
  3303. <divclass="card_name">Gatomon(XAntibody)</div>
  3304. <divclass="cardinfo_top">
  3305. <divclass="card_img">
  3306. <imgsrc="../images/cardlist/card/BT9-036.png"alt="BT9-036Gatomon(XAntibody)"></div>
  3307. <divclass="cardinfo_top_body">
  3308. <dl>
  3309. <dt>Form</dt>
  3310. <dd>Champion</dd>
  3311. </dl>
  3312. <dl>
  3313. <dt>Attribute</dt>
  3314. <dd>Vaccine</dd>
  3315. </dl>
  3316. <dl>
  3317. <dt>Type</dt>
  3318. <dd>HolyBeast/XAntibody</dd>
  3319. </dl>
  3320. <dl>
  3321. <dt>DP</dt>
  3322. <dd>5000</dl>
  3323. <dl>
  3324. <dt>PlayCost</dt>
  3325. <dd>4</dd>
  3326. </dl>
  3327. <dl>
  3328. <dt>DigivolveCost1</dt>
  3329. <dd>2</dd>
  3330. </dl>
  3331. <dl>
  3332. <dt>DigivolveCost2</dt>
  3333. <dd>-</dd>
  3334. </dl>
  3335. </div>
  3336. </div>
  3337. <divclass="cardinfo_bottom">
  3338. <dl>
  3339. <dt>Effect</dt>
  3340. <dd>Digivolve: 0 from [Gatomon]</dd>
  3341. </dl>
  3342. <dl>
  3343. <dt>Digivolveeffect</dt>
  3344. <dd>[When Attacking] If you have 3 or more security cards, 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3345. </dl>
  3346. <dl>
  3347. <dt>Securityeffect</dt>
  3348. <dd>-</dd>
  3349. </dl>
  3350. <dl>
  3351. <dt>Notes</dt>
  3352. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3353. </div>
  3354. </div>
  3355. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3356. </div>
  3357. </div>
  3358. </li>
  3359. <liclass="image_lists_itemdatapage-2">
  3360. <aclass="card_img">
  3361. <imgsrc="../images/cardlist/card/BT9-037.png"alt="BT9-037Nefertimon"></a>
  3362. <divclass="popup">
  3363. <divclass="card_detailcard_detail_yellow">
  3364. <divclass="card_detail_inner">
  3365. <ulclass="cardinfo_head">
  3366. <liclass="cardno">BT9-037</li>
  3367. <li>U</li>
  3368. <liclass="cardtype">Digimon</li>
  3369. <liclass="cardlv">Lv.4</li>
  3370. </ul>
  3371. <divclass="card_name">Nefertimon</div>
  3372. <divclass="cardinfo_top">
  3373. <divclass="card_img">
  3374. <imgsrc="../images/cardlist/card/BT9-037.png"alt="BT9-037Nefertimon"></div>
  3375. <divclass="cardinfo_top_body">
  3376. <dl>
  3377. <dt>Form</dt>
  3378. <dd>ArmorForm</dd>
  3379. </dl>
  3380. <dl>
  3381. <dt>Attribute</dt>
  3382. <dd>Free</dd>
  3383. </dl>
  3384. <dl>
  3385. <dt>Type</dt>
  3386. <dd>HolyBeast</dd>
  3387. </dl>
  3388. <dl>
  3389. <dt>DP</dt>
  3390. <dd>5000</dl>
  3391. <dl>
  3392. <dt>PlayCost</dt>
  3393. <dd>5</dd>
  3394. </dl>
  3395. <dl>
  3396. <dt>DigivolveCost1</dt>
  3397. <dd>3</dd>
  3398. </dl>
  3399. <dl>
  3400. <dt>DigivolveCost2</dt>
  3401. <dd>-</dd>
  3402. </dl>
  3403. </div>
  3404. </div>
  3405. <divclass="cardinfo_bottom">
  3406. <dl>
  3407. <dt>Effect</dt>
  3408. <dd>Digivolve: 0 if name contains [Gatomon]<Armor Purge> (When this Digimon would be deleted, you may trash the top card of this Digimon to prevent that deletion.)[When Attacking] 1 of your opponent’s Digimon gets -2000 DP for the turn.</dd>
  3409. </dl>
  3410. <dl>
  3411. <dt>Digivolveeffect</dt>
  3412. <dd>-</dd>
  3413. </dl>
  3414. <dl>
  3415. <dt>Securityeffect</dt>
  3416. <dd>-</dd>
  3417. </dl>
  3418. <dl>
  3419. <dt>Notes</dt>
  3420. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3421. </div>
  3422. </div>
  3423. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3424. </div>
  3425. </div>
  3426. </li>
  3427. <liclass="image_lists_itemdatapage-2">
  3428. <aclass="card_img">
  3429. <imgsrc="../images/cardlist/card/BT9-038.png"alt="BT9-038Pegasusmon"></a>
  3430. <divclass="popup">
  3431. <divclass="card_detailcard_detail_yellow_bluemulticolor">
  3432. <divclass="card_detail_inner">
  3433. <ulclass="cardinfo_head">
  3434. <liclass="cardno">BT9-038</li>
  3435. <li>U</li>
  3436. <liclass="cardtype">Digimon</li>
  3437. <liclass="cardlv">Lv.4</li>
  3438. </ul>
  3439. <divclass="card_name">Pegasusmon</div>
  3440. <divclass="cardinfo_top">
  3441. <divclass="card_img">
  3442. <imgsrc="../images/cardlist/card/BT9-038.png"alt="BT9-038Pegasusmon"></div>
  3443. <divclass="cardinfo_top_body">
  3444. <dl>
  3445. <dt>Form</dt>
  3446. <dd>ArmorForm</dd>
  3447. </dl>
  3448. <dl>
  3449. <dt>Attribute</dt>
  3450. <dd>Free</dd>
  3451. </dl>
  3452. <dl>
  3453. <dt>Type</dt>
  3454. <dd>HolyBeast</dd>
  3455. </dl>
  3456. <dl>
  3457. <dt>DP</dt>
  3458. <dd>5000</dl>
  3459. <dl>
  3460. <dt>PlayCost</dt>
  3461. <dd>5</dd>
  3462. </dl>
  3463. <dl>
  3464. <dt>DigivolveCost1</dt>
  3465. <dd>3</dd>
  3466. </dl>
  3467. <dl>
  3468. <dt>DigivolveCost2</dt>
  3469. <dd>-</dd>
  3470. </dl>
  3471. </div>
  3472. </div>
  3473. <divclass="cardinfo_bottom">
  3474. <dl>
  3475. <dt>Effect</dt>
  3476. <dd>Digivolve: 2 from [Patamon]<Armor Purge> (When this Digimon would be deleted, you may trash the top card of this Digimon to prevent that deletion.)[When Digivolving] 1 of your opponent's Digimon gains <Security Attack -1> (This Digimon checks 1 fewer security cards) until the end of your opponent's turn.</dd>
  3477. </dl>
  3478. <dl>
  3479. <dt>Digivolveeffect</dt>
  3480. <dd>-</dd>
  3481. </dl>
  3482. <dl>
  3483. <dt>Securityeffect</dt>
  3484. <dd>-</dd>
  3485. </dl>
  3486. <dl>
  3487. <dt>Notes</dt>
  3488. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3489. </div>
  3490. </div>
  3491. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3492. </div>
  3493. </div>
  3494. </li>
  3495. <liclass="image_lists_itemdatapage-2">
  3496. <aclass="card_img">
  3497. <imgsrc="../images/cardlist/card/BT9-039.png"alt="BT9-039DarkSuperStarmon"></a>
  3498. <divclass="popup">
  3499. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3500. <divclass="card_detail_inner">
  3501. <ulclass="cardinfo_head">
  3502. <liclass="cardno">BT9-039</li>
  3503. <li>C</li>
  3504. <liclass="cardtype">Digimon</li>
  3505. <liclass="cardlv">Lv.5</li>
  3506. </ul>
  3507. <divclass="card_name">DarkSuperStarmon</div>
  3508. <divclass="cardinfo_top">
  3509. <divclass="card_img">
  3510. <imgsrc="../images/cardlist/card/BT9-039.png"alt="BT9-039DarkSuperStarmon"></div>
  3511. <divclass="cardinfo_top_body">
  3512. <dl>
  3513. <dt>Form</dt>
  3514. <dd>Ultimate</dd>
  3515. </dl>
  3516. <dl>
  3517. <dt>Attribute</dt>
  3518. <dd>Virus</dd>
  3519. </dl>
  3520. <dl>
  3521. <dt>Type</dt>
  3522. <dd>Mutant</dd>
  3523. </dl>
  3524. <dl>
  3525. <dt>DP</dt>
  3526. <dd>9000</dl>
  3527. <dl>
  3528. <dt>PlayCost</dt>
  3529. <dd>7</dd>
  3530. </dl>
  3531. <dl>
  3532. <dt>DigivolveCost1</dt>
  3533. <dd>3</dd>
  3534. </dl>
  3535. <dl>
  3536. <dt>DigivolveCost2</dt>
  3537. <dd>Black</dd>
  3538. </dl>
  3539. </div>
  3540. </div>
  3541. <divclass="cardinfo_bottom">
  3542. <dl>
  3543. <dt>Effect</dt>
  3544. <dd>-</dd>
  3545. </dl>
  3546. <dl>
  3547. <dt>Digivolveeffect</dt>
  3548. <dd>-</dd>
  3549. </dl>
  3550. <dl>
  3551. <dt>Securityeffect</dt>
  3552. <dd>-</dd>
  3553. </dl>
  3554. <dl>
  3555. <dt>Notes</dt>
  3556. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3557. </div>
  3558. </div>
  3559. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3560. </div>
  3561. </div>
  3562. </li>
  3563. <liclass="image_lists_itemdatapage-2">
  3564. <aclass="card_img">
  3565. <imgsrc="../images/cardlist/card/BT9-040.png"alt="BT9-040Angewomon(XAntibody)"></a>
  3566. <divclass="popup">
  3567. <divclass="card_detailcard_detail_yellow">
  3568. <divclass="card_detail_inner">
  3569. <ulclass="cardinfo_head">
  3570. <liclass="cardno">BT9-040</li>
  3571. <li>U</li>
  3572. <liclass="cardtype">Digimon</li>
  3573. <liclass="cardlv">Lv.5</li>
  3574. </ul>
  3575. <divclass="card_name">Angewomon(XAntibody)</div>
  3576. <divclass="cardinfo_top">
  3577. <divclass="card_img">
  3578. <imgsrc="../images/cardlist/card/BT9-040.png"alt="BT9-040Angewomon(XAntibody)"></div>
  3579. <divclass="cardinfo_top_body">
  3580. <dl>
  3581. <dt>Form</dt>
  3582. <dd>Ultimate</dd>
  3583. </dl>
  3584. <dl>
  3585. <dt>Attribute</dt>
  3586. <dd>Vaccine</dd>
  3587. </dl>
  3588. <dl>
  3589. <dt>Type</dt>
  3590. <dd>Archangel/XAntibody</dd>
  3591. </dl>
  3592. <dl>
  3593. <dt>DP</dt>
  3594. <dd>8000</dl>
  3595. <dl>
  3596. <dt>PlayCost</dt>
  3597. <dd>8</dd>
  3598. </dl>
  3599. <dl>
  3600. <dt>DigivolveCost1</dt>
  3601. <dd>3</dd>
  3602. </dl>
  3603. <dl>
  3604. <dt>DigivolveCost2</dt>
  3605. <dd>-</dd>
  3606. </dl>
  3607. </div>
  3608. </div>
  3609. <divclass="cardinfo_bottom">
  3610. <dl>
  3611. <dt>Effect</dt>
  3612. <dd>Digivolve: 0 from [Angewomon][When Digivolving] 1 of your opponent's Digimon gains <Security Attack -1> (This Digimon checks 1 fewer security cards) until the end of your opponent's turn. Then, if [Angewomon] or [X Antibody] is in this Digimon’s digivolution cards and you have 5 or fewer security cards, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  3613. </dl>
  3614. <dl>
  3615. <dt>Digivolveeffect</dt>
  3616. <dd>-</dd>
  3617. </dl>
  3618. <dl>
  3619. <dt>Securityeffect</dt>
  3620. <dd>-</dd>
  3621. </dl>
  3622. <dl>
  3623. <dt>Notes</dt>
  3624. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3625. </div>
  3626. </div>
  3627. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3628. </div>
  3629. </div>
  3630. </li>
  3631. <liclass="image_lists_itemdatapage-2">
  3632. <aclass="card_img">
  3633. <imgsrc="../images/cardlist/card/BT9-041.png"alt="BT9-041RizeGreymon(XAntibody)"></a>
  3634. <divclass="popup">
  3635. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3636. <divclass="card_detail_inner">
  3637. <ulclass="cardinfo_head">
  3638. <liclass="cardno">BT9-041</li>
  3639. <li>R</li>
  3640. <liclass="cardtype">Digimon</li>
  3641. <liclass="cardlv">Lv.5</li>
  3642. </ul>
  3643. <divclass="card_name">RizeGreymon(XAntibody)</div>
  3644. <divclass="cardinfo_top">
  3645. <divclass="card_img">
  3646. <imgsrc="../images/cardlist/card/BT9-041.png"alt="BT9-041RizeGreymon(XAntibody)"></div>
  3647. <divclass="cardinfo_top_body">
  3648. <dl>
  3649. <dt>Form</dt>
  3650. <dd>Ultimate</dd>
  3651. </dl>
  3652. <dl>
  3653. <dt>Attribute</dt>
  3654. <dd>Vaccine</dd>
  3655. </dl>
  3656. <dl>
  3657. <dt>Type</dt>
  3658. <dd>Cyborg/XAntibody</dd>
  3659. </dl>
  3660. <dl>
  3661. <dt>DP</dt>
  3662. <dd>8000</dl>
  3663. <dl>
  3664. <dt>PlayCost</dt>
  3665. <dd>8</dd>
  3666. </dl>
  3667. <dl>
  3668. <dt>DigivolveCost1</dt>
  3669. <dd>4</dd>
  3670. </dl>
  3671. <dl>
  3672. <dt>DigivolveCost2</dt>
  3673. <dd>Red</dd>
  3674. </dl>
  3675. </div>
  3676. </div>
  3677. <divclass="cardinfo_bottom">
  3678. <dl>
  3679. <dt>Effect</dt>
  3680. <dd>Digivolve: 1 from [RizeGreymon][When Digivolving] You may play 1 yellow or red Tamer card from your hand without paying its memory cost. Then, if [RizeGreymon] or [X Antibody] is in this Digimon’s digivolution cards, 1 of your opponent's Digimon gets -2000 DP for the turn for each yellow or red Tamer you have in play. [Your Turn] For each Tamer you have in play, this Digimon gets +1000 DP.</dd>
  3681. </dl>
  3682. <dl>
  3683. <dt>Digivolveeffect</dt>
  3684. <dd>-</dd>
  3685. </dl>
  3686. <dl>
  3687. <dt>Securityeffect</dt>
  3688. <dd>-</dd>
  3689. </dl>
  3690. <dl>
  3691. <dt>Notes</dt>
  3692. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3693. </div>
  3694. </div>
  3695. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3696. </div>
  3697. </div>
  3698. </li>
  3699. <liclass="image_lists_itemdatapage-2">
  3700. <aclass="card_img">
  3701. <imgsrc="../images/cardlist/card/BT9-042.png"alt="BT9-042Raijinmon"></a>
  3702. <divclass="popup">
  3703. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3704. <divclass="card_detail_inner">
  3705. <ulclass="cardinfo_head">
  3706. <liclass="cardno">BT9-042</li>
  3707. <li>U</li>
  3708. <liclass="cardtype">Digimon</li>
  3709. <liclass="cardlv">Lv.6</li>
  3710. </ul>
  3711. <divclass="card_name">Raijinmon</div>
  3712. <divclass="cardinfo_top">
  3713. <divclass="card_img">
  3714. <imgsrc="../images/cardlist/card/BT9-042.png"alt="BT9-042Raijinmon"></div>
  3715. <divclass="cardinfo_top_body">
  3716. <dl>
  3717. <dt>Form</dt>
  3718. <dd>Mega</dd>
  3719. </dl>
  3720. <dl>
  3721. <dt>Attribute</dt>
  3722. <dd>Virus</dd>
  3723. </dl>
  3724. <dl>
  3725. <dt>Type</dt>
  3726. <dd>Cyborg</dd>
  3727. </dl>
  3728. <dl>
  3729. <dt>DP</dt>
  3730. <dd>11000</dl>
  3731. <dl>
  3732. <dt>PlayCost</dt>
  3733. <dd>11</dd>
  3734. </dl>
  3735. <dl>
  3736. <dt>DigivolveCost1</dt>
  3737. <dd>3</dd>
  3738. </dl>
  3739. <dl>
  3740. <dt>DigivolveCost2</dt>
  3741. <dd>Black</dd>
  3742. </dl>
  3743. </div>
  3744. </div>
  3745. <divclass="cardinfo_bottom">
  3746. <dl>
  3747. <dt>Effect</dt>
  3748. <dd>[Hand][Main] If you have a Digimon in play with [Justimon] or [Raidenmon] in its name, you may pay 1 memory to place this card under that Digimon as its bottom digivolution card.[When Digivolving] You may trash 1 Digimon card with [Machine] or [Cyborg] in its traits in your hand to have 1 of your opponent’s Digimon get -4000 DP for the turn.</dd>
  3749. </dl>
  3750. <dl>
  3751. <dt>Digivolveeffect</dt>
  3752. <dd>[When Attacking] 1 of your opponent's Digimon gets -4000 DP for the turn.</dd>
  3753. </dl>
  3754. <dl>
  3755. <dt>Securityeffect</dt>
  3756. <dd>-</dd>
  3757. </dl>
  3758. <dl>
  3759. <dt>Notes</dt>
  3760. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3761. </div>
  3762. </div>
  3763. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3764. </div>
  3765. </div>
  3766. </li>
  3767. <liclass="image_lists_itemdatapage-2">
  3768. <aclass="card_img">
  3769. <imgsrc="../images/cardlist/card/BT9-043.png"alt="BT9-043Magnadramon(XAntibody)"></a>
  3770. <divclass="popup">
  3771. <divclass="card_detailcard_detail_yellow">
  3772. <divclass="card_detail_inner">
  3773. <ulclass="cardinfo_head">
  3774. <liclass="cardno">BT9-043</li>
  3775. <li>R</li>
  3776. <liclass="cardtype">Digimon</li>
  3777. <liclass="cardlv">Lv.6</li>
  3778. </ul>
  3779. <divclass="card_name">Magnadramon(XAntibody)</div>
  3780. <divclass="cardinfo_top">
  3781. <divclass="card_img">
  3782. <imgsrc="../images/cardlist/card/BT9-043.png"alt="BT9-043Magnadramon(XAntibody)"></div>
  3783. <divclass="cardinfo_top_body">
  3784. <dl>
  3785. <dt>Form</dt>
  3786. <dd>Mega</dd>
  3787. </dl>
  3788. <dl>
  3789. <dt>Attribute</dt>
  3790. <dd>Vaccine</dd>
  3791. </dl>
  3792. <dl>
  3793. <dt>Type</dt>
  3794. <dd>HolyDragon/FourGreatDragons/XAntibody</dd>
  3795. </dl>
  3796. <dl>
  3797. <dt>DP</dt>
  3798. <dd>12000</dl>
  3799. <dl>
  3800. <dt>PlayCost</dt>
  3801. <dd>12</dd>
  3802. </dl>
  3803. <dl>
  3804. <dt>DigivolveCost1</dt>
  3805. <dd>4</dd>
  3806. </dl>
  3807. <dl>
  3808. <dt>DigivolveCost2</dt>
  3809. <dd>-</dd>
  3810. </dl>
  3811. </div>
  3812. </div>
  3813. <divclass="cardinfo_bottom">
  3814. <dl>
  3815. <dt>Effect</dt>
  3816. <dd>Digivolve: 1 from [Magnadramon][When Digivolving] If [Magnadramon] or [X Antibody] is in this Digimon’s digivolution cards, all of your opponent’s Digimon and Security Digimon get -1000 DP for the turn for each card in your security stack. [End of Attack][Once Per Turn] You may add the top card of your security stack to your hand to unsuspend this Digimon.</dd>
  3817. </dl>
  3818. <dl>
  3819. <dt>Digivolveeffect</dt>
  3820. <dd>-</dd>
  3821. </dl>
  3822. <dl>
  3823. <dt>Securityeffect</dt>
  3824. <dd>-</dd>
  3825. </dl>
  3826. <dl>
  3827. <dt>Notes</dt>
  3828. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3829. </div>
  3830. </div>
  3831. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3832. </div>
  3833. </div>
  3834. </li>
  3835. <liclass="image_lists_itemdatapage-2">
  3836. <aclass="card_img">
  3837. <imgsrc="../images/cardlist/card/BT9-044.png"alt="BT9-044Magnamon(XAntibody)"></a>
  3838. <divclass="popup">
  3839. <divclass="card_detailcard_detail_yellow_bluemulticolor">
  3840. <divclass="card_detail_inner">
  3841. <ulclass="cardinfo_head">
  3842. <liclass="cardno">BT9-044</li>
  3843. <li>SR</li>
  3844. <liclass="cardtype">Digimon</li>
  3845. <liclass="cardlv">Lv.6</li>
  3846. </ul>
  3847. <divclass="card_name">Magnamon(XAntibody)</div>
  3848. <divclass="cardinfo_top">
  3849. <divclass="card_img">
  3850. <imgsrc="../images/cardlist/card/BT9-044.png"alt="BT9-044Magnamon(XAntibody)"></div>
  3851. <divclass="cardinfo_top_body">
  3852. <dl>
  3853. <dt>Form</dt>
  3854. <dd>Mega</dd>
  3855. </dl>
  3856. <dl>
  3857. <dt>Attribute</dt>
  3858. <dd>Vaccine</dd>
  3859. </dl>
  3860. <dl>
  3861. <dt>Type</dt>
  3862. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  3863. </dl>
  3864. <dl>
  3865. <dt>DP</dt>
  3866. <dd>11000</dl>
  3867. <dl>
  3868. <dt>PlayCost</dt>
  3869. <dd>12</dd>
  3870. </dl>
  3871. <dl>
  3872. <dt>DigivolveCost1</dt>
  3873. <dd>3</dd>
  3874. </dl>
  3875. <dl>
  3876. <dt>DigivolveCost2</dt>
  3877. <dd>Blue</dd>
  3878. </dl>
  3879. </div>
  3880. </div>
  3881. <divclass="cardinfo_bottom">
  3882. <dl>
  3883. <dt>Effect</dt>
  3884. <dd>Digivolve: 4 from [Magnamon][Opponent’s Turn] When an opponent’s Digimon attacks, if a card with [Armor Form] in its traits or [X Antibody] is in this Digimon’s digivolution cards, you may switch the target of attack to this Digimon. [All Turns] When this Digimon would be deleted, you may place the top card of this Digimon on top of your security stack face down to prevent that deletion.</dd>
  3885. </dl>
  3886. <dl>
  3887. <dt>Digivolveeffect</dt>
  3888. <dd>-</dd>
  3889. </dl>
  3890. <dl>
  3891. <dt>Securityeffect</dt>
  3892. <dd>-</dd>
  3893. </dl>
  3894. <dl>
  3895. <dt>Notes</dt>
  3896. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3897. </div>
  3898. </div>
  3899. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3900. </div>
  3901. </div>
  3902. </li>
  3903. <liclass="image_lists_itemdatapage-2">
  3904. <aclass="card_img">
  3905. <imgsrc="../images/cardlist/card/BT9-044_P1.png"alt="BT9-044Magnamon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3906. </a>
  3907. <divclass="popup">
  3908. <divclass="card_detailcard_detail_yellow_bluemulticolor">
  3909. <divclass="card_detail_inner">
  3910. <ulclass="cardinfo_head">
  3911. <liclass="cardno">BT9-044</li>
  3912. <li>SR</li>
  3913. <liclass="cardtype">Digimon</li>
  3914. <liclass="cardlv">Lv.6</li>
  3915. <liclass="cardtypecardParallel">AlternativeArt</li>
  3916. </ul>
  3917. <divclass="card_name">Magnamon(XAntibody)</div>
  3918. <divclass="cardinfo_top">
  3919. <divclass="card_img">
  3920. <imgsrc="../images/cardlist/card/BT9-044_P1.png"alt="BT9-044Magnamon(XAntibody)"></div>
  3921. <divclass="cardinfo_top_body">
  3922. <dl>
  3923. <dt>Form</dt>
  3924. <dd>Mega</dd>
  3925. </dl>
  3926. <dl>
  3927. <dt>Attribute</dt>
  3928. <dd>Vaccine</dd>
  3929. </dl>
  3930. <dl>
  3931. <dt>Type</dt>
  3932. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  3933. </dl>
  3934. <dl>
  3935. <dt>DP</dt>
  3936. <dd>11000</dl>
  3937. <dl>
  3938. <dt>PlayCost</dt>
  3939. <dd>12</dd>
  3940. </dl>
  3941. <dl>
  3942. <dt>DigivolveCost1</dt>
  3943. <dd>3</dd>
  3944. </dl>
  3945. <dl>
  3946. <dt>DigivolveCost2</dt>
  3947. <dd>Blue</dd>
  3948. </dl>
  3949. </div>
  3950. </div>
  3951. <divclass="cardinfo_bottom">
  3952. <dl>
  3953. <dt>Effect</dt>
  3954. <dd>Digivolve: 4 from [Magnamon][Opponent’s Turn] When an opponent’s Digimon attacks, if a card with [Armor Form] in its traits or [X Antibody] is in this Digimon’s digivolution cards, you may switch the target of attack to this Digimon. [All Turns] When this Digimon would be deleted, you may place the top card of this Digimon on top of your security stack face down to prevent that deletion.</dd>
  3955. </dl>
  3956. <dl>
  3957. <dt>Digivolveeffect</dt>
  3958. <dd>-</dd>
  3959. </dl>
  3960. <dl>
  3961. <dt>Securityeffect</dt>
  3962. <dd>-</dd>
  3963. </dl>
  3964. <dl>
  3965. <dt>Notes</dt>
  3966. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  3967. </div>
  3968. </div>
  3969. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3970. </div>
  3971. </div>
  3972. </li>
  3973. <liclass="image_lists_itemdatapage-2">
  3974. <aclass="card_img">
  3975. <imgsrc="../images/cardlist/card/BT9-045.png"alt="BT9-045Elecmon"></a>
  3976. <divclass="popup">
  3977. <divclass="card_detailcard_detail_green">
  3978. <divclass="card_detail_inner">
  3979. <ulclass="cardinfo_head">
  3980. <liclass="cardno">BT9-045</li>
  3981. <li>C</li>
  3982. <liclass="cardtype">Digimon</li>
  3983. <liclass="cardlv">Lv.3</li>
  3984. </ul>
  3985. <divclass="card_name">Elecmon</div>
  3986. <divclass="cardinfo_top">
  3987. <divclass="card_img">
  3988. <imgsrc="../images/cardlist/card/BT9-045.png"alt="BT9-045Elecmon"></div>
  3989. <divclass="cardinfo_top_body">
  3990. <dl>
  3991. <dt>Form</dt>
  3992. <dd>Rookie</dd>
  3993. </dl>
  3994. <dl>
  3995. <dt>Attribute</dt>
  3996. <dd>Data</dd>
  3997. </dl>
  3998. <dl>
  3999. <dt>Type</dt>
  4000. <dd>Mammal</dd>
  4001. </dl>
  4002. <dl>
  4003. <dt>DP</dt>
  4004. <dd>4000</dl>
  4005. <dl>
  4006. <dt>PlayCost</dt>
  4007. <dd>3</dd>
  4008. </dl>
  4009. <dl>
  4010. <dt>DigivolveCost1</dt>
  4011. <dd>0</dd>
  4012. </dl>
  4013. <dl>
  4014. <dt>DigivolveCost2</dt>
  4015. <dd>-</dd>
  4016. </dl>
  4017. </div>
  4018. </div>
  4019. <divclass="cardinfo_bottom">
  4020. <dl>
  4021. <dt>Effect</dt>
  4022. <dd>-</dd>
  4023. </dl>
  4024. <dl>
  4025. <dt>Digivolveeffect</dt>
  4026. <dd>-</dd>
  4027. </dl>
  4028. <dl>
  4029. <dt>Securityeffect</dt>
  4030. <dd>-</dd>
  4031. </dl>
  4032. <dl>
  4033. <dt>Notes</dt>
  4034. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4035. </div>
  4036. </div>
  4037. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4038. </div>
  4039. </div>
  4040. </li>
  4041. <liclass="image_lists_itemdatapage-2">
  4042. <aclass="card_img">
  4043. <imgsrc="../images/cardlist/card/BT9-046.png"alt="BT9-046Kokuwamon(XAntibody)"></a>
  4044. <divclass="popup">
  4045. <divclass="card_detailcard_detail_green">
  4046. <divclass="card_detail_inner">
  4047. <ulclass="cardinfo_head">
  4048. <liclass="cardno">BT9-046</li>
  4049. <li>U</li>
  4050. <liclass="cardtype">Digimon</li>
  4051. <liclass="cardlv">Lv.3</li>
  4052. </ul>
  4053. <divclass="card_name">Kokuwamon(XAntibody)</div>
  4054. <divclass="cardinfo_top">
  4055. <divclass="card_img">
  4056. <imgsrc="../images/cardlist/card/BT9-046.png"alt="BT9-046Kokuwamon(XAntibody)"></div>
  4057. <divclass="cardinfo_top_body">
  4058. <dl>
  4059. <dt>Form</dt>
  4060. <dd>Rookie</dd>
  4061. </dl>
  4062. <dl>
  4063. <dt>Attribute</dt>
  4064. <dd>Data</dd>
  4065. </dl>
  4066. <dl>
  4067. <dt>Type</dt>
  4068. <dd>Machine/XAntibody</dd>
  4069. </dl>
  4070. <dl>
  4071. <dt>DP</dt>
  4072. <dd>2000</dl>
  4073. <dl>
  4074. <dt>PlayCost</dt>
  4075. <dd>3</dd>
  4076. </dl>
  4077. <dl>
  4078. <dt>DigivolveCost1</dt>
  4079. <dd>0</dd>
  4080. </dl>
  4081. <dl>
  4082. <dt>DigivolveCost2</dt>
  4083. <dd>-</dd>
  4084. </dl>
  4085. </div>
  4086. </div>
  4087. <divclass="cardinfo_bottom">
  4088. <dl>
  4089. <dt>Effect</dt>
  4090. <dd>Digivolve: 0 from [Kokuwamon][On Play][When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Insectoid] or [Machine] in its traits and 1 [X Antibody] among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  4091. </dl>
  4092. <dl>
  4093. <dt>Digivolveeffect</dt>
  4094. <dd>-</dd>
  4095. </dl>
  4096. <dl>
  4097. <dt>Securityeffect</dt>
  4098. <dd>-</dd>
  4099. </dl>
  4100. <dl>
  4101. <dt>Notes</dt>
  4102. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4103. </div>
  4104. </div>
  4105. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4106. </div>
  4107. </div>
  4108. </li>
  4109. <liclass="image_lists_itemdatapage-2">
  4110. <aclass="card_img">
  4111. <imgsrc="../images/cardlist/card/BT9-047.png"alt="BT9-047Pomumon"></a>
  4112. <divclass="popup">
  4113. <divclass="card_detailcard_detail_green">
  4114. <divclass="card_detail_inner">
  4115. <ulclass="cardinfo_head">
  4116. <liclass="cardno">BT9-047</li>
  4117. <li>C</li>
  4118. <liclass="cardtype">Digimon</li>
  4119. <liclass="cardlv">Lv.3</li>
  4120. </ul>
  4121. <divclass="card_name">Pomumon</div>
  4122. <divclass="cardinfo_top">
  4123. <divclass="card_img">
  4124. <imgsrc="../images/cardlist/card/BT9-047.png"alt="BT9-047Pomumon"></div>
  4125. <divclass="cardinfo_top_body">
  4126. <dl>
  4127. <dt>Form</dt>
  4128. <dd>Rookie</dd>
  4129. </dl>
  4130. <dl>
  4131. <dt>Attribute</dt>
  4132. <dd>Data</dd>
  4133. </dl>
  4134. <dl>
  4135. <dt>Type</dt>
  4136. <dd>Vegetation</dd>
  4137. </dl>
  4138. <dl>
  4139. <dt>DP</dt>
  4140. <dd>2000</dl>
  4141. <dl>
  4142. <dt>PlayCost</dt>
  4143. <dd>3</dd>
  4144. </dl>
  4145. <dl>
  4146. <dt>DigivolveCost1</dt>
  4147. <dd>0</dd>
  4148. </dl>
  4149. <dl>
  4150. <dt>DigivolveCost2</dt>
  4151. <dd>-</dd>
  4152. </dl>
  4153. </div>
  4154. </div>
  4155. <divclass="cardinfo_bottom">
  4156. <dl>
  4157. <dt>Effect</dt>
  4158. <dd>[All Turns] Players can’t play Digimon by effects.</dd>
  4159. </dl>
  4160. <dl>
  4161. <dt>Digivolveeffect</dt>
  4162. <dd>-</dd>
  4163. </dl>
  4164. <dl>
  4165. <dt>Securityeffect</dt>
  4166. <dd>-</dd>
  4167. </dl>
  4168. <dl>
  4169. <dt>Notes</dt>
  4170. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4171. </div>
  4172. </div>
  4173. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4174. </div>
  4175. </div>
  4176. </li>
  4177. <liclass="image_lists_itemdatapage-2">
  4178. <aclass="card_img">
  4179. <imgsrc="../images/cardlist/card/BT9-048.png"alt="BT9-048Ninjamon"></a>
  4180. <divclass="popup">
  4181. <divclass="card_detailcard_detail_green">
  4182. <divclass="card_detail_inner">
  4183. <ulclass="cardinfo_head">
  4184. <liclass="cardno">BT9-048</li>
  4185. <li>C</li>
  4186. <liclass="cardtype">Digimon</li>
  4187. <liclass="cardlv">Lv.4</li>
  4188. </ul>
  4189. <divclass="card_name">Ninjamon</div>
  4190. <divclass="cardinfo_top">
  4191. <divclass="card_img">
  4192. <imgsrc="../images/cardlist/card/BT9-048.png"alt="BT9-048Ninjamon"></div>
  4193. <divclass="cardinfo_top_body">
  4194. <dl>
  4195. <dt>Form</dt>
  4196. <dd>Champion</dd>
  4197. </dl>
  4198. <dl>
  4199. <dt>Attribute</dt>
  4200. <dd>Data</dd>
  4201. </dl>
  4202. <dl>
  4203. <dt>Type</dt>
  4204. <dd>Mutant</dd>
  4205. </dl>
  4206. <dl>
  4207. <dt>DP</dt>
  4208. <dd>6000</dl>
  4209. <dl>
  4210. <dt>PlayCost</dt>
  4211. <dd>4</dd>
  4212. </dl>
  4213. <dl>
  4214. <dt>DigivolveCost1</dt>
  4215. <dd>2</dd>
  4216. </dl>
  4217. <dl>
  4218. <dt>DigivolveCost2</dt>
  4219. <dd>-</dd>
  4220. </dl>
  4221. </div>
  4222. </div>
  4223. <divclass="cardinfo_bottom">
  4224. <dl>
  4225. <dt>Effect</dt>
  4226. <dd>-</dd>
  4227. </dl>
  4228. <dl>
  4229. <dt>Digivolveeffect</dt>
  4230. <dd>-</dd>
  4231. </dl>
  4232. <dl>
  4233. <dt>Securityeffect</dt>
  4234. <dd>-</dd>
  4235. </dl>
  4236. <dl>
  4237. <dt>Notes</dt>
  4238. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4239. </div>
  4240. </div>
  4241. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4242. </div>
  4243. </div>
  4244. </li>
  4245. <liclass="image_lists_itemdatapage-2">
  4246. <aclass="card_img">
  4247. <imgsrc="../images/cardlist/card/BT9-049.png"alt="BT9-049Kuwagamon(XAntibody)"></a>
  4248. <divclass="popup">
  4249. <divclass="card_detailcard_detail_green">
  4250. <divclass="card_detail_inner">
  4251. <ulclass="cardinfo_head">
  4252. <liclass="cardno">BT9-049</li>
  4253. <li>C</li>
  4254. <liclass="cardtype">Digimon</li>
  4255. <liclass="cardlv">Lv.4</li>
  4256. </ul>
  4257. <divclass="card_name">Kuwagamon(XAntibody)</div>
  4258. <divclass="cardinfo_top">
  4259. <divclass="card_img">
  4260. <imgsrc="../images/cardlist/card/BT9-049.png"alt="BT9-049Kuwagamon(XAntibody)"></div>
  4261. <divclass="cardinfo_top_body">
  4262. <dl>
  4263. <dt>Form</dt>
  4264. <dd>Champion</dd>
  4265. </dl>
  4266. <dl>
  4267. <dt>Attribute</dt>
  4268. <dd>Virus</dd>
  4269. </dl>
  4270. <dl>
  4271. <dt>Type</dt>
  4272. <dd>Insectoid/XAntibody</dd>
  4273. </dl>
  4274. <dl>
  4275. <dt>DP</dt>
  4276. <dd>6000</dl>
  4277. <dl>
  4278. <dt>PlayCost</dt>
  4279. <dd>5</dd>
  4280. </dl>
  4281. <dl>
  4282. <dt>DigivolveCost1</dt>
  4283. <dd>2</dd>
  4284. </dl>
  4285. <dl>
  4286. <dt>DigivolveCost2</dt>
  4287. <dd>-</dd>
  4288. </dl>
  4289. </div>
  4290. </div>
  4291. <divclass="cardinfo_bottom">
  4292. <dl>
  4293. <dt>Effect</dt>
  4294. <dd>Digivolve: 0 from [Kuwagamon]</dd>
  4295. </dl>
  4296. <dl>
  4297. <dt>Digivolveeffect</dt>
  4298. <dd>[Your Turn] While this Digimon has [Insectoid] in its traits, it gains <Piercing>. (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  4299. </dl>
  4300. <dl>
  4301. <dt>Securityeffect</dt>
  4302. <dd>-</dd>
  4303. </dl>
  4304. <dl>
  4305. <dt>Notes</dt>
  4306. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4307. </div>
  4308. </div>
  4309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4310. </div>
  4311. </div>
  4312. </li>
  4313. <liclass="image_lists_itemdatapage-2">
  4314. <aclass="card_img">
  4315. <imgsrc="../images/cardlist/card/BT9-050.png"alt="BT9-050Leomon(XAntibody)"></a>
  4316. <divclass="popup">
  4317. <divclass="card_detailcard_detail_green_bluemulticolor">
  4318. <divclass="card_detail_inner">
  4319. <ulclass="cardinfo_head">
  4320. <liclass="cardno">BT9-050</li>
  4321. <li>C</li>
  4322. <liclass="cardtype">Digimon</li>
  4323. <liclass="cardlv">Lv.4</li>
  4324. </ul>
  4325. <divclass="card_name">Leomon(XAntibody)</div>
  4326. <divclass="cardinfo_top">
  4327. <divclass="card_img">
  4328. <imgsrc="../images/cardlist/card/BT9-050.png"alt="BT9-050Leomon(XAntibody)"></div>
  4329. <divclass="cardinfo_top_body">
  4330. <dl>
  4331. <dt>Form</dt>
  4332. <dd>Champion</dd>
  4333. </dl>
  4334. <dl>
  4335. <dt>Attribute</dt>
  4336. <dd>Vaccine</dd>
  4337. </dl>
  4338. <dl>
  4339. <dt>Type</dt>
  4340. <dd>Beastkin/XAntibody</dd>
  4341. </dl>
  4342. <dl>
  4343. <dt>DP</dt>
  4344. <dd>5000</dl>
  4345. <dl>
  4346. <dt>PlayCost</dt>
  4347. <dd>5</dd>
  4348. </dl>
  4349. <dl>
  4350. <dt>DigivolveCost1</dt>
  4351. <dd>2</dd>
  4352. </dl>
  4353. <dl>
  4354. <dt>DigivolveCost2</dt>
  4355. <dd>Blue</dd>
  4356. </dl>
  4357. </div>
  4358. </div>
  4359. <divclass="cardinfo_bottom">
  4360. <dl>
  4361. <dt>Effect</dt>
  4362. <dd>Digivolve: 0 from [Leomon][All Turns] When this Digimon would be deleted in battle, you may play 1 [Leomon] from this Digimon’s digivolution cards without paying its memory cost.</dd>
  4363. </dl>
  4364. <dl>
  4365. <dt>Digivolveeffect</dt>
  4366. <dd>-</dd>
  4367. </dl>
  4368. <dl>
  4369. <dt>Securityeffect</dt>
  4370. <dd>-</dd>
  4371. </dl>
  4372. <dl>
  4373. <dt>Notes</dt>
  4374. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4375. </div>
  4376. </div>
  4377. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4378. </div>
  4379. </div>
  4380. </li>
  4381. <liclass="image_lists_itemdatapage-2">
  4382. <aclass="card_img">
  4383. <imgsrc="../images/cardlist/card/BT9-051.png"alt="BT9-051Panjyamon(XAntibody)"></a>
  4384. <divclass="popup">
  4385. <divclass="card_detailcard_detail_green_bluemulticolor">
  4386. <divclass="card_detail_inner">
  4387. <ulclass="cardinfo_head">
  4388. <liclass="cardno">BT9-051</li>
  4389. <li>U</li>
  4390. <liclass="cardtype">Digimon</li>
  4391. <liclass="cardlv">Lv.5</li>
  4392. </ul>
  4393. <divclass="card_name">Panjyamon(XAntibody)</div>
  4394. <divclass="cardinfo_top">
  4395. <divclass="card_img">
  4396. <imgsrc="../images/cardlist/card/BT9-051.png"alt="BT9-051Panjyamon(XAntibody)"></div>
  4397. <divclass="cardinfo_top_body">
  4398. <dl>
  4399. <dt>Form</dt>
  4400. <dd>Ultimate</dd>
  4401. </dl>
  4402. <dl>
  4403. <dt>Attribute</dt>
  4404. <dd>Vaccine</dd>
  4405. </dl>
  4406. <dl>
  4407. <dt>Type</dt>
  4408. <dd>Beastkin/XAntibody</dd>
  4409. </dl>
  4410. <dl>
  4411. <dt>DP</dt>
  4412. <dd>7000</dl>
  4413. <dl>
  4414. <dt>PlayCost</dt>
  4415. <dd>7</dd>
  4416. </dl>
  4417. <dl>
  4418. <dt>DigivolveCost1</dt>
  4419. <dd>3</dd>
  4420. </dl>
  4421. <dl>
  4422. <dt>DigivolveCost2</dt>
  4423. <dd>Blue</dd>
  4424. </dl>
  4425. </div>
  4426. </div>
  4427. <divclass="cardinfo_bottom">
  4428. <dl>
  4429. <dt>Effect</dt>
  4430. <dd>Digivolve: 0 from [Panjyamon]Treat this card/Digimon as if it also has [Leomon] in its name. [All Turns] When this Digimon would be deleted in battle, you may play 1 [Leomon] from this Digimon’s digivolution cards without paying its memory cost.</dd>
  4431. </dl>
  4432. <dl>
  4433. <dt>Digivolveeffect</dt>
  4434. <dd>-</dd>
  4435. </dl>
  4436. <dl>
  4437. <dt>Securityeffect</dt>
  4438. <dd>-</dd>
  4439. </dl>
  4440. <dl>
  4441. <dt>Notes</dt>
  4442. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4443. </div>
  4444. </div>
  4445. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4446. </div>
  4447. </div>
  4448. </li>
  4449. <liclass="image_lists_itemdatapage-2">
  4450. <aclass="card_img">
  4451. <imgsrc="../images/cardlist/card/BT9-052.png"alt="BT9-052Okuwamon(XAntibody)"></a>
  4452. <divclass="popup">
  4453. <divclass="card_detailcard_detail_green">
  4454. <divclass="card_detail_inner">
  4455. <ulclass="cardinfo_head">
  4456. <liclass="cardno">BT9-052</li>
  4457. <li>U</li>
  4458. <liclass="cardtype">Digimon</li>
  4459. <liclass="cardlv">Lv.5</li>
  4460. </ul>
  4461. <divclass="card_name">Okuwamon(XAntibody)</div>
  4462. <divclass="cardinfo_top">
  4463. <divclass="card_img">
  4464. <imgsrc="../images/cardlist/card/BT9-052.png"alt="BT9-052Okuwamon(XAntibody)"></div>
  4465. <divclass="cardinfo_top_body">
  4466. <dl>
  4467. <dt>Form</dt>
  4468. <dd>Ultimate</dd>
  4469. </dl>
  4470. <dl>
  4471. <dt>Attribute</dt>
  4472. <dd>Virus</dd>
  4473. </dl>
  4474. <dl>
  4475. <dt>Type</dt>
  4476. <dd>Insectoid/XAntibody</dd>
  4477. </dl>
  4478. <dl>
  4479. <dt>DP</dt>
  4480. <dd>8000</dl>
  4481. <dl>
  4482. <dt>PlayCost</dt>
  4483. <dd>8</dd>
  4484. </dl>
  4485. <dl>
  4486. <dt>DigivolveCost1</dt>
  4487. <dd>3</dd>
  4488. </dl>
  4489. <dl>
  4490. <dt>DigivolveCost2</dt>
  4491. <dd>-</dd>
  4492. </dl>
  4493. </div>
  4494. </div>
  4495. <divclass="cardinfo_bottom">
  4496. <dl>
  4497. <dt>Effect</dt>
  4498. <dd>Digivolve: 0 from [Okuwamon][When Digivolving] If [Okuwamon] or [X Antibody] is in this Digimon’s digivolution cards, suspend 1 of your opponent’s Digimon. Then, if this Digimon is attacking, you may switch the target of attack to 1 of your opponent’s suspended Digimon. [Your Turn] When this Digimon would digivolve into a Digimon with [Insectoid] in its traits, reduce the digivolution cost by 1.</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>Digivolveeffect</dt>
  4502. <dd>-</dd>
  4503. </dl>
  4504. <dl>
  4505. <dt>Securityeffect</dt>
  4506. <dd>-</dd>
  4507. </dl>
  4508. <dl>
  4509. <dt>Notes</dt>
  4510. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4511. </div>
  4512. </div>
  4513. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4514. </div>
  4515. </div>
  4516. </li>
  4517. <liclass="image_lists_itemdatapage-2">
  4518. <aclass="card_img">
  4519. <imgsrc="../images/cardlist/card/BT9-053.png"alt="BT9-053Zamielmon"></a>
  4520. <divclass="popup">
  4521. <divclass="card_detailcard_detail_green">
  4522. <divclass="card_detail_inner">
  4523. <ulclass="cardinfo_head">
  4524. <liclass="cardno">BT9-053</li>
  4525. <li>C</li>
  4526. <liclass="cardtype">Digimon</li>
  4527. <liclass="cardlv">Lv.5</li>
  4528. </ul>
  4529. <divclass="card_name">Zamielmon</div>
  4530. <divclass="cardinfo_top">
  4531. <divclass="card_img">
  4532. <imgsrc="../images/cardlist/card/BT9-053.png"alt="BT9-053Zamielmon"></div>
  4533. <divclass="cardinfo_top_body">
  4534. <dl>
  4535. <dt>Form</dt>
  4536. <dd>Ultimate</dd>
  4537. </dl>
  4538. <dl>
  4539. <dt>Attribute</dt>
  4540. <dd>Data</dd>
  4541. </dl>
  4542. <dl>
  4543. <dt>Type</dt>
  4544. <dd>Wizard/BigDeath-Stars</dd>
  4545. </dl>
  4546. <dl>
  4547. <dt>DP</dt>
  4548. <dd>9000</dl>
  4549. <dl>
  4550. <dt>PlayCost</dt>
  4551. <dd>8</dd>
  4552. </dl>
  4553. <dl>
  4554. <dt>DigivolveCost1</dt>
  4555. <dd>2</dd>
  4556. </dl>
  4557. <dl>
  4558. <dt>DigivolveCost2</dt>
  4559. <dd>-</dd>
  4560. </dl>
  4561. </div>
  4562. </div>
  4563. <divclass="cardinfo_bottom">
  4564. <dl>
  4565. <dt>Effect</dt>
  4566. <dd>-</dd>
  4567. </dl>
  4568. <dl>
  4569. <dt>Digivolveeffect</dt>
  4570. <dd>-</dd>
  4571. </dl>
  4572. <dl>
  4573. <dt>Securityeffect</dt>
  4574. <dd>-</dd>
  4575. </dl>
  4576. <dl>
  4577. <dt>Notes</dt>
  4578. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4579. </div>
  4580. </div>
  4581. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4582. </div>
  4583. </div>
  4584. </li>
  4585. <liclass="image_lists_itemdatapage-2">
  4586. <aclass="card_img">
  4587. <imgsrc="../images/cardlist/card/BT9-054.png"alt="BT9-054Fujinmon"></a>
  4588. <divclass="popup">
  4589. <divclass="card_detailcard_detail_green_blackmulticolor">
  4590. <divclass="card_detail_inner">
  4591. <ulclass="cardinfo_head">
  4592. <liclass="cardno">BT9-054</li>
  4593. <li>U</li>
  4594. <liclass="cardtype">Digimon</li>
  4595. <liclass="cardlv">Lv.6</li>
  4596. </ul>
  4597. <divclass="card_name">Fujinmon</div>
  4598. <divclass="cardinfo_top">
  4599. <divclass="card_img">
  4600. <imgsrc="../images/cardlist/card/BT9-054.png"alt="BT9-054Fujinmon"></div>
  4601. <divclass="cardinfo_top_body">
  4602. <dl>
  4603. <dt>Form</dt>
  4604. <dd>Mega</dd>
  4605. </dl>
  4606. <dl>
  4607. <dt>Attribute</dt>
  4608. <dd>Vaccine</dd>
  4609. </dl>
  4610. <dl>
  4611. <dt>Type</dt>
  4612. <dd>Cyborg</dd>
  4613. </dl>
  4614. <dl>
  4615. <dt>DP</dt>
  4616. <dd>11000</dl>
  4617. <dl>
  4618. <dt>PlayCost</dt>
  4619. <dd>11</dd>
  4620. </dl>
  4621. <dl>
  4622. <dt>DigivolveCost1</dt>
  4623. <dd>3</dd>
  4624. </dl>
  4625. <dl>
  4626. <dt>DigivolveCost2</dt>
  4627. <dd>Black</dd>
  4628. </dl>
  4629. </div>
  4630. </div>
  4631. <divclass="cardinfo_bottom">
  4632. <dl>
  4633. <dt>Effect</dt>
  4634. <dd>[Hand][Main] If you have a Digimon with [Justimon] or [Raidenmon] in its name in play, you may pay 1 memory to place this card under that Digimon as its bottom digivolution card.[When Digivolving] You may trash 1 Digimon card with [Machine] or [Cyborg] in its traits in your hand to suspend 1 of your opponent’s Digimon.</dd>
  4635. </dl>
  4636. <dl>
  4637. <dt>Digivolveeffect</dt>
  4638. <dd>[When Attacking] Suspend 1 of your opponent's Digimon with 5000 DP or less. That Digimon doesn't unsuspend during your opponent's next unsuspend phase.</dd>
  4639. </dl>
  4640. <dl>
  4641. <dt>Securityeffect</dt>
  4642. <dd>-</dd>
  4643. </dl>
  4644. <dl>
  4645. <dt>Notes</dt>
  4646. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4647. </div>
  4648. </div>
  4649. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4650. </div>
  4651. </div>
  4652. </li>
  4653. <liclass="image_lists_itemdatapage-2">
  4654. <aclass="card_img">
  4655. <imgsrc="../images/cardlist/card/BT9-055.png"alt="BT9-055GrandisKuwagamon"></a>
  4656. <divclass="popup">
  4657. <divclass="card_detailcard_detail_green">
  4658. <divclass="card_detail_inner">
  4659. <ulclass="cardinfo_head">
  4660. <liclass="cardno">BT9-055</li>
  4661. <li>SR</li>
  4662. <liclass="cardtype">Digimon</li>
  4663. <liclass="cardlv">Lv.6</li>
  4664. </ul>
  4665. <divclass="card_name">GrandisKuwagamon</div>
  4666. <divclass="cardinfo_top">
  4667. <divclass="card_img">
  4668. <imgsrc="../images/cardlist/card/BT9-055.png"alt="BT9-055GrandisKuwagamon"></div>
  4669. <divclass="cardinfo_top_body">
  4670. <dl>
  4671. <dt>Form</dt>
  4672. <dd>Mega</dd>
  4673. </dl>
  4674. <dl>
  4675. <dt>Attribute</dt>
  4676. <dd>Virus</dd>
  4677. </dl>
  4678. <dl>
  4679. <dt>Type</dt>
  4680. <dd>Insectoid/XAntibody</dd>
  4681. </dl>
  4682. <dl>
  4683. <dt>DP</dt>
  4684. <dd>12000</dl>
  4685. <dl>
  4686. <dt>PlayCost</dt>
  4687. <dd>12</dd>
  4688. </dl>
  4689. <dl>
  4690. <dt>DigivolveCost1</dt>
  4691. <dd>4</dd>
  4692. </dl>
  4693. <dl>
  4694. <dt>DigivolveCost2</dt>
  4695. <dd>-</dd>
  4696. </dl>
  4697. </div>
  4698. </div>
  4699. <divclass="cardinfo_bottom">
  4700. <dl>
  4701. <dt>Effect</dt>
  4702. <dd>Digivolve: 1 from [GranKuwagamon][When Digivolving] Suspend 1 of your opponent's Digimon. Then, if this Digimon is attacking, you may switch the target of attack to 1 of your opponent’s suspended Digimon. [Your Turn] This Digimon gets +4000 DP. [When Attacking][Once Per Turn] If [GranKuwagamon] or [X Antibody] is in this Digimon’s digivolution cards, suspend 1 of your opponent’s Digimon and unsuspend this Digimon.</dd>
  4703. </dl>
  4704. <dl>
  4705. <dt>Digivolveeffect</dt>
  4706. <dd>-</dd>
  4707. </dl>
  4708. <dl>
  4709. <dt>Securityeffect</dt>
  4710. <dd>-</dd>
  4711. </dl>
  4712. <dl>
  4713. <dt>Notes</dt>
  4714. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4715. </div>
  4716. </div>
  4717. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4718. </div>
  4719. </div>
  4720. </li>
  4721. <liclass="image_lists_itemdatapage-2">
  4722. <aclass="card_img">
  4723. <imgsrc="../images/cardlist/card/BT9-055_P1.png"alt="BT9-055GrandisKuwagamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4724. </a>
  4725. <divclass="popup">
  4726. <divclass="card_detailcard_detail_green">
  4727. <divclass="card_detail_inner">
  4728. <ulclass="cardinfo_head">
  4729. <liclass="cardno">BT9-055</li>
  4730. <li>SR</li>
  4731. <liclass="cardtype">Digimon</li>
  4732. <liclass="cardlv">Lv.6</li>
  4733. <liclass="cardtypecardParallel">AlternativeArt</li>
  4734. </ul>
  4735. <divclass="card_name">GrandisKuwagamon</div>
  4736. <divclass="cardinfo_top">
  4737. <divclass="card_img">
  4738. <imgsrc="../images/cardlist/card/BT9-055_P1.png"alt="BT9-055GrandisKuwagamon"></div>
  4739. <divclass="cardinfo_top_body">
  4740. <dl>
  4741. <dt>Form</dt>
  4742. <dd>Mega</dd>
  4743. </dl>
  4744. <dl>
  4745. <dt>Attribute</dt>
  4746. <dd>Virus</dd>
  4747. </dl>
  4748. <dl>
  4749. <dt>Type</dt>
  4750. <dd>Insectoid/XAntibody</dd>
  4751. </dl>
  4752. <dl>
  4753. <dt>DP</dt>
  4754. <dd>12000</dl>
  4755. <dl>
  4756. <dt>PlayCost</dt>
  4757. <dd>12</dd>
  4758. </dl>
  4759. <dl>
  4760. <dt>DigivolveCost1</dt>
  4761. <dd>4</dd>
  4762. </dl>
  4763. <dl>
  4764. <dt>DigivolveCost2</dt>
  4765. <dd>-</dd>
  4766. </dl>
  4767. </div>
  4768. </div>
  4769. <divclass="cardinfo_bottom">
  4770. <dl>
  4771. <dt>Effect</dt>
  4772. <dd>Digivolve: 1 from [GranKuwagamon][When Digivolving] Suspend 1 of your opponent's Digimon. Then, if this Digimon is attacking, you may switch the target of attack to 1 of your opponent’s suspended Digimon. [Your Turn] This Digimon gets +4000 DP. [When Attacking][Once Per Turn] If [GranKuwagamon] or [X Antibody] is in this Digimon’s digivolution cards, suspend 1 of your opponent’s Digimon and unsuspend this Digimon.</dd>
  4773. </dl>
  4774. <dl>
  4775. <dt>Digivolveeffect</dt>
  4776. <dd>-</dd>
  4777. </dl>
  4778. <dl>
  4779. <dt>Securityeffect</dt>
  4780. <dd>-</dd>
  4781. </dl>
  4782. <dl>
  4783. <dt>Notes</dt>
  4784. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4785. </div>
  4786. </div>
  4787. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4788. </div>
  4789. </div>
  4790. </li>
  4791. <liclass="image_lists_itemdatapage-2">
  4792. <aclass="card_img">
  4793. <imgsrc="../images/cardlist/card/BT9-056.png"alt="BT9-056Dinotigermon"></a>
  4794. <divclass="popup">
  4795. <divclass="card_detailcard_detail_green">
  4796. <divclass="card_detail_inner">
  4797. <ulclass="cardinfo_head">
  4798. <liclass="cardno">BT9-056</li>
  4799. <li>R</li>
  4800. <liclass="cardtype">Digimon</li>
  4801. <liclass="cardlv">Lv.6</li>
  4802. </ul>
  4803. <divclass="card_name">Dinotigermon</div>
  4804. <divclass="cardinfo_top">
  4805. <divclass="card_img">
  4806. <imgsrc="../images/cardlist/card/BT9-056.png"alt="BT9-056Dinotigermon"></div>
  4807. <divclass="cardinfo_top_body">
  4808. <dl>
  4809. <dt>Form</dt>
  4810. <dd>Mega</dd>
  4811. </dl>
  4812. <dl>
  4813. <dt>Attribute</dt>
  4814. <dd>Data</dd>
  4815. </dl>
  4816. <dl>
  4817. <dt>Type</dt>
  4818. <dd>AncientAnimal/XAntibody</dd>
  4819. </dl>
  4820. <dl>
  4821. <dt>DP</dt>
  4822. <dd>12000</dl>
  4823. <dl>
  4824. <dt>PlayCost</dt>
  4825. <dd>12</dd>
  4826. </dl>
  4827. <dl>
  4828. <dt>DigivolveCost1</dt>
  4829. <dd>4</dd>
  4830. </dl>
  4831. <dl>
  4832. <dt>DigivolveCost2</dt>
  4833. <dd>Blue</dd>
  4834. </dl>
  4835. </div>
  4836. </div>
  4837. <divclass="cardinfo_bottom">
  4838. <dl>
  4839. <dt>Effect</dt>
  4840. <dd>Digivolve: 1 from [SaberLeomon][When Attacking] If a card with [Leomon] in its name or [X Antibody] is in this Digimon’s digivolution cards, suspend 1 of your opponent’s Digimon or Tamers. [Your Turn][Once Per Turn] When an opponent’s Digimon or Tamer becomes suspended, unsuspend this Digimon.</dd>
  4841. </dl>
  4842. <dl>
  4843. <dt>Digivolveeffect</dt>
  4844. <dd>-</dd>
  4845. </dl>
  4846. <dl>
  4847. <dt>Securityeffect</dt>
  4848. <dd>-</dd>
  4849. </dl>
  4850. <dl>
  4851. <dt>Notes</dt>
  4852. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4853. </div>
  4854. </div>
  4855. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4856. </div>
  4857. </div>
  4858. </li>
  4859. <liclass="image_lists_itemdatapage-2">
  4860. <aclass="card_img">
  4861. <imgsrc="../images/cardlist/card/BT9-057.png"alt="BT9-057Bearmon"></a>
  4862. <divclass="popup">
  4863. <divclass="card_detailcard_detail_black">
  4864. <divclass="card_detail_inner">
  4865. <ulclass="cardinfo_head">
  4866. <liclass="cardno">BT9-057</li>
  4867. <li>C</li>
  4868. <liclass="cardtype">Digimon</li>
  4869. <liclass="cardlv">Lv.3</li>
  4870. </ul>
  4871. <divclass="card_name">Bearmon</div>
  4872. <divclass="cardinfo_top">
  4873. <divclass="card_img">
  4874. <imgsrc="../images/cardlist/card/BT9-057.png"alt="BT9-057Bearmon"></div>
  4875. <divclass="cardinfo_top_body">
  4876. <dl>
  4877. <dt>Form</dt>
  4878. <dd>Rookie</dd>
  4879. </dl>
  4880. <dl>
  4881. <dt>Attribute</dt>
  4882. <dd>Vaccine</dd>
  4883. </dl>
  4884. <dl>
  4885. <dt>Type</dt>
  4886. <dd>Beast</dd>
  4887. </dl>
  4888. <dl>
  4889. <dt>DP</dt>
  4890. <dd>3000</dl>
  4891. <dl>
  4892. <dt>PlayCost</dt>
  4893. <dd>2</dd>
  4894. </dl>
  4895. <dl>
  4896. <dt>DigivolveCost1</dt>
  4897. <dd>0</dd>
  4898. </dl>
  4899. <dl>
  4900. <dt>DigivolveCost2</dt>
  4901. <dd>-</dd>
  4902. </dl>
  4903. </div>
  4904. </div>
  4905. <divclass="cardinfo_bottom">
  4906. <dl>
  4907. <dt>Effect</dt>
  4908. <dd>-</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>Digivolveeffect</dt>
  4912. <dd>-</dd>
  4913. </dl>
  4914. <dl>
  4915. <dt>Securityeffect</dt>
  4916. <dd>-</dd>
  4917. </dl>
  4918. <dl>
  4919. <dt>Notes</dt>
  4920. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4921. </div>
  4922. </div>
  4923. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4924. </div>
  4925. </div>
  4926. </li>
  4927. <liclass="image_lists_itemdatapage-2">
  4928. <aclass="card_img">
  4929. <imgsrc="../images/cardlist/card/BT9-058.png"alt="BT9-058Dorumon"></a>
  4930. <divclass="popup">
  4931. <divclass="card_detailcard_detail_black">
  4932. <divclass="card_detail_inner">
  4933. <ulclass="cardinfo_head">
  4934. <liclass="cardno">BT9-058</li>
  4935. <li>U</li>
  4936. <liclass="cardtype">Digimon</li>
  4937. <liclass="cardlv">Lv.3</li>
  4938. </ul>
  4939. <divclass="card_name">Dorumon</div>
  4940. <divclass="cardinfo_top">
  4941. <divclass="card_img">
  4942. <imgsrc="../images/cardlist/card/BT9-058.png"alt="BT9-058Dorumon"></div>
  4943. <divclass="cardinfo_top_body">
  4944. <dl>
  4945. <dt>Form</dt>
  4946. <dd>Rookie</dd>
  4947. </dl>
  4948. <dl>
  4949. <dt>Attribute</dt>
  4950. <dd>Data</dd>
  4951. </dl>
  4952. <dl>
  4953. <dt>Type</dt>
  4954. <dd>Beast/XAntibody</dd>
  4955. </dl>
  4956. <dl>
  4957. <dt>DP</dt>
  4958. <dd>2000</dl>
  4959. <dl>
  4960. <dt>PlayCost</dt>
  4961. <dd>3</dd>
  4962. </dl>
  4963. <dl>
  4964. <dt>DigivolveCost1</dt>
  4965. <dd>0</dd>
  4966. </dl>
  4967. <dl>
  4968. <dt>DigivolveCost2</dt>
  4969. <dd>-</dd>
  4970. </dl>
  4971. </div>
  4972. </div>
  4973. <divclass="cardinfo_bottom">
  4974. <dl>
  4975. <dt>Effect</dt>
  4976. <dd>[On Play] You may trash 1 card with [X Antibody] in its traits in your hand to <Draw 2>. (Draw 2 cards from your deck.)</dd>
  4977. </dl>
  4978. <dl>
  4979. <dt>Digivolveeffect</dt>
  4980. <dd>-</dd>
  4981. </dl>
  4982. <dl>
  4983. <dt>Securityeffect</dt>
  4984. <dd>-</dd>
  4985. </dl>
  4986. <dl>
  4987. <dt>Notes</dt>
  4988. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  4989. </div>
  4990. </div>
  4991. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4992. </div>
  4993. </div>
  4994. </li>
  4995. <liclass="image_lists_itemdatapage-2">
  4996. <aclass="card_img">
  4997. <imgsrc="../images/cardlist/card/BT9-058_P1.png"alt="BT9-058Dorumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4998. </a>
  4999. <divclass="popup">
  5000. <divclass="card_detailcard_detail_black">
  5001. <divclass="card_detail_inner">
  5002. <ulclass="cardinfo_head">
  5003. <liclass="cardno">BT9-058</li>
  5004. <li>U</li>
  5005. <liclass="cardtype">Digimon</li>
  5006. <liclass="cardlv">Lv.3</li>
  5007. <liclass="cardtypecardParallel">AlternativeArt</li>
  5008. </ul>
  5009. <divclass="card_name">Dorumon</div>
  5010. <divclass="cardinfo_top">
  5011. <divclass="card_img">
  5012. <imgsrc="../images/cardlist/card/BT9-058_P1.png"alt="BT9-058Dorumon"></div>
  5013. <divclass="cardinfo_top_body">
  5014. <dl>
  5015. <dt>Form</dt>
  5016. <dd>Rookie</dd>
  5017. </dl>
  5018. <dl>
  5019. <dt>Attribute</dt>
  5020. <dd>Data</dd>
  5021. </dl>
  5022. <dl>
  5023. <dt>Type</dt>
  5024. <dd>Beast/XAntibody</dd>
  5025. </dl>
  5026. <dl>
  5027. <dt>DP</dt>
  5028. <dd>2000</dl>
  5029. <dl>
  5030. <dt>PlayCost</dt>
  5031. <dd>3</dd>
  5032. </dl>
  5033. <dl>
  5034. <dt>DigivolveCost1</dt>
  5035. <dd>0</dd>
  5036. </dl>
  5037. <dl>
  5038. <dt>DigivolveCost2</dt>
  5039. <dd>-</dd>
  5040. </dl>
  5041. </div>
  5042. </div>
  5043. <divclass="cardinfo_bottom">
  5044. <dl>
  5045. <dt>Effect</dt>
  5046. <dd>[On Play] You may trash 1 card with [X Antibody] in its traits in your hand to <Draw 2>. (Draw 2 cards from your deck.)</dd>
  5047. </dl>
  5048. <dl>
  5049. <dt>Digivolveeffect</dt>
  5050. <dd>-</dd>
  5051. </dl>
  5052. <dl>
  5053. <dt>Securityeffect</dt>
  5054. <dd>-</dd>
  5055. </dl>
  5056. <dl>
  5057. <dt>Notes</dt>
  5058. <dd>RoyalKnightsBinderSet[PB13]</dd></dl>
  5059. </div>
  5060. </div>
  5061. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5062. </div>
  5063. </div>
  5064. </li>
  5065. <liclass="image_lists_itemdatapage-2">
  5066. <aclass="card_img">
  5067. <imgsrc="../images/cardlist/card/BT9-059.png"alt="BT9-059Tapirmon"></a>
  5068. <divclass="popup">
  5069. <divclass="card_detailcard_detail_black">
  5070. <divclass="card_detail_inner">
  5071. <ulclass="cardinfo_head">
  5072. <liclass="cardno">BT9-059</li>
  5073. <li>C</li>
  5074. <liclass="cardtype">Digimon</li>
  5075. <liclass="cardlv">Lv.3</li>
  5076. </ul>
  5077. <divclass="card_name">Tapirmon</div>
  5078. <divclass="cardinfo_top">
  5079. <divclass="card_img">
  5080. <imgsrc="../images/cardlist/card/BT9-059.png"alt="BT9-059Tapirmon"></div>
  5081. <divclass="cardinfo_top_body">
  5082. <dl>
  5083. <dt>Form</dt>
  5084. <dd>Rookie</dd>
  5085. </dl>
  5086. <dl>
  5087. <dt>Attribute</dt>
  5088. <dd>Vaccine</dd>
  5089. </dl>
  5090. <dl>
  5091. <dt>Type</dt>
  5092. <dd>HolyBeast</dd>
  5093. </dl>
  5094. <dl>
  5095. <dt>DP</dt>
  5096. <dd>2000</dl>
  5097. <dl>
  5098. <dt>PlayCost</dt>
  5099. <dd>3</dd>
  5100. </dl>
  5101. <dl>
  5102. <dt>DigivolveCost1</dt>
  5103. <dd>0</dd>
  5104. </dl>
  5105. <dl>
  5106. <dt>DigivolveCost2</dt>
  5107. <dd>Red</dd>
  5108. </dl>
  5109. </div>
  5110. </div>
  5111. <divclass="cardinfo_bottom">
  5112. <dl>
  5113. <dt>Effect</dt>
  5114. <dd>-</dd>
  5115. </dl>
  5116. <dl>
  5117. <dt>Digivolveeffect</dt>
  5118. <dd>[All Turns] While this Digimon has 2 or more colors, it gets +1000 DP.</dd>
  5119. </dl>
  5120. <dl>
  5121. <dt>Securityeffect</dt>
  5122. <dd>-</dd>
  5123. </dl>
  5124. <dl>
  5125. <dt>Notes</dt>
  5126. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5127. </div>
  5128. </div>
  5129. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5130. </div>
  5131. </div>
  5132. </li>
  5133. <liclass="image_lists_itemdatapage-2">
  5134. <aclass="card_img">
  5135. <imgsrc="../images/cardlist/card/BT9-060.png"alt="BT9-060Grizzlymon"></a>
  5136. <divclass="popup">
  5137. <divclass="card_detailcard_detail_black">
  5138. <divclass="card_detail_inner">
  5139. <ulclass="cardinfo_head">
  5140. <liclass="cardno">BT9-060</li>
  5141. <li>C</li>
  5142. <liclass="cardtype">Digimon</li>
  5143. <liclass="cardlv">Lv.4</li>
  5144. </ul>
  5145. <divclass="card_name">Grizzlymon</div>
  5146. <divclass="cardinfo_top">
  5147. <divclass="card_img">
  5148. <imgsrc="../images/cardlist/card/BT9-060.png"alt="BT9-060Grizzlymon"></div>
  5149. <divclass="cardinfo_top_body">
  5150. <dl>
  5151. <dt>Form</dt>
  5152. <dd>Champion</dd>
  5153. </dl>
  5154. <dl>
  5155. <dt>Attribute</dt>
  5156. <dd>Vaccine</dd>
  5157. </dl>
  5158. <dl>
  5159. <dt>Type</dt>
  5160. <dd>Beast</dd>
  5161. </dl>
  5162. <dl>
  5163. <dt>DP</dt>
  5164. <dd>5000</dl>
  5165. <dl>
  5166. <dt>PlayCost</dt>
  5167. <dd>5</dd>
  5168. </dl>
  5169. <dl>
  5170. <dt>DigivolveCost1</dt>
  5171. <dd>1</dd>
  5172. </dl>
  5173. <dl>
  5174. <dt>DigivolveCost2</dt>
  5175. <dd>-</dd>
  5176. </dl>
  5177. </div>
  5178. </div>
  5179. <divclass="cardinfo_bottom">
  5180. <dl>
  5181. <dt>Effect</dt>
  5182. <dd>-</dd>
  5183. </dl>
  5184. <dl>
  5185. <dt>Digivolveeffect</dt>
  5186. <dd>-</dd>
  5187. </dl>
  5188. <dl>
  5189. <dt>Securityeffect</dt>
  5190. <dd>-</dd>
  5191. </dl>
  5192. <dl>
  5193. <dt>Notes</dt>
  5194. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5195. </div>
  5196. </div>
  5197. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5198. </div>
  5199. </div>
  5200. </li>
  5201. <liclass="image_lists_itemdatapage-2">
  5202. <aclass="card_img">
  5203. <imgsrc="../images/cardlist/card/BT9-061.png"alt="BT9-061Monochromon"></a>
  5204. <divclass="popup">
  5205. <divclass="card_detailcard_detail_black_redmulticolor">
  5206. <divclass="card_detail_inner">
  5207. <ulclass="cardinfo_head">
  5208. <liclass="cardno">BT9-061</li>
  5209. <li>C</li>
  5210. <liclass="cardtype">Digimon</li>
  5211. <liclass="cardlv">Lv.4</li>
  5212. </ul>
  5213. <divclass="card_name">Monochromon</div>
  5214. <divclass="cardinfo_top">
  5215. <divclass="card_img">
  5216. <imgsrc="../images/cardlist/card/BT9-061.png"alt="BT9-061Monochromon"></div>
  5217. <divclass="cardinfo_top_body">
  5218. <dl>
  5219. <dt>Form</dt>
  5220. <dd>Champion</dd>
  5221. </dl>
  5222. <dl>
  5223. <dt>Attribute</dt>
  5224. <dd>Data</dd>
  5225. </dl>
  5226. <dl>
  5227. <dt>Type</dt>
  5228. <dd>Ankylosaur</dd>
  5229. </dl>
  5230. <dl>
  5231. <dt>DP</dt>
  5232. <dd>6000</dl>
  5233. <dl>
  5234. <dt>PlayCost</dt>
  5235. <dd>5</dd>
  5236. </dl>
  5237. <dl>
  5238. <dt>DigivolveCost1</dt>
  5239. <dd>2</dd>
  5240. </dl>
  5241. <dl>
  5242. <dt>DigivolveCost2</dt>
  5243. <dd>Red</dd>
  5244. </dl>
  5245. </div>
  5246. </div>
  5247. <divclass="cardinfo_bottom">
  5248. <dl>
  5249. <dt>Effect</dt>
  5250. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)[When Attacking] Lose 3 memory.</dd>
  5251. </dl>
  5252. <dl>
  5253. <dt>Digivolveeffect</dt>
  5254. <dd>-</dd>
  5255. </dl>
  5256. <dl>
  5257. <dt>Securityeffect</dt>
  5258. <dd>-</dd>
  5259. </dl>
  5260. <dl>
  5261. <dt>Notes</dt>
  5262. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5263. </div>
  5264. </div>
  5265. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5266. </div>
  5267. </div>
  5268. </li>
  5269. <liclass="image_lists_itemdatapage-2">
  5270. <aclass="card_img">
  5271. <imgsrc="../images/cardlist/card/BT9-062.png"alt="BT9-062Raptordramon"></a>
  5272. <divclass="popup">
  5273. <divclass="card_detailcard_detail_black">
  5274. <divclass="card_detail_inner">
  5275. <ulclass="cardinfo_head">
  5276. <liclass="cardno">BT9-062</li>
  5277. <li>C</li>
  5278. <liclass="cardtype">Digimon</li>
  5279. <liclass="cardlv">Lv.4</li>
  5280. </ul>
  5281. <divclass="card_name">Raptordramon</div>
  5282. <divclass="cardinfo_top">
  5283. <divclass="card_img">
  5284. <imgsrc="../images/cardlist/card/BT9-062.png"alt="BT9-062Raptordramon"></div>
  5285. <divclass="cardinfo_top_body">
  5286. <dl>
  5287. <dt>Form</dt>
  5288. <dd>Champion</dd>
  5289. </dl>
  5290. <dl>
  5291. <dt>Attribute</dt>
  5292. <dd>Vaccine</dd>
  5293. </dl>
  5294. <dl>
  5295. <dt>Type</dt>
  5296. <dd>Cyborg/XAntibody</dd>
  5297. </dl>
  5298. <dl>
  5299. <dt>DP</dt>
  5300. <dd>6000</dl>
  5301. <dl>
  5302. <dt>PlayCost</dt>
  5303. <dd>5</dd>
  5304. </dl>
  5305. <dl>
  5306. <dt>DigivolveCost1</dt>
  5307. <dd>2</dd>
  5308. </dl>
  5309. <dl>
  5310. <dt>DigivolveCost2</dt>
  5311. <dd>-</dd>
  5312. </dl>
  5313. </div>
  5314. </div>
  5315. <divclass="cardinfo_bottom">
  5316. <dl>
  5317. <dt>Effect</dt>
  5318. <dd>-</dd>
  5319. </dl>
  5320. <dl>
  5321. <dt>Digivolveeffect</dt>
  5322. <dd>[End of Attack] If this Digimon has [Alphamon] in its name, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  5323. </dl>
  5324. <dl>
  5325. <dt>Securityeffect</dt>
  5326. <dd>-</dd>
  5327. </dl>
  5328. <dl>
  5329. <dt>Notes</dt>
  5330. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5331. </div>
  5332. </div>
  5333. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5334. </div>
  5335. </div>
  5336. </li>
  5337. <liclass="image_lists_itemdatapage-2">
  5338. <aclass="card_img">
  5339. <imgsrc="../images/cardlist/card/BT9-063.png"alt="BT9-063LoaderLeomon"></a>
  5340. <divclass="popup">
  5341. <divclass="card_detailcard_detail_black">
  5342. <divclass="card_detail_inner">
  5343. <ulclass="cardinfo_head">
  5344. <liclass="cardno">BT9-063</li>
  5345. <li>C</li>
  5346. <liclass="cardtype">Digimon</li>
  5347. <liclass="cardlv">Lv.5</li>
  5348. </ul>
  5349. <divclass="card_name">LoaderLeomon</div>
  5350. <divclass="cardinfo_top">
  5351. <divclass="card_img">
  5352. <imgsrc="../images/cardlist/card/BT9-063.png"alt="BT9-063LoaderLeomon"></div>
  5353. <divclass="cardinfo_top_body">
  5354. <dl>
  5355. <dt>Form</dt>
  5356. <dd>Ultimate</dd>
  5357. </dl>
  5358. <dl>
  5359. <dt>Attribute</dt>
  5360. <dd>Vaccine</dd>
  5361. </dl>
  5362. <dl>
  5363. <dt>Type</dt>
  5364. <dd>Machine</dd>
  5365. </dl>
  5366. <dl>
  5367. <dt>DP</dt>
  5368. <dd>7000</dl>
  5369. <dl>
  5370. <dt>PlayCost</dt>
  5371. <dd>6</dd>
  5372. </dl>
  5373. <dl>
  5374. <dt>DigivolveCost1</dt>
  5375. <dd>2</dd>
  5376. </dl>
  5377. <dl>
  5378. <dt>DigivolveCost2</dt>
  5379. <dd>-</dd>
  5380. </dl>
  5381. </div>
  5382. </div>
  5383. <divclass="cardinfo_bottom">
  5384. <dl>
  5385. <dt>Effect</dt>
  5386. <dd>-</dd>
  5387. </dl>
  5388. <dl>
  5389. <dt>Digivolveeffect</dt>
  5390. <dd>-</dd>
  5391. </dl>
  5392. <dl>
  5393. <dt>Securityeffect</dt>
  5394. <dd>-</dd>
  5395. </dl>
  5396. <dl>
  5397. <dt>Notes</dt>
  5398. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5399. </div>
  5400. </div>
  5401. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5402. </div>
  5403. </div>
  5404. </li>
  5405. <liclass="image_lists_itemdatapage-2">
  5406. <aclass="card_img">
  5407. <imgsrc="../images/cardlist/card/BT9-064.png"alt="BT9-064Grademon"></a>
  5408. <divclass="popup">
  5409. <divclass="card_detailcard_detail_black">
  5410. <divclass="card_detail_inner">
  5411. <ulclass="cardinfo_head">
  5412. <liclass="cardno">BT9-064</li>
  5413. <li>R</li>
  5414. <liclass="cardtype">Digimon</li>
  5415. <liclass="cardlv">Lv.5</li>
  5416. </ul>
  5417. <divclass="card_name">Grademon</div>
  5418. <divclass="cardinfo_top">
  5419. <divclass="card_img">
  5420. <imgsrc="../images/cardlist/card/BT9-064.png"alt="BT9-064Grademon"></div>
  5421. <divclass="cardinfo_top_body">
  5422. <dl>
  5423. <dt>Form</dt>
  5424. <dd>Ultimate</dd>
  5425. </dl>
  5426. <dl>
  5427. <dt>Attribute</dt>
  5428. <dd>Vaccine</dd>
  5429. </dl>
  5430. <dl>
  5431. <dt>Type</dt>
  5432. <dd>Warrior/XAntibody</dd>
  5433. </dl>
  5434. <dl>
  5435. <dt>DP</dt>
  5436. <dd>8000</dl>
  5437. <dl>
  5438. <dt>PlayCost</dt>
  5439. <dd>8</dd>
  5440. </dl>
  5441. <dl>
  5442. <dt>DigivolveCost1</dt>
  5443. <dd>3</dd>
  5444. </dl>
  5445. <dl>
  5446. <dt>DigivolveCost2</dt>
  5447. <dd>-</dd>
  5448. </dl>
  5449. </div>
  5450. </div>
  5451. <divclass="cardinfo_bottom">
  5452. <dl>
  5453. <dt>Effect</dt>
  5454. <dd>[When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Alphamon] in its name among them to your hand, and place 1 card with [X Antibody] in its traits among them under this Digimon as its bottom digivolution card. Trash the rest.</dd>
  5455. </dl>
  5456. <dl>
  5457. <dt>Digivolveeffect</dt>
  5458. <dd>[End of Attack] If this Digimon has [Alphamon] in its name, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  5459. </dl>
  5460. <dl>
  5461. <dt>Securityeffect</dt>
  5462. <dd>-</dd>
  5463. </dl>
  5464. <dl>
  5465. <dt>Notes</dt>
  5466. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5467. </div>
  5468. </div>
  5469. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5470. </div>
  5471. </div>
  5472. </li>
  5473. <liclass="image_lists_itemdatapage-3">
  5474. <aclass="card_img">
  5475. <imgsrc="../images/cardlist/card/BT9-064_P1.png"alt="BT9-064Grademon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5476. </a>
  5477. <divclass="popup">
  5478. <divclass="card_detailcard_detail_black">
  5479. <divclass="card_detail_inner">
  5480. <ulclass="cardinfo_head">
  5481. <liclass="cardno">BT9-064</li>
  5482. <li>R</li>
  5483. <liclass="cardtype">Digimon</li>
  5484. <liclass="cardlv">Lv.5</li>
  5485. <liclass="cardtypecardParallel">AlternativeArt</li>
  5486. </ul>
  5487. <divclass="card_name">Grademon</div>
  5488. <divclass="cardinfo_top">
  5489. <divclass="card_img">
  5490. <imgsrc="../images/cardlist/card/BT9-064_P1.png"alt="BT9-064Grademon"></div>
  5491. <divclass="cardinfo_top_body">
  5492. <dl>
  5493. <dt>Form</dt>
  5494. <dd>Ultimate</dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>Attribute</dt>
  5498. <dd>Vaccine</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>Type</dt>
  5502. <dd>Warrior/XAntibody</dd>
  5503. </dl>
  5504. <dl>
  5505. <dt>DP</dt>
  5506. <dd>8000</dl>
  5507. <dl>
  5508. <dt>PlayCost</dt>
  5509. <dd>8</dd>
  5510. </dl>
  5511. <dl>
  5512. <dt>DigivolveCost1</dt>
  5513. <dd>3</dd>
  5514. </dl>
  5515. <dl>
  5516. <dt>DigivolveCost2</dt>
  5517. <dd>-</dd>
  5518. </dl>
  5519. </div>
  5520. </div>
  5521. <divclass="cardinfo_bottom">
  5522. <dl>
  5523. <dt>Effect</dt>
  5524. <dd>[When Digivolving] Reveal the top 3 cards of your deck. Add 1 card with [Alphamon] in its name among them to your hand, and place 1 card with [X Antibody] in its traits among them under this Digimon as its bottom digivolution card. Trash the rest.</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>Digivolveeffect</dt>
  5528. <dd>[End of Attack] If this Digimon has [Alphamon] in its name, delete 1 of your opponent's Digimon with a play cost of 5 or less.</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>Securityeffect</dt>
  5532. <dd>-</dd>
  5533. </dl>
  5534. <dl>
  5535. <dt>Notes</dt>
  5536. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5537. </div>
  5538. </div>
  5539. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5540. </div>
  5541. </div>
  5542. </li>
  5543. <liclass="image_lists_itemdatapage-3">
  5544. <aclass="card_img">
  5545. <imgsrc="../images/cardlist/card/BT9-065.png"alt="BT9-065Megadramon"></a>
  5546. <divclass="popup">
  5547. <divclass="card_detailcard_detail_black_redmulticolor">
  5548. <divclass="card_detail_inner">
  5549. <ulclass="cardinfo_head">
  5550. <liclass="cardno">BT9-065</li>
  5551. <li>U</li>
  5552. <liclass="cardtype">Digimon</li>
  5553. <liclass="cardlv">Lv.5</li>
  5554. </ul>
  5555. <divclass="card_name">Megadramon</div>
  5556. <divclass="cardinfo_top">
  5557. <divclass="card_img">
  5558. <imgsrc="../images/cardlist/card/BT9-065.png"alt="BT9-065Megadramon"></div>
  5559. <divclass="cardinfo_top_body">
  5560. <dl>
  5561. <dt>Form</dt>
  5562. <dd>Ultimate</dd>
  5563. </dl>
  5564. <dl>
  5565. <dt>Attribute</dt>
  5566. <dd>Virus</dd>
  5567. </dl>
  5568. <dl>
  5569. <dt>Type</dt>
  5570. <dd>Cyborg</dd>
  5571. </dl>
  5572. <dl>
  5573. <dt>DP</dt>
  5574. <dd>8000</dl>
  5575. <dl>
  5576. <dt>PlayCost</dt>
  5577. <dd>8</dd>
  5578. </dl>
  5579. <dl>
  5580. <dt>DigivolveCost1</dt>
  5581. <dd>4</dd>
  5582. </dl>
  5583. <dl>
  5584. <dt>DigivolveCost2</dt>
  5585. <dd>Red</dd>
  5586. </dl>
  5587. </div>
  5588. </div>
  5589. <divclass="cardinfo_bottom">
  5590. <dl>
  5591. <dt>Effect</dt>
  5592. <dd>[When Digivolving] Delete 1 of your opponent's Digimon or Tamers with a play cost of 3 or less.</dd>
  5593. </dl>
  5594. <dl>
  5595. <dt>Digivolveeffect</dt>
  5596. <dd>[When Attacking] If this Digimon has [Machine] or [Dragonkin] in its traits, delete 1 of your opponent's Digimon or Tamers with a play cost of 3 or less.</dd>
  5597. </dl>
  5598. <dl>
  5599. <dt>Securityeffect</dt>
  5600. <dd>-</dd>
  5601. </dl>
  5602. <dl>
  5603. <dt>Notes</dt>
  5604. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5605. </div>
  5606. </div>
  5607. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5608. </div>
  5609. </div>
  5610. </li>
  5611. <liclass="image_lists_itemdatapage-3">
  5612. <aclass="card_img">
  5613. <imgsrc="../images/cardlist/card/BT9-066.png"alt="BT9-066Alphamon"></a>
  5614. <divclass="popup">
  5615. <divclass="card_detailcard_detail_black">
  5616. <divclass="card_detail_inner">
  5617. <ulclass="cardinfo_head">
  5618. <liclass="cardno">BT9-066</li>
  5619. <li>R</li>
  5620. <liclass="cardtype">Digimon</li>
  5621. <liclass="cardlv">Lv.6</li>
  5622. </ul>
  5623. <divclass="card_name">Alphamon</div>
  5624. <divclass="cardinfo_top">
  5625. <divclass="card_img">
  5626. <imgsrc="../images/cardlist/card/BT9-066.png"alt="BT9-066Alphamon"></div>
  5627. <divclass="cardinfo_top_body">
  5628. <dl>
  5629. <dt>Form</dt>
  5630. <dd>Mega</dd>
  5631. </dl>
  5632. <dl>
  5633. <dt>Attribute</dt>
  5634. <dd>Vaccine</dd>
  5635. </dl>
  5636. <dl>
  5637. <dt>Type</dt>
  5638. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  5639. </dl>
  5640. <dl>
  5641. <dt>DP</dt>
  5642. <dd>11000</dl>
  5643. <dl>
  5644. <dt>PlayCost</dt>
  5645. <dd>12</dd>
  5646. </dl>
  5647. <dl>
  5648. <dt>DigivolveCost1</dt>
  5649. <dd>3</dd>
  5650. </dl>
  5651. <dl>
  5652. <dt>DigivolveCost2</dt>
  5653. <dd>-</dd>
  5654. </dl>
  5655. </div>
  5656. </div>
  5657. <divclass="cardinfo_bottom">
  5658. <dl>
  5659. <dt>Effect</dt>
  5660. <dd>[When Digivolving] Place 1 card with [X Antibody] in its traits from your trash under this Digimon as its bottom digivolution card.[Your Turn][Once Per Turn] When an effect places a digivolution card under this Digimon, <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  5661. </dl>
  5662. <dl>
  5663. <dt>Digivolveeffect</dt>
  5664. <dd>-</dd>
  5665. </dl>
  5666. <dl>
  5667. <dt>Securityeffect</dt>
  5668. <dd>-</dd>
  5669. </dl>
  5670. <dl>
  5671. <dt>Notes</dt>
  5672. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5673. </div>
  5674. </div>
  5675. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5676. </div>
  5677. </div>
  5678. </li>
  5679. <liclass="image_lists_itemdatapage-3">
  5680. <aclass="card_img">
  5681. <imgsrc="../images/cardlist/card/BT9-066_P1.png"alt="BT9-066Alphamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5682. </a>
  5683. <divclass="popup">
  5684. <divclass="card_detailcard_detail_black">
  5685. <divclass="card_detail_inner">
  5686. <ulclass="cardinfo_head">
  5687. <liclass="cardno">BT9-066</li>
  5688. <li>R</li>
  5689. <liclass="cardtype">Digimon</li>
  5690. <liclass="cardlv">Lv.6</li>
  5691. <liclass="cardtypecardParallel">AlternativeArt</li>
  5692. </ul>
  5693. <divclass="card_name">Alphamon</div>
  5694. <divclass="cardinfo_top">
  5695. <divclass="card_img">
  5696. <imgsrc="../images/cardlist/card/BT9-066_P1.png"alt="BT9-066Alphamon"></div>
  5697. <divclass="cardinfo_top_body">
  5698. <dl>
  5699. <dt>Form</dt>
  5700. <dd>Mega</dd>
  5701. </dl>
  5702. <dl>
  5703. <dt>Attribute</dt>
  5704. <dd>Vaccine</dd>
  5705. </dl>
  5706. <dl>
  5707. <dt>Type</dt>
  5708. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  5709. </dl>
  5710. <dl>
  5711. <dt>DP</dt>
  5712. <dd>11000</dl>
  5713. <dl>
  5714. <dt>PlayCost</dt>
  5715. <dd>12</dd>
  5716. </dl>
  5717. <dl>
  5718. <dt>DigivolveCost1</dt>
  5719. <dd>3</dd>
  5720. </dl>
  5721. <dl>
  5722. <dt>DigivolveCost2</dt>
  5723. <dd>-</dd>
  5724. </dl>
  5725. </div>
  5726. </div>
  5727. <divclass="cardinfo_bottom">
  5728. <dl>
  5729. <dt>Effect</dt>
  5730. <dd>[When Digivolving] Place 1 card with [X Antibody] in its traits from your trash under this Digimon as its bottom digivolution card.[Your Turn][Once Per Turn] When an effect places a digivolution card under this Digimon, <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.)</dd>
  5731. </dl>
  5732. <dl>
  5733. <dt>Digivolveeffect</dt>
  5734. <dd>-</dd>
  5735. </dl>
  5736. <dl>
  5737. <dt>Securityeffect</dt>
  5738. <dd>-</dd>
  5739. </dl>
  5740. <dl>
  5741. <dt>Notes</dt>
  5742. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5743. </div>
  5744. </div>
  5745. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5746. </div>
  5747. </div>
  5748. </li>
  5749. <liclass="image_lists_itemdatapage-3">
  5750. <aclass="card_img">
  5751. <imgsrc="../images/cardlist/card/BT9-067.png"alt="BT9-067Raidenmon"></a>
  5752. <divclass="popup">
  5753. <divclass="card_detailcard_detail_black">
  5754. <divclass="card_detail_inner">
  5755. <ulclass="cardinfo_head">
  5756. <liclass="cardno">BT9-067</li>
  5757. <li>R</li>
  5758. <liclass="cardtype">Digimon</li>
  5759. <liclass="cardlv">Lv.6</li>
  5760. </ul>
  5761. <divclass="card_name">Raidenmon</div>
  5762. <divclass="cardinfo_top">
  5763. <divclass="card_img">
  5764. <imgsrc="../images/cardlist/card/BT9-067.png"alt="BT9-067Raidenmon"></div>
  5765. <divclass="cardinfo_top_body">
  5766. <dl>
  5767. <dt>Form</dt>
  5768. <dd>Mega</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>Attribute</dt>
  5772. <dd>Virus</dd>
  5773. </dl>
  5774. <dl>
  5775. <dt>Type</dt>
  5776. <dd>Machine</dd>
  5777. </dl>
  5778. <dl>
  5779. <dt>DP</dt>
  5780. <dd>12000</dl>
  5781. <dl>
  5782. <dt>PlayCost</dt>
  5783. <dd>12</dd>
  5784. </dl>
  5785. <dl>
  5786. <dt>DigivolveCost1</dt>
  5787. <dd>4</dd>
  5788. </dl>
  5789. <dl>
  5790. <dt>DigivolveCost2</dt>
  5791. <dd>Black</dd>
  5792. </dl>
  5793. </div>
  5794. </div>
  5795. <divclass="cardinfo_bottom">
  5796. <dl>
  5797. <dt>Effect</dt>
  5798. <dd>[On Play][When Digivolving] Place 1 [Raijinmon], 1 [Fuijinmon], and 1 [Suijinmon] from your trash under this Digimon in any order as its bottom digivolution cards. Gain 1 memory for each card placed.[When Attacking] If the level 6 cards in this Digimon's digivolution cards have 3 or more colors among them, this Digimon gets +3000 DP until the end of your opponent's turn. If they have 4 or more colors, <De-Digivolve 1> 1 of your opponent's Digimon.</dd>
  5799. </dl>
  5800. <dl>
  5801. <dt>Digivolveeffect</dt>
  5802. <dd>-</dd>
  5803. </dl>
  5804. <dl>
  5805. <dt>Securityeffect</dt>
  5806. <dd>-</dd>
  5807. </dl>
  5808. <dl>
  5809. <dt>Notes</dt>
  5810. <dd>BOOSTERXRECORD[BT09]<br><ahref='https://world.digimoncard.com/rule/errata_card/index.php#BT9-067'>ErrataCard</a></dd></dl>
  5811. </div>
  5812. </div>
  5813. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5814. </div>
  5815. </div>
  5816. </li>
  5817. <liclass="image_lists_itemdatapage-3">
  5818. <aclass="card_img">
  5819. <imgsrc="../images/cardlist/card/BT9-068.png"alt="BT9-068Gaiomon"></a>
  5820. <divclass="popup">
  5821. <divclass="card_detailcard_detail_black_redmulticolor">
  5822. <divclass="card_detail_inner">
  5823. <ulclass="cardinfo_head">
  5824. <liclass="cardno">BT9-068</li>
  5825. <li>SR</li>
  5826. <liclass="cardtype">Digimon</li>
  5827. <liclass="cardlv">Lv.6</li>
  5828. </ul>
  5829. <divclass="card_name">Gaiomon</div>
  5830. <divclass="cardinfo_top">
  5831. <divclass="card_img">
  5832. <imgsrc="../images/cardlist/card/BT9-068.png"alt="BT9-068Gaiomon"></div>
  5833. <divclass="cardinfo_top_body">
  5834. <dl>
  5835. <dt>Form</dt>
  5836. <dd>Mega</dd>
  5837. </dl>
  5838. <dl>
  5839. <dt>Attribute</dt>
  5840. <dd>Virus</dd>
  5841. </dl>
  5842. <dl>
  5843. <dt>Type</dt>
  5844. <dd>Dragonkin/XAntibody</dd>
  5845. </dl>
  5846. <dl>
  5847. <dt>DP</dt>
  5848. <dd>13000</dl>
  5849. <dl>
  5850. <dt>PlayCost</dt>
  5851. <dd>13</dd>
  5852. </dl>
  5853. <dl>
  5854. <dt>DigivolveCost1</dt>
  5855. <dd>5</dd>
  5856. </dl>
  5857. <dl>
  5858. <dt>DigivolveCost2</dt>
  5859. <dd>Red</dd>
  5860. </dl>
  5861. </div>
  5862. </div>
  5863. <divclass="cardinfo_bottom">
  5864. <dl>
  5865. <dt>Effect</dt>
  5866. <dd>Digivolve: 2 from [BlackWarGreymon]This card/Digimon is also treated as having [Greymon] in its name.<Security Attack +1><Reboot>[When Digivolving] If this Digimon has a black digivolution card, <De-Digivolve 1> 1 of your opponent's Digimon. If this Digimon has a red digivolution card, <Blitz>.</dd>
  5867. </dl>
  5868. <dl>
  5869. <dt>Digivolveeffect</dt>
  5870. <dd>-</dd>
  5871. </dl>
  5872. <dl>
  5873. <dt>Securityeffect</dt>
  5874. <dd>-</dd>
  5875. </dl>
  5876. <dl>
  5877. <dt>Notes</dt>
  5878. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5879. </div>
  5880. </div>
  5881. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5882. </div>
  5883. </div>
  5884. </li>
  5885. <liclass="image_lists_itemdatapage-3">
  5886. <aclass="card_img">
  5887. <imgsrc="../images/cardlist/card/BT9-068_P1.png"alt="BT9-068Gaiomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  5888. </a>
  5889. <divclass="popup">
  5890. <divclass="card_detailcard_detail_black_redmulticolor">
  5891. <divclass="card_detail_inner">
  5892. <ulclass="cardinfo_head">
  5893. <liclass="cardno">BT9-068</li>
  5894. <li>SR</li>
  5895. <liclass="cardtype">Digimon</li>
  5896. <liclass="cardlv">Lv.6</li>
  5897. <liclass="cardtypecardParallel">AlternativeArt</li>
  5898. </ul>
  5899. <divclass="card_name">Gaiomon</div>
  5900. <divclass="cardinfo_top">
  5901. <divclass="card_img">
  5902. <imgsrc="../images/cardlist/card/BT9-068_P1.png"alt="BT9-068Gaiomon"></div>
  5903. <divclass="cardinfo_top_body">
  5904. <dl>
  5905. <dt>Form</dt>
  5906. <dd>Mega</dd>
  5907. </dl>
  5908. <dl>
  5909. <dt>Attribute</dt>
  5910. <dd>Virus</dd>
  5911. </dl>
  5912. <dl>
  5913. <dt>Type</dt>
  5914. <dd>Dragonkin/XAntibody</dd>
  5915. </dl>
  5916. <dl>
  5917. <dt>DP</dt>
  5918. <dd>13000</dl>
  5919. <dl>
  5920. <dt>PlayCost</dt>
  5921. <dd>13</dd>
  5922. </dl>
  5923. <dl>
  5924. <dt>DigivolveCost1</dt>
  5925. <dd>5</dd>
  5926. </dl>
  5927. <dl>
  5928. <dt>DigivolveCost2</dt>
  5929. <dd>Red</dd>
  5930. </dl>
  5931. </div>
  5932. </div>
  5933. <divclass="cardinfo_bottom">
  5934. <dl>
  5935. <dt>Effect</dt>
  5936. <dd>Digivolve: 2 from [BlackWarGreymon]This card/Digimon is also treated as having [Greymon] in its name.<Security Attack +1><Reboot>[When Digivolving] If this Digimon has a black digivolution card, <De-Digivolve 1> 1 of your opponent's Digimon. If this Digimon has a red digivolution card, <Blitz>.</dd>
  5937. </dl>
  5938. <dl>
  5939. <dt>Digivolveeffect</dt>
  5940. <dd>-</dd>
  5941. </dl>
  5942. <dl>
  5943. <dt>Securityeffect</dt>
  5944. <dd>-</dd>
  5945. </dl>
  5946. <dl>
  5947. <dt>Notes</dt>
  5948. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  5949. </div>
  5950. </div>
  5951. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5952. </div>
  5953. </div>
  5954. </li>
  5955. <liclass="image_lists_itemdatapage-3">
  5956. <aclass="card_img">
  5957. <imgsrc="../images/cardlist/card/BT9-069.png"alt="BT9-069Baihumon"></a>
  5958. <divclass="popup">
  5959. <divclass="card_detailcard_detail_black">
  5960. <divclass="card_detail_inner">
  5961. <ulclass="cardinfo_head">
  5962. <liclass="cardno">BT9-069</li>
  5963. <li>SR</li>
  5964. <liclass="cardtype">Digimon</li>
  5965. <liclass="cardlv">Lv.6</li>
  5966. </ul>
  5967. <divclass="card_name">Baihumon</div>
  5968. <divclass="cardinfo_top">
  5969. <divclass="card_img">
  5970. <imgsrc="../images/cardlist/card/BT9-069.png"alt="BT9-069Baihumon"></div>
  5971. <divclass="cardinfo_top_body">
  5972. <dl>
  5973. <dt>Form</dt>
  5974. <dd>Mega</dd>
  5975. </dl>
  5976. <dl>
  5977. <dt>Attribute</dt>
  5978. <dd>Data</dd>
  5979. </dl>
  5980. <dl>
  5981. <dt>Type</dt>
  5982. <dd>HolyBeast/FourSovereigns</dd>
  5983. </dl>
  5984. <dl>
  5985. <dt>DP</dt>
  5986. <dd>13000</dl>
  5987. <dl>
  5988. <dt>PlayCost</dt>
  5989. <dd>13</dd>
  5990. </dl>
  5991. <dl>
  5992. <dt>DigivolveCost1</dt>
  5993. <dd>5</dd>
  5994. </dl>
  5995. <dl>
  5996. <dt>DigivolveCost2</dt>
  5997. <dd>-</dd>
  5998. </dl>
  5999. </div>
  6000. </div>
  6001. <divclass="cardinfo_bottom">
  6002. <dl>
  6003. <dt>Effect</dt>
  6004. <dd>[When Digivolving] Unsuspend up to 2 Digimon and/or Tamers. Then, gain 1 memory for each of your opponent's unsuspended Digimon and Tamers. [End of Your Turn][Once Per Turn] For every 2 unsuspended Digimon and/or Tamers your opponent has in play, trash 1 card from the top of your opponent’s security stack.</dd>
  6005. </dl>
  6006. <dl>
  6007. <dt>Digivolveeffect</dt>
  6008. <dd>-</dd>
  6009. </dl>
  6010. <dl>
  6011. <dt>Securityeffect</dt>
  6012. <dd>-</dd>
  6013. </dl>
  6014. <dl>
  6015. <dt>Notes</dt>
  6016. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6017. </div>
  6018. </div>
  6019. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6020. </div>
  6021. </div>
  6022. </li>
  6023. <liclass="image_lists_itemdatapage-3">
  6024. <aclass="card_img">
  6025. <imgsrc="../images/cardlist/card/BT9-070.png"alt="BT9-070Gazimon(XAntibody)"></a>
  6026. <divclass="popup">
  6027. <divclass="card_detailcard_detail_purple">
  6028. <divclass="card_detail_inner">
  6029. <ulclass="cardinfo_head">
  6030. <liclass="cardno">BT9-070</li>
  6031. <li>C</li>
  6032. <liclass="cardtype">Digimon</li>
  6033. <liclass="cardlv">Lv.3</li>
  6034. </ul>
  6035. <divclass="card_name">Gazimon(XAntibody)</div>
  6036. <divclass="cardinfo_top">
  6037. <divclass="card_img">
  6038. <imgsrc="../images/cardlist/card/BT9-070.png"alt="BT9-070Gazimon(XAntibody)"></div>
  6039. <divclass="cardinfo_top_body">
  6040. <dl>
  6041. <dt>Form</dt>
  6042. <dd>Rookie</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>Attribute</dt>
  6046. <dd>Virus</dd>
  6047. </dl>
  6048. <dl>
  6049. <dt>Type</dt>
  6050. <dd>Mammal/XAntibody</dd>
  6051. </dl>
  6052. <dl>
  6053. <dt>DP</dt>
  6054. <dd>3000</dl>
  6055. <dl>
  6056. <dt>PlayCost</dt>
  6057. <dd>3</dd>
  6058. </dl>
  6059. <dl>
  6060. <dt>DigivolveCost1</dt>
  6061. <dd>0</dd>
  6062. </dl>
  6063. <dl>
  6064. <dt>DigivolveCost2</dt>
  6065. <dd>-</dd>
  6066. </dl>
  6067. </div>
  6068. </div>
  6069. <divclass="cardinfo_bottom">
  6070. <dl>
  6071. <dt>Effect</dt>
  6072. <dd>Digivolve: 0 from [Gazimon][When Digivolving] Trash the top 3 cards of your deck.</dd>
  6073. </dl>
  6074. <dl>
  6075. <dt>Digivolveeffect</dt>
  6076. <dd>-</dd>
  6077. </dl>
  6078. <dl>
  6079. <dt>Securityeffect</dt>
  6080. <dd>-</dd>
  6081. </dl>
  6082. <dl>
  6083. <dt>Notes</dt>
  6084. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6085. </div>
  6086. </div>
  6087. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6088. </div>
  6089. </div>
  6090. </li>
  6091. <liclass="image_lists_itemdatapage-3">
  6092. <aclass="card_img">
  6093. <imgsrc="../images/cardlist/card/BT9-071.png"alt="BT9-071Dracmon"></a>
  6094. <divclass="popup">
  6095. <divclass="card_detailcard_detail_purple">
  6096. <divclass="card_detail_inner">
  6097. <ulclass="cardinfo_head">
  6098. <liclass="cardno">BT9-071</li>
  6099. <li>U</li>
  6100. <liclass="cardtype">Digimon</li>
  6101. <liclass="cardlv">Lv.3</li>
  6102. </ul>
  6103. <divclass="card_name">Dracmon</div>
  6104. <divclass="cardinfo_top">
  6105. <divclass="card_img">
  6106. <imgsrc="../images/cardlist/card/BT9-071.png"alt="BT9-071Dracmon"></div>
  6107. <divclass="cardinfo_top_body">
  6108. <dl>
  6109. <dt>Form</dt>
  6110. <dd>Rookie</dd>
  6111. </dl>
  6112. <dl>
  6113. <dt>Attribute</dt>
  6114. <dd>Virus</dd>
  6115. </dl>
  6116. <dl>
  6117. <dt>Type</dt>
  6118. <dd>Undead</dd>
  6119. </dl>
  6120. <dl>
  6121. <dt>DP</dt>
  6122. <dd>1000</dl>
  6123. <dl>
  6124. <dt>PlayCost</dt>
  6125. <dd>3</dd>
  6126. </dl>
  6127. <dl>
  6128. <dt>DigivolveCost1</dt>
  6129. <dd>0</dd>
  6130. </dl>
  6131. <dl>
  6132. <dt>DigivolveCost2</dt>
  6133. <dd>-</dd>
  6134. </dl>
  6135. </div>
  6136. </div>
  6137. <divclass="cardinfo_bottom">
  6138. <dl>
  6139. <dt>Effect</dt>
  6140. <dd>[On Play] Reveal the top 3 cards of your deck. Trash 1 of them, and add 1 card with [Undead] or [Dark Animal] in its traits among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  6141. </dl>
  6142. <dl>
  6143. <dt>Digivolveeffect</dt>
  6144. <dd>[When Attacking] This Digimon may digivolve into a Digimon card with [Undead] or [Dark Animal] in its traits from your trash for its digivolution cost.</dd>
  6145. </dl>
  6146. <dl>
  6147. <dt>Securityeffect</dt>
  6148. <dd>-</dd>
  6149. </dl>
  6150. <dl>
  6151. <dt>Notes</dt>
  6152. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6153. </div>
  6154. </div>
  6155. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6156. </div>
  6157. </div>
  6158. </li>
  6159. <liclass="image_lists_itemdatapage-3">
  6160. <aclass="card_img">
  6161. <imgsrc="../images/cardlist/card/BT9-072.png"alt="BT9-072Salamon"></a>
  6162. <divclass="popup">
  6163. <divclass="card_detailcard_detail_purple">
  6164. <divclass="card_detail_inner">
  6165. <ulclass="cardinfo_head">
  6166. <liclass="cardno">BT9-072</li>
  6167. <li>C</li>
  6168. <liclass="cardtype">Digimon</li>
  6169. <liclass="cardlv">Lv.3</li>
  6170. </ul>
  6171. <divclass="card_name">Salamon</div>
  6172. <divclass="cardinfo_top">
  6173. <divclass="card_img">
  6174. <imgsrc="../images/cardlist/card/BT9-072.png"alt="BT9-072Salamon"></div>
  6175. <divclass="cardinfo_top_body">
  6176. <dl>
  6177. <dt>Form</dt>
  6178. <dd>Rookie</dd>
  6179. </dl>
  6180. <dl>
  6181. <dt>Attribute</dt>
  6182. <dd>Vaccine</dd>
  6183. </dl>
  6184. <dl>
  6185. <dt>Type</dt>
  6186. <dd>Mammal</dd>
  6187. </dl>
  6188. <dl>
  6189. <dt>DP</dt>
  6190. <dd>2000</dl>
  6191. <dl>
  6192. <dt>PlayCost</dt>
  6193. <dd>3</dd>
  6194. </dl>
  6195. <dl>
  6196. <dt>DigivolveCost1</dt>
  6197. <dd>0</dd>
  6198. </dl>
  6199. <dl>
  6200. <dt>DigivolveCost2</dt>
  6201. <dd>Yellow</dd>
  6202. </dl>
  6203. </div>
  6204. </div>
  6205. <divclass="cardinfo_bottom">
  6206. <dl>
  6207. <dt>Effect</dt>
  6208. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 2-color purple card among them to your hand. Place the rest at the bottom of your deck in any order.</dd>
  6209. </dl>
  6210. <dl>
  6211. <dt>Digivolveeffect</dt>
  6212. <dd>-</dd>
  6213. </dl>
  6214. <dl>
  6215. <dt>Securityeffect</dt>
  6216. <dd>-</dd>
  6217. </dl>
  6218. <dl>
  6219. <dt>Notes</dt>
  6220. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6221. </div>
  6222. </div>
  6223. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6224. </div>
  6225. </div>
  6226. </li>
  6227. <liclass="image_lists_itemdatapage-3">
  6228. <aclass="card_img">
  6229. <imgsrc="../images/cardlist/card/BT9-073.png"alt="BT9-073Sangloupmon"></a>
  6230. <divclass="popup">
  6231. <divclass="card_detailcard_detail_purple">
  6232. <divclass="card_detail_inner">
  6233. <ulclass="cardinfo_head">
  6234. <liclass="cardno">BT9-073</li>
  6235. <li>C</li>
  6236. <liclass="cardtype">Digimon</li>
  6237. <liclass="cardlv">Lv.4</li>
  6238. </ul>
  6239. <divclass="card_name">Sangloupmon</div>
  6240. <divclass="cardinfo_top">
  6241. <divclass="card_img">
  6242. <imgsrc="../images/cardlist/card/BT9-073.png"alt="BT9-073Sangloupmon"></div>
  6243. <divclass="cardinfo_top_body">
  6244. <dl>
  6245. <dt>Form</dt>
  6246. <dd>Champion</dd>
  6247. </dl>
  6248. <dl>
  6249. <dt>Attribute</dt>
  6250. <dd>Virus</dd>
  6251. </dl>
  6252. <dl>
  6253. <dt>Type</dt>
  6254. <dd>DarkAnimal</dd>
  6255. </dl>
  6256. <dl>
  6257. <dt>DP</dt>
  6258. <dd>5000</dl>
  6259. <dl>
  6260. <dt>PlayCost</dt>
  6261. <dd>5</dd>
  6262. </dl>
  6263. <dl>
  6264. <dt>DigivolveCost1</dt>
  6265. <dd>2</dd>
  6266. </dl>
  6267. <dl>
  6268. <dt>DigivolveCost2</dt>
  6269. <dd>-</dd>
  6270. </dl>
  6271. </div>
  6272. </div>
  6273. <divclass="cardinfo_bottom">
  6274. <dl>
  6275. <dt>Effect</dt>
  6276. <dd>-</dd>
  6277. </dl>
  6278. <dl>
  6279. <dt>Digivolveeffect</dt>
  6280. <dd>[When Attacking] This Digimon may digivolve into a Digimon card with [Undead] or [Dark Animal] in its traits from your trash for its digivolution cost.</dd>
  6281. </dl>
  6282. <dl>
  6283. <dt>Securityeffect</dt>
  6284. <dd>-</dd>
  6285. </dl>
  6286. <dl>
  6287. <dt>Notes</dt>
  6288. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6289. </div>
  6290. </div>
  6291. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6292. </div>
  6293. </div>
  6294. </li>
  6295. <liclass="image_lists_itemdatapage-3">
  6296. <aclass="card_img">
  6297. <imgsrc="../images/cardlist/card/BT9-074.png"alt="BT9-074Meicoomon"></a>
  6298. <divclass="popup">
  6299. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  6300. <divclass="card_detail_inner">
  6301. <ulclass="cardinfo_head">
  6302. <liclass="cardno">BT9-074</li>
  6303. <li>R</li>
  6304. <liclass="cardtype">Digimon</li>
  6305. <liclass="cardlv">Lv.4</li>
  6306. </ul>
  6307. <divclass="card_name">Meicoomon</div>
  6308. <divclass="cardinfo_top">
  6309. <divclass="card_img">
  6310. <imgsrc="../images/cardlist/card/BT9-074.png"alt="BT9-074Meicoomon"></div>
  6311. <divclass="cardinfo_top_body">
  6312. <dl>
  6313. <dt>Form</dt>
  6314. <dd>Champion</dd>
  6315. </dl>
  6316. <dl>
  6317. <dt>Attribute</dt>
  6318. <dd>Unknown</dd>
  6319. </dl>
  6320. <dl>
  6321. <dt>Type</dt>
  6322. <dd>Unknown</dd>
  6323. </dl>
  6324. <dl>
  6325. <dt>DP</dt>
  6326. <dd>4000</dl>
  6327. <dl>
  6328. <dt>PlayCost</dt>
  6329. <dd>5</dd>
  6330. </dl>
  6331. <dl>
  6332. <dt>DigivolveCost1</dt>
  6333. <dd>3</dd>
  6334. </dl>
  6335. <dl>
  6336. <dt>DigivolveCost2</dt>
  6337. <dd>Yellow</dd>
  6338. </dl>
  6339. </div>
  6340. </div>
  6341. <divclass="cardinfo_bottom">
  6342. <dl>
  6343. <dt>Effect</dt>
  6344. <dd>[Security] At the end of the battle, play this Digimon without paying its memory cost.</dd>
  6345. </dl>
  6346. <dl>
  6347. <dt>Digivolveeffect</dt>
  6348. <dd>[On Deletion] If this Digimon has 2 or more colors, gain 2 memory.</dd>
  6349. </dl>
  6350. <dl>
  6351. <dt>Securityeffect</dt>
  6352. <dd>-</dd>
  6353. </dl>
  6354. <dl>
  6355. <dt>Notes</dt>
  6356. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6357. </div>
  6358. </div>
  6359. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6360. </div>
  6361. </div>
  6362. </li>
  6363. <liclass="image_lists_itemdatapage-3">
  6364. <aclass="card_img">
  6365. <imgsrc="../images/cardlist/card/BT9-074_P1.png"alt="BT9-074Meicoomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  6366. </a>
  6367. <divclass="popup">
  6368. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  6369. <divclass="card_detail_inner">
  6370. <ulclass="cardinfo_head">
  6371. <liclass="cardno">BT9-074</li>
  6372. <li>R</li>
  6373. <liclass="cardtype">Digimon</li>
  6374. <liclass="cardlv">Lv.4</li>
  6375. <liclass="cardtypecardParallel">AlternativeArt</li>
  6376. </ul>
  6377. <divclass="card_name">Meicoomon</div>
  6378. <divclass="cardinfo_top">
  6379. <divclass="card_img">
  6380. <imgsrc="../images/cardlist/card/BT9-074_P1.png"alt="BT9-074Meicoomon"></div>
  6381. <divclass="cardinfo_top_body">
  6382. <dl>
  6383. <dt>Form</dt>
  6384. <dd>Champion</dd>
  6385. </dl>
  6386. <dl>
  6387. <dt>Attribute</dt>
  6388. <dd>Unknown</dd>
  6389. </dl>
  6390. <dl>
  6391. <dt>Type</dt>
  6392. <dd>Unknown</dd>
  6393. </dl>
  6394. <dl>
  6395. <dt>DP</dt>
  6396. <dd>4000</dl>
  6397. <dl>
  6398. <dt>PlayCost</dt>
  6399. <dd>5</dd>
  6400. </dl>
  6401. <dl>
  6402. <dt>DigivolveCost1</dt>
  6403. <dd>3</dd>
  6404. </dl>
  6405. <dl>
  6406. <dt>DigivolveCost2</dt>
  6407. <dd>Yellow</dd>
  6408. </dl>
  6409. </div>
  6410. </div>
  6411. <divclass="cardinfo_bottom">
  6412. <dl>
  6413. <dt>Effect</dt>
  6414. <dd>[Security] At the end of the battle, play this Digimon without paying its memory cost.</dd>
  6415. </dl>
  6416. <dl>
  6417. <dt>Digivolveeffect</dt>
  6418. <dd>[On Deletion] If this Digimon has 2 or more colors, gain 2 memory.</dd>
  6419. </dl>
  6420. <dl>
  6421. <dt>Securityeffect</dt>
  6422. <dd>-</dd>
  6423. </dl>
  6424. <dl>
  6425. <dt>Notes</dt>
  6426. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6427. </div>
  6428. </div>
  6429. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6430. </div>
  6431. </div>
  6432. </li>
  6433. <liclass="image_lists_itemdatapage-3">
  6434. <aclass="card_img">
  6435. <imgsrc="../images/cardlist/card/BT9-075.png"alt="BT9-075DexDorugamon"></a>
  6436. <divclass="popup">
  6437. <divclass="card_detailcard_detail_purple_blackmulticolor">
  6438. <divclass="card_detail_inner">
  6439. <ulclass="cardinfo_head">
  6440. <liclass="cardno">BT9-075</li>
  6441. <li>U</li>
  6442. <liclass="cardtype">Digimon</li>
  6443. <liclass="cardlv">Lv.4</li>
  6444. </ul>
  6445. <divclass="card_name">DexDorugamon</div>
  6446. <divclass="cardinfo_top">
  6447. <divclass="card_img">
  6448. <imgsrc="../images/cardlist/card/BT9-075.png"alt="BT9-075DexDorugamon"></div>
  6449. <divclass="cardinfo_top_body">
  6450. <dl>
  6451. <dt>Form</dt>
  6452. <dd>Champion</dd>
  6453. </dl>
  6454. <dl>
  6455. <dt>Attribute</dt>
  6456. <dd>Virus</dd>
  6457. </dl>
  6458. <dl>
  6459. <dt>Type</dt>
  6460. <dd>Undead/XAntibody</dd>
  6461. </dl>
  6462. <dl>
  6463. <dt>DP</dt>
  6464. <dd>6000</dl>
  6465. <dl>
  6466. <dt>PlayCost</dt>
  6467. <dd>6</dd>
  6468. </dl>
  6469. <dl>
  6470. <dt>DigivolveCost1</dt>
  6471. <dd>3</dd>
  6472. </dl>
  6473. <dl>
  6474. <dt>DigivolveCost2</dt>
  6475. <dd>Black</dd>
  6476. </dl>
  6477. </div>
  6478. </div>
  6479. <divclass="cardinfo_bottom">
  6480. <dl>
  6481. <dt>Effect</dt>
  6482. <dd>Digivolve: 0 from [Dorugamon][When Digivolving] You may trash 1 card with [Dex] or [DeathX] in its name or [X Antibody] in its traits in your hand to gain 1 memory. [When Digivolving] If this Digimon has [Dorugamon] in its digivolution cards or is digivolving from the trash, 1 of your Digimon gains <Blocker> and <Retaliation> until the end of your opponent’s turn.</dd>
  6483. </dl>
  6484. <dl>
  6485. <dt>Digivolveeffect</dt>
  6486. <dd>-</dd>
  6487. </dl>
  6488. <dl>
  6489. <dt>Securityeffect</dt>
  6490. <dd>-</dd>
  6491. </dl>
  6492. <dl>
  6493. <dt>Notes</dt>
  6494. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6495. </div>
  6496. </div>
  6497. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6498. </div>
  6499. </div>
  6500. </li>
  6501. <liclass="image_lists_itemdatapage-3">
  6502. <aclass="card_img">
  6503. <imgsrc="../images/cardlist/card/BT9-076.png"alt="BT9-076Maycrackmon:ViciousMode"></a>
  6504. <divclass="popup">
  6505. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  6506. <divclass="card_detail_inner">
  6507. <ulclass="cardinfo_head">
  6508. <liclass="cardno">BT9-076</li>
  6509. <li>C</li>
  6510. <liclass="cardtype">Digimon</li>
  6511. <liclass="cardlv">Lv.5</li>
  6512. </ul>
  6513. <divclass="card_name">Maycrackmon:ViciousMode</div>
  6514. <divclass="cardinfo_top">
  6515. <divclass="card_img">
  6516. <imgsrc="../images/cardlist/card/BT9-076.png"alt="BT9-076Maycrackmon:ViciousMode"></div>
  6517. <divclass="cardinfo_top_body">
  6518. <dl>
  6519. <dt>Form</dt>
  6520. <dd>Ultimate</dd>
  6521. </dl>
  6522. <dl>
  6523. <dt>Attribute</dt>
  6524. <dd>Unknown</dd>
  6525. </dl>
  6526. <dl>
  6527. <dt>Type</dt>
  6528. <dd>Unknown</dd>
  6529. </dl>
  6530. <dl>
  6531. <dt>DP</dt>
  6532. <dd>6000</dl>
  6533. <dl>
  6534. <dt>PlayCost</dt>
  6535. <dd>6</dd>
  6536. </dl>
  6537. <dl>
  6538. <dt>DigivolveCost1</dt>
  6539. <dd>4</dd>
  6540. </dl>
  6541. <dl>
  6542. <dt>DigivolveCost2</dt>
  6543. <dd>Yellow</dd>
  6544. </dl>
  6545. </div>
  6546. </div>
  6547. <divclass="cardinfo_bottom">
  6548. <dl>
  6549. <dt>Effect</dt>
  6550. <dd>[On Play][When Digivolving] You may trash 1 card in your hand. If you trash a purple card, delete 1 of your opponent’s level 3 Digimon. If you trash a yellow card, 1 of your opponent’s Digimon gets -3000 DP for the turn.</dd>
  6551. </dl>
  6552. <dl>
  6553. <dt>Digivolveeffect</dt>
  6554. <dd>[On Deletion] If this Digimon has 2 or more colors, gain 2 memory.</dd>
  6555. </dl>
  6556. <dl>
  6557. <dt>Securityeffect</dt>
  6558. <dd>-</dd>
  6559. </dl>
  6560. <dl>
  6561. <dt>Notes</dt>
  6562. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6563. </div>
  6564. </div>
  6565. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6566. </div>
  6567. </div>
  6568. </li>
  6569. <liclass="image_lists_itemdatapage-3">
  6570. <aclass="card_img">
  6571. <imgsrc="../images/cardlist/card/BT9-077.png"alt="BT9-077Matadormon"></a>
  6572. <divclass="popup">
  6573. <divclass="card_detailcard_detail_purple">
  6574. <divclass="card_detail_inner">
  6575. <ulclass="cardinfo_head">
  6576. <liclass="cardno">BT9-077</li>
  6577. <li>C</li>
  6578. <liclass="cardtype">Digimon</li>
  6579. <liclass="cardlv">Lv.5</li>
  6580. </ul>
  6581. <divclass="card_name">Matadormon</div>
  6582. <divclass="cardinfo_top">
  6583. <divclass="card_img">
  6584. <imgsrc="../images/cardlist/card/BT9-077.png"alt="BT9-077Matadormon"></div>
  6585. <divclass="cardinfo_top_body">
  6586. <dl>
  6587. <dt>Form</dt>
  6588. <dd>Ultimate</dd>
  6589. </dl>
  6590. <dl>
  6591. <dt>Attribute</dt>
  6592. <dd>Virus</dd>
  6593. </dl>
  6594. <dl>
  6595. <dt>Type</dt>
  6596. <dd>Undead</dd>
  6597. </dl>
  6598. <dl>
  6599. <dt>DP</dt>
  6600. <dd>7000</dl>
  6601. <dl>
  6602. <dt>PlayCost</dt>
  6603. <dd>7</dd>
  6604. </dl>
  6605. <dl>
  6606. <dt>DigivolveCost1</dt>
  6607. <dd>3</dd>
  6608. </dl>
  6609. <dl>
  6610. <dt>DigivolveCost2</dt>
  6611. <dd>-</dd>
  6612. </dl>
  6613. </div>
  6614. </div>
  6615. <divclass="cardinfo_bottom">
  6616. <dl>
  6617. <dt>Effect</dt>
  6618. <dd>[When Attacking] You may trash 1 card with [Undead] or [Dark Animal] in its traits in your hand to have this Digimon get +3000 DP for the turn. [Your Turn] When this Digimon would digivolve into a Digimon card from the trash, reduce the digivolution cost by 1.</dd>
  6619. </dl>
  6620. <dl>
  6621. <dt>Digivolveeffect</dt>
  6622. <dd>-</dd>
  6623. </dl>
  6624. <dl>
  6625. <dt>Securityeffect</dt>
  6626. <dd>-</dd>
  6627. </dl>
  6628. <dl>
  6629. <dt>Notes</dt>
  6630. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6631. </div>
  6632. </div>
  6633. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6634. </div>
  6635. </div>
  6636. </li>
  6637. <liclass="image_lists_itemdatapage-3">
  6638. <aclass="card_img">
  6639. <imgsrc="../images/cardlist/card/BT9-078.png"alt="BT9-078DexDoruGreymon"></a>
  6640. <divclass="popup">
  6641. <divclass="card_detailcard_detail_purple_blackmulticolor">
  6642. <divclass="card_detail_inner">
  6643. <ulclass="cardinfo_head">
  6644. <liclass="cardno">BT9-078</li>
  6645. <li>U</li>
  6646. <liclass="cardtype">Digimon</li>
  6647. <liclass="cardlv">Lv.5</li>
  6648. </ul>
  6649. <divclass="card_name">DexDoruGreymon</div>
  6650. <divclass="cardinfo_top">
  6651. <divclass="card_img">
  6652. <imgsrc="../images/cardlist/card/BT9-078.png"alt="BT9-078DexDoruGreymon"></div>
  6653. <divclass="cardinfo_top_body">
  6654. <dl>
  6655. <dt>Form</dt>
  6656. <dd>Ultimate</dd>
  6657. </dl>
  6658. <dl>
  6659. <dt>Attribute</dt>
  6660. <dd>Virus</dd>
  6661. </dl>
  6662. <dl>
  6663. <dt>Type</dt>
  6664. <dd>Undead/XAntibody</dd>
  6665. </dl>
  6666. <dl>
  6667. <dt>DP</dt>
  6668. <dd>8000</dl>
  6669. <dl>
  6670. <dt>PlayCost</dt>
  6671. <dd>8</dd>
  6672. </dl>
  6673. <dl>
  6674. <dt>DigivolveCost1</dt>
  6675. <dd>4</dd>
  6676. </dl>
  6677. <dl>
  6678. <dt>DigivolveCost2</dt>
  6679. <dd>Black</dd>
  6680. </dl>
  6681. </div>
  6682. </div>
  6683. <divclass="cardinfo_bottom">
  6684. <dl>
  6685. <dt>Effect</dt>
  6686. <dd>Digivolve: 1 from [DoruGreymon][When Digivolving] You may trash 1 card with [Dex] or [DeathX] in its name or [X Antibody] in its traits in your hand to gain 1 memory. [When Digivolving] If this Digimon has [DoruGreymon] in its digivolution cards or is digivolving from the trash, delete 1 of your opponent’s level 4 or lower Digimon.</dd>
  6687. </dl>
  6688. <dl>
  6689. <dt>Digivolveeffect</dt>
  6690. <dd>-</dd>
  6691. </dl>
  6692. <dl>
  6693. <dt>Securityeffect</dt>
  6694. <dd>-</dd>
  6695. </dl>
  6696. <dl>
  6697. <dt>Notes</dt>
  6698. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6699. </div>
  6700. </div>
  6701. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6702. </div>
  6703. </div>
  6704. </li>
  6705. <liclass="image_lists_itemdatapage-3">
  6706. <aclass="card_img">
  6707. <imgsrc="../images/cardlist/card/BT9-079.png"alt="BT9-079GranDracmon"></a>
  6708. <divclass="popup">
  6709. <divclass="card_detailcard_detail_purple">
  6710. <divclass="card_detail_inner">
  6711. <ulclass="cardinfo_head">
  6712. <liclass="cardno">BT9-079</li>
  6713. <li>R</li>
  6714. <liclass="cardtype">Digimon</li>
  6715. <liclass="cardlv">Lv.6</li>
  6716. </ul>
  6717. <divclass="card_name">GranDracmon</div>
  6718. <divclass="cardinfo_top">
  6719. <divclass="card_img">
  6720. <imgsrc="../images/cardlist/card/BT9-079.png"alt="BT9-079GranDracmon"></div>
  6721. <divclass="cardinfo_top_body">
  6722. <dl>
  6723. <dt>Form</dt>
  6724. <dd>Mega</dd>
  6725. </dl>
  6726. <dl>
  6727. <dt>Attribute</dt>
  6728. <dd>Virus</dd>
  6729. </dl>
  6730. <dl>
  6731. <dt>Type</dt>
  6732. <dd>DarkAnimal</dd>
  6733. </dl>
  6734. <dl>
  6735. <dt>DP</dt>
  6736. <dd>12000</dl>
  6737. <dl>
  6738. <dt>PlayCost</dt>
  6739. <dd>12</dd>
  6740. </dl>
  6741. <dl>
  6742. <dt>DigivolveCost1</dt>
  6743. <dd>4</dd>
  6744. </dl>
  6745. <dl>
  6746. <dt>DigivolveCost2</dt>
  6747. <dd>-</dd>
  6748. </dl>
  6749. </div>
  6750. </div>
  6751. <divclass="cardinfo_bottom">
  6752. <dl>
  6753. <dt>Effect</dt>
  6754. <dd>[When Digivolving] You may play 1 purple level 3 Digimon card from your trash without paying its memory cost. [End of Attack][Once Per Turn] You may digivolve 1 of your other Digimon into a Digimon card with [Undead] or [Dark Animal] in its traits from your trash without paying its memory cost.</dd>
  6755. </dl>
  6756. <dl>
  6757. <dt>Digivolveeffect</dt>
  6758. <dd>-</dd>
  6759. </dl>
  6760. <dl>
  6761. <dt>Securityeffect</dt>
  6762. <dd>-</dd>
  6763. </dl>
  6764. <dl>
  6765. <dt>Notes</dt>
  6766. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6767. </div>
  6768. </div>
  6769. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6770. </div>
  6771. </div>
  6772. </li>
  6773. <liclass="image_lists_itemdatapage-3">
  6774. <aclass="card_img">
  6775. <imgsrc="../images/cardlist/card/BT9-080.png"alt="BT9-080Raguelmon"></a>
  6776. <divclass="popup">
  6777. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  6778. <divclass="card_detail_inner">
  6779. <ulclass="cardinfo_head">
  6780. <liclass="cardno">BT9-080</li>
  6781. <li>R</li>
  6782. <liclass="cardtype">Digimon</li>
  6783. <liclass="cardlv">Lv.6</li>
  6784. </ul>
  6785. <divclass="card_name">Raguelmon</div>
  6786. <divclass="cardinfo_top">
  6787. <divclass="card_img">
  6788. <imgsrc="../images/cardlist/card/BT9-080.png"alt="BT9-080Raguelmon"></div>
  6789. <divclass="cardinfo_top_body">
  6790. <dl>
  6791. <dt>Form</dt>
  6792. <dd>Mega</dd>
  6793. </dl>
  6794. <dl>
  6795. <dt>Attribute</dt>
  6796. <dd>Unknown</dd>
  6797. </dl>
  6798. <dl>
  6799. <dt>Type</dt>
  6800. <dd>Unknown</dd>
  6801. </dl>
  6802. <dl>
  6803. <dt>DP</dt>
  6804. <dd>12000</dl>
  6805. <dl>
  6806. <dt>PlayCost</dt>
  6807. <dd>12</dd>
  6808. </dl>
  6809. <dl>
  6810. <dt>DigivolveCost1</dt>
  6811. <dd>4</dd>
  6812. </dl>
  6813. <dl>
  6814. <dt>DigivolveCost2</dt>
  6815. <dd>Yellow</dd>
  6816. </dl>
  6817. </div>
  6818. </div>
  6819. <divclass="cardinfo_bottom">
  6820. <dl>
  6821. <dt>Effect</dt>
  6822. <dd>[On Play] Play 1 purple or yellow Digimon card with 6000 DP or less from your trash without paying its memory cost. If you have 1 or fewer security cards, you may play 1 level 6 or lower Digimon card with [Angel] or [Fallen Angel] in its traits from your trash without paying its memory cost instead. [End of Your Turn] You may DNA digivolve this Digimon and one of your other Digimon in play into a Digimon card in your hand for its DNA digivolve cost.</dd>
  6823. </dl>
  6824. <dl>
  6825. <dt>Digivolveeffect</dt>
  6826. <dd>-</dd>
  6827. </dl>
  6828. <dl>
  6829. <dt>Securityeffect</dt>
  6830. <dd>-</dd>
  6831. </dl>
  6832. <dl>
  6833. <dt>Notes</dt>
  6834. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6835. </div>
  6836. </div>
  6837. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6838. </div>
  6839. </div>
  6840. </li>
  6841. <liclass="image_lists_itemdatapage-3">
  6842. <aclass="card_img">
  6843. <imgsrc="../images/cardlist/card/BT9-080_P1.png"alt="BT9-080Raguelmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  6844. </a>
  6845. <divclass="popup">
  6846. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  6847. <divclass="card_detail_inner">
  6848. <ulclass="cardinfo_head">
  6849. <liclass="cardno">BT9-080</li>
  6850. <li>R</li>
  6851. <liclass="cardtype">Digimon</li>
  6852. <liclass="cardlv">Lv.6</li>
  6853. <liclass="cardtypecardParallel">AlternativeArt</li>
  6854. </ul>
  6855. <divclass="card_name">Raguelmon</div>
  6856. <divclass="cardinfo_top">
  6857. <divclass="card_img">
  6858. <imgsrc="../images/cardlist/card/BT9-080_P1.png"alt="BT9-080Raguelmon"></div>
  6859. <divclass="cardinfo_top_body">
  6860. <dl>
  6861. <dt>Form</dt>
  6862. <dd>Mega</dd>
  6863. </dl>
  6864. <dl>
  6865. <dt>Attribute</dt>
  6866. <dd>Unknown</dd>
  6867. </dl>
  6868. <dl>
  6869. <dt>Type</dt>
  6870. <dd>Unknown</dd>
  6871. </dl>
  6872. <dl>
  6873. <dt>DP</dt>
  6874. <dd>12000</dl>
  6875. <dl>
  6876. <dt>PlayCost</dt>
  6877. <dd>12</dd>
  6878. </dl>
  6879. <dl>
  6880. <dt>DigivolveCost1</dt>
  6881. <dd>4</dd>
  6882. </dl>
  6883. <dl>
  6884. <dt>DigivolveCost2</dt>
  6885. <dd>Yellow</dd>
  6886. </dl>
  6887. </div>
  6888. </div>
  6889. <divclass="cardinfo_bottom">
  6890. <dl>
  6891. <dt>Effect</dt>
  6892. <dd>[On Play] Play 1 purple or yellow Digimon card with 6000 DP or less from your trash without paying its memory cost. If you have 1 or fewer security cards, you may play 1 level 6 or lower Digimon card with [Angel] or [Fallen Angel] in its traits from your trash without paying its memory cost instead. [End of Your Turn] You may DNA digivolve this Digimon and one of your other Digimon in play into a Digimon card in your hand for its DNA digivolve cost.</dd>
  6893. </dl>
  6894. <dl>
  6895. <dt>Digivolveeffect</dt>
  6896. <dd>-</dd>
  6897. </dl>
  6898. <dl>
  6899. <dt>Securityeffect</dt>
  6900. <dd>-</dd>
  6901. </dl>
  6902. <dl>
  6903. <dt>Notes</dt>
  6904. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6905. </div>
  6906. </div>
  6907. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6908. </div>
  6909. </div>
  6910. </li>
  6911. <liclass="image_lists_itemdatapage-3">
  6912. <aclass="card_img">
  6913. <imgsrc="../images/cardlist/card/BT9-081.png"alt="BT9-081DexDorugoramon"></a>
  6914. <divclass="popup">
  6915. <divclass="card_detailcard_detail_purple_blackmulticolor">
  6916. <divclass="card_detail_inner">
  6917. <ulclass="cardinfo_head">
  6918. <liclass="cardno">BT9-081</li>
  6919. <li>SR</li>
  6920. <liclass="cardtype">Digimon</li>
  6921. <liclass="cardlv">Lv.6</li>
  6922. </ul>
  6923. <divclass="card_name">DexDorugoramon</div>
  6924. <divclass="cardinfo_top">
  6925. <divclass="card_img">
  6926. <imgsrc="../images/cardlist/card/BT9-081.png"alt="BT9-081DexDorugoramon"></div>
  6927. <divclass="cardinfo_top_body">
  6928. <dl>
  6929. <dt>Form</dt>
  6930. <dd>Mega</dd>
  6931. </dl>
  6932. <dl>
  6933. <dt>Attribute</dt>
  6934. <dd>Virus</dd>
  6935. </dl>
  6936. <dl>
  6937. <dt>Type</dt>
  6938. <dd>Undead/XAntibody</dd>
  6939. </dl>
  6940. <dl>
  6941. <dt>DP</dt>
  6942. <dd>13000</dl>
  6943. <dl>
  6944. <dt>PlayCost</dt>
  6945. <dd>13</dd>
  6946. </dl>
  6947. <dl>
  6948. <dt>DigivolveCost1</dt>
  6949. <dd>5</dd>
  6950. </dl>
  6951. <dl>
  6952. <dt>DigivolveCost2</dt>
  6953. <dd>Black</dd>
  6954. </dl>
  6955. </div>
  6956. </div>
  6957. <divclass="cardinfo_bottom">
  6958. <dl>
  6959. <dt>Effect</dt>
  6960. <dd>Digivolve: 2 from [Dorugoramon][When Digivolving] If this Digimon has [Dorugoramon] in its digivolution cards or is digivolving from the trash, delete all of your opponent’s Digimon with the lowest level. [On Deletion] You may play 1 purple or black level 3 Digimon card from your trash without paying its memory cost. If you have 5 or more cards with [Dex] or [DeathX] in their names in your trash, you may play 1 [DeathXmon] from your trash without paying its memory cost instead.</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>Digivolveeffect</dt>
  6964. <dd>-</dd>
  6965. </dl>
  6966. <dl>
  6967. <dt>Securityeffect</dt>
  6968. <dd>-</dd>
  6969. </dl>
  6970. <dl>
  6971. <dt>Notes</dt>
  6972. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  6973. </div>
  6974. </div>
  6975. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6976. </div>
  6977. </div>
  6978. </li>
  6979. <liclass="image_lists_itemdatapage-3">
  6980. <aclass="card_img">
  6981. <imgsrc="../images/cardlist/card/BT9-081_P1.png"alt="BT9-081DexDorugoramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  6982. </a>
  6983. <divclass="popup">
  6984. <divclass="card_detailcard_detail_purple_blackmulticolor">
  6985. <divclass="card_detail_inner">
  6986. <ulclass="cardinfo_head">
  6987. <liclass="cardno">BT9-081</li>
  6988. <li>SR</li>
  6989. <liclass="cardtype">Digimon</li>
  6990. <liclass="cardlv">Lv.6</li>
  6991. <liclass="cardtypecardParallel">AlternativeArt</li>
  6992. </ul>
  6993. <divclass="card_name">DexDorugoramon</div>
  6994. <divclass="cardinfo_top">
  6995. <divclass="card_img">
  6996. <imgsrc="../images/cardlist/card/BT9-081_P1.png"alt="BT9-081DexDorugoramon"></div>
  6997. <divclass="cardinfo_top_body">
  6998. <dl>
  6999. <dt>Form</dt>
  7000. <dd>Mega</dd>
  7001. </dl>
  7002. <dl>
  7003. <dt>Attribute</dt>
  7004. <dd>Virus</dd>
  7005. </dl>
  7006. <dl>
  7007. <dt>Type</dt>
  7008. <dd>Undead/XAntibody</dd>
  7009. </dl>
  7010. <dl>
  7011. <dt>DP</dt>
  7012. <dd>13000</dl>
  7013. <dl>
  7014. <dt>PlayCost</dt>
  7015. <dd>13</dd>
  7016. </dl>
  7017. <dl>
  7018. <dt>DigivolveCost1</dt>
  7019. <dd>5</dd>
  7020. </dl>
  7021. <dl>
  7022. <dt>DigivolveCost2</dt>
  7023. <dd>Black</dd>
  7024. </dl>
  7025. </div>
  7026. </div>
  7027. <divclass="cardinfo_bottom">
  7028. <dl>
  7029. <dt>Effect</dt>
  7030. <dd>Digivolve: 2 from [Dorugoramon][When Digivolving] If this Digimon has [Dorugoramon] in its digivolution cards or is digivolving from the trash, delete all of your opponent’s Digimon with the lowest level. [On Deletion] You may play 1 purple or black level 3 Digimon card from your trash without paying its memory cost. If you have 5 or more cards with [Dex] or [DeathX] in their names in your trash, you may play 1 [DeathXmon] from your trash without paying its memory cost instead.</dd>
  7031. </dl>
  7032. <dl>
  7033. <dt>Digivolveeffect</dt>
  7034. <dd>-</dd>
  7035. </dl>
  7036. <dl>
  7037. <dt>Securityeffect</dt>
  7038. <dd>-</dd>
  7039. </dl>
  7040. <dl>
  7041. <dt>Notes</dt>
  7042. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7043. </div>
  7044. </div>
  7045. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7046. </div>
  7047. </div>
  7048. </li>
  7049. <liclass="image_lists_itemdatapage-3">
  7050. <aclass="card_img">
  7051. <imgsrc="../images/cardlist/card/BT9-082.png"alt="BT9-082Ordinemon"></a>
  7052. <divclass="popup">
  7053. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  7054. <divclass="card_detail_inner">
  7055. <ulclass="cardinfo_head">
  7056. <liclass="cardno">BT9-082</li>
  7057. <li>SR</li>
  7058. <liclass="cardtype">Digimon</li>
  7059. <liclass="cardlv">Lv.7</li>
  7060. </ul>
  7061. <divclass="card_name">Ordinemon</div>
  7062. <divclass="cardinfo_top">
  7063. <divclass="card_img">
  7064. <imgsrc="../images/cardlist/card/BT9-082.png"alt="BT9-082Ordinemon"></div>
  7065. <divclass="cardinfo_top_body">
  7066. <dl>
  7067. <dt>Form</dt>
  7068. <dd>Mega</dd>
  7069. </dl>
  7070. <dl>
  7071. <dt>Attribute</dt>
  7072. <dd>Virus</dd>
  7073. </dl>
  7074. <dl>
  7075. <dt>Type</dt>
  7076. <dd>FallenAngel</dd>
  7077. </dl>
  7078. <dl>
  7079. <dt>DP</dt>
  7080. <dd>15000</dl>
  7081. <dl>
  7082. <dt>PlayCost</dt>
  7083. <dd>15</dd>
  7084. </dl>
  7085. <dl>
  7086. <dt>DigivolveCost1</dt>
  7087. <dd>6</dd>
  7088. </dl>
  7089. <dl>
  7090. <dt>DigivolveCost2</dt>
  7091. <dd>Yellow</dd>
  7092. </dl>
  7093. </div>
  7094. </div>
  7095. <divclass="cardinfo_bottom">
  7096. <dl>
  7097. <dt>Effect</dt>
  7098. <dd>DNA Digivolution: 0 from purple Lv.6 + yellow Lv.6 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.[When Digivolving] When DNA digivolving, delete 1 of your opponent's level 6 or higher Digimon and all of their level 5 or lower Digimon. For each Digimon deleted by this effect, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) [On Deletion] You may trash the top card of your security stack to play this card without paying its memory cost.</dd>
  7099. </dl>
  7100. <dl>
  7101. <dt>Digivolveeffect</dt>
  7102. <dd>-</dd>
  7103. </dl>
  7104. <dl>
  7105. <dt>Securityeffect</dt>
  7106. <dd>-</dd>
  7107. </dl>
  7108. <dl>
  7109. <dt>Notes</dt>
  7110. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7111. </div>
  7112. </div>
  7113. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7114. </div>
  7115. </div>
  7116. </li>
  7117. <liclass="image_lists_itemdatapage-3">
  7118. <aclass="card_img">
  7119. <imgsrc="../images/cardlist/card/BT9-082_P1.png"alt="BT9-082Ordinemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7120. </a>
  7121. <divclass="popup">
  7122. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  7123. <divclass="card_detail_inner">
  7124. <ulclass="cardinfo_head">
  7125. <liclass="cardno">BT9-082</li>
  7126. <li>SR</li>
  7127. <liclass="cardtype">Digimon</li>
  7128. <liclass="cardlv">Lv.7</li>
  7129. <liclass="cardtypecardParallel">AlternativeArt</li>
  7130. </ul>
  7131. <divclass="card_name">Ordinemon</div>
  7132. <divclass="cardinfo_top">
  7133. <divclass="card_img">
  7134. <imgsrc="../images/cardlist/card/BT9-082_P1.png"alt="BT9-082Ordinemon"></div>
  7135. <divclass="cardinfo_top_body">
  7136. <dl>
  7137. <dt>Form</dt>
  7138. <dd>Mega</dd>
  7139. </dl>
  7140. <dl>
  7141. <dt>Attribute</dt>
  7142. <dd>Virus</dd>
  7143. </dl>
  7144. <dl>
  7145. <dt>Type</dt>
  7146. <dd>FallenAngel</dd>
  7147. </dl>
  7148. <dl>
  7149. <dt>DP</dt>
  7150. <dd>15000</dl>
  7151. <dl>
  7152. <dt>PlayCost</dt>
  7153. <dd>15</dd>
  7154. </dl>
  7155. <dl>
  7156. <dt>DigivolveCost1</dt>
  7157. <dd>6</dd>
  7158. </dl>
  7159. <dl>
  7160. <dt>DigivolveCost2</dt>
  7161. <dd>Yellow</dd>
  7162. </dl>
  7163. </div>
  7164. </div>
  7165. <divclass="cardinfo_bottom">
  7166. <dl>
  7167. <dt>Effect</dt>
  7168. <dd>DNA Digivolution: 0 from purple Lv.6 + yellow Lv.6 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.[When Digivolving] When DNA digivolving, delete 1 of your opponent's level 6 or higher Digimon and all of their level 5 or lower Digimon. For each Digimon deleted by this effect, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) [On Deletion] You may trash the top card of your security stack to play this card without paying its memory cost.</dd>
  7169. </dl>
  7170. <dl>
  7171. <dt>Digivolveeffect</dt>
  7172. <dd>-</dd>
  7173. </dl>
  7174. <dl>
  7175. <dt>Securityeffect</dt>
  7176. <dd>-</dd>
  7177. </dl>
  7178. <dl>
  7179. <dt>Notes</dt>
  7180. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7181. </div>
  7182. </div>
  7183. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7184. </div>
  7185. </div>
  7186. </li>
  7187. <liclass="image_lists_itemdatapage-3">
  7188. <aclass="card_img">
  7189. <imgsrc="../images/cardlist/card/BT9-083.png"alt="BT9-083Omnimon:MercifulMode"></a>
  7190. <divclass="popup">
  7191. <divclass="card_detailcard_detail_white">
  7192. <divclass="card_detail_inner">
  7193. <ulclass="cardinfo_head">
  7194. <liclass="cardno">BT9-083</li>
  7195. <li>SR</li>
  7196. <liclass="cardtype">Digimon</li>
  7197. <liclass="cardlv">Lv.7</li>
  7198. </ul>
  7199. <divclass="card_name">Omnimon:MercifulMode</div>
  7200. <divclass="cardinfo_top">
  7201. <divclass="card_img">
  7202. <imgsrc="../images/cardlist/card/BT9-083.png"alt="BT9-083Omnimon:MercifulMode"></div>
  7203. <divclass="cardinfo_top_body">
  7204. <dl>
  7205. <dt>Form</dt>
  7206. <dd>Mega</dd>
  7207. </dl>
  7208. <dl>
  7209. <dt>Attribute</dt>
  7210. <dd>Vaccine</dd>
  7211. </dl>
  7212. <dl>
  7213. <dt>Type</dt>
  7214. <dd>HolyWarrior</dd>
  7215. </dl>
  7216. <dl>
  7217. <dt>DP</dt>
  7218. <dd>15000</dl>
  7219. <dl>
  7220. <dt>PlayCost</dt>
  7221. <dd>15</dd>
  7222. </dl>
  7223. <dl>
  7224. <dt>DigivolveCost1</dt>
  7225. <dd>6</dd>
  7226. </dl>
  7227. <dl>
  7228. <dt>DigivolveCost2</dt>
  7229. <dd>Blue</dd>
  7230. </dl>
  7231. </div>
  7232. </div>
  7233. <divclass="cardinfo_bottom">
  7234. <dl>
  7235. <dt>Effect</dt>
  7236. <dd>Digivolve: 3 if name contains [Omnimon][When Digivolving] For each card with [Mega] in their traits in this Digimon’s digivolution cards, delete 1 of your opponent’s Digimon. Then, place 10 cards from your opponent’s trash at the bottom of their deck in any order. [Start of Your Turn] Trash the top card of this Digimon. If you do, trash the top card of your opponent’s security stack.</dd>
  7237. </dl>
  7238. <dl>
  7239. <dt>Digivolveeffect</dt>
  7240. <dd>-</dd>
  7241. </dl>
  7242. <dl>
  7243. <dt>Securityeffect</dt>
  7244. <dd>-</dd>
  7245. </dl>
  7246. <dl>
  7247. <dt>Notes</dt>
  7248. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7249. </div>
  7250. </div>
  7251. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7252. </div>
  7253. </div>
  7254. </li>
  7255. <liclass="image_lists_itemdatapage-3">
  7256. <aclass="card_img">
  7257. <imgsrc="../images/cardlist/card/BT9-083_P1.png"alt="BT9-083Omnimon:MercifulMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  7258. </a>
  7259. <divclass="popup">
  7260. <divclass="card_detailcard_detail_white">
  7261. <divclass="card_detail_inner">
  7262. <ulclass="cardinfo_head">
  7263. <liclass="cardno">BT9-083</li>
  7264. <li>SR</li>
  7265. <liclass="cardtype">Digimon</li>
  7266. <liclass="cardlv">Lv.7</li>
  7267. <liclass="cardtypecardParallel">AlternativeArt</li>
  7268. </ul>
  7269. <divclass="card_name">Omnimon:MercifulMode</div>
  7270. <divclass="cardinfo_top">
  7271. <divclass="card_img">
  7272. <imgsrc="../images/cardlist/card/BT9-083_P1.png"alt="BT9-083Omnimon:MercifulMode"></div>
  7273. <divclass="cardinfo_top_body">
  7274. <dl>
  7275. <dt>Form</dt>
  7276. <dd>Mega</dd>
  7277. </dl>
  7278. <dl>
  7279. <dt>Attribute</dt>
  7280. <dd>Vaccine</dd>
  7281. </dl>
  7282. <dl>
  7283. <dt>Type</dt>
  7284. <dd>HolyWarrior</dd>
  7285. </dl>
  7286. <dl>
  7287. <dt>DP</dt>
  7288. <dd>15000</dl>
  7289. <dl>
  7290. <dt>PlayCost</dt>
  7291. <dd>15</dd>
  7292. </dl>
  7293. <dl>
  7294. <dt>DigivolveCost1</dt>
  7295. <dd>6</dd>
  7296. </dl>
  7297. <dl>
  7298. <dt>DigivolveCost2</dt>
  7299. <dd>Blue</dd>
  7300. </dl>
  7301. </div>
  7302. </div>
  7303. <divclass="cardinfo_bottom">
  7304. <dl>
  7305. <dt>Effect</dt>
  7306. <dd>Digivolve: 3 if name contains [Omnimon][When Digivolving] For each card with [Mega] in their traits in this Digimon’s digivolution cards, delete 1 of your opponent’s Digimon. Then, place 10 cards from your opponent’s trash at the bottom of their deck in any order. [Start of Your Turn] Trash the top card of this Digimon. If you do, trash the top card of your opponent’s security stack.</dd>
  7307. </dl>
  7308. <dl>
  7309. <dt>Digivolveeffect</dt>
  7310. <dd>-</dd>
  7311. </dl>
  7312. <dl>
  7313. <dt>Securityeffect</dt>
  7314. <dd>-</dd>
  7315. </dl>
  7316. <dl>
  7317. <dt>Notes</dt>
  7318. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7319. </div>
  7320. </div>
  7321. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7322. </div>
  7323. </div>
  7324. </li>
  7325. <liclass="image_lists_itemdatapage-3">
  7326. <aclass="card_img">
  7327. <imgsrc="../images/cardlist/card/BT9-111.png"alt="BT9-111Alphamon:Ouryuken"></a>
  7328. <divclass="popup">
  7329. <divclass="card_detailcard_detail_black">
  7330. <divclass="card_detail_inner">
  7331. <ulclass="cardinfo_head">
  7332. <liclass="cardno">BT9-111</li>
  7333. <li>SEC</li>
  7334. <liclass="cardtype">Digimon</li>
  7335. <liclass="cardlv">Lv.7</li>
  7336. </ul>
  7337. <divclass="card_name">Alphamon:Ouryuken</div>
  7338. <divclass="cardinfo_top">
  7339. <divclass="card_img">
  7340. <imgsrc="../images/cardlist/card/BT9-111.png"alt="BT9-111Alphamon:Ouryuken"></div>
  7341. <divclass="cardinfo_top_body">
  7342. <dl>
  7343. <dt>Form</dt>
  7344. <dd>Mega</dd>
  7345. </dl>
  7346. <dl>
  7347. <dt>Attribute</dt>
  7348. <dd>Vaccine</dd>
  7349. </dl>
  7350. <dl>
  7351. <dt>Type</dt>
  7352. <dd>NODATA/RoyalKnight/XAntibody</dd>
  7353. </dl>
  7354. <dl>
  7355. <dt>DP</dt>
  7356. <dd>16000</dl>
  7357. <dl>
  7358. <dt>PlayCost</dt>
  7359. <dd>15</dd>
  7360. </dl>
  7361. <dl>
  7362. <dt>DigivolveCost1</dt>
  7363. <dd>7</dd>
  7364. </dl>
  7365. <dl>
  7366. <dt>DigivolveCost2</dt>
  7367. <dd>-</dd>
  7368. </dl>
  7369. </div>
  7370. </div>
  7371. <divclass="cardinfo_bottom">
  7372. <dl>
  7373. <dt>Effect</dt>
  7374. <dd>Digivolve: 3 from [Alphamon] w/ [Ouryumon] digivolution card[When Digivolving] Delete all of your opponent's Digimon with the highest play cost.[End of Your Turn][Once Per Turn] You may return up to 7 non-Digi-Egg cards with [X Antibody] in their traits from this Digimon's digivolution cards to the bottom of your deck in any order; if you do, gain 1 memory for each card returned.</dd>
  7375. </dl>
  7376. <dl>
  7377. <dt>Digivolveeffect</dt>
  7378. <dd>-</dd>
  7379. </dl>
  7380. <dl>
  7381. <dt>Securityeffect</dt>
  7382. <dd>-</dd>
  7383. </dl>
  7384. <dl>
  7385. <dt>Notes</dt>
  7386. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7387. </div>
  7388. </div>
  7389. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7390. </div>
  7391. </div>
  7392. </li>
  7393. <liclass="image_lists_itemdatapage-3">
  7394. <aclass="card_img">
  7395. <imgsrc="../images/cardlist/card/BT9-111_P1.png"alt="BT9-111Alphamon:Ouryuken"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7396. </a>
  7397. <divclass="popup">
  7398. <divclass="card_detailcard_detail_black">
  7399. <divclass="card_detail_inner">
  7400. <ulclass="cardinfo_head">
  7401. <liclass="cardno">BT9-111</li>
  7402. <li>SEC</li>
  7403. <liclass="cardtype">Digimon</li>
  7404. <liclass="cardlv">Lv.7</li>
  7405. <liclass="cardtypecardParallel">AlternativeArt</li>
  7406. </ul>
  7407. <divclass="card_name">Alphamon:Ouryuken</div>
  7408. <divclass="cardinfo_top">
  7409. <divclass="card_img">
  7410. <imgsrc="../images/cardlist/card/BT9-111_P1.png"alt="BT9-111Alphamon:Ouryuken"></div>
  7411. <divclass="cardinfo_top_body">
  7412. <dl>
  7413. <dt>Form</dt>
  7414. <dd>Mega</dd>
  7415. </dl>
  7416. <dl>
  7417. <dt>Attribute</dt>
  7418. <dd>Vaccine</dd>
  7419. </dl>
  7420. <dl>
  7421. <dt>Type</dt>
  7422. <dd>NODATA/RoyalKnight/XAntibody</dd>
  7423. </dl>
  7424. <dl>
  7425. <dt>DP</dt>
  7426. <dd>16000</dl>
  7427. <dl>
  7428. <dt>PlayCost</dt>
  7429. <dd>15</dd>
  7430. </dl>
  7431. <dl>
  7432. <dt>DigivolveCost1</dt>
  7433. <dd>7</dd>
  7434. </dl>
  7435. <dl>
  7436. <dt>DigivolveCost2</dt>
  7437. <dd>-</dd>
  7438. </dl>
  7439. </div>
  7440. </div>
  7441. <divclass="cardinfo_bottom">
  7442. <dl>
  7443. <dt>Effect</dt>
  7444. <dd>Digivolve: 3 from [Alphamon] w/ [Ouryumon] digivolution card[When Digivolving] Delete all of your opponent's Digimon with the highest play cost. [End of Your Turn][Once Per Turn] You may return up to 7 non-Digi-Egg cards with [X Antibody] in their traits from this Digimon's digivolution cards to the bottom of your deck in any order; if you do, gain 1 memory for each card returned.</dd>
  7445. </dl>
  7446. <dl>
  7447. <dt>Digivolveeffect</dt>
  7448. <dd>-</dd>
  7449. </dl>
  7450. <dl>
  7451. <dt>Securityeffect</dt>
  7452. <dd>-</dd>
  7453. </dl>
  7454. <dl>
  7455. <dt>Notes</dt>
  7456. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7457. </div>
  7458. </div>
  7459. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7460. </div>
  7461. </div>
  7462. </li>
  7463. <liclass="image_lists_itemdatapage-3">
  7464. <aclass="card_img">
  7465. <imgsrc="../images/cardlist/card/BT9-112.png"alt="BT9-112DeathXmon"></a>
  7466. <divclass="popup">
  7467. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7468. <divclass="card_detail_inner">
  7469. <ulclass="cardinfo_head">
  7470. <liclass="cardno">BT9-112</li>
  7471. <li>SEC</li>
  7472. <liclass="cardtype">Digimon</li>
  7473. <liclass="cardlv">Lv.7</li>
  7474. </ul>
  7475. <divclass="card_name">DeathXmon</div>
  7476. <divclass="cardinfo_top">
  7477. <divclass="card_img">
  7478. <imgsrc="../images/cardlist/card/BT9-112.png"alt="BT9-112DeathXmon"></div>
  7479. <divclass="cardinfo_top_body">
  7480. <dl>
  7481. <dt>Form</dt>
  7482. <dd>Mega</dd>
  7483. </dl>
  7484. <dl>
  7485. <dt>Attribute</dt>
  7486. <dd>Virus</dd>
  7487. </dl>
  7488. <dl>
  7489. <dt>Type</dt>
  7490. <dd>Unanalyzable/XProgram</dd>
  7491. </dl>
  7492. <dl>
  7493. <dt>DP</dt>
  7494. <dd>15000</dl>
  7495. <dl>
  7496. <dt>PlayCost</dt>
  7497. <dd>20</dd>
  7498. </dl>
  7499. <dl>
  7500. <dt>DigivolveCost1</dt>
  7501. <dd>6</dd>
  7502. </dl>
  7503. <dl>
  7504. <dt>DigivolveCost2</dt>
  7505. <dd>Black</dd>
  7506. </dl>
  7507. </div>
  7508. </div>
  7509. <divclass="cardinfo_bottom">
  7510. <dl>
  7511. <dt>Effect</dt>
  7512. <dd>When you would play this card, reduce its memory cost by 3 for each Digimon and Tamer your opponent has in play. [On Play][When Digivolving] <De-Digivolve 1> all of your opponent’s Digimon. Then, delete all of your opponent’s level 4 or lower Digimon. [End of Opponent’s Turn][Once Per Turn] Delete all of your opponent's Digimon with the lowest play cost.</dd>
  7513. </dl>
  7514. <dl>
  7515. <dt>Digivolveeffect</dt>
  7516. <dd>-</dd>
  7517. </dl>
  7518. <dl>
  7519. <dt>Securityeffect</dt>
  7520. <dd>-</dd>
  7521. </dl>
  7522. <dl>
  7523. <dt>Notes</dt>
  7524. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7525. </div>
  7526. </div>
  7527. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7528. </div>
  7529. </div>
  7530. </li>
  7531. <liclass="image_lists_itemdatapage-3">
  7532. <aclass="card_img">
  7533. <imgsrc="../images/cardlist/card/BT9-112_P1.png"alt="BT9-112DeathXmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7534. </a>
  7535. <divclass="popup">
  7536. <divclass="card_detailcard_detail_purple_blackmulticolor">
  7537. <divclass="card_detail_inner">
  7538. <ulclass="cardinfo_head">
  7539. <liclass="cardno">BT9-112</li>
  7540. <li>SEC</li>
  7541. <liclass="cardtype">Digimon</li>
  7542. <liclass="cardlv">Lv.7</li>
  7543. <liclass="cardtypecardParallel">AlternativeArt</li>
  7544. </ul>
  7545. <divclass="card_name">DeathXmon</div>
  7546. <divclass="cardinfo_top">
  7547. <divclass="card_img">
  7548. <imgsrc="../images/cardlist/card/BT9-112_P1.png"alt="BT9-112DeathXmon"></div>
  7549. <divclass="cardinfo_top_body">
  7550. <dl>
  7551. <dt>Form</dt>
  7552. <dd>Mega</dd>
  7553. </dl>
  7554. <dl>
  7555. <dt>Attribute</dt>
  7556. <dd>Virus</dd>
  7557. </dl>
  7558. <dl>
  7559. <dt>Type</dt>
  7560. <dd>Unanalyzable/XProgram</dd>
  7561. </dl>
  7562. <dl>
  7563. <dt>DP</dt>
  7564. <dd>15000</dl>
  7565. <dl>
  7566. <dt>PlayCost</dt>
  7567. <dd>20</dd>
  7568. </dl>
  7569. <dl>
  7570. <dt>DigivolveCost1</dt>
  7571. <dd>6</dd>
  7572. </dl>
  7573. <dl>
  7574. <dt>DigivolveCost2</dt>
  7575. <dd>Black</dd>
  7576. </dl>
  7577. </div>
  7578. </div>
  7579. <divclass="cardinfo_bottom">
  7580. <dl>
  7581. <dt>Effect</dt>
  7582. <dd>When you would play this card, reduce its memory cost by 3 for each Digimon and Tamer your opponent has in play. [On Play][When Digivolving] <De-Digivolve 1> all of your opponent’s Digimon. Then, delete all of your opponent’s level 4 or lower Digimon. [End of Opponent’s Turn][Once Per Turn] Delete all of your opponent's Digimon with the lowest play cost.</dd>
  7583. </dl>
  7584. <dl>
  7585. <dt>Digivolveeffect</dt>
  7586. <dd>-</dd>
  7587. </dl>
  7588. <dl>
  7589. <dt>Securityeffect</dt>
  7590. <dd>-</dd>
  7591. </dl>
  7592. <dl>
  7593. <dt>Notes</dt>
  7594. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7595. </div>
  7596. </div>
  7597. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7598. </div>
  7599. </div>
  7600. </li>
  7601. <liclass="image_lists_itemdatapage-3">
  7602. <aclass="card_img">
  7603. <imgsrc="../images/cardlist/card/BT9-084.png"alt="BT9-084TaiKamiya&KariKamiya"></a>
  7604. <divclass="popup">
  7605. <divclass="card_detailcard_detail_red_yellowmulticolor">
  7606. <divclass="card_detail_inner">
  7607. <ulclass="cardinfo_head">
  7608. <liclass="cardno">BT9-084</li>
  7609. <li>R</li>
  7610. <liclass="cardtype">Tamer</li>
  7611. </ul>
  7612. <divclass="card_name">TaiKamiya&KariKamiya</div>
  7613. <divclass="cardinfo_top">
  7614. <divclass="card_img">
  7615. <imgsrc="../images/cardlist/card/BT9-084.png"alt="BT9-084TaiKamiya&KariKamiya"></div>
  7616. <divclass="cardinfo_top_body">
  7617. <dl>
  7618. <dt>Form</dt>
  7619. <dd>-</dd>
  7620. </dl>
  7621. <dl>
  7622. <dt>Attribute</dt>
  7623. <dd>-</dd>
  7624. </dl>
  7625. <dl>
  7626. <dt>Type</dt>
  7627. <dd>-</dd>
  7628. </dl>
  7629. <dl>
  7630. <dt>DP</dt>
  7631. <dd>-</dl>
  7632. <dl>
  7633. <dt>PlayCost</dt>
  7634. <dd>4</dd>
  7635. </dl>
  7636. <dl>
  7637. <dt>DigivolveCost1</dt>
  7638. <dd>-</dd>
  7639. </dl>
  7640. <dl>
  7641. <dt>DigivolveCost2</dt>
  7642. <dd>-</dd>
  7643. </dl>
  7644. </div>
  7645. </div>
  7646. <divclass="cardinfo_bottom">
  7647. <dl>
  7648. <dt>Effect</dt>
  7649. <dd>[Start of Your Turn] If you have 3 or fewer security cards, gain 1 memory. If your opponent has 3 or fewer security cards, gain 1 memory. [Your Turn] When one of your red or yellow Digimon attacks, you may suspend this Tamer to have all of your opponent’s Security Digimon get -2000 DP for the turn.</dd>
  7650. </dl>
  7651. <dl>
  7652. <dt>Digivolveeffect</dt>
  7653. <dd>-</dd>
  7654. </dl>
  7655. <dl>
  7656. <dt>Securityeffect</dt>
  7657. <dd>[Security] Play this card without paying its memory cost.</dd>
  7658. </dl>
  7659. <dl>
  7660. <dt>Notes</dt>
  7661. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7662. </div>
  7663. </div>
  7664. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7665. </div>
  7666. </div>
  7667. </li>
  7668. <liclass="image_lists_itemdatapage-3">
  7669. <aclass="card_img">
  7670. <imgsrc="../images/cardlist/card/BT9-085.png"alt="BT9-085MattIshida&SoraTakenouchi"></a>
  7671. <divclass="popup">
  7672. <divclass="card_detailcard_detail_blue_redmulticolor">
  7673. <divclass="card_detail_inner">
  7674. <ulclass="cardinfo_head">
  7675. <liclass="cardno">BT9-085</li>
  7676. <li>R</li>
  7677. <liclass="cardtype">Tamer</li>
  7678. </ul>
  7679. <divclass="card_name">MattIshida&SoraTakenouchi</div>
  7680. <divclass="cardinfo_top">
  7681. <divclass="card_img">
  7682. <imgsrc="../images/cardlist/card/BT9-085.png"alt="BT9-085MattIshida&SoraTakenouchi"></div>
  7683. <divclass="cardinfo_top_body">
  7684. <dl>
  7685. <dt>Form</dt>
  7686. <dd>-</dd>
  7687. </dl>
  7688. <dl>
  7689. <dt>Attribute</dt>
  7690. <dd>-</dd>
  7691. </dl>
  7692. <dl>
  7693. <dt>Type</dt>
  7694. <dd>-</dd>
  7695. </dl>
  7696. <dl>
  7697. <dt>DP</dt>
  7698. <dd>-</dl>
  7699. <dl>
  7700. <dt>PlayCost</dt>
  7701. <dd>4</dd>
  7702. </dl>
  7703. <dl>
  7704. <dt>DigivolveCost1</dt>
  7705. <dd>-</dd>
  7706. </dl>
  7707. <dl>
  7708. <dt>DigivolveCost2</dt>
  7709. <dd>-</dd>
  7710. </dl>
  7711. </div>
  7712. </div>
  7713. <divclass="cardinfo_bottom">
  7714. <dl>
  7715. <dt>Effect</dt>
  7716. <dd>[Start of Your Main Phase] If you have 8 or more cards in hand, gain 1 memory. If your opponent has 8 or more cards in hand, gain 1 memory. [Your Turn] When one of your blue or red Digimon becomes unsuspended, you may suspend this Tamer to return 1 of your opponent’s level 3 Digimon to its owner’s hand.</dd>
  7717. </dl>
  7718. <dl>
  7719. <dt>Digivolveeffect</dt>
  7720. <dd>-</dd>
  7721. </dl>
  7722. <dl>
  7723. <dt>Securityeffect</dt>
  7724. <dd>[Security] Play this card without paying its memory cost.</dd>
  7725. </dl>
  7726. <dl>
  7727. <dt>Notes</dt>
  7728. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7729. </div>
  7730. </div>
  7731. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7732. </div>
  7733. </div>
  7734. </li>
  7735. <liclass="image_lists_itemdatapage-3">
  7736. <aclass="card_img">
  7737. <imgsrc="../images/cardlist/card/BT9-086.png"alt="BT9-086KiyoshiroHigashimitarai"></a>
  7738. <divclass="popup">
  7739. <divclass="card_detailcard_detail_blue">
  7740. <divclass="card_detail_inner">
  7741. <ulclass="cardinfo_head">
  7742. <liclass="cardno">BT9-086</li>
  7743. <li>R</li>
  7744. <liclass="cardtype">Tamer</li>
  7745. </ul>
  7746. <divclass="card_name">KiyoshiroHigashimitarai</div>
  7747. <divclass="cardinfo_top">
  7748. <divclass="card_img">
  7749. <imgsrc="../images/cardlist/card/BT9-086.png"alt="BT9-086KiyoshiroHigashimitarai"></div>
  7750. <divclass="cardinfo_top_body">
  7751. <dl>
  7752. <dt>Form</dt>
  7753. <dd>-</dd>
  7754. </dl>
  7755. <dl>
  7756. <dt>Attribute</dt>
  7757. <dd>-</dd>
  7758. </dl>
  7759. <dl>
  7760. <dt>Type</dt>
  7761. <dd>-</dd>
  7762. </dl>
  7763. <dl>
  7764. <dt>DP</dt>
  7765. <dd>-</dl>
  7766. <dl>
  7767. <dt>PlayCost</dt>
  7768. <dd>4</dd>
  7769. </dl>
  7770. <dl>
  7771. <dt>DigivolveCost1</dt>
  7772. <dd>-</dd>
  7773. </dl>
  7774. <dl>
  7775. <dt>DigivolveCost2</dt>
  7776. <dd>-</dd>
  7777. </dl>
  7778. </div>
  7779. </div>
  7780. <divclass="cardinfo_bottom">
  7781. <dl>
  7782. <dt>Effect</dt>
  7783. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3. [Your Turn] When you attack with a Digimon that has [Jellymon] in its name or is level 5 or higher, if you have 7 or fewer cards in hand, you may suspend this Tamer to <Draw 1>. (Draw 1 card from your deck.)</dd>
  7784. </dl>
  7785. <dl>
  7786. <dt>Digivolveeffect</dt>
  7787. <dd>-</dd>
  7788. </dl>
  7789. <dl>
  7790. <dt>Securityeffect</dt>
  7791. <dd>[Security] Play this card without paying its memory cost.</dd>
  7792. </dl>
  7793. <dl>
  7794. <dt>Notes</dt>
  7795. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7796. </div>
  7797. </div>
  7798. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7799. </div>
  7800. </div>
  7801. </li>
  7802. <liclass="image_lists_itemdatapage-3">
  7803. <aclass="card_img">
  7804. <imgsrc="../images/cardlist/card/BT9-087.png"alt="BT9-087T.K.Takaishi&IzzyIzumi"></a>
  7805. <divclass="popup">
  7806. <divclass="card_detailcard_detail_yellow_greenmulticolor">
  7807. <divclass="card_detail_inner">
  7808. <ulclass="cardinfo_head">
  7809. <liclass="cardno">BT9-087</li>
  7810. <li>R</li>
  7811. <liclass="cardtype">Tamer</li>
  7812. </ul>
  7813. <divclass="card_name">T.K.Takaishi&IzzyIzumi</div>
  7814. <divclass="cardinfo_top">
  7815. <divclass="card_img">
  7816. <imgsrc="../images/cardlist/card/BT9-087.png"alt="BT9-087T.K.Takaishi&IzzyIzumi"></div>
  7817. <divclass="cardinfo_top_body">
  7818. <dl>
  7819. <dt>Form</dt>
  7820. <dd>-</dd>
  7821. </dl>
  7822. <dl>
  7823. <dt>Attribute</dt>
  7824. <dd>-</dd>
  7825. </dl>
  7826. <dl>
  7827. <dt>Type</dt>
  7828. <dd>-</dd>
  7829. </dl>
  7830. <dl>
  7831. <dt>DP</dt>
  7832. <dd>-</dl>
  7833. <dl>
  7834. <dt>PlayCost</dt>
  7835. <dd>4</dd>
  7836. </dl>
  7837. <dl>
  7838. <dt>DigivolveCost1</dt>
  7839. <dd>-</dd>
  7840. </dl>
  7841. <dl>
  7842. <dt>DigivolveCost2</dt>
  7843. <dd>-</dd>
  7844. </dl>
  7845. </div>
  7846. </div>
  7847. <divclass="cardinfo_bottom">
  7848. <dl>
  7849. <dt>Effect</dt>
  7850. <dd>[Start of Your Main Phase] If you have a level 5 or higher Digimon in play, gain 1 memory. If your opponent has a level 5 or higher Digimon in play, gain 1 memory. [Your Turn] When one of your Digimon digivolves into a yellow or green Digimon, you may suspend this Tamer to have 1 of your opponent’s Digimon get -1000 DP until the end of your opponent’s turn.</dd>
  7851. </dl>
  7852. <dl>
  7853. <dt>Digivolveeffect</dt>
  7854. <dd>-</dd>
  7855. </dl>
  7856. <dl>
  7857. <dt>Securityeffect</dt>
  7858. <dd>[Security] Play this card without paying its memory cost.</dd>
  7859. </dl>
  7860. <dl>
  7861. <dt>Notes</dt>
  7862. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7863. </div>
  7864. </div>
  7865. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7866. </div>
  7867. </div>
  7868. </li>
  7869. <liclass="image_lists_itemdatapage-3">
  7870. <aclass="card_img">
  7871. <imgsrc="../images/cardlist/card/BT9-088.png"alt="BT9-088MimiTachikawa&JoeKido"></a>
  7872. <divclass="popup">
  7873. <divclass="card_detailcard_detail_green_bluemulticolor">
  7874. <divclass="card_detail_inner">
  7875. <ulclass="cardinfo_head">
  7876. <liclass="cardno">BT9-088</li>
  7877. <li>R</li>
  7878. <liclass="cardtype">Tamer</li>
  7879. </ul>
  7880. <divclass="card_name">MimiTachikawa&JoeKido</div>
  7881. <divclass="cardinfo_top">
  7882. <divclass="card_img">
  7883. <imgsrc="../images/cardlist/card/BT9-088.png"alt="BT9-088MimiTachikawa&JoeKido"></div>
  7884. <divclass="cardinfo_top_body">
  7885. <dl>
  7886. <dt>Form</dt>
  7887. <dd>-</dd>
  7888. </dl>
  7889. <dl>
  7890. <dt>Attribute</dt>
  7891. <dd>-</dd>
  7892. </dl>
  7893. <dl>
  7894. <dt>Type</dt>
  7895. <dd>-</dd>
  7896. </dl>
  7897. <dl>
  7898. <dt>DP</dt>
  7899. <dd>-</dl>
  7900. <dl>
  7901. <dt>PlayCost</dt>
  7902. <dd>4</dd>
  7903. </dl>
  7904. <dl>
  7905. <dt>DigivolveCost1</dt>
  7906. <dd>-</dd>
  7907. </dl>
  7908. <dl>
  7909. <dt>DigivolveCost2</dt>
  7910. <dd>-</dd>
  7911. </dl>
  7912. </div>
  7913. </div>
  7914. <divclass="cardinfo_bottom">
  7915. <dl>
  7916. <dt>Effect</dt>
  7917. <dd>[Start of Your Turn] If you have a suspended Digimon in play, gain 1 memory. If your opponent has a suspended Digimon in play, gain 1 memory. [All Turns] When one of your green or blue Digimon deletes an opponent’s Digimon in battle and survives, you may suspend this Tamer to <Draw 1>. (Draw 1 card from your deck.)</dd>
  7918. </dl>
  7919. <dl>
  7920. <dt>Digivolveeffect</dt>
  7921. <dd>-</dd>
  7922. </dl>
  7923. <dl>
  7924. <dt>Securityeffect</dt>
  7925. <dd>[Security] Play this card without paying its memory cost.</dd>
  7926. </dl>
  7927. <dl>
  7928. <dt>Notes</dt>
  7929. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7930. </div>
  7931. </div>
  7932. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7933. </div>
  7934. </div>
  7935. </li>
  7936. <liclass="image_lists_itemdatapage-3">
  7937. <aclass="card_img">
  7938. <imgsrc="../images/cardlist/card/BT9-089.png"alt="BT9-089DaigoNishijima"></a>
  7939. <divclass="popup">
  7940. <divclass="card_detailcard_detail_black">
  7941. <divclass="card_detail_inner">
  7942. <ulclass="cardinfo_head">
  7943. <liclass="cardno">BT9-089</li>
  7944. <li>U</li>
  7945. <liclass="cardtype">Tamer</li>
  7946. </ul>
  7947. <divclass="card_name">DaigoNishijima</div>
  7948. <divclass="cardinfo_top">
  7949. <divclass="card_img">
  7950. <imgsrc="../images/cardlist/card/BT9-089.png"alt="BT9-089DaigoNishijima"></div>
  7951. <divclass="cardinfo_top_body">
  7952. <dl>
  7953. <dt>Form</dt>
  7954. <dd>-</dd>
  7955. </dl>
  7956. <dl>
  7957. <dt>Attribute</dt>
  7958. <dd>-</dd>
  7959. </dl>
  7960. <dl>
  7961. <dt>Type</dt>
  7962. <dd>-</dd>
  7963. </dl>
  7964. <dl>
  7965. <dt>DP</dt>
  7966. <dd>-</dl>
  7967. <dl>
  7968. <dt>PlayCost</dt>
  7969. <dd>3</dd>
  7970. </dl>
  7971. <dl>
  7972. <dt>DigivolveCost1</dt>
  7973. <dd>-</dd>
  7974. </dl>
  7975. <dl>
  7976. <dt>DigivolveCost2</dt>
  7977. <dd>-</dd>
  7978. </dl>
  7979. </div>
  7980. </div>
  7981. <divclass="cardinfo_bottom">
  7982. <dl>
  7983. <dt>Effect</dt>
  7984. <dd>[All Turns] When an opponent’s Digimon becomes unsuspended during a main phase, you may suspend this Tamer to gain 1 memory. [Your Turn] When one of your Digimon digivolves into a black level 6 Digimon, it gains <Blocker> until the end of your opponent’s turn. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  7985. </dl>
  7986. <dl>
  7987. <dt>Digivolveeffect</dt>
  7988. <dd>-</dd>
  7989. </dl>
  7990. <dl>
  7991. <dt>Securityeffect</dt>
  7992. <dd>[Security] Play this card without paying its memory cost.</dd>
  7993. </dl>
  7994. <dl>
  7995. <dt>Notes</dt>
  7996. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  7997. </div>
  7998. </div>
  7999. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8000. </div>
  8001. </div>
  8002. </li>
  8003. <liclass="image_lists_itemdatapage-3">
  8004. <aclass="card_img">
  8005. <imgsrc="../images/cardlist/card/BT9-090.png"alt="BT9-090MakiHimekawa"></a>
  8006. <divclass="popup">
  8007. <divclass="card_detailcard_detail_black">
  8008. <divclass="card_detail_inner">
  8009. <ulclass="cardinfo_head">
  8010. <liclass="cardno">BT9-090</li>
  8011. <li>U</li>
  8012. <liclass="cardtype">Tamer</li>
  8013. </ul>
  8014. <divclass="card_name">MakiHimekawa</div>
  8015. <divclass="cardinfo_top">
  8016. <divclass="card_img">
  8017. <imgsrc="../images/cardlist/card/BT9-090.png"alt="BT9-090MakiHimekawa"></div>
  8018. <divclass="cardinfo_top_body">
  8019. <dl>
  8020. <dt>Form</dt>
  8021. <dd>-</dd>
  8022. </dl>
  8023. <dl>
  8024. <dt>Attribute</dt>
  8025. <dd>-</dd>
  8026. </dl>
  8027. <dl>
  8028. <dt>Type</dt>
  8029. <dd>-</dd>
  8030. </dl>
  8031. <dl>
  8032. <dt>DP</dt>
  8033. <dd>-</dl>
  8034. <dl>
  8035. <dt>PlayCost</dt>
  8036. <dd>3</dd>
  8037. </dl>
  8038. <dl>
  8039. <dt>DigivolveCost1</dt>
  8040. <dd>-</dd>
  8041. </dl>
  8042. <dl>
  8043. <dt>DigivolveCost2</dt>
  8044. <dd>-</dd>
  8045. </dl>
  8046. </div>
  8047. </div>
  8048. <divclass="cardinfo_bottom">
  8049. <dl>
  8050. <dt>Effect</dt>
  8051. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 [Tapirmon] and 1 2-color black card among them to your hand. Place the rest at the bottom of your deck in any order. [Your Turn] When one of your Digimon would digivolve into a 2-color black Digimon card, you may suspend this Tamer to reduce the digivolution cost by 1.</dd>
  8052. </dl>
  8053. <dl>
  8054. <dt>Digivolveeffect</dt>
  8055. <dd>-</dd>
  8056. </dl>
  8057. <dl>
  8058. <dt>Securityeffect</dt>
  8059. <dd>[Security] Play this card without paying its memory cost.</dd>
  8060. </dl>
  8061. <dl>
  8062. <dt>Notes</dt>
  8063. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8064. </div>
  8065. </div>
  8066. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8067. </div>
  8068. </div>
  8069. </li>
  8070. <liclass="image_lists_itemdatapage-3">
  8071. <aclass="card_img">
  8072. <imgsrc="../images/cardlist/card/BT9-091.png"alt="BT9-091MeikoMochizuki"></a>
  8073. <divclass="popup">
  8074. <divclass="card_detailcard_detail_purple">
  8075. <divclass="card_detail_inner">
  8076. <ulclass="cardinfo_head">
  8077. <liclass="cardno">BT9-091</li>
  8078. <li>U</li>
  8079. <liclass="cardtype">Tamer</li>
  8080. </ul>
  8081. <divclass="card_name">MeikoMochizuki</div>
  8082. <divclass="cardinfo_top">
  8083. <divclass="card_img">
  8084. <imgsrc="../images/cardlist/card/BT9-091.png"alt="BT9-091MeikoMochizuki"></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>-</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 reveal the top 3 cards of your deck. Add 1 purple or yellow Digimon card among them to your hand. Trash the rest. [All Turns] When you play a 2-color purple and yellow Digimon, you may suspend this Tamer to 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><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></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/BT9-092.png"alt="BT9-092CoolBoy"></a>
  8140. <divclass="popup">
  8141. <divclass="card_detailcard_detail_white">
  8142. <divclass="card_detail_inner">
  8143. <ulclass="cardinfo_head">
  8144. <liclass="cardno">BT9-092</li>
  8145. <li>R</li>
  8146. <liclass="cardtype">Tamer</li>
  8147. </ul>
  8148. <divclass="card_name">CoolBoy</div>
  8149. <divclass="cardinfo_top">
  8150. <divclass="card_img">
  8151. <imgsrc="../images/cardlist/card/BT9-092.png"alt="BT9-092CoolBoy"></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>2</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>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [X Antibody] in its traits and 1 Option card with [X Antibody] in its traits among them to your hand. Place the rest at the bottom of your deck in any order. [Your Turn] When one of your Digimon digivolves into a same-level Digimon with [X Antibody] in its traits, you may suspend this Tamer to gain 1 memory and <Draw 1>.</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/ver9.php">&rtri;BOOSTERXRECORD[BT09]</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/BT9-093.png"alt="BT9-093FlareRockSoul"></a>
  8207. <divclass="popup">
  8208. <divclass="card_detailcard_detail_red">
  8209. <divclass="card_detail_inner">
  8210. <ulclass="cardinfo_head">
  8211. <liclass="cardno">BT9-093</li>
  8212. <li>C</li>
  8213. <liclass="cardtype">Option</li>
  8214. </ul>
  8215. <divclass="card_name">FlareRockSoul</div>
  8216. <divclass="cardinfo_top">
  8217. <divclass="card_img">
  8218. <imgsrc="../images/cardlist/card/BT9-093.png"alt="BT9-093FlareRockSoul"></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>-</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>[Main] Delete 1 of your opponent's Digimon with 5000 DP or less. Then, you may digivolve 1 of your Digimon into a Digimon card with [Shoutmon] in its name in your hand for its digivolution cost.</dd>
  8253. </dl>
  8254. <dl>
  8255. <dt>Digivolveeffect</dt>
  8256. <dd>-</dd>
  8257. </dl>
  8258. <dl>
  8259. <dt>Securityeffect</dt>
  8260. <dd>[Security] Delete 1 of your opponent's Digimon with 5000 DP or less.</dd>
  8261. </dl>
  8262. <dl>
  8263. <dt>Notes</dt>
  8264. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</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/BT9-094.png"alt="BT9-094AtomicMegaloBlaster"></a>
  8274. <divclass="popup">
  8275. <divclass="card_detailcard_detail_red">
  8276. <divclass="card_detail_inner">
  8277. <ulclass="cardinfo_head">
  8278. <liclass="cardno">BT9-094</li>
  8279. <li>U</li>
  8280. <liclass="cardtype">Option</li>
  8281. </ul>
  8282. <divclass="card_name">AtomicMegaloBlaster</div>
  8283. <divclass="cardinfo_top">
  8284. <divclass="card_img">
  8285. <imgsrc="../images/cardlist/card/BT9-094.png"alt="BT9-094AtomicMegaloBlaster"></div>
  8286. <divclass="cardinfo_top_body">
  8287. <dl>
  8288. <dt>Form</dt>
  8289. <dd>-</dd>
  8290. </dl>
  8291. <dl>
  8292. <dt>Attribute</dt>
  8293. <dd>-</dd>
  8294. </dl>
  8295. <dl>
  8296. <dt>Type</dt>
  8297. <dd>-</dd>
  8298. </dl>
  8299. <dl>
  8300. <dt>DP</dt>
  8301. <dd>-</dl>
  8302. <dl>
  8303. <dt>PlayCost</dt>
  8304. <dd>6</dd>
  8305. </dl>
  8306. <dl>
  8307. <dt>DigivolveCost1</dt>
  8308. <dd>-</dd>
  8309. </dl>
  8310. <dl>
  8311. <dt>DigivolveCost2</dt>
  8312. <dd>-</dd>
  8313. </dl>
  8314. </div>
  8315. </div>
  8316. <divclass="cardinfo_bottom">
  8317. <dl>
  8318. <dt>Effect</dt>
  8319. <dd>[Main] Choose any number of your opponent’s Digimon whose total DP adds up to 10000 or less and delete them.</dd>
  8320. </dl>
  8321. <dl>
  8322. <dt>Digivolveeffect</dt>
  8323. <dd>-</dd>
  8324. </dl>
  8325. <dl>
  8326. <dt>Securityeffect</dt>
  8327. <dd>[Security] Activate this card's [Main] effect.</dd>
  8328. </dl>
  8329. <dl>
  8330. <dt>Notes</dt>
  8331. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8332. </div>
  8333. </div>
  8334. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8335. </div>
  8336. </div>
  8337. </li>
  8338. <liclass="image_lists_itemdatapage-4">
  8339. <aclass="card_img">
  8340. <imgsrc="../images/cardlist/card/BT9-095.png"alt="BT9-095GaiaForceZERO"></a>
  8341. <divclass="popup">
  8342. <divclass="card_detailcard_detail_red">
  8343. <divclass="card_detail_inner">
  8344. <ulclass="cardinfo_head">
  8345. <liclass="cardno">BT9-095</li>
  8346. <li>R</li>
  8347. <liclass="cardtype">Option</li>
  8348. </ul>
  8349. <divclass="card_name">GaiaForceZERO</div>
  8350. <divclass="cardinfo_top">
  8351. <divclass="card_img">
  8352. <imgsrc="../images/cardlist/card/BT9-095.png"alt="BT9-095GaiaForceZERO"></div>
  8353. <divclass="cardinfo_top_body">
  8354. <dl>
  8355. <dt>Form</dt>
  8356. <dd>-</dd>
  8357. </dl>
  8358. <dl>
  8359. <dt>Attribute</dt>
  8360. <dd>-</dd>
  8361. </dl>
  8362. <dl>
  8363. <dt>Type</dt>
  8364. <dd>-</dd>
  8365. </dl>
  8366. <dl>
  8367. <dt>DP</dt>
  8368. <dd>-</dl>
  8369. <dl>
  8370. <dt>PlayCost</dt>
  8371. <dd>8</dd>
  8372. </dl>
  8373. <dl>
  8374. <dt>DigivolveCost1</dt>
  8375. <dd>-</dd>
  8376. </dl>
  8377. <dl>
  8378. <dt>DigivolveCost2</dt>
  8379. <dd>-</dd>
  8380. </dl>
  8381. </div>
  8382. </div>
  8383. <divclass="cardinfo_bottom">
  8384. <dl>
  8385. <dt>Effect</dt>
  8386. <dd>When you would use this card, if you have a Digimon with [X Antibody] in its digivolution cards in play, reduce the memory cost of this card by 2. [Main] Delete 1 of your opponent's Digimon with 13000 DP or less. Then, 1 of your Digimon with [Greymon] in its name may attack your opponent.</dd>
  8387. </dl>
  8388. <dl>
  8389. <dt>Digivolveeffect</dt>
  8390. <dd>-</dd>
  8391. </dl>
  8392. <dl>
  8393. <dt>Securityeffect</dt>
  8394. <dd>[Security] Delete 1 of your opponent's Digimon.</dd>
  8395. </dl>
  8396. <dl>
  8397. <dt>Notes</dt>
  8398. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8399. </div>
  8400. </div>
  8401. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8402. </div>
  8403. </div>
  8404. </li>
  8405. <liclass="image_lists_itemdatapage-4">
  8406. <aclass="card_img">
  8407. <imgsrc="../images/cardlist/card/BT9-096.png"alt="BT9-096StartlingThunder"></a>
  8408. <divclass="popup">
  8409. <divclass="card_detailcard_detail_blue">
  8410. <divclass="card_detail_inner">
  8411. <ulclass="cardinfo_head">
  8412. <liclass="cardno">BT9-096</li>
  8413. <li>C</li>
  8414. <liclass="cardtype">Option</li>
  8415. </ul>
  8416. <divclass="card_name">StartlingThunder</div>
  8417. <divclass="cardinfo_top">
  8418. <divclass="card_img">
  8419. <imgsrc="../images/cardlist/card/BT9-096.png"alt="BT9-096StartlingThunder"></div>
  8420. <divclass="cardinfo_top_body">
  8421. <dl>
  8422. <dt>Form</dt>
  8423. <dd>-</dd>
  8424. </dl>
  8425. <dl>
  8426. <dt>Attribute</dt>
  8427. <dd>-</dd>
  8428. </dl>
  8429. <dl>
  8430. <dt>Type</dt>
  8431. <dd>-</dd>
  8432. </dl>
  8433. <dl>
  8434. <dt>DP</dt>
  8435. <dd>-</dl>
  8436. <dl>
  8437. <dt>PlayCost</dt>
  8438. <dd>4</dd>
  8439. </dl>
  8440. <dl>
  8441. <dt>DigivolveCost1</dt>
  8442. <dd>-</dd>
  8443. </dl>
  8444. <dl>
  8445. <dt>DigivolveCost2</dt>
  8446. <dd>-</dd>
  8447. </dl>
  8448. </div>
  8449. </div>
  8450. <divclass="cardinfo_bottom">
  8451. <dl>
  8452. <dt>Effect</dt>
  8453. <dd>[Main] Return 1 of your opponent’s level 4 or lower Digimon to its owner’s hand. Then, if you have a Digimon with [Jellymon] in its name or with [Jellymon] in its digivolution cards, return 1 of your opponent’s Tamers to its owner’s hand.</dd>
  8454. </dl>
  8455. <dl>
  8456. <dt>Digivolveeffect</dt>
  8457. <dd>-</dd>
  8458. </dl>
  8459. <dl>
  8460. <dt>Securityeffect</dt>
  8461. <dd>[Security] Activate this card's [Main] effect.</dd>
  8462. </dl>
  8463. <dl>
  8464. <dt>Notes</dt>
  8465. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8466. </div>
  8467. </div>
  8468. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8469. </div>
  8470. </div>
  8471. </li>
  8472. <liclass="image_lists_itemdatapage-4">
  8473. <aclass="card_img">
  8474. <imgsrc="../images/cardlist/card/BT9-097.png"alt="BT9-097MetalStorm"></a>
  8475. <divclass="popup">
  8476. <divclass="card_detailcard_detail_blue">
  8477. <divclass="card_detail_inner">
  8478. <ulclass="cardinfo_head">
  8479. <liclass="cardno">BT9-097</li>
  8480. <li>R</li>
  8481. <liclass="cardtype">Option</li>
  8482. </ul>
  8483. <divclass="card_name">MetalStorm</div>
  8484. <divclass="cardinfo_top">
  8485. <divclass="card_img">
  8486. <imgsrc="../images/cardlist/card/BT9-097.png"alt="BT9-097MetalStorm"></div>
  8487. <divclass="cardinfo_top_body">
  8488. <dl>
  8489. <dt>Form</dt>
  8490. <dd>-</dd>
  8491. </dl>
  8492. <dl>
  8493. <dt>Attribute</dt>
  8494. <dd>-</dd>
  8495. </dl>
  8496. <dl>
  8497. <dt>Type</dt>
  8498. <dd>-</dd>
  8499. </dl>
  8500. <dl>
  8501. <dt>DP</dt>
  8502. <dd>-</dl>
  8503. <dl>
  8504. <dt>PlayCost</dt>
  8505. <dd>7</dd>
  8506. </dl>
  8507. <dl>
  8508. <dt>DigivolveCost1</dt>
  8509. <dd>-</dd>
  8510. </dl>
  8511. <dl>
  8512. <dt>DigivolveCost2</dt>
  8513. <dd>-</dd>
  8514. </dl>
  8515. </div>
  8516. </div>
  8517. <divclass="cardinfo_bottom">
  8518. <dl>
  8519. <dt>Effect</dt>
  8520. <dd>When you would use this card, if you have a Digimon with [X Antibody] in its digivolution cards in play, reduce the memory cost of this card by 2. [Main] Return 1 of your opponent’s level 6 or lower Digimon to its owner’s hand. Then, unsuspend 1 of your Digimon with [Garurumon] in its name.</dd>
  8521. </dl>
  8522. <dl>
  8523. <dt>Digivolveeffect</dt>
  8524. <dd>-</dd>
  8525. </dl>
  8526. <dl>
  8527. <dt>Securityeffect</dt>
  8528. <dd>[Security] Activate this card's [Main] effect.</dd>
  8529. </dl>
  8530. <dl>
  8531. <dt>Notes</dt>
  8532. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8533. </div>
  8534. </div>
  8535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8536. </div>
  8537. </div>
  8538. </li>
  8539. <liclass="image_lists_itemdatapage-4">
  8540. <aclass="card_img">
  8541. <imgsrc="../images/cardlist/card/BT9-098.png"alt="BT9-098AwakeningoftheGoldenKnight"></a>
  8542. <divclass="popup">
  8543. <divclass="card_detailcard_detail_yellow">
  8544. <divclass="card_detail_inner">
  8545. <ulclass="cardinfo_head">
  8546. <liclass="cardno">BT9-098</li>
  8547. <li>C</li>
  8548. <liclass="cardtype">Option</li>
  8549. </ul>
  8550. <divclass="card_name">AwakeningoftheGoldenKnight</div>
  8551. <divclass="cardinfo_top">
  8552. <divclass="card_img">
  8553. <imgsrc="../images/cardlist/card/BT9-098.png"alt="BT9-098AwakeningoftheGoldenKnight"></div>
  8554. <divclass="cardinfo_top_body">
  8555. <dl>
  8556. <dt>Form</dt>
  8557. <dd>-</dd>
  8558. </dl>
  8559. <dl>
  8560. <dt>Attribute</dt>
  8561. <dd>-</dd>
  8562. </dl>
  8563. <dl>
  8564. <dt>Type</dt>
  8565. <dd>-</dd>
  8566. </dl>
  8567. <dl>
  8568. <dt>DP</dt>
  8569. <dd>-</dl>
  8570. <dl>
  8571. <dt>PlayCost</dt>
  8572. <dd>3</dd>
  8573. </dl>
  8574. <dl>
  8575. <dt>DigivolveCost1</dt>
  8576. <dd>-</dd>
  8577. </dl>
  8578. <dl>
  8579. <dt>DigivolveCost2</dt>
  8580. <dd>-</dd>
  8581. </dl>
  8582. </div>
  8583. </div>
  8584. <divclass="cardinfo_bottom">
  8585. <dl>
  8586. <dt>Effect</dt>
  8587. <dd>While you have a Digimon with [Armor Form] in its traits in play, you may use this card without meeting its color requirements. [Main] You may digivolve 1 of your Digimon with [Armor Form] in its traits into a Digimon card with [Magnamon] in its name in your hand, ignoring its digivolution requirements and without paying its memory cost. The Digimon that digivolved with this effect can't have its DP reduced by your opponent's effects until the end of your opponent's turn.</dd>
  8588. </dl>
  8589. <dl>
  8590. <dt>Digivolveeffect</dt>
  8591. <dd>-</dd>
  8592. </dl>
  8593. <dl>
  8594. <dt>Securityeffect</dt>
  8595. <dd>[Security] Return 1 card with [Magnamon] in its name from your trash to your hand, and add this card to your hand.</dd>
  8596. </dl>
  8597. <dl>
  8598. <dt>Notes</dt>
  8599. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8600. </div>
  8601. </div>
  8602. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8603. </div>
  8604. </div>
  8605. </li>
  8606. <liclass="image_lists_itemdatapage-4">
  8607. <aclass="card_img">
  8608. <imgsrc="../images/cardlist/card/BT9-099.png"alt="BT9-099SunriseBuster"></a>
  8609. <divclass="popup">
  8610. <divclass="card_detailcard_detail_yellow_redmulticolor">
  8611. <divclass="card_detail_inner">
  8612. <ulclass="cardinfo_head">
  8613. <liclass="cardno">BT9-099</li>
  8614. <li>R</li>
  8615. <liclass="cardtype">Option</li>
  8616. </ul>
  8617. <divclass="card_name">SunriseBuster</div>
  8618. <divclass="cardinfo_top">
  8619. <divclass="card_img">
  8620. <imgsrc="../images/cardlist/card/BT9-099.png"alt="BT9-099SunriseBuster"></div>
  8621. <divclass="cardinfo_top_body">
  8622. <dl>
  8623. <dt>Form</dt>
  8624. <dd>-</dd>
  8625. </dl>
  8626. <dl>
  8627. <dt>Attribute</dt>
  8628. <dd>-</dd>
  8629. </dl>
  8630. <dl>
  8631. <dt>Type</dt>
  8632. <dd>-</dd>
  8633. </dl>
  8634. <dl>
  8635. <dt>DP</dt>
  8636. <dd>-</dl>
  8637. <dl>
  8638. <dt>PlayCost</dt>
  8639. <dd>5</dd>
  8640. </dl>
  8641. <dl>
  8642. <dt>DigivolveCost1</dt>
  8643. <dd>-</dd>
  8644. </dl>
  8645. <dl>
  8646. <dt>DigivolveCost2</dt>
  8647. <dd>-</dd>
  8648. </dl>
  8649. </div>
  8650. </div>
  8651. <divclass="cardinfo_bottom">
  8652. <dl>
  8653. <dt>Effect</dt>
  8654. <dd>[Main] You may play 1 yellow or red Tamer card from your hand without paying its memory cost. Then, 1 of your opponent’s Digimon gets -3000 DP for the turn for each yellow and/or red Tamer you have in play.</dd>
  8655. </dl>
  8656. <dl>
  8657. <dt>Digivolveeffect</dt>
  8658. <dd>-</dd>
  8659. </dl>
  8660. <dl>
  8661. <dt>Securityeffect</dt>
  8662. <dd>[Security] Activate this card's [Main] effect.</dd>
  8663. </dl>
  8664. <dl>
  8665. <dt>Notes</dt>
  8666. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8667. </div>
  8668. </div>
  8669. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8670. </div>
  8671. </div>
  8672. </li>
  8673. <liclass="image_lists_itemdatapage-4">
  8674. <aclass="card_img">
  8675. <imgsrc="../images/cardlist/card/BT9-100.png"alt="BT9-100GrandisScissor"></a>
  8676. <divclass="popup">
  8677. <divclass="card_detailcard_detail_green">
  8678. <divclass="card_detail_inner">
  8679. <ulclass="cardinfo_head">
  8680. <liclass="cardno">BT9-100</li>
  8681. <li>R</li>
  8682. <liclass="cardtype">Option</li>
  8683. </ul>
  8684. <divclass="card_name">GrandisScissor</div>
  8685. <divclass="cardinfo_top">
  8686. <divclass="card_img">
  8687. <imgsrc="../images/cardlist/card/BT9-100.png"alt="BT9-100GrandisScissor"></div>
  8688. <divclass="cardinfo_top_body">
  8689. <dl>
  8690. <dt>Form</dt>
  8691. <dd>-</dd>
  8692. </dl>
  8693. <dl>
  8694. <dt>Attribute</dt>
  8695. <dd>-</dd>
  8696. </dl>
  8697. <dl>
  8698. <dt>Type</dt>
  8699. <dd>-</dd>
  8700. </dl>
  8701. <dl>
  8702. <dt>DP</dt>
  8703. <dd>-</dl>
  8704. <dl>
  8705. <dt>PlayCost</dt>
  8706. <dd>4</dd>
  8707. </dl>
  8708. <dl>
  8709. <dt>DigivolveCost1</dt>
  8710. <dd>-</dd>
  8711. </dl>
  8712. <dl>
  8713. <dt>DigivolveCost2</dt>
  8714. <dd>-</dd>
  8715. </dl>
  8716. </div>
  8717. </div>
  8718. <divclass="cardinfo_bottom">
  8719. <dl>
  8720. <dt>Effect</dt>
  8721. <dd>[Main] Suspend 1 of your opponent's Digimon. Then, unsuspend 1 of your Digimon with [Insectoid] in its traits, and it may attack your opponent’s Digimon.</dd>
  8722. </dl>
  8723. <dl>
  8724. <dt>Digivolveeffect</dt>
  8725. <dd>-</dd>
  8726. </dl>
  8727. <dl>
  8728. <dt>Securityeffect</dt>
  8729. <dd>[Security] Suspend 1 of your opponent's Digimon or Tamers.</dd>
  8730. </dl>
  8731. <dl>
  8732. <dt>Notes</dt>
  8733. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8734. </div>
  8735. </div>
  8736. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8737. </div>
  8738. </div>
  8739. </li>
  8740. <liclass="image_lists_itemdatapage-4">
  8741. <aclass="card_img">
  8742. <imgsrc="../images/cardlist/card/BT9-101.png"alt="BT9-101GroundFang"></a>
  8743. <divclass="popup">
  8744. <divclass="card_detailcard_detail_green">
  8745. <divclass="card_detail_inner">
  8746. <ulclass="cardinfo_head">
  8747. <liclass="cardno">BT9-101</li>
  8748. <li>C</li>
  8749. <liclass="cardtype">Option</li>
  8750. </ul>
  8751. <divclass="card_name">GroundFang</div>
  8752. <divclass="cardinfo_top">
  8753. <divclass="card_img">
  8754. <imgsrc="../images/cardlist/card/BT9-101.png"alt="BT9-101GroundFang"></div>
  8755. <divclass="cardinfo_top_body">
  8756. <dl>
  8757. <dt>Form</dt>
  8758. <dd>-</dd>
  8759. </dl>
  8760. <dl>
  8761. <dt>Attribute</dt>
  8762. <dd>-</dd>
  8763. </dl>
  8764. <dl>
  8765. <dt>Type</dt>
  8766. <dd>-</dd>
  8767. </dl>
  8768. <dl>
  8769. <dt>DP</dt>
  8770. <dd>-</dl>
  8771. <dl>
  8772. <dt>PlayCost</dt>
  8773. <dd>8</dd>
  8774. </dl>
  8775. <dl>
  8776. <dt>DigivolveCost1</dt>
  8777. <dd>-</dd>
  8778. </dl>
  8779. <dl>
  8780. <dt>DigivolveCost2</dt>
  8781. <dd>-</dd>
  8782. </dl>
  8783. </div>
  8784. </div>
  8785. <divclass="cardinfo_bottom">
  8786. <dl>
  8787. <dt>Effect</dt>
  8788. <dd>[Main] Return 1 of your opponent's suspended Digimon and 1 of their suspended Tamers to the bottom of their owners’ decks.</dd>
  8789. </dl>
  8790. <dl>
  8791. <dt>Digivolveeffect</dt>
  8792. <dd>-</dd>
  8793. </dl>
  8794. <dl>
  8795. <dt>Securityeffect</dt>
  8796. <dd>[Security] Activate this card's [Main] effect.</dd>
  8797. </dl>
  8798. <dl>
  8799. <dt>Notes</dt>
  8800. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8801. </div>
  8802. </div>
  8803. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8804. </div>
  8805. </div>
  8806. </li>
  8807. <liclass="image_lists_itemdatapage-4">
  8808. <aclass="card_img">
  8809. <imgsrc="../images/cardlist/card/BT9-102.png"alt="BT9-102AttackoftheHeavyMobileDigimon!"></a>
  8810. <divclass="popup">
  8811. <divclass="card_detailcard_detail_black">
  8812. <divclass="card_detail_inner">
  8813. <ulclass="cardinfo_head">
  8814. <liclass="cardno">BT9-102</li>
  8815. <li>C</li>
  8816. <liclass="cardtype">Option</li>
  8817. </ul>
  8818. <divclass="card_name">AttackoftheHeavyMobileDigimon!</div>
  8819. <divclass="cardinfo_top">
  8820. <divclass="card_img">
  8821. <imgsrc="../images/cardlist/card/BT9-102.png"alt="BT9-102AttackoftheHeavyMobileDigimon!"></div>
  8822. <divclass="cardinfo_top_body">
  8823. <dl>
  8824. <dt>Form</dt>
  8825. <dd>-</dd>
  8826. </dl>
  8827. <dl>
  8828. <dt>Attribute</dt>
  8829. <dd>-</dd>
  8830. </dl>
  8831. <dl>
  8832. <dt>Type</dt>
  8833. <dd>-</dd>
  8834. </dl>
  8835. <dl>
  8836. <dt>DP</dt>
  8837. <dd>-</dl>
  8838. <dl>
  8839. <dt>PlayCost</dt>
  8840. <dd>-</dd>
  8841. </dl>
  8842. <dl>
  8843. <dt>DigivolveCost1</dt>
  8844. <dd>-</dd>
  8845. </dl>
  8846. <dl>
  8847. <dt>DigivolveCost2</dt>
  8848. <dd>-</dd>
  8849. </dl>
  8850. </div>
  8851. </div>
  8852. <divclass="cardinfo_bottom">
  8853. <dl>
  8854. <dt>Effect</dt>
  8855. <dd>[Main] You may trash 1 card with [Cyborg] or [Machine] in its traits in your hand to have all of your level 6 Digimon with [Machine] in their traits gain <Rush> (This Digimon can attack the turn it comes into play) and “[On Play] If this Digimon has a digivolution card, <Blitz>. (This Digimon can attack when your opponent has 1 or more memory.)” for the turn.</dd>
  8856. </dl>
  8857. <dl>
  8858. <dt>Digivolveeffect</dt>
  8859. <dd>-</dd>
  8860. </dl>
  8861. <dl>
  8862. <dt>Securityeffect</dt>
  8863. <dd>[Security] You may trash 1 Digimon card with [Cyborg] or [Machine] in its traits in your hand to delete 1 of your opponent’s Digimon whose play cost is less than or equal to the trashed card’s play cost.</dd>
  8864. </dl>
  8865. <dl>
  8866. <dt>Notes</dt>
  8867. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8868. </div>
  8869. </div>
  8870. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8871. </div>
  8872. </div>
  8873. </li>
  8874. <liclass="image_lists_itemdatapage-4">
  8875. <aclass="card_img">
  8876. <imgsrc="../images/cardlist/card/BT9-103.png"alt="BT9-103Kongou"></a>
  8877. <divclass="popup">
  8878. <divclass="card_detailcard_detail_black">
  8879. <divclass="card_detail_inner">
  8880. <ulclass="cardinfo_head">
  8881. <liclass="cardno">BT9-103</li>
  8882. <li>C</li>
  8883. <liclass="cardtype">Option</li>
  8884. </ul>
  8885. <divclass="card_name">Kongou</div>
  8886. <divclass="cardinfo_top">
  8887. <divclass="card_img">
  8888. <imgsrc="../images/cardlist/card/BT9-103.png"alt="BT9-103Kongou"></div>
  8889. <divclass="cardinfo_top_body">
  8890. <dl>
  8891. <dt>Form</dt>
  8892. <dd>-</dd>
  8893. </dl>
  8894. <dl>
  8895. <dt>Attribute</dt>
  8896. <dd>-</dd>
  8897. </dl>
  8898. <dl>
  8899. <dt>Type</dt>
  8900. <dd>-</dd>
  8901. </dl>
  8902. <dl>
  8903. <dt>DP</dt>
  8904. <dd>-</dl>
  8905. <dl>
  8906. <dt>PlayCost</dt>
  8907. <dd>2</dd>
  8908. </dl>
  8909. <dl>
  8910. <dt>DigivolveCost1</dt>
  8911. <dd>-</dd>
  8912. </dl>
  8913. <dl>
  8914. <dt>DigivolveCost2</dt>
  8915. <dd>-</dd>
  8916. </dl>
  8917. </div>
  8918. </div>
  8919. <divclass="cardinfo_bottom">
  8920. <dl>
  8921. <dt>Effect</dt>
  8922. <dd>[Main] Until the end of your opponent’s turn, your opponent’s Digimon with play costs of 7 or less can’t attack players, and cards can’t be added to security stacks by your opponent’s effects.</dd>
  8923. </dl>
  8924. <dl>
  8925. <dt>Digivolveeffect</dt>
  8926. <dd>-</dd>
  8927. </dl>
  8928. <dl>
  8929. <dt>Securityeffect</dt>
  8930. <dd>[Security] Activate this card's [Main] effect.</dd>
  8931. </dl>
  8932. <dl>
  8933. <dt>Notes</dt>
  8934. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  8935. </div>
  8936. </div>
  8937. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8938. </div>
  8939. </div>
  8940. </li>
  8941. <liclass="image_lists_itemdatapage-4">
  8942. <aclass="card_img">
  8943. <imgsrc="../images/cardlist/card/BT9-104.png"alt="BT9-104X-Digivolution"></a>
  8944. <divclass="popup">
  8945. <divclass="card_detailcard_detail_black">
  8946. <divclass="card_detail_inner">
  8947. <ulclass="cardinfo_head">
  8948. <liclass="cardno">BT9-104</li>
  8949. <li>C</li>
  8950. <liclass="cardtype">Option</li>
  8951. </ul>
  8952. <divclass="card_name">X-Digivolution</div>
  8953. <divclass="cardinfo_top">
  8954. <divclass="card_img">
  8955. <imgsrc="../images/cardlist/card/BT9-104.png"alt="BT9-104X-Digivolution"></div>
  8956. <divclass="cardinfo_top_body">
  8957. <dl>
  8958. <dt>Form</dt>
  8959. <dd>-</dd>
  8960. </dl>
  8961. <dl>
  8962. <dt>Attribute</dt>
  8963. <dd>-</dd>
  8964. </dl>
  8965. <dl>
  8966. <dt>Type</dt>
  8967. <dd>-</dd>
  8968. </dl>
  8969. <dl>
  8970. <dt>DP</dt>
  8971. <dd>-</dl>
  8972. <dl>
  8973. <dt>PlayCost</dt>
  8974. <dd>3</dd>
  8975. </dl>
  8976. <dl>
  8977. <dt>DigivolveCost1</dt>
  8978. <dd>-</dd>
  8979. </dl>
  8980. <dl>
  8981. <dt>DigivolveCost2</dt>
  8982. <dd>-</dd>
  8983. </dl>
  8984. </div>
  8985. </div>
  8986. <divclass="cardinfo_bottom">
  8987. <dl>
  8988. <dt>Effect</dt>
  8989. <dd>While you have a Digimon with [X Antibody] in its traits in play, you may use this card without meeting its color requirements. [Main] Reveal the top 3 cards of your deck. You may digivolve 1 of your Digimon into a Digimon card with [X Antibody] in its traits among them without paying its memory cost. Trash the rest. Then, place 1 card with [X Antibody] in its traits from your trash under 1 of your Digimon with [X Antibody] in its traits as its bottom digivolution card.</dd>
  8990. </dl>
  8991. <dl>
  8992. <dt>Digivolveeffect</dt>
  8993. <dd>-</dd>
  8994. </dl>
  8995. <dl>
  8996. <dt>Securityeffect</dt>
  8997. <dd>[Security] You may reveal the top 3 cards of your deck. Add 1 card with [X Antibody] in its traits among them to your hand. Trash the rest.</dd>
  8998. </dl>
  8999. <dl>
  9000. <dt>Notes</dt>
  9001. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9002. </div>
  9003. </div>
  9004. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9005. </div>
  9006. </div>
  9007. </li>
  9008. <liclass="image_lists_itemdatapage-4">
  9009. <aclass="card_img">
  9010. <imgsrc="../images/cardlist/card/BT9-105.png"alt="BT9-105SoulDigitalization"></a>
  9011. <divclass="popup">
  9012. <divclass="card_detailcard_detail_black">
  9013. <divclass="card_detail_inner">
  9014. <ulclass="cardinfo_head">
  9015. <liclass="cardno">BT9-105</li>
  9016. <li>R</li>
  9017. <liclass="cardtype">Option</li>
  9018. </ul>
  9019. <divclass="card_name">SoulDigitalization</div>
  9020. <divclass="cardinfo_top">
  9021. <divclass="card_img">
  9022. <imgsrc="../images/cardlist/card/BT9-105.png"alt="BT9-105SoulDigitalization"></div>
  9023. <divclass="cardinfo_top_body">
  9024. <dl>
  9025. <dt>Form</dt>
  9026. <dd>-</dd>
  9027. </dl>
  9028. <dl>
  9029. <dt>Attribute</dt>
  9030. <dd>-</dd>
  9031. </dl>
  9032. <dl>
  9033. <dt>Type</dt>
  9034. <dd>-</dd>
  9035. </dl>
  9036. <dl>
  9037. <dt>DP</dt>
  9038. <dd>-</dl>
  9039. <dl>
  9040. <dt>PlayCost</dt>
  9041. <dd>5</dd>
  9042. </dl>
  9043. <dl>
  9044. <dt>DigivolveCost1</dt>
  9045. <dd>-</dd>
  9046. </dl>
  9047. <dl>
  9048. <dt>DigivolveCost2</dt>
  9049. <dd>-</dd>
  9050. </dl>
  9051. </div>
  9052. </div>
  9053. <divclass="cardinfo_bottom">
  9054. <dl>
  9055. <dt>Effect</dt>
  9056. <dd>[Main] Reveal the top 3 cards of your deck. Choose 1 Digimon card with [X Antibody] in its traits among them, and delete 1 of your opponent’s Digimon whose play cost is less than or equal to the chosen card's play cost. Trash the revealed cards. Then, place 1 card with [X Antibody] in its traits from your trash under 1 of your Digimon with [X Antibody] in its traits as its bottom digivolution card.</dd>
  9057. </dl>
  9058. <dl>
  9059. <dt>Digivolveeffect</dt>
  9060. <dd>-</dd>
  9061. </dl>
  9062. <dl>
  9063. <dt>Securityeffect</dt>
  9064. <dd>[Security] Activate this card's [Main] effect.</dd>
  9065. </dl>
  9066. <dl>
  9067. <dt>Notes</dt>
  9068. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9069. </div>
  9070. </div>
  9071. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9072. </div>
  9073. </div>
  9074. </li>
  9075. <liclass="image_lists_itemdatapage-4">
  9076. <aclass="card_img">
  9077. <imgsrc="../images/cardlist/card/BT9-106.png"alt="BT9-106DeathXDigivolution!"></a>
  9078. <divclass="popup">
  9079. <divclass="card_detailcard_detail_purple">
  9080. <divclass="card_detail_inner">
  9081. <ulclass="cardinfo_head">
  9082. <liclass="cardno">BT9-106</li>
  9083. <li>C</li>
  9084. <liclass="cardtype">Option</li>
  9085. </ul>
  9086. <divclass="card_name">DeathXDigivolution!</div>
  9087. <divclass="cardinfo_top">
  9088. <divclass="card_img">
  9089. <imgsrc="../images/cardlist/card/BT9-106.png"alt="BT9-106DeathXDigivolution!"></div>
  9090. <divclass="cardinfo_top_body">
  9091. <dl>
  9092. <dt>Form</dt>
  9093. <dd>-</dd>
  9094. </dl>
  9095. <dl>
  9096. <dt>Attribute</dt>
  9097. <dd>-</dd>
  9098. </dl>
  9099. <dl>
  9100. <dt>Type</dt>
  9101. <dd>-</dd>
  9102. </dl>
  9103. <dl>
  9104. <dt>DP</dt>
  9105. <dd>-</dl>
  9106. <dl>
  9107. <dt>PlayCost</dt>
  9108. <dd>-</dd>
  9109. </dl>
  9110. <dl>
  9111. <dt>DigivolveCost1</dt>
  9112. <dd>-</dd>
  9113. </dl>
  9114. <dl>
  9115. <dt>DigivolveCost2</dt>
  9116. <dd>-</dd>
  9117. </dl>
  9118. </div>
  9119. </div>
  9120. <divclass="cardinfo_bottom">
  9121. <dl>
  9122. <dt>Effect</dt>
  9123. <dd>While you have a Digimon with [X Antibody] in its traits in play, you may use this card without meeting its color requirements. [Main] You may digivolve 1 of your Digimon into a Digimon card with [Dex] or [DeathX] in its name from your trash for its memory cost.</dd>
  9124. </dl>
  9125. <dl>
  9126. <dt>Digivolveeffect</dt>
  9127. <dd>-</dd>
  9128. </dl>
  9129. <dl>
  9130. <dt>Securityeffect</dt>
  9131. <dd>[Security] Add this card to its owner's hand.</dd>
  9132. </dl>
  9133. <dl>
  9134. <dt>Notes</dt>
  9135. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9136. </div>
  9137. </div>
  9138. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9139. </div>
  9140. </div>
  9141. </li>
  9142. <liclass="image_lists_itemdatapage-4">
  9143. <aclass="card_img">
  9144. <imgsrc="../images/cardlist/card/BT9-107.png"alt="BT9-107MetalImpulse"></a>
  9145. <divclass="popup">
  9146. <divclass="card_detailcard_detail_purple_blackmulticolor">
  9147. <divclass="card_detail_inner">
  9148. <ulclass="cardinfo_head">
  9149. <liclass="cardno">BT9-107</li>
  9150. <li>R</li>
  9151. <liclass="cardtype">Option</li>
  9152. </ul>
  9153. <divclass="card_name">MetalImpulse</div>
  9154. <divclass="cardinfo_top">
  9155. <divclass="card_img">
  9156. <imgsrc="../images/cardlist/card/BT9-107.png"alt="BT9-107MetalImpulse"></div>
  9157. <divclass="cardinfo_top_body">
  9158. <dl>
  9159. <dt>Form</dt>
  9160. <dd>-</dd>
  9161. </dl>
  9162. <dl>
  9163. <dt>Attribute</dt>
  9164. <dd>-</dd>
  9165. </dl>
  9166. <dl>
  9167. <dt>Type</dt>
  9168. <dd>-</dd>
  9169. </dl>
  9170. <dl>
  9171. <dt>DP</dt>
  9172. <dd>-</dl>
  9173. <dl>
  9174. <dt>PlayCost</dt>
  9175. <dd>6</dd>
  9176. </dl>
  9177. <dl>
  9178. <dt>DigivolveCost1</dt>
  9179. <dd>-</dd>
  9180. </dl>
  9181. <dl>
  9182. <dt>DigivolveCost2</dt>
  9183. <dd>-</dd>
  9184. </dl>
  9185. </div>
  9186. </div>
  9187. <divclass="cardinfo_bottom">
  9188. <dl>
  9189. <dt>Effect</dt>
  9190. <dd>[Main] Trash up to 3 cards in your hand. For each card trashed by this effect, <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.) Then, delete 1 of your opponent’s level 4 or lower Digimon.</dd>
  9191. </dl>
  9192. <dl>
  9193. <dt>Digivolveeffect</dt>
  9194. <dd>-</dd>
  9195. </dl>
  9196. <dl>
  9197. <dt>Securityeffect</dt>
  9198. <dd>[Security] Activate this card's [Main] effect.</dd>
  9199. </dl>
  9200. <dl>
  9201. <dt>Notes</dt>
  9202. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9203. </div>
  9204. </div>
  9205. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9206. </div>
  9207. </div>
  9208. </li>
  9209. <liclass="image_lists_itemdatapage-4">
  9210. <aclass="card_img">
  9211. <imgsrc="../images/cardlist/card/BT9-108.png"alt="BT9-108EyeoftheGorgon"></a>
  9212. <divclass="popup">
  9213. <divclass="card_detailcard_detail_purple">
  9214. <divclass="card_detail_inner">
  9215. <ulclass="cardinfo_head">
  9216. <liclass="cardno">BT9-108</li>
  9217. <li>C</li>
  9218. <liclass="cardtype">Option</li>
  9219. </ul>
  9220. <divclass="card_name">EyeoftheGorgon</div>
  9221. <divclass="cardinfo_top">
  9222. <divclass="card_img">
  9223. <imgsrc="../images/cardlist/card/BT9-108.png"alt="BT9-108EyeoftheGorgon"></div>
  9224. <divclass="cardinfo_top_body">
  9225. <dl>
  9226. <dt>Form</dt>
  9227. <dd>-</dd>
  9228. </dl>
  9229. <dl>
  9230. <dt>Attribute</dt>
  9231. <dd>-</dd>
  9232. </dl>
  9233. <dl>
  9234. <dt>Type</dt>
  9235. <dd>-</dd>
  9236. </dl>
  9237. <dl>
  9238. <dt>DP</dt>
  9239. <dd>-</dl>
  9240. <dl>
  9241. <dt>PlayCost</dt>
  9242. <dd>8</dd>
  9243. </dl>
  9244. <dl>
  9245. <dt>DigivolveCost1</dt>
  9246. <dd>-</dd>
  9247. </dl>
  9248. <dl>
  9249. <dt>DigivolveCost2</dt>
  9250. <dd>-</dd>
  9251. </dl>
  9252. </div>
  9253. </div>
  9254. <divclass="cardinfo_bottom">
  9255. <dl>
  9256. <dt>Effect</dt>
  9257. <dd>[Main] Delete 1 of your opponent's unsuspended Digimon. If you do, you may play 1 purple level 3 Digimon card from your trash without paying its memory cost. Any [On Play] effects on Digimon played with this effect don't activate.</dd>
  9258. </dl>
  9259. <dl>
  9260. <dt>Digivolveeffect</dt>
  9261. <dd>-</dd>
  9262. </dl>
  9263. <dl>
  9264. <dt>Securityeffect</dt>
  9265. <dd>[Security] Activate this card's [Main] effect.</dd>
  9266. </dl>
  9267. <dl>
  9268. <dt>Notes</dt>
  9269. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9270. </div>
  9271. </div>
  9272. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9273. </div>
  9274. </div>
  9275. </li>
  9276. <liclass="image_lists_itemdatapage-4">
  9277. <aclass="card_img">
  9278. <imgsrc="../images/cardlist/card/BT9-109.png"alt="BT9-109XAntibody"></a>
  9279. <divclass="popup">
  9280. <divclass="card_detailcard_detail_white">
  9281. <divclass="card_detail_inner">
  9282. <ulclass="cardinfo_head">
  9283. <liclass="cardno">BT9-109</li>
  9284. <li>U</li>
  9285. <liclass="cardtype">Option</li>
  9286. </ul>
  9287. <divclass="card_name">XAntibody</div>
  9288. <divclass="cardinfo_top">
  9289. <divclass="card_img">
  9290. <imgsrc="../images/cardlist/card/BT9-109.png"alt="BT9-109XAntibody"></div>
  9291. <divclass="cardinfo_top_body">
  9292. <dl>
  9293. <dt>Form</dt>
  9294. <dd>-</dd>
  9295. </dl>
  9296. <dl>
  9297. <dt>Attribute</dt>
  9298. <dd>-</dd>
  9299. </dl>
  9300. <dl>
  9301. <dt>Type</dt>
  9302. <dd>-</dd>
  9303. </dl>
  9304. <dl>
  9305. <dt>DP</dt>
  9306. <dd>-</dl>
  9307. <dl>
  9308. <dt>PlayCost</dt>
  9309. <dd>-</dd>
  9310. </dl>
  9311. <dl>
  9312. <dt>DigivolveCost1</dt>
  9313. <dd>-</dd>
  9314. </dl>
  9315. <dl>
  9316. <dt>DigivolveCost2</dt>
  9317. <dd>-</dd>
  9318. </dl>
  9319. </div>
  9320. </div>
  9321. <divclass="cardinfo_bottom">
  9322. <dl>
  9323. <dt>Effect</dt>
  9324. <dd>While you have a Digimon in play, you may use this card without meeting its color requirements. [Security] Gain 1 memory, and add this card to its owner's hand. [Main] Place this card under 1 of your Digimon without [X Antibody] in its digivolution cards as its bottom digivolution card.</dd>
  9325. </dl>
  9326. <dl>
  9327. <dt>Digivolveeffect</dt>
  9328. <dd>-</dd>
  9329. </dl>
  9330. <dl>
  9331. <dt>Securityeffect</dt>
  9332. <dd>[All Turns] Effects can't trash [X Antibody] in this Digimon's digivolution cards.[When Attacking] This Digimon can digivolve into a Digimon card with [X Antibody] in its traits in your hand for its digivolution cost.</dd>
  9333. </dl>
  9334. <dl>
  9335. <dt>Notes</dt>
  9336. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9337. </div>
  9338. </div>
  9339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9340. </div>
  9341. </div>
  9342. </li>
  9343. <liclass="image_lists_itemdatapage-4">
  9344. <aclass="card_img">
  9345. <imgsrc="../images/cardlist/card/BT9-109_P1.png"alt="BT9-109XAntibody"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  9346. </a>
  9347. <divclass="popup">
  9348. <divclass="card_detailcard_detail_white">
  9349. <divclass="card_detail_inner">
  9350. <ulclass="cardinfo_head">
  9351. <liclass="cardno">BT9-109</li>
  9352. <li>U</li>
  9353. <liclass="cardtype">Option</li>
  9354. <liclass="cardtypecardParallel">AlternativeArt</li>
  9355. </ul>
  9356. <divclass="card_name">XAntibody</div>
  9357. <divclass="cardinfo_top">
  9358. <divclass="card_img">
  9359. <imgsrc="../images/cardlist/card/BT9-109_P1.png"alt="BT9-109XAntibody"></div>
  9360. <divclass="cardinfo_top_body">
  9361. <dl>
  9362. <dt>Form</dt>
  9363. <dd>-</dd>
  9364. </dl>
  9365. <dl>
  9366. <dt>Attribute</dt>
  9367. <dd>-</dd>
  9368. </dl>
  9369. <dl>
  9370. <dt>Type</dt>
  9371. <dd>-</dd>
  9372. </dl>
  9373. <dl>
  9374. <dt>DP</dt>
  9375. <dd>-</dl>
  9376. <dl>
  9377. <dt>PlayCost</dt>
  9378. <dd>-</dd>
  9379. </dl>
  9380. <dl>
  9381. <dt>DigivolveCost1</dt>
  9382. <dd>-</dd>
  9383. </dl>
  9384. <dl>
  9385. <dt>DigivolveCost2</dt>
  9386. <dd>-</dd>
  9387. </dl>
  9388. </div>
  9389. </div>
  9390. <divclass="cardinfo_bottom">
  9391. <dl>
  9392. <dt>Effect</dt>
  9393. <dd>While you have a Digimon in play, you may use this card without meeting its color requirements. [Security] Gain 1 memory, and add this card to its owner's hand. [Main] Place this card under 1 of your Digimon without [X Antibody] in its digivolution cards as its bottom digivolution card.</dd>
  9394. </dl>
  9395. <dl>
  9396. <dt>Digivolveeffect</dt>
  9397. <dd>-</dd>
  9398. </dl>
  9399. <dl>
  9400. <dt>Securityeffect</dt>
  9401. <dd>[All Turns] Effects can't trash [X Antibody] in this Digimon's digivolution cards.[When Attacking] This Digimon can digivolve into a Digimon card with [X Antibody] in its traits in your hand for its digivolution cost.</dd>
  9402. </dl>
  9403. <dl>
  9404. <dt>Notes</dt>
  9405. <dd><ahref="/products/deck/st-14.php">&rtri;AdvanceDecksBEELZEMON[ST14]</a></dd></dl>
  9406. </div>
  9407. </div>
  9408. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9409. </div>
  9410. </div>
  9411. </li>
  9412. <liclass="image_lists_itemdatapage-4">
  9413. <aclass="card_img">
  9414. <imgsrc="../images/cardlist/card/BT9-110.png"alt="BT9-110XProgram"></a>
  9415. <divclass="popup">
  9416. <divclass="card_detailcard_detail_white">
  9417. <divclass="card_detail_inner">
  9418. <ulclass="cardinfo_head">
  9419. <liclass="cardno">BT9-110</li>
  9420. <li>U</li>
  9421. <liclass="cardtype">Option</li>
  9422. </ul>
  9423. <divclass="card_name">XProgram</div>
  9424. <divclass="cardinfo_top">
  9425. <divclass="card_img">
  9426. <imgsrc="../images/cardlist/card/BT9-110.png"alt="BT9-110XProgram"></div>
  9427. <divclass="cardinfo_top_body">
  9428. <dl>
  9429. <dt>Form</dt>
  9430. <dd>-</dd>
  9431. </dl>
  9432. <dl>
  9433. <dt>Attribute</dt>
  9434. <dd>-</dd>
  9435. </dl>
  9436. <dl>
  9437. <dt>Type</dt>
  9438. <dd>-</dd>
  9439. </dl>
  9440. <dl>
  9441. <dt>DP</dt>
  9442. <dd>-</dl>
  9443. <dl>
  9444. <dt>PlayCost</dt>
  9445. <dd>8</dd>
  9446. </dl>
  9447. <dl>
  9448. <dt>DigivolveCost1</dt>
  9449. <dd>-</dd>
  9450. </dl>
  9451. <dl>
  9452. <dt>DigivolveCost2</dt>
  9453. <dd>-</dd>
  9454. </dl>
  9455. </div>
  9456. </div>
  9457. <divclass="cardinfo_bottom">
  9458. <dl>
  9459. <dt>Effect</dt>
  9460. <dd>While you have a Digimon with [Dex] or [DeathX] in its name in play, you may use this card without meeting its color requirements. [Main] Delete 1 Digimon without [X Antibody] in its traits. If there are 3 or more Digimon in play, delete all Digimon without [X Antibody] in their traits instead.</dd>
  9461. </dl>
  9462. <dl>
  9463. <dt>Digivolveeffect</dt>
  9464. <dd>-</dd>
  9465. </dl>
  9466. <dl>
  9467. <dt>Securityeffect</dt>
  9468. <dd>[Security] Delete 1 of your opponent's Digimon without [X Antibody] in its traits.</dd>
  9469. </dl>
  9470. <dl>
  9471. <dt>Notes</dt>
  9472. <dd><ahref="/products/pack/ver9.php">&rtri;BOOSTERXRECORD[BT09]</a></dd></dl>
  9473. </div>
  9474. </div>
  9475. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9476. </div>
  9477. </div>
  9478. </li>