522018.txt 191 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT14-001.png"alt="BT14-001Koromon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT14-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/BT14-001.png"alt="BT14-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][Once Per Turn] When a card is removed from your opponent's security stack, <Draw 1>.</dd>
  55. </dl>
  56. <dl>
  57. <dt>Securityeffect</dt>
  58. <dd>-</dd>
  59. </dl>
  60. <dl>
  61. <dt>Notes</dt>
  62. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-001_P1.png"alt="BT14-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">BT14-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/BT14-001_P1.png"alt="BT14-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][Once Per Turn] When a card is removed from your opponent's security stack, <Draw 1>.</dd>
  125. </dl>
  126. <dl>
  127. <dt>Securityeffect</dt>
  128. <dd>-</dd>
  129. </dl>
  130. <dl>
  131. <dt>Notes</dt>
  132. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></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/BT14-002.png"alt="BT14-002Bukamon"></a>
  142. <divclass="popup">
  143. <divclass="card_detailcard_detail_blue">
  144. <divclass="card_detail_inner">
  145. <ulclass="cardinfo_head">
  146. <liclass="cardno">BT14-002</li>
  147. <li>U</li>
  148. <liclass="cardtype">Digi-Egg</li>
  149. <liclass="cardlv">Lv.2</li>
  150. </ul>
  151. <divclass="card_name">Bukamon</div>
  152. <divclass="cardinfo_top">
  153. <divclass="card_img">
  154. <imgsrc="../images/cardlist/card/BT14-002.png"alt="BT14-002Bukamon"></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] While your opponent has no Digimon with more digivolution cards than this Digimon, this Digimon gains <Jamming>.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-002_P1.png"alt="BT14-002Bukamon"><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">BT14-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">Bukamon</div>
  222. <divclass="cardinfo_top">
  223. <divclass="card_img">
  224. <imgsrc="../images/cardlist/card/BT14-002_P1.png"alt="BT14-002Bukamon"></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] While your opponent has no Digimon with more digivolution cards than this Digimon, this Digimon gains <Jamming>.</dd>
  263. </dl>
  264. <dl>
  265. <dt>Securityeffect</dt>
  266. <dd>-</dd>
  267. </dl>
  268. <dl>
  269. <dt>Notes</dt>
  270. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  271. </div>
  272. </div>
  273. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  274. </div>
  275. </div>
  276. </li>
  277. <liclass="image_lists_itemdatapage-1">
  278. <aclass="card_img">
  279. <imgsrc="../images/cardlist/card/BT14-003.png"alt="BT14-003Tokomon"></a>
  280. <divclass="popup">
  281. <divclass="card_detailcard_detail_yellow">
  282. <divclass="card_detail_inner">
  283. <ulclass="cardinfo_head">
  284. <liclass="cardno">BT14-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</div>
  290. <divclass="cardinfo_top">
  291. <divclass="card_img">
  292. <imgsrc="../images/cardlist/card/BT14-003.png"alt="BT14-003Tokomon"></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</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, <Draw 1>.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-003_P1.png"alt="BT14-003Tokomon"><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">BT14-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</div>
  360. <divclass="cardinfo_top">
  361. <divclass="card_img">
  362. <imgsrc="../images/cardlist/card/BT14-003_P1.png"alt="BT14-003Tokomon"></div>
  363. <divclass="cardinfo_top_body">
  364. <dl>
  365. <dt>Form</dt>
  366. <dd>In-Training</dd>
  367. </dl>
  368. <dl>
  369. <dt>Attribute</dt>
  370. <dd>-</dd>
  371. </dl>
  372. <dl>
  373. <dt>Type</dt>
  374. <dd>Lesser</dd>
  375. </dl>
  376. <dl>
  377. <dt>DP</dt>
  378. <dd>-</dl>
  379. <dl>
  380. <dt>PlayCost</dt>
  381. <dd>-</dd>
  382. </dl>
  383. <dl>
  384. <dt>DigivolveCost1</dt>
  385. <dd>-</dd>
  386. </dl>
  387. <dl>
  388. <dt>DigivolveCost2</dt>
  389. <dd>-</dd>
  390. </dl>
  391. </div>
  392. </div>
  393. <divclass="cardinfo_bottom">
  394. <dl>
  395. <dt>Effect</dt>
  396. <dd>-</dd>
  397. </dl>
  398. <dl>
  399. <dt>Digivolveeffect</dt>
  400. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, <Draw 1>.</dd>
  401. </dl>
  402. <dl>
  403. <dt>Securityeffect</dt>
  404. <dd>-</dd>
  405. </dl>
  406. <dl>
  407. <dt>Notes</dt>
  408. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  409. </div>
  410. </div>
  411. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  412. </div>
  413. </div>
  414. </li>
  415. <liclass="image_lists_itemdatapage-1">
  416. <aclass="card_img">
  417. <imgsrc="../images/cardlist/card/BT14-004.png"alt="BT14-004Tanemon"></a>
  418. <divclass="popup">
  419. <divclass="card_detailcard_detail_green">
  420. <divclass="card_detail_inner">
  421. <ulclass="cardinfo_head">
  422. <liclass="cardno">BT14-004</li>
  423. <li>U</li>
  424. <liclass="cardtype">Digi-Egg</li>
  425. <liclass="cardlv">Lv.2</li>
  426. </ul>
  427. <divclass="card_name">Tanemon</div>
  428. <divclass="cardinfo_top">
  429. <divclass="card_img">
  430. <imgsrc="../images/cardlist/card/BT14-004.png"alt="BT14-004Tanemon"></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>Bulb</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][Once Per Turn] When one of your effects suspends a Tamer, this Digimon gets +2000 DP for the turn.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-004_P1.png"alt="BT14-004Tanemon"><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">BT14-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">Tanemon</div>
  498. <divclass="cardinfo_top">
  499. <divclass="card_img">
  500. <imgsrc="../images/cardlist/card/BT14-004_P1.png"alt="BT14-004Tanemon"></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>Bulb</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][Once Per Turn] When one of your effects suspends a Tamer, this Digimon gets +2000 DP for the turn.</dd>
  539. </dl>
  540. <dl>
  541. <dt>Securityeffect</dt>
  542. <dd>-</dd>
  543. </dl>
  544. <dl>
  545. <dt>Notes</dt>
  546. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  547. </div>
  548. </div>
  549. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  550. </div>
  551. </div>
  552. </li>
  553. <liclass="image_lists_itemdatapage-1">
  554. <aclass="card_img">
  555. <imgsrc="../images/cardlist/card/BT14-005.png"alt="BT14-005Missimon"></a>
  556. <divclass="popup">
  557. <divclass="card_detailcard_detail_black">
  558. <divclass="card_detail_inner">
  559. <ulclass="cardinfo_head">
  560. <liclass="cardno">BT14-005</li>
  561. <li>U</li>
  562. <liclass="cardtype">Digi-Egg</li>
  563. <liclass="cardlv">Lv.2</li>
  564. </ul>
  565. <divclass="card_name">Missimon</div>
  566. <divclass="cardinfo_top">
  567. <divclass="card_img">
  568. <imgsrc="../images/cardlist/card/BT14-005.png"alt="BT14-005Missimon"></div>
  569. <divclass="cardinfo_top_body">
  570. <dl>
  571. <dt>Form</dt>
  572. <dd>In-Training</dd>
  573. </dl>
  574. <dl>
  575. <dt>Attribute</dt>
  576. <dd>-</dd>
  577. </dl>
  578. <dl>
  579. <dt>Type</dt>
  580. <dd>Machine</dd>
  581. </dl>
  582. <dl>
  583. <dt>DP</dt>
  584. <dd>-</dl>
  585. <dl>
  586. <dt>PlayCost</dt>
  587. <dd>-</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost1</dt>
  591. <dd>-</dd>
  592. </dl>
  593. <dl>
  594. <dt>DigivolveCost2</dt>
  595. <dd>-</dd>
  596. </dl>
  597. </div>
  598. </div>
  599. <divclass="cardinfo_bottom">
  600. <dl>
  601. <dt>Effect</dt>
  602. <dd>-</dd>
  603. </dl>
  604. <dl>
  605. <dt>Digivolveeffect</dt>
  606. <dd>[When Attacking][Once Per Turn] By returning 3 cards with the [D-Brigade] or [DigiPolice] trait from your trash to the top of the deck, this Digimon gets +2000 DP for the turn.</dd>
  607. </dl>
  608. <dl>
  609. <dt>Securityeffect</dt>
  610. <dd>-</dd>
  611. </dl>
  612. <dl>
  613. <dt>Notes</dt>
  614. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  615. </div>
  616. </div>
  617. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  618. </div>
  619. </div>
  620. </li>
  621. <liclass="image_lists_itemdatapage-1">
  622. <aclass="card_img">
  623. <imgsrc="../images/cardlist/card/BT14-005_P1.png"alt="BT14-005Missimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  624. </a>
  625. <divclass="popup">
  626. <divclass="card_detailcard_detail_black">
  627. <divclass="card_detail_inner">
  628. <ulclass="cardinfo_head">
  629. <liclass="cardno">BT14-005</li>
  630. <li>U</li>
  631. <liclass="cardtype">Digi-Egg</li>
  632. <liclass="cardlv">Lv.2</li>
  633. <liclass="cardtypecardParallel">AlternativeArt</li>
  634. </ul>
  635. <divclass="card_name">Missimon</div>
  636. <divclass="cardinfo_top">
  637. <divclass="card_img">
  638. <imgsrc="../images/cardlist/card/BT14-005_P1.png"alt="BT14-005Missimon"></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>Machine</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>[When Attacking][Once Per Turn] By returning 3 cards with the [D-Brigade] or [DigiPolice] trait from your trash to the top of the deck, this Digimon gets +2000 DP for the turn.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-006.png"alt="BT14-006Bowmon"></a>
  694. <divclass="popup">
  695. <divclass="card_detailcard_detail_purple">
  696. <divclass="card_detail_inner">
  697. <ulclass="cardinfo_head">
  698. <liclass="cardno">BT14-006</li>
  699. <li>U</li>
  700. <liclass="cardtype">Digi-Egg</li>
  701. <liclass="cardlv">Lv.2</li>
  702. </ul>
  703. <divclass="card_name">Bowmon</div>
  704. <divclass="cardinfo_top">
  705. <divclass="card_img">
  706. <imgsrc="../images/cardlist/card/BT14-006.png"alt="BT14-006Bowmon"></div>
  707. <divclass="cardinfo_top_body">
  708. <dl>
  709. <dt>Form</dt>
  710. <dd>In-Training</dd>
  711. </dl>
  712. <dl>
  713. <dt>Attribute</dt>
  714. <dd>-</dd>
  715. </dl>
  716. <dl>
  717. <dt>Type</dt>
  718. <dd>Lesser/XAntibody/SoC</dd>
  719. </dl>
  720. <dl>
  721. <dt>DP</dt>
  722. <dd>-</dl>
  723. <dl>
  724. <dt>PlayCost</dt>
  725. <dd>-</dd>
  726. </dl>
  727. <dl>
  728. <dt>DigivolveCost1</dt>
  729. <dd>-</dd>
  730. </dl>
  731. <dl>
  732. <dt>DigivolveCost2</dt>
  733. <dd>-</dd>
  734. </dl>
  735. </div>
  736. </div>
  737. <divclass="cardinfo_bottom">
  738. <dl>
  739. <dt>Effect</dt>
  740. <dd>-</dd>
  741. </dl>
  742. <dl>
  743. <dt>Digivolveeffect</dt>
  744. <dd>[Your Turn] When a Digimon card with the [Dark Animal] or [SoC] trait is trashed from your hand, this Digimon may digivolve into that card.</dd>
  745. </dl>
  746. <dl>
  747. <dt>Securityeffect</dt>
  748. <dd>-</dd>
  749. </dl>
  750. <dl>
  751. <dt>Notes</dt>
  752. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  753. </div>
  754. </div>
  755. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  756. </div>
  757. </div>
  758. </li>
  759. <liclass="image_lists_itemdatapage-1">
  760. <aclass="card_img">
  761. <imgsrc="../images/cardlist/card/BT14-006_P1.png"alt="BT14-006Bowmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  762. </a>
  763. <divclass="popup">
  764. <divclass="card_detailcard_detail_purple">
  765. <divclass="card_detail_inner">
  766. <ulclass="cardinfo_head">
  767. <liclass="cardno">BT14-006</li>
  768. <li>U</li>
  769. <liclass="cardtype">Digi-Egg</li>
  770. <liclass="cardlv">Lv.2</li>
  771. <liclass="cardtypecardParallel">AlternativeArt</li>
  772. </ul>
  773. <divclass="card_name">Bowmon</div>
  774. <divclass="cardinfo_top">
  775. <divclass="card_img">
  776. <imgsrc="../images/cardlist/card/BT14-006_P1.png"alt="BT14-006Bowmon"></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/XAntibody/SoC</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>[Your Turn] When a Digimon card with the [Dark Animal] or [SoC] trait is trashed from your hand, this Digimon may digivolve into that card.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-007.png"alt="BT14-007Agumon"></a>
  832. <divclass="popup">
  833. <divclass="card_detailcard_detail_red">
  834. <divclass="card_detail_inner">
  835. <ulclass="cardinfo_head">
  836. <liclass="cardno">BT14-007</li>
  837. <li>SR</li>
  838. <liclass="cardtype">Digimon</li>
  839. <liclass="cardlv">Lv.3</li>
  840. </ul>
  841. <divclass="card_name">Agumon</div>
  842. <divclass="cardinfo_top">
  843. <divclass="card_img">
  844. <imgsrc="../images/cardlist/card/BT14-007.png"alt="BT14-007Agumon"></div>
  845. <divclass="cardinfo_top_body">
  846. <dl>
  847. <dt>Form</dt>
  848. <dd>Rookie</dd>
  849. </dl>
  850. <dl>
  851. <dt>Attribute</dt>
  852. <dd>Vaccine</dd>
  853. </dl>
  854. <dl>
  855. <dt>Type</dt>
  856. <dd>Reptile</dd>
  857. </dl>
  858. <dl>
  859. <dt>DP</dt>
  860. <dd>1000</dl>
  861. <dl>
  862. <dt>PlayCost</dt>
  863. <dd>3</dd>
  864. </dl>
  865. <dl>
  866. <dt>DigivolveCost1</dt>
  867. <dd>0fromLv.2</dd>
  868. </dl>
  869. <dl>
  870. <dt>DigivolveCost2</dt>
  871. <dd>-</dd>
  872. </dl>
  873. </div>
  874. </div>
  875. <divclass="cardinfo_bottom">
  876. <dl>
  877. <dt>Effect</dt>
  878. <dd>[Digivolve][Koromon]: Cost 0<br>[Start of Your Main Phase] If you have a Tamer with [Tai Kamiya] in its name, this Digimon may digivolve into [Greymon] in your hand without paying the cost.</dd>
  879. </dl>
  880. <dl>
  881. <dt>Digivolveeffect</dt>
  882. <dd>[Your Turn] While this Digimon has [Greymon] or [Omnimon] in its name, it gets +2000 DP.</dd>
  883. </dl>
  884. <dl>
  885. <dt>Securityeffect</dt>
  886. <dd>-</dd>
  887. </dl>
  888. <dl>
  889. <dt>Notes</dt>
  890. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  891. </div>
  892. </div>
  893. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  894. </div>
  895. </div>
  896. </li>
  897. <liclass="image_lists_itemdatapage-1">
  898. <aclass="card_img">
  899. <imgsrc="../images/cardlist/card/BT14-007_P1.png"alt="BT14-007Agumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  900. </a>
  901. <divclass="popup">
  902. <divclass="card_detailcard_detail_red">
  903. <divclass="card_detail_inner">
  904. <ulclass="cardinfo_head">
  905. <liclass="cardno">BT14-007</li>
  906. <li>SR</li>
  907. <liclass="cardtype">Digimon</li>
  908. <liclass="cardlv">Lv.3</li>
  909. <liclass="cardtypecardParallel">AlternativeArt</li>
  910. </ul>
  911. <divclass="card_name">Agumon</div>
  912. <divclass="cardinfo_top">
  913. <divclass="card_img">
  914. <imgsrc="../images/cardlist/card/BT14-007_P1.png"alt="BT14-007Agumon"></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>Vaccine</dd>
  923. </dl>
  924. <dl>
  925. <dt>Type</dt>
  926. <dd>Reptile</dd>
  927. </dl>
  928. <dl>
  929. <dt>DP</dt>
  930. <dd>1000</dl>
  931. <dl>
  932. <dt>PlayCost</dt>
  933. <dd>3</dd>
  934. </dl>
  935. <dl>
  936. <dt>DigivolveCost1</dt>
  937. <dd>0fromLv.2</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>[Digivolve][Koromon]: Cost 0<br>[Start of Your Main Phase] If you have a Tamer with [Tai Kamiya] in its name, this Digimon may digivolve into [Greymon] in your hand without paying the cost.</dd>
  949. </dl>
  950. <dl>
  951. <dt>Digivolveeffect</dt>
  952. <dd>[Your Turn] While this Digimon has [Greymon] or [Omnimon] in its name, it gets +2000 DP.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-008.png"alt="BT14-008Gizamon"></a>
  970. <divclass="popup">
  971. <divclass="card_detailcard_detail_red">
  972. <divclass="card_detail_inner">
  973. <ulclass="cardinfo_head">
  974. <liclass="cardno">BT14-008</li>
  975. <li>C</li>
  976. <liclass="cardtype">Digimon</li>
  977. <liclass="cardlv">Lv.3</li>
  978. </ul>
  979. <divclass="card_name">Gizamon</div>
  980. <divclass="cardinfo_top">
  981. <divclass="card_img">
  982. <imgsrc="../images/cardlist/card/BT14-008.png"alt="BT14-008Gizamon"></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>Virus</dd>
  991. </dl>
  992. <dl>
  993. <dt>Type</dt>
  994. <dd>SeaAnimal</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>0fromLv.2</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>-</dd>
  1017. </dl>
  1018. <dl>
  1019. <dt>Digivolveeffect</dt>
  1020. <dd>[When Attacking][Once Per Turn] Delete 1 of your opponent's Digimon with 3000 DP or less.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-009.png"alt="BT14-009Gotsumon"></a>
  1038. <divclass="popup">
  1039. <divclass="card_detailcard_detail_red">
  1040. <divclass="card_detail_inner">
  1041. <ulclass="cardinfo_head">
  1042. <liclass="cardno">BT14-009</li>
  1043. <li>C</li>
  1044. <liclass="cardtype">Digimon</li>
  1045. <liclass="cardlv">Lv.3</li>
  1046. </ul>
  1047. <divclass="card_name">Gotsumon</div>
  1048. <divclass="cardinfo_top">
  1049. <divclass="card_img">
  1050. <imgsrc="../images/cardlist/card/BT14-009.png"alt="BT14-009Gotsumon"></div>
  1051. <divclass="cardinfo_top_body">
  1052. <dl>
  1053. <dt>Form</dt>
  1054. <dd>Rookie</dd>
  1055. </dl>
  1056. <dl>
  1057. <dt>Attribute</dt>
  1058. <dd>Data</dd>
  1059. </dl>
  1060. <dl>
  1061. <dt>Type</dt>
  1062. <dd>Rock</dd>
  1063. </dl>
  1064. <dl>
  1065. <dt>DP</dt>
  1066. <dd>2000</dl>
  1067. <dl>
  1068. <dt>PlayCost</dt>
  1069. <dd>3</dd>
  1070. </dl>
  1071. <dl>
  1072. <dt>DigivolveCost1</dt>
  1073. <dd>0fromLv.2</dd>
  1074. </dl>
  1075. <dl>
  1076. <dt>DigivolveCost2</dt>
  1077. <dd>-</dd>
  1078. </dl>
  1079. </div>
  1080. </div>
  1081. <divclass="cardinfo_bottom">
  1082. <dl>
  1083. <dt>Effect</dt>
  1084. <dd>[All Turns] Players can’t play Digimon by effects.</dd>
  1085. </dl>
  1086. <dl>
  1087. <dt>Digivolveeffect</dt>
  1088. <dd>-</dd>
  1089. </dl>
  1090. <dl>
  1091. <dt>Securityeffect</dt>
  1092. <dd>-</dd>
  1093. </dl>
  1094. <dl>
  1095. <dt>Notes</dt>
  1096. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1097. </div>
  1098. </div>
  1099. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1100. </div>
  1101. </div>
  1102. </li>
  1103. <liclass="image_lists_itemdatapage-1">
  1104. <aclass="card_img">
  1105. <imgsrc="../images/cardlist/card/BT14-010.png"alt="BT14-010Kokatorimon"></a>
  1106. <divclass="popup">
  1107. <divclass="card_detailcard_detail_red">
  1108. <divclass="card_detail_inner">
  1109. <ulclass="cardinfo_head">
  1110. <liclass="cardno">BT14-010</li>
  1111. <li>C</li>
  1112. <liclass="cardtype">Digimon</li>
  1113. <liclass="cardlv">Lv.4</li>
  1114. </ul>
  1115. <divclass="card_name">Kokatorimon</div>
  1116. <divclass="cardinfo_top">
  1117. <divclass="card_img">
  1118. <imgsrc="../images/cardlist/card/BT14-010.png"alt="BT14-010Kokatorimon"></div>
  1119. <divclass="cardinfo_top_body">
  1120. <dl>
  1121. <dt>Form</dt>
  1122. <dd>Champion</dd>
  1123. </dl>
  1124. <dl>
  1125. <dt>Attribute</dt>
  1126. <dd>Data</dd>
  1127. </dl>
  1128. <dl>
  1129. <dt>Type</dt>
  1130. <dd>GiantBird</dd>
  1131. </dl>
  1132. <dl>
  1133. <dt>DP</dt>
  1134. <dd>5000</dl>
  1135. <dl>
  1136. <dt>PlayCost</dt>
  1137. <dd>4</dd>
  1138. </dl>
  1139. <dl>
  1140. <dt>DigivolveCost1</dt>
  1141. <dd>2fromLv.3</dd>
  1142. </dl>
  1143. <dl>
  1144. <dt>DigivolveCost2</dt>
  1145. <dd>-</dd>
  1146. </dl>
  1147. </div>
  1148. </div>
  1149. <divclass="cardinfo_bottom">
  1150. <dl>
  1151. <dt>Effect</dt>
  1152. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  1153. </dl>
  1154. <dl>
  1155. <dt>Digivolveeffect</dt>
  1156. <dd>-</dd>
  1157. </dl>
  1158. <dl>
  1159. <dt>Securityeffect</dt>
  1160. <dd>-</dd>
  1161. </dl>
  1162. <dl>
  1163. <dt>Notes</dt>
  1164. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1165. </div>
  1166. </div>
  1167. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1168. </div>
  1169. </div>
  1170. </li>
  1171. <liclass="image_lists_itemdatapage-1">
  1172. <aclass="card_img">
  1173. <imgsrc="../images/cardlist/card/BT14-011.png"alt="BT14-011Monochromon"></a>
  1174. <divclass="popup">
  1175. <divclass="card_detailcard_detail_red">
  1176. <divclass="card_detail_inner">
  1177. <ulclass="cardinfo_head">
  1178. <liclass="cardno">BT14-011</li>
  1179. <li>C</li>
  1180. <liclass="cardtype">Digimon</li>
  1181. <liclass="cardlv">Lv.4</li>
  1182. </ul>
  1183. <divclass="card_name">Monochromon</div>
  1184. <divclass="cardinfo_top">
  1185. <divclass="card_img">
  1186. <imgsrc="../images/cardlist/card/BT14-011.png"alt="BT14-011Monochromon"></div>
  1187. <divclass="cardinfo_top_body">
  1188. <dl>
  1189. <dt>Form</dt>
  1190. <dd>Champion</dd>
  1191. </dl>
  1192. <dl>
  1193. <dt>Attribute</dt>
  1194. <dd>Data</dd>
  1195. </dl>
  1196. <dl>
  1197. <dt>Type</dt>
  1198. <dd>Ankylosaur</dd>
  1199. </dl>
  1200. <dl>
  1201. <dt>DP</dt>
  1202. <dd>5000</dl>
  1203. <dl>
  1204. <dt>PlayCost</dt>
  1205. <dd>4</dd>
  1206. </dl>
  1207. <dl>
  1208. <dt>DigivolveCost1</dt>
  1209. <dd>2fromLv.3</dd>
  1210. </dl>
  1211. <dl>
  1212. <dt>DigivolveCost2</dt>
  1213. <dd>-</dd>
  1214. </dl>
  1215. </div>
  1216. </div>
  1217. <divclass="cardinfo_bottom">
  1218. <dl>
  1219. <dt>Effect</dt>
  1220. <dd><Blocker> (At blocker timing, by suspending this Digimon, it becomes the attack target.)</dd>
  1221. </dl>
  1222. <dl>
  1223. <dt>Digivolveeffect</dt>
  1224. <dd>-</dd>
  1225. </dl>
  1226. <dl>
  1227. <dt>Securityeffect</dt>
  1228. <dd>-</dd>
  1229. </dl>
  1230. <dl>
  1231. <dt>Notes</dt>
  1232. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1233. </div>
  1234. </div>
  1235. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1236. </div>
  1237. </div>
  1238. </li>
  1239. <liclass="image_lists_itemdatapage-1">
  1240. <aclass="card_img">
  1241. <imgsrc="../images/cardlist/card/BT14-012.png"alt="BT14-012Greymon"></a>
  1242. <divclass="popup">
  1243. <divclass="card_detailcard_detail_red">
  1244. <divclass="card_detail_inner">
  1245. <ulclass="cardinfo_head">
  1246. <liclass="cardno">BT14-012</li>
  1247. <li>R</li>
  1248. <liclass="cardtype">Digimon</li>
  1249. <liclass="cardlv">Lv.4</li>
  1250. </ul>
  1251. <divclass="card_name">Greymon</div>
  1252. <divclass="cardinfo_top">
  1253. <divclass="card_img">
  1254. <imgsrc="../images/cardlist/card/BT14-012.png"alt="BT14-012Greymon"></div>
  1255. <divclass="cardinfo_top_body">
  1256. <dl>
  1257. <dt>Form</dt>
  1258. <dd>Champion</dd>
  1259. </dl>
  1260. <dl>
  1261. <dt>Attribute</dt>
  1262. <dd>Vaccine</dd>
  1263. </dl>
  1264. <dl>
  1265. <dt>Type</dt>
  1266. <dd>Dinosaur</dd>
  1267. </dl>
  1268. <dl>
  1269. <dt>DP</dt>
  1270. <dd>5000</dl>
  1271. <dl>
  1272. <dt>PlayCost</dt>
  1273. <dd>5</dd>
  1274. </dl>
  1275. <dl>
  1276. <dt>DigivolveCost1</dt>
  1277. <dd>2fromLv.3</dd>
  1278. </dl>
  1279. <dl>
  1280. <dt>DigivolveCost2</dt>
  1281. <dd>-</dd>
  1282. </dl>
  1283. </div>
  1284. </div>
  1285. <divclass="cardinfo_bottom">
  1286. <dl>
  1287. <dt>Effect</dt>
  1288. <dd>[Digivolve] Lv.3 w/[Agumon] in name: Cost 2<br>[When Attacking] This Digimon gets +2000 DP for the turn. Then, if you have a Tamer with [Tai Kamiya] in its name, gain 1 memory.</dd>
  1289. </dl>
  1290. <dl>
  1291. <dt>Digivolveeffect</dt>
  1292. <dd>[Your Turn] While this Digimon has [Greymon] or [Omnimon] in its name, it gets +2000 DP.</dd>
  1293. </dl>
  1294. <dl>
  1295. <dt>Securityeffect</dt>
  1296. <dd>-</dd>
  1297. </dl>
  1298. <dl>
  1299. <dt>Notes</dt>
  1300. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1301. </div>
  1302. </div>
  1303. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1304. </div>
  1305. </div>
  1306. </li>
  1307. <liclass="image_lists_itemdatapage-1">
  1308. <aclass="card_img">
  1309. <imgsrc="../images/cardlist/card/BT14-013.png"alt="BT14-013Tyrannomon"></a>
  1310. <divclass="popup">
  1311. <divclass="card_detailcard_detail_red_greenmulticolor">
  1312. <divclass="card_detail_inner">
  1313. <ulclass="cardinfo_head">
  1314. <liclass="cardno">BT14-013</li>
  1315. <li>U</li>
  1316. <liclass="cardtype">Digimon</li>
  1317. <liclass="cardlv">Lv.4</li>
  1318. </ul>
  1319. <divclass="card_name">Tyrannomon</div>
  1320. <divclass="cardinfo_top">
  1321. <divclass="card_img">
  1322. <imgsrc="../images/cardlist/card/BT14-013.png"alt="BT14-013Tyrannomon"></div>
  1323. <divclass="cardinfo_top_body">
  1324. <dl>
  1325. <dt>Form</dt>
  1326. <dd>Champion</dd>
  1327. </dl>
  1328. <dl>
  1329. <dt>Attribute</dt>
  1330. <dd>Data</dd>
  1331. </dl>
  1332. <dl>
  1333. <dt>Type</dt>
  1334. <dd>Dinosaur</dd>
  1335. </dl>
  1336. <dl>
  1337. <dt>DP</dt>
  1338. <dd>5000</dl>
  1339. <dl>
  1340. <dt>PlayCost</dt>
  1341. <dd>5</dd>
  1342. </dl>
  1343. <dl>
  1344. <dt>DigivolveCost1</dt>
  1345. <dd>3fromLv.3</dd>
  1346. </dl>
  1347. <dl>
  1348. <dt>DigivolveCost2</dt>
  1349. <dd>3fromLv.3</dd>
  1350. </dl>
  1351. </div>
  1352. </div>
  1353. <divclass="cardinfo_bottom">
  1354. <dl>
  1355. <dt>Effect</dt>
  1356. <dd>[Start of Your Main Phase] For the turn, when this Digimon would digivolve into a card with [Tyrannomon] in its name, or the [Dinosaur] or [Ceratopsian] trait, reduce the digivolution cost by 1.</dd>
  1357. </dl>
  1358. <dl>
  1359. <dt>Digivolveeffect</dt>
  1360. <dd>[End of Your Turn][Once Per Turn] If this Digimon has [Tyrannomon] in its name, or the [Dinosaur] or [Ceratopsian] trait, it may attack.</dd>
  1361. </dl>
  1362. <dl>
  1363. <dt>Securityeffect</dt>
  1364. <dd>-</dd>
  1365. </dl>
  1366. <dl>
  1367. <dt>Notes</dt>
  1368. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1369. </div>
  1370. </div>
  1371. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1372. </div>
  1373. </div>
  1374. </li>
  1375. <liclass="image_lists_itemdatapage-1">
  1376. <aclass="card_img">
  1377. <imgsrc="../images/cardlist/card/BT14-014.png"alt="BT14-014MetalGreymonACE"></a>
  1378. <divclass="popup">
  1379. <divclass="card_detailcard_detail_red">
  1380. <divclass="card_detail_inner">
  1381. <ulclass="cardinfo_head">
  1382. <liclass="cardno">BT14-014</li>
  1383. <li>SR</li>
  1384. <liclass="cardtype">Digimon</li>
  1385. <liclass="cardlv">Lv.5</li>
  1386. </ul>
  1387. <divclass="card_name">MetalGreymonACE</div>
  1388. <divclass="cardinfo_top">
  1389. <divclass="card_img">
  1390. <imgsrc="../images/cardlist/card/BT14-014.png"alt="BT14-014MetalGreymonACE"></div>
  1391. <divclass="cardinfo_top_body">
  1392. <dl>
  1393. <dt>Form</dt>
  1394. <dd>Ultimate</dd>
  1395. </dl>
  1396. <dl>
  1397. <dt>Attribute</dt>
  1398. <dd>Vaccine</dd>
  1399. </dl>
  1400. <dl>
  1401. <dt>Type</dt>
  1402. <dd>Cyborg</dd>
  1403. </dl>
  1404. <dl>
  1405. <dt>DP</dt>
  1406. <dd>8000</dl>
  1407. <dl>
  1408. <dt>PlayCost</dt>
  1409. <dd>4</dd>
  1410. </dl>
  1411. <dl>
  1412. <dt>DigivolveCost1</dt>
  1413. <dd>3fromLv.4</dd>
  1414. </dl>
  1415. <dl>
  1416. <dt>DigivolveCost2</dt>
  1417. <dd>-</dd>
  1418. </dl>
  1419. </div>
  1420. </div>
  1421. <divclass="cardinfo_bottom">
  1422. <dl>
  1423. <dt>Effect</dt>
  1424. <dd>[Digivolve] Lv.4 w/[Greymon] in name: Cost 3<br>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br>[On Play][When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less.</dd>
  1425. </dl>
  1426. <dl>
  1427. <dt>Digivolveeffect</dt>
  1428. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  1429. </dl>
  1430. <dl>
  1431. <dt>Securityeffect</dt>
  1432. <dd>-</dd>
  1433. </dl>
  1434. <dl>
  1435. <dt>Notes</dt>
  1436. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1437. </div>
  1438. </div>
  1439. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1440. </div>
  1441. </div>
  1442. </li>
  1443. <liclass="image_lists_itemdatapage-1">
  1444. <aclass="card_img">
  1445. <imgsrc="../images/cardlist/card/BT14-014_P1.png"alt="BT14-014MetalGreymonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1446. </a>
  1447. <divclass="popup">
  1448. <divclass="card_detailcard_detail_red">
  1449. <divclass="card_detail_inner">
  1450. <ulclass="cardinfo_head">
  1451. <liclass="cardno">BT14-014</li>
  1452. <li>SR</li>
  1453. <liclass="cardtype">Digimon</li>
  1454. <liclass="cardlv">Lv.5</li>
  1455. <liclass="cardtypecardParallel">AlternativeArt</li>
  1456. </ul>
  1457. <divclass="card_name">MetalGreymonACE</div>
  1458. <divclass="cardinfo_top">
  1459. <divclass="card_img">
  1460. <imgsrc="../images/cardlist/card/BT14-014_P1.png"alt="BT14-014MetalGreymonACE"></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>Vaccine</dd>
  1469. </dl>
  1470. <dl>
  1471. <dt>Type</dt>
  1472. <dd>Cyborg</dd>
  1473. </dl>
  1474. <dl>
  1475. <dt>DP</dt>
  1476. <dd>8000</dl>
  1477. <dl>
  1478. <dt>PlayCost</dt>
  1479. <dd>4</dd>
  1480. </dl>
  1481. <dl>
  1482. <dt>DigivolveCost1</dt>
  1483. <dd>3fromLv.4</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] Lv.4 w/[Greymon] in name: Cost 3<br>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br>[On Play][When Digivolving] Delete 1 of your opponent's Digimon with 6000 DP or less.</dd>
  1495. </dl>
  1496. <dl>
  1497. <dt>Digivolveeffect</dt>
  1498. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-015.png"alt="BT14-015Megadramon"></a>
  1516. <divclass="popup">
  1517. <divclass="card_detailcard_detail_red">
  1518. <divclass="card_detail_inner">
  1519. <ulclass="cardinfo_head">
  1520. <liclass="cardno">BT14-015</li>
  1521. <li>C</li>
  1522. <liclass="cardtype">Digimon</li>
  1523. <liclass="cardlv">Lv.5</li>
  1524. </ul>
  1525. <divclass="card_name">Megadramon</div>
  1526. <divclass="cardinfo_top">
  1527. <divclass="card_img">
  1528. <imgsrc="../images/cardlist/card/BT14-015.png"alt="BT14-015Megadramon"></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>Virus</dd>
  1537. </dl>
  1538. <dl>
  1539. <dt>Type</dt>
  1540. <dd>Cyborg</dd>
  1541. </dl>
  1542. <dl>
  1543. <dt>DP</dt>
  1544. <dd>7000</dl>
  1545. <dl>
  1546. <dt>PlayCost</dt>
  1547. <dd>6</dd>
  1548. </dl>
  1549. <dl>
  1550. <dt>DigivolveCost1</dt>
  1551. <dd>3fromLv.4</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>-</dd>
  1563. </dl>
  1564. <dl>
  1565. <dt>Digivolveeffect</dt>
  1566. <dd>[When Attacking][Once Per Turn] Delete 1 of your opponent's Digimon with 5000 DP or less.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-016.png"alt="BT14-016Triceramon"></a>
  1584. <divclass="popup">
  1585. <divclass="card_detailcard_detail_red">
  1586. <divclass="card_detail_inner">
  1587. <ulclass="cardinfo_head">
  1588. <liclass="cardno">BT14-016</li>
  1589. <li>C</li>
  1590. <liclass="cardtype">Digimon</li>
  1591. <liclass="cardlv">Lv.5</li>
  1592. </ul>
  1593. <divclass="card_name">Triceramon</div>
  1594. <divclass="cardinfo_top">
  1595. <divclass="card_img">
  1596. <imgsrc="../images/cardlist/card/BT14-016.png"alt="BT14-016Triceramon"></div>
  1597. <divclass="cardinfo_top_body">
  1598. <dl>
  1599. <dt>Form</dt>
  1600. <dd>Ultimate</dd>
  1601. </dl>
  1602. <dl>
  1603. <dt>Attribute</dt>
  1604. <dd>Data</dd>
  1605. </dl>
  1606. <dl>
  1607. <dt>Type</dt>
  1608. <dd>Ceratopsian</dd>
  1609. </dl>
  1610. <dl>
  1611. <dt>DP</dt>
  1612. <dd>7000</dl>
  1613. <dl>
  1614. <dt>PlayCost</dt>
  1615. <dd>7</dd>
  1616. </dl>
  1617. <dl>
  1618. <dt>DigivolveCost1</dt>
  1619. <dd>2fromLv.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><Raid> (When this Digimon attacks, you may switch the target of attack to 1 of your opponent's unsuspended Digimon with the highest 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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-017.png"alt="BT14-017Dinorexmon"></a>
  1652. <divclass="popup">
  1653. <divclass="card_detailcard_detail_red">
  1654. <divclass="card_detail_inner">
  1655. <ulclass="cardinfo_head">
  1656. <liclass="cardno">BT14-017</li>
  1657. <li>U</li>
  1658. <liclass="cardtype">Digimon</li>
  1659. <liclass="cardlv">Lv.6</li>
  1660. </ul>
  1661. <divclass="card_name">Dinorexmon</div>
  1662. <divclass="cardinfo_top">
  1663. <divclass="card_img">
  1664. <imgsrc="../images/cardlist/card/BT14-017.png"alt="BT14-017Dinorexmon"></div>
  1665. <divclass="cardinfo_top_body">
  1666. <dl>
  1667. <dt>Form</dt>
  1668. <dd>Mega</dd>
  1669. </dl>
  1670. <dl>
  1671. <dt>Attribute</dt>
  1672. <dd>Data</dd>
  1673. </dl>
  1674. <dl>
  1675. <dt>Type</dt>
  1676. <dd>Dinosaur/XAntibody</dd>
  1677. </dl>
  1678. <dl>
  1679. <dt>DP</dt>
  1680. <dd>11000</dl>
  1681. <dl>
  1682. <dt>PlayCost</dt>
  1683. <dd>11</dd>
  1684. </dl>
  1685. <dl>
  1686. <dt>DigivolveCost1</dt>
  1687. <dd>3fromLv.5</dd>
  1688. </dl>
  1689. <dl>
  1690. <dt>DigivolveCost2</dt>
  1691. <dd>-</dd>
  1692. </dl>
  1693. </div>
  1694. </div>
  1695. <divclass="cardinfo_bottom">
  1696. <dl>
  1697. <dt>Effect</dt>
  1698. <dd>[When Digivolving] <Blitz><br> [All Turns] While your opponent has 1 or more memory, they can't play Digimon with 6000 DP or less, and this Digimon gets +4000 DP.</dd>
  1699. </dl>
  1700. <dl>
  1701. <dt>Digivolveeffect</dt>
  1702. <dd>-</dd>
  1703. </dl>
  1704. <dl>
  1705. <dt>Securityeffect</dt>
  1706. <dd>-</dd>
  1707. </dl>
  1708. <dl>
  1709. <dt>Notes</dt>
  1710. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1711. </div>
  1712. </div>
  1713. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1714. </div>
  1715. </div>
  1716. </li>
  1717. <liclass="image_lists_itemdatapage-1">
  1718. <aclass="card_img">
  1719. <imgsrc="../images/cardlist/card/BT14-018.png"alt="BT14-018Goldramon"></a>
  1720. <divclass="popup">
  1721. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1722. <divclass="card_detail_inner">
  1723. <ulclass="cardinfo_head">
  1724. <liclass="cardno">BT14-018</li>
  1725. <li>R</li>
  1726. <liclass="cardtype">Digimon</li>
  1727. <liclass="cardlv">Lv.6</li>
  1728. </ul>
  1729. <divclass="card_name">Goldramon</div>
  1730. <divclass="cardinfo_top">
  1731. <divclass="card_img">
  1732. <imgsrc="../images/cardlist/card/BT14-018.png"alt="BT14-018Goldramon"></div>
  1733. <divclass="cardinfo_top_body">
  1734. <dl>
  1735. <dt>Form</dt>
  1736. <dd>Mega</dd>
  1737. </dl>
  1738. <dl>
  1739. <dt>Attribute</dt>
  1740. <dd>Vaccine</dd>
  1741. </dl>
  1742. <dl>
  1743. <dt>Type</dt>
  1744. <dd>HolyDragon/FourGreatDragons</dd>
  1745. </dl>
  1746. <dl>
  1747. <dt>DP</dt>
  1748. <dd>12000</dl>
  1749. <dl>
  1750. <dt>PlayCost</dt>
  1751. <dd>12</dd>
  1752. </dl>
  1753. <dl>
  1754. <dt>DigivolveCost1</dt>
  1755. <dd>4fromLv.5</dd>
  1756. </dl>
  1757. <dl>
  1758. <dt>DigivolveCost2</dt>
  1759. <dd>4fromLv.5</dd>
  1760. </dl>
  1761. </div>
  1762. </div>
  1763. <divclass="cardinfo_bottom">
  1764. <dl>
  1765. <dt>Effect</dt>
  1766. <dd>[On Play][When Digivolving] Play 1 [Amon of Crimson Flame] (Digimon/Red/6000 DP/<Rush>) Token and 1 [Umon of Blue Thunder] (Digimon/Yellow/6000 DP/<Blocker>) Token.<br> [All Turns] When this Digimon would digivolve or leave the battle area, delete all of your [Amon of Crimson Flame] and [Umon of Blue Thunder]. If this effect deletes, <Recovery +1 (Deck)>.</dd>
  1767. </dl>
  1768. <dl>
  1769. <dt>Digivolveeffect</dt>
  1770. <dd>-</dd>
  1771. </dl>
  1772. <dl>
  1773. <dt>Securityeffect</dt>
  1774. <dd>-</dd>
  1775. </dl>
  1776. <dl>
  1777. <dt>Notes</dt>
  1778. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1779. </div>
  1780. </div>
  1781. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1782. </div>
  1783. </div>
  1784. </li>
  1785. <liclass="image_lists_itemdatapage-1">
  1786. <aclass="card_img">
  1787. <imgsrc="../images/cardlist/card/BT14-019.png"alt="BT14-019Otamamon"></a>
  1788. <divclass="popup">
  1789. <divclass="card_detailcard_detail_blue">
  1790. <divclass="card_detail_inner">
  1791. <ulclass="cardinfo_head">
  1792. <liclass="cardno">BT14-019</li>
  1793. <li>C</li>
  1794. <liclass="cardtype">Digimon</li>
  1795. <liclass="cardlv">Lv.3</li>
  1796. </ul>
  1797. <divclass="card_name">Otamamon</div>
  1798. <divclass="cardinfo_top">
  1799. <divclass="card_img">
  1800. <imgsrc="../images/cardlist/card/BT14-019.png"alt="BT14-019Otamamon"></div>
  1801. <divclass="cardinfo_top_body">
  1802. <dl>
  1803. <dt>Form</dt>
  1804. <dd>Rookie</dd>
  1805. </dl>
  1806. <dl>
  1807. <dt>Attribute</dt>
  1808. <dd>Virus</dd>
  1809. </dl>
  1810. <dl>
  1811. <dt>Type</dt>
  1812. <dd>Amphibian</dd>
  1813. </dl>
  1814. <dl>
  1815. <dt>DP</dt>
  1816. <dd>2000</dl>
  1817. <dl>
  1818. <dt>PlayCost</dt>
  1819. <dd>3</dd>
  1820. </dl>
  1821. <dl>
  1822. <dt>DigivolveCost1</dt>
  1823. <dd>0fromLv.2</dd>
  1824. </dl>
  1825. <dl>
  1826. <dt>DigivolveCost2</dt>
  1827. <dd>-</dd>
  1828. </dl>
  1829. </div>
  1830. </div>
  1831. <divclass="cardinfo_bottom">
  1832. <dl>
  1833. <dt>Effect</dt>
  1834. <dd>-</dd>
  1835. </dl>
  1836. <dl>
  1837. <dt>Digivolveeffect</dt>
  1838. <dd>[Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, trash its bottom 2 digivolution cards.</dd>
  1839. </dl>
  1840. <dl>
  1841. <dt>Securityeffect</dt>
  1842. <dd>-</dd>
  1843. </dl>
  1844. <dl>
  1845. <dt>Notes</dt>
  1846. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1847. </div>
  1848. </div>
  1849. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1850. </div>
  1851. </div>
  1852. </li>
  1853. <liclass="image_lists_itemdatapage-1">
  1854. <aclass="card_img">
  1855. <imgsrc="../images/cardlist/card/BT14-020.png"alt="BT14-020Gomamon"></a>
  1856. <divclass="popup">
  1857. <divclass="card_detailcard_detail_blue">
  1858. <divclass="card_detail_inner">
  1859. <ulclass="cardinfo_head">
  1860. <liclass="cardno">BT14-020</li>
  1861. <li>SR</li>
  1862. <liclass="cardtype">Digimon</li>
  1863. <liclass="cardlv">Lv.3</li>
  1864. </ul>
  1865. <divclass="card_name">Gomamon</div>
  1866. <divclass="cardinfo_top">
  1867. <divclass="card_img">
  1868. <imgsrc="../images/cardlist/card/BT14-020.png"alt="BT14-020Gomamon"></div>
  1869. <divclass="cardinfo_top_body">
  1870. <dl>
  1871. <dt>Form</dt>
  1872. <dd>Rookie</dd>
  1873. </dl>
  1874. <dl>
  1875. <dt>Attribute</dt>
  1876. <dd>Vaccine</dd>
  1877. </dl>
  1878. <dl>
  1879. <dt>Type</dt>
  1880. <dd>SeaBeast</dd>
  1881. </dl>
  1882. <dl>
  1883. <dt>DP</dt>
  1884. <dd>1000</dl>
  1885. <dl>
  1886. <dt>PlayCost</dt>
  1887. <dd>3</dd>
  1888. </dl>
  1889. <dl>
  1890. <dt>DigivolveCost1</dt>
  1891. <dd>0fromLv.2</dd>
  1892. </dl>
  1893. <dl>
  1894. <dt>DigivolveCost2</dt>
  1895. <dd>-</dd>
  1896. </dl>
  1897. </div>
  1898. </div>
  1899. <divclass="cardinfo_bottom">
  1900. <dl>
  1901. <dt>Effect</dt>
  1902. <dd>[Start of Your Main Phase] Trash any 1 digivolution card of 1 of your opponent's Digimon. This Digimon can't be blocked for the turn.</dd>
  1903. </dl>
  1904. <dl>
  1905. <dt>Digivolveeffect</dt>
  1906. <dd>[Opponent's Turn] When this Digimon would be deleted, you may play 1 [Gomamon] from its digivolution cards without paying the cost.</dd>
  1907. </dl>
  1908. <dl>
  1909. <dt>Securityeffect</dt>
  1910. <dd>-</dd>
  1911. </dl>
  1912. <dl>
  1913. <dt>Notes</dt>
  1914. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1915. </div>
  1916. </div>
  1917. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1918. </div>
  1919. </div>
  1920. </li>
  1921. <liclass="image_lists_itemdatapage-1">
  1922. <aclass="card_img">
  1923. <imgsrc="../images/cardlist/card/BT14-020_P1.png"alt="BT14-020Gomamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1924. </a>
  1925. <divclass="popup">
  1926. <divclass="card_detailcard_detail_blue">
  1927. <divclass="card_detail_inner">
  1928. <ulclass="cardinfo_head">
  1929. <liclass="cardno">BT14-020</li>
  1930. <li>SR</li>
  1931. <liclass="cardtype">Digimon</li>
  1932. <liclass="cardlv">Lv.3</li>
  1933. <liclass="cardtypecardParallel">AlternativeArt</li>
  1934. </ul>
  1935. <divclass="card_name">Gomamon</div>
  1936. <divclass="cardinfo_top">
  1937. <divclass="card_img">
  1938. <imgsrc="../images/cardlist/card/BT14-020_P1.png"alt="BT14-020Gomamon"></div>
  1939. <divclass="cardinfo_top_body">
  1940. <dl>
  1941. <dt>Form</dt>
  1942. <dd>Rookie</dd>
  1943. </dl>
  1944. <dl>
  1945. <dt>Attribute</dt>
  1946. <dd>Vaccine</dd>
  1947. </dl>
  1948. <dl>
  1949. <dt>Type</dt>
  1950. <dd>SeaBeast</dd>
  1951. </dl>
  1952. <dl>
  1953. <dt>DP</dt>
  1954. <dd>1000</dl>
  1955. <dl>
  1956. <dt>PlayCost</dt>
  1957. <dd>3</dd>
  1958. </dl>
  1959. <dl>
  1960. <dt>DigivolveCost1</dt>
  1961. <dd>0fromLv.2</dd>
  1962. </dl>
  1963. <dl>
  1964. <dt>DigivolveCost2</dt>
  1965. <dd>-</dd>
  1966. </dl>
  1967. </div>
  1968. </div>
  1969. <divclass="cardinfo_bottom">
  1970. <dl>
  1971. <dt>Effect</dt>
  1972. <dd>[Start of Your Main Phase] Trash any 1 digivolution card of 1 of your opponent's Digimon. This Digimon can't be blocked for the turn.</dd>
  1973. </dl>
  1974. <dl>
  1975. <dt>Digivolveeffect</dt>
  1976. <dd>[Opponent's Turn] When this Digimon would be deleted, you may play 1 [Gomamon] from its digivolution cards without paying the cost.</dd>
  1977. </dl>
  1978. <dl>
  1979. <dt>Securityeffect</dt>
  1980. <dd>-</dd>
  1981. </dl>
  1982. <dl>
  1983. <dt>Notes</dt>
  1984. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  1985. </div>
  1986. </div>
  1987. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1988. </div>
  1989. </div>
  1990. </li>
  1991. <liclass="image_lists_itemdatapage-1">
  1992. <aclass="card_img">
  1993. <imgsrc="../images/cardlist/card/BT14-021.png"alt="BT14-021Syakomon"></a>
  1994. <divclass="popup">
  1995. <divclass="card_detailcard_detail_blue">
  1996. <divclass="card_detail_inner">
  1997. <ulclass="cardinfo_head">
  1998. <liclass="cardno">BT14-021</li>
  1999. <li>C</li>
  2000. <liclass="cardtype">Digimon</li>
  2001. <liclass="cardlv">Lv.3</li>
  2002. </ul>
  2003. <divclass="card_name">Syakomon</div>
  2004. <divclass="cardinfo_top">
  2005. <divclass="card_img">
  2006. <imgsrc="../images/cardlist/card/BT14-021.png"alt="BT14-021Syakomon"></div>
  2007. <divclass="cardinfo_top_body">
  2008. <dl>
  2009. <dt>Form</dt>
  2010. <dd>Rookie</dd>
  2011. </dl>
  2012. <dl>
  2013. <dt>Attribute</dt>
  2014. <dd>Virus</dd>
  2015. </dl>
  2016. <dl>
  2017. <dt>Type</dt>
  2018. <dd>Crustacean</dd>
  2019. </dl>
  2020. <dl>
  2021. <dt>DP</dt>
  2022. <dd>2000</dl>
  2023. <dl>
  2024. <dt>PlayCost</dt>
  2025. <dd>3</dd>
  2026. </dl>
  2027. <dl>
  2028. <dt>DigivolveCost1</dt>
  2029. <dd>0fromLv.2</dd>
  2030. </dl>
  2031. <dl>
  2032. <dt>DigivolveCost2</dt>
  2033. <dd>-</dd>
  2034. </dl>
  2035. </div>
  2036. </div>
  2037. <divclass="cardinfo_bottom">
  2038. <dl>
  2039. <dt>Effect</dt>
  2040. <dd><Evade> (When this Digimon would be deleted, you may suspend it to prevent that deletion.)</dd>
  2041. </dl>
  2042. <dl>
  2043. <dt>Digivolveeffect</dt>
  2044. <dd>-</dd>
  2045. </dl>
  2046. <dl>
  2047. <dt>Securityeffect</dt>
  2048. <dd>-</dd>
  2049. </dl>
  2050. <dl>
  2051. <dt>Notes</dt>
  2052. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2053. </div>
  2054. </div>
  2055. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2056. </div>
  2057. </div>
  2058. </li>
  2059. <liclass="image_lists_itemdatapage-1">
  2060. <aclass="card_img">
  2061. <imgsrc="../images/cardlist/card/BT14-022.png"alt="BT14-022Gesomon"></a>
  2062. <divclass="popup">
  2063. <divclass="card_detailcard_detail_blue">
  2064. <divclass="card_detail_inner">
  2065. <ulclass="cardinfo_head">
  2066. <liclass="cardno">BT14-022</li>
  2067. <li>C</li>
  2068. <liclass="cardtype">Digimon</li>
  2069. <liclass="cardlv">Lv.4</li>
  2070. </ul>
  2071. <divclass="card_name">Gesomon</div>
  2072. <divclass="cardinfo_top">
  2073. <divclass="card_img">
  2074. <imgsrc="../images/cardlist/card/BT14-022.png"alt="BT14-022Gesomon"></div>
  2075. <divclass="cardinfo_top_body">
  2076. <dl>
  2077. <dt>Form</dt>
  2078. <dd>Champion</dd>
  2079. </dl>
  2080. <dl>
  2081. <dt>Attribute</dt>
  2082. <dd>Virus</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>Type</dt>
  2086. <dd>Mollusk</dd>
  2087. </dl>
  2088. <dl>
  2089. <dt>DP</dt>
  2090. <dd>4000</dl>
  2091. <dl>
  2092. <dt>PlayCost</dt>
  2093. <dd>4</dd>
  2094. </dl>
  2095. <dl>
  2096. <dt>DigivolveCost1</dt>
  2097. <dd>2fromLv.3</dd>
  2098. </dl>
  2099. <dl>
  2100. <dt>DigivolveCost2</dt>
  2101. <dd>-</dd>
  2102. </dl>
  2103. </div>
  2104. </div>
  2105. <divclass="cardinfo_bottom">
  2106. <dl>
  2107. <dt>Effect</dt>
  2108. <dd>[When Attacking] Trash any 1 digivolution card of 1 of your opponent's Digimon. Then, return 1 of your opponent's level 5 or lower Digimon with no digivolution cards to the hand.</dd>
  2109. </dl>
  2110. <dl>
  2111. <dt>Digivolveeffect</dt>
  2112. <dd>-</dd>
  2113. </dl>
  2114. <dl>
  2115. <dt>Securityeffect</dt>
  2116. <dd>-</dd>
  2117. </dl>
  2118. <dl>
  2119. <dt>Notes</dt>
  2120. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2121. </div>
  2122. </div>
  2123. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2124. </div>
  2125. </div>
  2126. </li>
  2127. <liclass="image_lists_itemdatapage-1">
  2128. <aclass="card_img">
  2129. <imgsrc="../images/cardlist/card/BT14-023.png"alt="BT14-023Ikkakumon"></a>
  2130. <divclass="popup">
  2131. <divclass="card_detailcard_detail_blue">
  2132. <divclass="card_detail_inner">
  2133. <ulclass="cardinfo_head">
  2134. <liclass="cardno">BT14-023</li>
  2135. <li>R</li>
  2136. <liclass="cardtype">Digimon</li>
  2137. <liclass="cardlv">Lv.4</li>
  2138. </ul>
  2139. <divclass="card_name">Ikkakumon</div>
  2140. <divclass="cardinfo_top">
  2141. <divclass="card_img">
  2142. <imgsrc="../images/cardlist/card/BT14-023.png"alt="BT14-023Ikkakumon"></div>
  2143. <divclass="cardinfo_top_body">
  2144. <dl>
  2145. <dt>Form</dt>
  2146. <dd>Champion</dd>
  2147. </dl>
  2148. <dl>
  2149. <dt>Attribute</dt>
  2150. <dd>Vaccine</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>Type</dt>
  2154. <dd>SeaBeast</dd>
  2155. </dl>
  2156. <dl>
  2157. <dt>DP</dt>
  2158. <dd>5000</dl>
  2159. <dl>
  2160. <dt>PlayCost</dt>
  2161. <dd>5</dd>
  2162. </dl>
  2163. <dl>
  2164. <dt>DigivolveCost1</dt>
  2165. <dd>2fromLv.3</dd>
  2166. </dl>
  2167. <dl>
  2168. <dt>DigivolveCost2</dt>
  2169. <dd>-</dd>
  2170. </dl>
  2171. </div>
  2172. </div>
  2173. <divclass="cardinfo_bottom">
  2174. <dl>
  2175. <dt>Effect</dt>
  2176. <dd>[When Digivolving] Trash any 2 digivolution cards from your opponent's Digimon.<br> [When Attacking][Once Per Turn] Until the end of your opponent's turn, 1 of your opponent's Digimon with as many or fewer digivolution cards as this Digimon can't attack.</dd>
  2177. </dl>
  2178. <dl>
  2179. <dt>Digivolveeffect</dt>
  2180. <dd>[When Attacking][Once Per Turn] Until the end of your opponent's turn, 1 of your opponent's Digimon with as many or fewer digivolution cards as this Digimon can't attack.</dd>
  2181. </dl>
  2182. <dl>
  2183. <dt>Securityeffect</dt>
  2184. <dd>-</dd>
  2185. </dl>
  2186. <dl>
  2187. <dt>Notes</dt>
  2188. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2189. </div>
  2190. </div>
  2191. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2192. </div>
  2193. </div>
  2194. </li>
  2195. <liclass="image_lists_itemdatapage-1">
  2196. <aclass="card_img">
  2197. <imgsrc="../images/cardlist/card/BT14-024.png"alt="BT14-024Gekomon"></a>
  2198. <divclass="popup">
  2199. <divclass="card_detailcard_detail_blue">
  2200. <divclass="card_detail_inner">
  2201. <ulclass="cardinfo_head">
  2202. <liclass="cardno">BT14-024</li>
  2203. <li>C</li>
  2204. <liclass="cardtype">Digimon</li>
  2205. <liclass="cardlv">Lv.4</li>
  2206. </ul>
  2207. <divclass="card_name">Gekomon</div>
  2208. <divclass="cardinfo_top">
  2209. <divclass="card_img">
  2210. <imgsrc="../images/cardlist/card/BT14-024.png"alt="BT14-024Gekomon"></div>
  2211. <divclass="cardinfo_top_body">
  2212. <dl>
  2213. <dt>Form</dt>
  2214. <dd>Champion</dd>
  2215. </dl>
  2216. <dl>
  2217. <dt>Attribute</dt>
  2218. <dd>Virus</dd>
  2219. </dl>
  2220. <dl>
  2221. <dt>Type</dt>
  2222. <dd>Amphibian</dd>
  2223. </dl>
  2224. <dl>
  2225. <dt>DP</dt>
  2226. <dd>6000</dl>
  2227. <dl>
  2228. <dt>PlayCost</dt>
  2229. <dd>5</dd>
  2230. </dl>
  2231. <dl>
  2232. <dt>DigivolveCost1</dt>
  2233. <dd>2fromLv.3</dd>
  2234. </dl>
  2235. <dl>
  2236. <dt>DigivolveCost2</dt>
  2237. <dd>-</dd>
  2238. </dl>
  2239. </div>
  2240. </div>
  2241. <divclass="cardinfo_bottom">
  2242. <dl>
  2243. <dt>Effect</dt>
  2244. <dd>-</dd>
  2245. </dl>
  2246. <dl>
  2247. <dt>Digivolveeffect</dt>
  2248. <dd>[Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, trash its bottom 2 digivolution cards.</dd>
  2249. </dl>
  2250. <dl>
  2251. <dt>Securityeffect</dt>
  2252. <dd>-</dd>
  2253. </dl>
  2254. <dl>
  2255. <dt>Notes</dt>
  2256. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2257. </div>
  2258. </div>
  2259. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2260. </div>
  2261. </div>
  2262. </li>
  2263. <liclass="image_lists_itemdatapage-1">
  2264. <aclass="card_img">
  2265. <imgsrc="../images/cardlist/card/BT14-025.png"alt="BT14-025Shellmon"></a>
  2266. <divclass="popup">
  2267. <divclass="card_detailcard_detail_blue">
  2268. <divclass="card_detail_inner">
  2269. <ulclass="cardinfo_head">
  2270. <liclass="cardno">BT14-025</li>
  2271. <li>C</li>
  2272. <liclass="cardtype">Digimon</li>
  2273. <liclass="cardlv">Lv.4</li>
  2274. </ul>
  2275. <divclass="card_name">Shellmon</div>
  2276. <divclass="cardinfo_top">
  2277. <divclass="card_img">
  2278. <imgsrc="../images/cardlist/card/BT14-025.png"alt="BT14-025Shellmon"></div>
  2279. <divclass="cardinfo_top_body">
  2280. <dl>
  2281. <dt>Form</dt>
  2282. <dd>Champion</dd>
  2283. </dl>
  2284. <dl>
  2285. <dt>Attribute</dt>
  2286. <dd>Data</dd>
  2287. </dl>
  2288. <dl>
  2289. <dt>Type</dt>
  2290. <dd>Mollusk</dd>
  2291. </dl>
  2292. <dl>
  2293. <dt>DP</dt>
  2294. <dd>6000</dl>
  2295. <dl>
  2296. <dt>PlayCost</dt>
  2297. <dd>5</dd>
  2298. </dl>
  2299. <dl>
  2300. <dt>DigivolveCost1</dt>
  2301. <dd>2fromLv.3</dd>
  2302. </dl>
  2303. <dl>
  2304. <dt>DigivolveCost2</dt>
  2305. <dd>-</dd>
  2306. </dl>
  2307. </div>
  2308. </div>
  2309. <divclass="cardinfo_bottom">
  2310. <dl>
  2311. <dt>Effect</dt>
  2312. <dd><Evade> (When this Digimon would be deleted, you may suspend it to prevent that deletion.)</dd>
  2313. </dl>
  2314. <dl>
  2315. <dt>Digivolveeffect</dt>
  2316. <dd>-</dd>
  2317. </dl>
  2318. <dl>
  2319. <dt>Securityeffect</dt>
  2320. <dd>-</dd>
  2321. </dl>
  2322. <dl>
  2323. <dt>Notes</dt>
  2324. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2325. </div>
  2326. </div>
  2327. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2328. </div>
  2329. </div>
  2330. </li>
  2331. <liclass="image_lists_itemdatapage-1">
  2332. <aclass="card_img">
  2333. <imgsrc="../images/cardlist/card/BT14-026.png"alt="BT14-026ZudomonACE"></a>
  2334. <divclass="popup">
  2335. <divclass="card_detailcard_detail_blue">
  2336. <divclass="card_detail_inner">
  2337. <ulclass="cardinfo_head">
  2338. <liclass="cardno">BT14-026</li>
  2339. <li>SR</li>
  2340. <liclass="cardtype">Digimon</li>
  2341. <liclass="cardlv">Lv.5</li>
  2342. </ul>
  2343. <divclass="card_name">ZudomonACE</div>
  2344. <divclass="cardinfo_top">
  2345. <divclass="card_img">
  2346. <imgsrc="../images/cardlist/card/BT14-026.png"alt="BT14-026ZudomonACE"></div>
  2347. <divclass="cardinfo_top_body">
  2348. <dl>
  2349. <dt>Form</dt>
  2350. <dd>Ultimate</dd>
  2351. </dl>
  2352. <dl>
  2353. <dt>Attribute</dt>
  2354. <dd>Vaccine</dd>
  2355. </dl>
  2356. <dl>
  2357. <dt>Type</dt>
  2358. <dd>SeaBeast</dd>
  2359. </dl>
  2360. <dl>
  2361. <dt>DP</dt>
  2362. <dd>8000</dl>
  2363. <dl>
  2364. <dt>PlayCost</dt>
  2365. <dd>4</dd>
  2366. </dl>
  2367. <dl>
  2368. <dt>DigivolveCost1</dt>
  2369. <dd>3fromLv.4</dd>
  2370. </dl>
  2371. <dl>
  2372. <dt>DigivolveCost2</dt>
  2373. <dd>-</dd>
  2374. </dl>
  2375. </div>
  2376. </div>
  2377. <divclass="cardinfo_bottom">
  2378. <dl>
  2379. <dt>Effect</dt>
  2380. <dd>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] Trash any 2 digivolution cards from your opponent's Digimon. Then, return 1 of your opponent's Digimon with no digivolution cards to the hand.</dd>
  2381. </dl>
  2382. <dl>
  2383. <dt>Digivolveeffect</dt>
  2384. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  2385. </dl>
  2386. <dl>
  2387. <dt>Securityeffect</dt>
  2388. <dd>-</dd>
  2389. </dl>
  2390. <dl>
  2391. <dt>Notes</dt>
  2392. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2393. </div>
  2394. </div>
  2395. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2396. </div>
  2397. </div>
  2398. </li>
  2399. <liclass="image_lists_itemdatapage-1">
  2400. <aclass="card_img">
  2401. <imgsrc="../images/cardlist/card/BT14-026_P1.png"alt="BT14-026ZudomonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2402. </a>
  2403. <divclass="popup">
  2404. <divclass="card_detailcard_detail_blue">
  2405. <divclass="card_detail_inner">
  2406. <ulclass="cardinfo_head">
  2407. <liclass="cardno">BT14-026</li>
  2408. <li>SR</li>
  2409. <liclass="cardtype">Digimon</li>
  2410. <liclass="cardlv">Lv.5</li>
  2411. <liclass="cardtypecardParallel">AlternativeArt</li>
  2412. </ul>
  2413. <divclass="card_name">ZudomonACE</div>
  2414. <divclass="cardinfo_top">
  2415. <divclass="card_img">
  2416. <imgsrc="../images/cardlist/card/BT14-026_P1.png"alt="BT14-026ZudomonACE"></div>
  2417. <divclass="cardinfo_top_body">
  2418. <dl>
  2419. <dt>Form</dt>
  2420. <dd>Ultimate</dd>
  2421. </dl>
  2422. <dl>
  2423. <dt>Attribute</dt>
  2424. <dd>Vaccine</dd>
  2425. </dl>
  2426. <dl>
  2427. <dt>Type</dt>
  2428. <dd>SeaBeast</dd>
  2429. </dl>
  2430. <dl>
  2431. <dt>DP</dt>
  2432. <dd>8000</dl>
  2433. <dl>
  2434. <dt>PlayCost</dt>
  2435. <dd>4</dd>
  2436. </dl>
  2437. <dl>
  2438. <dt>DigivolveCost1</dt>
  2439. <dd>3fromLv.4</dd>
  2440. </dl>
  2441. <dl>
  2442. <dt>DigivolveCost2</dt>
  2443. <dd>-</dd>
  2444. </dl>
  2445. </div>
  2446. </div>
  2447. <divclass="cardinfo_bottom">
  2448. <dl>
  2449. <dt>Effect</dt>
  2450. <dd>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] Trash any 2 digivolution cards from your opponent's Digimon. Then, return 1 of your opponent's Digimon with no digivolution cards to the hand.</dd>
  2451. </dl>
  2452. <dl>
  2453. <dt>Digivolveeffect</dt>
  2454. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  2455. </dl>
  2456. <dl>
  2457. <dt>Securityeffect</dt>
  2458. <dd>-</dd>
  2459. </dl>
  2460. <dl>
  2461. <dt>Notes</dt>
  2462. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2463. </div>
  2464. </div>
  2465. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2466. </div>
  2467. </div>
  2468. </li>
  2469. <liclass="image_lists_itemdatapage-1">
  2470. <aclass="card_img">
  2471. <imgsrc="../images/cardlist/card/BT14-027.png"alt="BT14-027MarineDevimon"></a>
  2472. <divclass="popup">
  2473. <divclass="card_detailcard_detail_blue">
  2474. <divclass="card_detail_inner">
  2475. <ulclass="cardinfo_head">
  2476. <liclass="cardno">BT14-027</li>
  2477. <li>C</li>
  2478. <liclass="cardtype">Digimon</li>
  2479. <liclass="cardlv">Lv.5</li>
  2480. </ul>
  2481. <divclass="card_name">MarineDevimon</div>
  2482. <divclass="cardinfo_top">
  2483. <divclass="card_img">
  2484. <imgsrc="../images/cardlist/card/BT14-027.png"alt="BT14-027MarineDevimon"></div>
  2485. <divclass="cardinfo_top_body">
  2486. <dl>
  2487. <dt>Form</dt>
  2488. <dd>Ultimate</dd>
  2489. </dl>
  2490. <dl>
  2491. <dt>Attribute</dt>
  2492. <dd>Virus</dd>
  2493. </dl>
  2494. <dl>
  2495. <dt>Type</dt>
  2496. <dd>Aquabeast</dd>
  2497. </dl>
  2498. <dl>
  2499. <dt>DP</dt>
  2500. <dd>7000</dl>
  2501. <dl>
  2502. <dt>PlayCost</dt>
  2503. <dd>6</dd>
  2504. </dl>
  2505. <dl>
  2506. <dt>DigivolveCost1</dt>
  2507. <dd>3fromLv.4</dd>
  2508. </dl>
  2509. <dl>
  2510. <dt>DigivolveCost2</dt>
  2511. <dd>-</dd>
  2512. </dl>
  2513. </div>
  2514. </div>
  2515. <divclass="cardinfo_bottom">
  2516. <dl>
  2517. <dt>Effect</dt>
  2518. <dd>[On Play][When Digivolving] Return all level 3 Digimon to the hand.</dd>
  2519. </dl>
  2520. <dl>
  2521. <dt>Digivolveeffect</dt>
  2522. <dd>-</dd>
  2523. </dl>
  2524. <dl>
  2525. <dt>Securityeffect</dt>
  2526. <dd>-</dd>
  2527. </dl>
  2528. <dl>
  2529. <dt>Notes</dt>
  2530. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2531. </div>
  2532. </div>
  2533. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2534. </div>
  2535. </div>
  2536. </li>
  2537. <liclass="image_lists_itemdatapage-1">
  2538. <aclass="card_img">
  2539. <imgsrc="../images/cardlist/card/BT14-028.png"alt="BT14-028ShogunGekomon"></a>
  2540. <divclass="popup">
  2541. <divclass="card_detailcard_detail_blue">
  2542. <divclass="card_detail_inner">
  2543. <ulclass="cardinfo_head">
  2544. <liclass="cardno">BT14-028</li>
  2545. <li>U</li>
  2546. <liclass="cardtype">Digimon</li>
  2547. <liclass="cardlv">Lv.5</li>
  2548. </ul>
  2549. <divclass="card_name">ShogunGekomon</div>
  2550. <divclass="cardinfo_top">
  2551. <divclass="card_img">
  2552. <imgsrc="../images/cardlist/card/BT14-028.png"alt="BT14-028ShogunGekomon"></div>
  2553. <divclass="cardinfo_top_body">
  2554. <dl>
  2555. <dt>Form</dt>
  2556. <dd>Ultimate</dd>
  2557. </dl>
  2558. <dl>
  2559. <dt>Attribute</dt>
  2560. <dd>Virus</dd>
  2561. </dl>
  2562. <dl>
  2563. <dt>Type</dt>
  2564. <dd>Amphibian</dd>
  2565. </dl>
  2566. <dl>
  2567. <dt>DP</dt>
  2568. <dd>7000</dl>
  2569. <dl>
  2570. <dt>PlayCost</dt>
  2571. <dd>7</dd>
  2572. </dl>
  2573. <dl>
  2574. <dt>DigivolveCost1</dt>
  2575. <dd>3fromLv.4</dd>
  2576. </dl>
  2577. <dl>
  2578. <dt>DigivolveCost2</dt>
  2579. <dd>-</dd>
  2580. </dl>
  2581. </div>
  2582. </div>
  2583. <divclass="cardinfo_bottom">
  2584. <dl>
  2585. <dt>Effect</dt>
  2586. <dd><Blocker><br> [All Turns][Once Per Turn] When a digivolution card of an opponent's Digimon is trashed, this Digimon can't be deleted in battle until the end of your opponent's turn.</dd>
  2587. </dl>
  2588. <dl>
  2589. <dt>Digivolveeffect</dt>
  2590. <dd>-</dd>
  2591. </dl>
  2592. <dl>
  2593. <dt>Securityeffect</dt>
  2594. <dd>-</dd>
  2595. </dl>
  2596. <dl>
  2597. <dt>Notes</dt>
  2598. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2599. </div>
  2600. </div>
  2601. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2602. </div>
  2603. </div>
  2604. </li>
  2605. <liclass="image_lists_itemdatapage-1">
  2606. <aclass="card_img">
  2607. <imgsrc="../images/cardlist/card/BT14-029.png"alt="BT14-029Plesiomon"></a>
  2608. <divclass="popup">
  2609. <divclass="card_detailcard_detail_blue">
  2610. <divclass="card_detail_inner">
  2611. <ulclass="cardinfo_head">
  2612. <liclass="cardno">BT14-029</li>
  2613. <li>R</li>
  2614. <liclass="cardtype">Digimon</li>
  2615. <liclass="cardlv">Lv.6</li>
  2616. </ul>
  2617. <divclass="card_name">Plesiomon</div>
  2618. <divclass="cardinfo_top">
  2619. <divclass="card_img">
  2620. <imgsrc="../images/cardlist/card/BT14-029.png"alt="BT14-029Plesiomon"></div>
  2621. <divclass="cardinfo_top_body">
  2622. <dl>
  2623. <dt>Form</dt>
  2624. <dd>Mega</dd>
  2625. </dl>
  2626. <dl>
  2627. <dt>Attribute</dt>
  2628. <dd>Data</dd>
  2629. </dl>
  2630. <dl>
  2631. <dt>Type</dt>
  2632. <dd>Plesiosaur</dd>
  2633. </dl>
  2634. <dl>
  2635. <dt>DP</dt>
  2636. <dd>11000</dl>
  2637. <dl>
  2638. <dt>PlayCost</dt>
  2639. <dd>11</dd>
  2640. </dl>
  2641. <dl>
  2642. <dt>DigivolveCost1</dt>
  2643. <dd>3fromLv.5</dd>
  2644. </dl>
  2645. <dl>
  2646. <dt>DigivolveCost2</dt>
  2647. <dd>-</dd>
  2648. </dl>
  2649. </div>
  2650. </div>
  2651. <divclass="cardinfo_bottom">
  2652. <dl>
  2653. <dt>Effect</dt>
  2654. <dd>[When Digivolving] Trash any 3 digivolution cards from your opponent's Digimon.<br> [When Attacking][Once Per Turn] If your opponent has no Digimon with more digivolution cards than this Digimon, unsuspend this Digimon.</dd>
  2655. </dl>
  2656. <dl>
  2657. <dt>Digivolveeffect</dt>
  2658. <dd>-</dd>
  2659. </dl>
  2660. <dl>
  2661. <dt>Securityeffect</dt>
  2662. <dd>-</dd>
  2663. </dl>
  2664. <dl>
  2665. <dt>Notes</dt>
  2666. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2667. </div>
  2668. </div>
  2669. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2670. </div>
  2671. </div>
  2672. </li>
  2673. <liclass="image_lists_itemdatapage-1">
  2674. <aclass="card_img">
  2675. <imgsrc="../images/cardlist/card/BT14-030.png"alt="BT14-030MarineAngemon"></a>
  2676. <divclass="popup">
  2677. <divclass="card_detailcard_detail_blue">
  2678. <divclass="card_detail_inner">
  2679. <ulclass="cardinfo_head">
  2680. <liclass="cardno">BT14-030</li>
  2681. <li>U</li>
  2682. <liclass="cardtype">Digimon</li>
  2683. <liclass="cardlv">Lv.6</li>
  2684. </ul>
  2685. <divclass="card_name">MarineAngemon</div>
  2686. <divclass="cardinfo_top">
  2687. <divclass="card_img">
  2688. <imgsrc="../images/cardlist/card/BT14-030.png"alt="BT14-030MarineAngemon"></div>
  2689. <divclass="cardinfo_top_body">
  2690. <dl>
  2691. <dt>Form</dt>
  2692. <dd>Mega</dd>
  2693. </dl>
  2694. <dl>
  2695. <dt>Attribute</dt>
  2696. <dd>Vaccine</dd>
  2697. </dl>
  2698. <dl>
  2699. <dt>Type</dt>
  2700. <dd>Fairy</dd>
  2701. </dl>
  2702. <dl>
  2703. <dt>DP</dt>
  2704. <dd>11000</dl>
  2705. <dl>
  2706. <dt>PlayCost</dt>
  2707. <dd>11</dd>
  2708. </dl>
  2709. <dl>
  2710. <dt>DigivolveCost1</dt>
  2711. <dd>3fromLv.5</dd>
  2712. </dl>
  2713. <dl>
  2714. <dt>DigivolveCost2</dt>
  2715. <dd>3fromLv.5</dd>
  2716. </dl>
  2717. </div>
  2718. </div>
  2719. <divclass="cardinfo_bottom">
  2720. <dl>
  2721. <dt>Effect</dt>
  2722. <dd>[On Play][When Digivolving] By returning 1 of your opponent's level 3 Digimon or 1 of your Digimon to the hand, return 1 of your opponent's Digimon whose level is less than or equal to the returned Digimon's level to the hand.<br> [Your Turn][Once Per Turn] When another Digimon returns to the hand, <Recovery +1 (Deck)>.</dd>
  2723. </dl>
  2724. <dl>
  2725. <dt>Digivolveeffect</dt>
  2726. <dd>-</dd>
  2727. </dl>
  2728. <dl>
  2729. <dt>Securityeffect</dt>
  2730. <dd>-</dd>
  2731. </dl>
  2732. <dl>
  2733. <dt>Notes</dt>
  2734. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2735. </div>
  2736. </div>
  2737. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2738. </div>
  2739. </div>
  2740. </li>
  2741. <liclass="image_lists_itemdatapage-2">
  2742. <aclass="card_img">
  2743. <imgsrc="../images/cardlist/card/BT14-031.png"alt="BT14-031Elecmon"></a>
  2744. <divclass="popup">
  2745. <divclass="card_detailcard_detail_yellow">
  2746. <divclass="card_detail_inner">
  2747. <ulclass="cardinfo_head">
  2748. <liclass="cardno">BT14-031</li>
  2749. <li>C</li>
  2750. <liclass="cardtype">Digimon</li>
  2751. <liclass="cardlv">Lv.3</li>
  2752. </ul>
  2753. <divclass="card_name">Elecmon</div>
  2754. <divclass="cardinfo_top">
  2755. <divclass="card_img">
  2756. <imgsrc="../images/cardlist/card/BT14-031.png"alt="BT14-031Elecmon"></div>
  2757. <divclass="cardinfo_top_body">
  2758. <dl>
  2759. <dt>Form</dt>
  2760. <dd>Rookie</dd>
  2761. </dl>
  2762. <dl>
  2763. <dt>Attribute</dt>
  2764. <dd>Data</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>Type</dt>
  2768. <dd>Mammal</dd>
  2769. </dl>
  2770. <dl>
  2771. <dt>DP</dt>
  2772. <dd>2000</dl>
  2773. <dl>
  2774. <dt>PlayCost</dt>
  2775. <dd>3</dd>
  2776. </dl>
  2777. <dl>
  2778. <dt>DigivolveCost1</dt>
  2779. <dd>0fromLv.2</dd>
  2780. </dl>
  2781. <dl>
  2782. <dt>DigivolveCost2</dt>
  2783. <dd>-</dd>
  2784. </dl>
  2785. </div>
  2786. </div>
  2787. <divclass="cardinfo_bottom">
  2788. <dl>
  2789. <dt>Effect</dt>
  2790. <dd>-</dd>
  2791. </dl>
  2792. <dl>
  2793. <dt>Digivolveeffect</dt>
  2794. <dd>[When Attacking][Once Per Turn] 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Securityeffect</dt>
  2798. <dd>-</dd>
  2799. </dl>
  2800. <dl>
  2801. <dt>Notes</dt>
  2802. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2803. </div>
  2804. </div>
  2805. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2806. </div>
  2807. </div>
  2808. </li>
  2809. <liclass="image_lists_itemdatapage-2">
  2810. <aclass="card_img">
  2811. <imgsrc="../images/cardlist/card/BT14-032.png"alt="BT14-032Chuumon"></a>
  2812. <divclass="popup">
  2813. <divclass="card_detailcard_detail_yellow">
  2814. <divclass="card_detail_inner">
  2815. <ulclass="cardinfo_head">
  2816. <liclass="cardno">BT14-032</li>
  2817. <li>C</li>
  2818. <liclass="cardtype">Digimon</li>
  2819. <liclass="cardlv">Lv.3</li>
  2820. </ul>
  2821. <divclass="card_name">Chuumon</div>
  2822. <divclass="cardinfo_top">
  2823. <divclass="card_img">
  2824. <imgsrc="../images/cardlist/card/BT14-032.png"alt="BT14-032Chuumon"></div>
  2825. <divclass="cardinfo_top_body">
  2826. <dl>
  2827. <dt>Form</dt>
  2828. <dd>Rookie</dd>
  2829. </dl>
  2830. <dl>
  2831. <dt>Attribute</dt>
  2832. <dd>Virus</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>Type</dt>
  2836. <dd>Beast</dd>
  2837. </dl>
  2838. <dl>
  2839. <dt>DP</dt>
  2840. <dd>1000</dl>
  2841. <dl>
  2842. <dt>PlayCost</dt>
  2843. <dd>3</dd>
  2844. </dl>
  2845. <dl>
  2846. <dt>DigivolveCost1</dt>
  2847. <dd>0fromLv.2</dd>
  2848. </dl>
  2849. <dl>
  2850. <dt>DigivolveCost2</dt>
  2851. <dd>0fromLv.2</dd>
  2852. </dl>
  2853. </div>
  2854. </div>
  2855. <divclass="cardinfo_bottom">
  2856. <dl>
  2857. <dt>Effect</dt>
  2858. <dd>[On Play] Add the top card of your security stack to the hand. Then, you may place 1 card with [Sukamon] in its name from your hand on top of your security stack.</dd>
  2859. </dl>
  2860. <dl>
  2861. <dt>Digivolveeffect</dt>
  2862. <dd>[On Deletion] 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Securityeffect</dt>
  2866. <dd>-</dd>
  2867. </dl>
  2868. <dl>
  2869. <dt>Notes</dt>
  2870. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2871. </div>
  2872. </div>
  2873. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2874. </div>
  2875. </div>
  2876. </li>
  2877. <liclass="image_lists_itemdatapage-2">
  2878. <aclass="card_img">
  2879. <imgsrc="../images/cardlist/card/BT14-033.png"alt="BT14-033Patamon"></a>
  2880. <divclass="popup">
  2881. <divclass="card_detailcard_detail_yellow">
  2882. <divclass="card_detail_inner">
  2883. <ulclass="cardinfo_head">
  2884. <liclass="cardno">BT14-033</li>
  2885. <li>SR</li>
  2886. <liclass="cardtype">Digimon</li>
  2887. <liclass="cardlv">Lv.3</li>
  2888. </ul>
  2889. <divclass="card_name">Patamon</div>
  2890. <divclass="cardinfo_top">
  2891. <divclass="card_img">
  2892. <imgsrc="../images/cardlist/card/BT14-033.png"alt="BT14-033Patamon"></div>
  2893. <divclass="cardinfo_top_body">
  2894. <dl>
  2895. <dt>Form</dt>
  2896. <dd>Rookie</dd>
  2897. </dl>
  2898. <dl>
  2899. <dt>Attribute</dt>
  2900. <dd>Data</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>Type</dt>
  2904. <dd>Mammal</dd>
  2905. </dl>
  2906. <dl>
  2907. <dt>DP</dt>
  2908. <dd>1000</dl>
  2909. <dl>
  2910. <dt>PlayCost</dt>
  2911. <dd>3</dd>
  2912. </dl>
  2913. <dl>
  2914. <dt>DigivolveCost1</dt>
  2915. <dd>0fromLv.2</dd>
  2916. </dl>
  2917. <dl>
  2918. <dt>DigivolveCost2</dt>
  2919. <dd>-</dd>
  2920. </dl>
  2921. </div>
  2922. </div>
  2923. <divclass="cardinfo_bottom">
  2924. <dl>
  2925. <dt>Effect</dt>
  2926. <dd>[Start of Your Main Phase] Search your security stack. This Digimon may digivolve into a yellow Digimon card with the [Vaccine] trait among them without paying the cost. Then, shuffle your security stack. If digivolved by this effect, you may place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack.</dd>
  2927. </dl>
  2928. <dl>
  2929. <dt>Digivolveeffect</dt>
  2930. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, gain 1 memory.</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Securityeffect</dt>
  2934. <dd>-</dd>
  2935. </dl>
  2936. <dl>
  2937. <dt>Notes</dt>
  2938. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  2939. </div>
  2940. </div>
  2941. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2942. </div>
  2943. </div>
  2944. </li>
  2945. <liclass="image_lists_itemdatapage-2">
  2946. <aclass="card_img">
  2947. <imgsrc="../images/cardlist/card/BT14-033_P1.png"alt="BT14-033Patamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  2948. </a>
  2949. <divclass="popup">
  2950. <divclass="card_detailcard_detail_yellow">
  2951. <divclass="card_detail_inner">
  2952. <ulclass="cardinfo_head">
  2953. <liclass="cardno">BT14-033</li>
  2954. <li>SR</li>
  2955. <liclass="cardtype">Digimon</li>
  2956. <liclass="cardlv">Lv.3</li>
  2957. <liclass="cardtypecardParallel">AlternativeArt</li>
  2958. </ul>
  2959. <divclass="card_name">Patamon</div>
  2960. <divclass="cardinfo_top">
  2961. <divclass="card_img">
  2962. <imgsrc="../images/cardlist/card/BT14-033_P1.png"alt="BT14-033Patamon"></div>
  2963. <divclass="cardinfo_top_body">
  2964. <dl>
  2965. <dt>Form</dt>
  2966. <dd>Rookie</dd>
  2967. </dl>
  2968. <dl>
  2969. <dt>Attribute</dt>
  2970. <dd>Data</dd>
  2971. </dl>
  2972. <dl>
  2973. <dt>Type</dt>
  2974. <dd>Mammal</dd>
  2975. </dl>
  2976. <dl>
  2977. <dt>DP</dt>
  2978. <dd>1000</dl>
  2979. <dl>
  2980. <dt>PlayCost</dt>
  2981. <dd>3</dd>
  2982. </dl>
  2983. <dl>
  2984. <dt>DigivolveCost1</dt>
  2985. <dd>0fromLv.2</dd>
  2986. </dl>
  2987. <dl>
  2988. <dt>DigivolveCost2</dt>
  2989. <dd>-</dd>
  2990. </dl>
  2991. </div>
  2992. </div>
  2993. <divclass="cardinfo_bottom">
  2994. <dl>
  2995. <dt>Effect</dt>
  2996. <dd>[Start of Your Main Phase] Search your security stack. This Digimon may digivolve into a yellow Digimon card with the [Vaccine] trait among them without paying the cost. Then, shuffle your security stack. If digivolved by this effect, you may place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack.</dd>
  2997. </dl>
  2998. <dl>
  2999. <dt>Digivolveeffect</dt>
  3000. <dd>[Your Turn][Once Per Turn] When a card is added to your security stack, gain 1 memory.</dd>
  3001. </dl>
  3002. <dl>
  3003. <dt>Securityeffect</dt>
  3004. <dd>-</dd>
  3005. </dl>
  3006. <dl>
  3007. <dt>Notes</dt>
  3008. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3009. </div>
  3010. </div>
  3011. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3012. </div>
  3013. </div>
  3014. </li>
  3015. <liclass="image_lists_itemdatapage-2">
  3016. <aclass="card_img">
  3017. <imgsrc="../images/cardlist/card/BT14-034.png"alt="BT14-034Sukamon"></a>
  3018. <divclass="popup">
  3019. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3020. <divclass="card_detail_inner">
  3021. <ulclass="cardinfo_head">
  3022. <liclass="cardno">BT14-034</li>
  3023. <li>U</li>
  3024. <liclass="cardtype">Digimon</li>
  3025. <liclass="cardlv">Lv.4</li>
  3026. </ul>
  3027. <divclass="card_name">Sukamon</div>
  3028. <divclass="cardinfo_top">
  3029. <divclass="card_img">
  3030. <imgsrc="../images/cardlist/card/BT14-034.png"alt="BT14-034Sukamon"></div>
  3031. <divclass="cardinfo_top_body">
  3032. <dl>
  3033. <dt>Form</dt>
  3034. <dd>Champion</dd>
  3035. </dl>
  3036. <dl>
  3037. <dt>Attribute</dt>
  3038. <dd>Virus</dd>
  3039. </dl>
  3040. <dl>
  3041. <dt>Type</dt>
  3042. <dd>Abnormal</dd>
  3043. </dl>
  3044. <dl>
  3045. <dt>DP</dt>
  3046. <dd>1000</dl>
  3047. <dl>
  3048. <dt>PlayCost</dt>
  3049. <dd>3</dd>
  3050. </dl>
  3051. <dl>
  3052. <dt>DigivolveCost1</dt>
  3053. <dd>2fromLv.3</dd>
  3054. </dl>
  3055. <dl>
  3056. <dt>DigivolveCost2</dt>
  3057. <dd>2fromLv.3</dd>
  3058. </dl>
  3059. </div>
  3060. </div>
  3061. <divclass="cardinfo_bottom">
  3062. <dl>
  3063. <dt>Effect</dt>
  3064. <dd>[Security] At the end of the battle, play this card without paying the cost.</dd>
  3065. </dl>
  3066. <dl>
  3067. <dt>Digivolveeffect</dt>
  3068. <dd>[On Deletion] 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  3069. </dl>
  3070. <dl>
  3071. <dt>Securityeffect</dt>
  3072. <dd>-</dd>
  3073. </dl>
  3074. <dl>
  3075. <dt>Notes</dt>
  3076. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3077. </div>
  3078. </div>
  3079. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3080. </div>
  3081. </div>
  3082. </li>
  3083. <liclass="image_lists_itemdatapage-2">
  3084. <aclass="card_img">
  3085. <imgsrc="../images/cardlist/card/BT14-035.png"alt="BT14-035Unimon"></a>
  3086. <divclass="popup">
  3087. <divclass="card_detailcard_detail_yellow">
  3088. <divclass="card_detail_inner">
  3089. <ulclass="cardinfo_head">
  3090. <liclass="cardno">BT14-035</li>
  3091. <li>C</li>
  3092. <liclass="cardtype">Digimon</li>
  3093. <liclass="cardlv">Lv.4</li>
  3094. </ul>
  3095. <divclass="card_name">Unimon</div>
  3096. <divclass="cardinfo_top">
  3097. <divclass="card_img">
  3098. <imgsrc="../images/cardlist/card/BT14-035.png"alt="BT14-035Unimon"></div>
  3099. <divclass="cardinfo_top_body">
  3100. <dl>
  3101. <dt>Form</dt>
  3102. <dd>Champion</dd>
  3103. </dl>
  3104. <dl>
  3105. <dt>Attribute</dt>
  3106. <dd>Vaccine</dd>
  3107. </dl>
  3108. <dl>
  3109. <dt>Type</dt>
  3110. <dd>MythicalBeast</dd>
  3111. </dl>
  3112. <dl>
  3113. <dt>DP</dt>
  3114. <dd>5000</dl>
  3115. <dl>
  3116. <dt>PlayCost</dt>
  3117. <dd>4</dd>
  3118. </dl>
  3119. <dl>
  3120. <dt>DigivolveCost1</dt>
  3121. <dd>2fromLv.3</dd>
  3122. </dl>
  3123. <dl>
  3124. <dt>DigivolveCost2</dt>
  3125. <dd>-</dd>
  3126. </dl>
  3127. </div>
  3128. </div>
  3129. <divclass="cardinfo_bottom">
  3130. <dl>
  3131. <dt>Effect</dt>
  3132. <dd><Barrier> (When this Digimon would be deleted in battle, by trashing the top card of your security stack, prevent that deletion.)</dd>
  3133. </dl>
  3134. <dl>
  3135. <dt>Digivolveeffect</dt>
  3136. <dd>-</dd>
  3137. </dl>
  3138. <dl>
  3139. <dt>Securityeffect</dt>
  3140. <dd>-</dd>
  3141. </dl>
  3142. <dl>
  3143. <dt>Notes</dt>
  3144. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3145. </div>
  3146. </div>
  3147. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3148. </div>
  3149. </div>
  3150. </li>
  3151. <liclass="image_lists_itemdatapage-2">
  3152. <aclass="card_img">
  3153. <imgsrc="../images/cardlist/card/BT14-036.png"alt="BT14-036Centarumon"></a>
  3154. <divclass="popup">
  3155. <divclass="card_detailcard_detail_yellow">
  3156. <divclass="card_detail_inner">
  3157. <ulclass="cardinfo_head">
  3158. <liclass="cardno">BT14-036</li>
  3159. <li>U</li>
  3160. <liclass="cardtype">Digimon</li>
  3161. <liclass="cardlv">Lv.4</li>
  3162. </ul>
  3163. <divclass="card_name">Centarumon</div>
  3164. <divclass="cardinfo_top">
  3165. <divclass="card_img">
  3166. <imgsrc="../images/cardlist/card/BT14-036.png"alt="BT14-036Centarumon"></div>
  3167. <divclass="cardinfo_top_body">
  3168. <dl>
  3169. <dt>Form</dt>
  3170. <dd>Champion</dd>
  3171. </dl>
  3172. <dl>
  3173. <dt>Attribute</dt>
  3174. <dd>Data</dd>
  3175. </dl>
  3176. <dl>
  3177. <dt>Type</dt>
  3178. <dd>Beastkin</dd>
  3179. </dl>
  3180. <dl>
  3181. <dt>DP</dt>
  3182. <dd>5000</dl>
  3183. <dl>
  3184. <dt>PlayCost</dt>
  3185. <dd>5</dd>
  3186. </dl>
  3187. <dl>
  3188. <dt>DigivolveCost1</dt>
  3189. <dd>2fromLv.3</dd>
  3190. </dl>
  3191. <dl>
  3192. <dt>DigivolveCost2</dt>
  3193. <dd>-</dd>
  3194. </dl>
  3195. </div>
  3196. </div>
  3197. <divclass="cardinfo_bottom">
  3198. <dl>
  3199. <dt>Effect</dt>
  3200. <dd>[When Digivolving] 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  3201. </dl>
  3202. <dl>
  3203. <dt>Digivolveeffect</dt>
  3204. <dd>[When Attacking][Once Per Turn] 1 of your opponent's Digimon gets -2000 DP for the turn.</dd>
  3205. </dl>
  3206. <dl>
  3207. <dt>Securityeffect</dt>
  3208. <dd>-</dd>
  3209. </dl>
  3210. <dl>
  3211. <dt>Notes</dt>
  3212. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3213. </div>
  3214. </div>
  3215. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3216. </div>
  3217. </div>
  3218. </li>
  3219. <liclass="image_lists_itemdatapage-2">
  3220. <aclass="card_img">
  3221. <imgsrc="../images/cardlist/card/BT14-037.png"alt="BT14-037MagnaAngemonACE"></a>
  3222. <divclass="popup">
  3223. <divclass="card_detailcard_detail_yellow">
  3224. <divclass="card_detail_inner">
  3225. <ulclass="cardinfo_head">
  3226. <liclass="cardno">BT14-037</li>
  3227. <li>SR</li>
  3228. <liclass="cardtype">Digimon</li>
  3229. <liclass="cardlv">Lv.5</li>
  3230. </ul>
  3231. <divclass="card_name">MagnaAngemonACE</div>
  3232. <divclass="cardinfo_top">
  3233. <divclass="card_img">
  3234. <imgsrc="../images/cardlist/card/BT14-037.png"alt="BT14-037MagnaAngemonACE"></div>
  3235. <divclass="cardinfo_top_body">
  3236. <dl>
  3237. <dt>Form</dt>
  3238. <dd>Ultimate</dd>
  3239. </dl>
  3240. <dl>
  3241. <dt>Attribute</dt>
  3242. <dd>Vaccine</dd>
  3243. </dl>
  3244. <dl>
  3245. <dt>Type</dt>
  3246. <dd>Archangel</dd>
  3247. </dl>
  3248. <dl>
  3249. <dt>DP</dt>
  3250. <dd>8000</dl>
  3251. <dl>
  3252. <dt>PlayCost</dt>
  3253. <dd>4</dd>
  3254. </dl>
  3255. <dl>
  3256. <dt>DigivolveCost1</dt>
  3257. <dd>3fromLv.4</dd>
  3258. </dl>
  3259. <dl>
  3260. <dt>DigivolveCost2</dt>
  3261. <dd>-</dd>
  3262. </dl>
  3263. </div>
  3264. </div>
  3265. <divclass="cardinfo_bottom">
  3266. <dl>
  3267. <dt>Effect</dt>
  3268. <dd>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] If you have 5 or fewer security cards, <Recovery +1 (Deck)>. Then, for the turn, 1 of your opponent's Digimon gets -1000 DP for each card in your security stack.</dd>
  3269. </dl>
  3270. <dl>
  3271. <dt>Digivolveeffect</dt>
  3272. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  3273. </dl>
  3274. <dl>
  3275. <dt>Securityeffect</dt>
  3276. <dd>-</dd>
  3277. </dl>
  3278. <dl>
  3279. <dt>Notes</dt>
  3280. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3281. </div>
  3282. </div>
  3283. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3284. </div>
  3285. </div>
  3286. </li>
  3287. <liclass="image_lists_itemdatapage-2">
  3288. <aclass="card_img">
  3289. <imgsrc="../images/cardlist/card/BT14-037_P1.png"alt="BT14-037MagnaAngemonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3290. </a>
  3291. <divclass="popup">
  3292. <divclass="card_detailcard_detail_yellow">
  3293. <divclass="card_detail_inner">
  3294. <ulclass="cardinfo_head">
  3295. <liclass="cardno">BT14-037</li>
  3296. <li>SR</li>
  3297. <liclass="cardtype">Digimon</li>
  3298. <liclass="cardlv">Lv.5</li>
  3299. <liclass="cardtypecardParallel">AlternativeArt</li>
  3300. </ul>
  3301. <divclass="card_name">MagnaAngemonACE</div>
  3302. <divclass="cardinfo_top">
  3303. <divclass="card_img">
  3304. <imgsrc="../images/cardlist/card/BT14-037_P1.png"alt="BT14-037MagnaAngemonACE"></div>
  3305. <divclass="cardinfo_top_body">
  3306. <dl>
  3307. <dt>Form</dt>
  3308. <dd>Ultimate</dd>
  3309. </dl>
  3310. <dl>
  3311. <dt>Attribute</dt>
  3312. <dd>Vaccine</dd>
  3313. </dl>
  3314. <dl>
  3315. <dt>Type</dt>
  3316. <dd>Archangel</dd>
  3317. </dl>
  3318. <dl>
  3319. <dt>DP</dt>
  3320. <dd>8000</dl>
  3321. <dl>
  3322. <dt>PlayCost</dt>
  3323. <dd>4</dd>
  3324. </dl>
  3325. <dl>
  3326. <dt>DigivolveCost1</dt>
  3327. <dd>3fromLv.4</dd>
  3328. </dl>
  3329. <dl>
  3330. <dt>DigivolveCost2</dt>
  3331. <dd>-</dd>
  3332. </dl>
  3333. </div>
  3334. </div>
  3335. <divclass="cardinfo_bottom">
  3336. <dl>
  3337. <dt>Effect</dt>
  3338. <dd>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] If you have 5 or fewer security cards, <Recovery +1 (Deck)>. Then, for the turn, 1 of your opponent's Digimon gets -1000 DP for each card in your security stack.</dd>
  3339. </dl>
  3340. <dl>
  3341. <dt>Digivolveeffect</dt>
  3342. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  3343. </dl>
  3344. <dl>
  3345. <dt>Securityeffect</dt>
  3346. <dd>-</dd>
  3347. </dl>
  3348. <dl>
  3349. <dt>Notes</dt>
  3350. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3351. </div>
  3352. </div>
  3353. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3354. </div>
  3355. </div>
  3356. </li>
  3357. <liclass="image_lists_itemdatapage-2">
  3358. <aclass="card_img">
  3359. <imgsrc="../images/cardlist/card/BT14-038.png"alt="BT14-038Etemon"></a>
  3360. <divclass="popup">
  3361. <divclass="card_detailcard_detail_yellow">
  3362. <divclass="card_detail_inner">
  3363. <ulclass="cardinfo_head">
  3364. <liclass="cardno">BT14-038</li>
  3365. <li>R</li>
  3366. <liclass="cardtype">Digimon</li>
  3367. <liclass="cardlv">Lv.5</li>
  3368. </ul>
  3369. <divclass="card_name">Etemon</div>
  3370. <divclass="cardinfo_top">
  3371. <divclass="card_img">
  3372. <imgsrc="../images/cardlist/card/BT14-038.png"alt="BT14-038Etemon"></div>
  3373. <divclass="cardinfo_top_body">
  3374. <dl>
  3375. <dt>Form</dt>
  3376. <dd>Ultimate</dd>
  3377. </dl>
  3378. <dl>
  3379. <dt>Attribute</dt>
  3380. <dd>Virus</dd>
  3381. </dl>
  3382. <dl>
  3383. <dt>Type</dt>
  3384. <dd>Puppet</dd>
  3385. </dl>
  3386. <dl>
  3387. <dt>DP</dt>
  3388. <dd>7000</dl>
  3389. <dl>
  3390. <dt>PlayCost</dt>
  3391. <dd>7</dd>
  3392. </dl>
  3393. <dl>
  3394. <dt>DigivolveCost1</dt>
  3395. <dd>4fromLv.4</dd>
  3396. </dl>
  3397. <dl>
  3398. <dt>DigivolveCost2</dt>
  3399. <dd>-</dd>
  3400. </dl>
  3401. </div>
  3402. </div>
  3403. <divclass="cardinfo_bottom">
  3404. <dl>
  3405. <dt>Effect</dt>
  3406. <dd>[Digivolve] Lv.4 w/[Sukamon] in name: Cost 3<br>[Security] If you have 3 or more cards with [Sukamon] in their names in your trash, you may play 1 level 6 Digimon card with [Etemon] in its name from your hand without paying the cost.<br>[On Deletion] Place this card at the bottom of your security stack.</dd>
  3407. </dl>
  3408. <dl>
  3409. <dt>Digivolveeffect</dt>
  3410. <dd>[On Deletion] Place 1 [Etemon] from your trash at the bottom of your security stack.</dd>
  3411. </dl>
  3412. <dl>
  3413. <dt>Securityeffect</dt>
  3414. <dd>-</dd>
  3415. </dl>
  3416. <dl>
  3417. <dt>Notes</dt>
  3418. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3419. </div>
  3420. </div>
  3421. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3422. </div>
  3423. </div>
  3424. </li>
  3425. <liclass="image_lists_itemdatapage-2">
  3426. <aclass="card_img">
  3427. <imgsrc="../images/cardlist/card/BT14-039.png"alt="BT14-039Monzaemon"></a>
  3428. <divclass="popup">
  3429. <divclass="card_detailcard_detail_yellow">
  3430. <divclass="card_detail_inner">
  3431. <ulclass="cardinfo_head">
  3432. <liclass="cardno">BT14-039</li>
  3433. <li>R</li>
  3434. <liclass="cardtype">Digimon</li>
  3435. <liclass="cardlv">Lv.5</li>
  3436. </ul>
  3437. <divclass="card_name">Monzaemon</div>
  3438. <divclass="cardinfo_top">
  3439. <divclass="card_img">
  3440. <imgsrc="../images/cardlist/card/BT14-039.png"alt="BT14-039Monzaemon"></div>
  3441. <divclass="cardinfo_top_body">
  3442. <dl>
  3443. <dt>Form</dt>
  3444. <dd>Ultimate</dd>
  3445. </dl>
  3446. <dl>
  3447. <dt>Attribute</dt>
  3448. <dd>Vaccine</dd>
  3449. </dl>
  3450. <dl>
  3451. <dt>Type</dt>
  3452. <dd>Puppet</dd>
  3453. </dl>
  3454. <dl>
  3455. <dt>DP</dt>
  3456. <dd>7000</dl>
  3457. <dl>
  3458. <dt>PlayCost</dt>
  3459. <dd>7</dd>
  3460. </dl>
  3461. <dl>
  3462. <dt>DigivolveCost1</dt>
  3463. <dd>4fromLv.4</dd>
  3464. </dl>
  3465. <dl>
  3466. <dt>DigivolveCost2</dt>
  3467. <dd>-</dd>
  3468. </dl>
  3469. </div>
  3470. </div>
  3471. <divclass="cardinfo_bottom">
  3472. <dl>
  3473. <dt>Effect</dt>
  3474. <dd>[Digivolve] Lv.4 w/[Numemon] in name: Cost 3<br><Armor Purge><br> [On Play] By placing 1 Digimon card with [Numemon] in its name from your trash as this Digimon's bottom digivolution card, gain 2 memory.</dd>
  3475. </dl>
  3476. <dl>
  3477. <dt>Digivolveeffect</dt>
  3478. <dd>[Your Turn] While this Digimon has [Monzaemon] or [Numemon] in its name, it gains <Security A. +1>.</dd>
  3479. </dl>
  3480. <dl>
  3481. <dt>Securityeffect</dt>
  3482. <dd>-</dd>
  3483. </dl>
  3484. <dl>
  3485. <dt>Notes</dt>
  3486. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3487. </div>
  3488. </div>
  3489. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3490. </div>
  3491. </div>
  3492. </li>
  3493. <liclass="image_lists_itemdatapage-2">
  3494. <aclass="card_img">
  3495. <imgsrc="../images/cardlist/card/BT14-040.png"alt="BT14-040Jijimon"></a>
  3496. <divclass="popup">
  3497. <divclass="card_detailcard_detail_yellow">
  3498. <divclass="card_detail_inner">
  3499. <ulclass="cardinfo_head">
  3500. <liclass="cardno">BT14-040</li>
  3501. <li>U</li>
  3502. <liclass="cardtype">Digimon</li>
  3503. <liclass="cardlv">Lv.6</li>
  3504. </ul>
  3505. <divclass="card_name">Jijimon</div>
  3506. <divclass="cardinfo_top">
  3507. <divclass="card_img">
  3508. <imgsrc="../images/cardlist/card/BT14-040.png"alt="BT14-040Jijimon"></div>
  3509. <divclass="cardinfo_top_body">
  3510. <dl>
  3511. <dt>Form</dt>
  3512. <dd>Mega</dd>
  3513. </dl>
  3514. <dl>
  3515. <dt>Attribute</dt>
  3516. <dd>Vaccine</dd>
  3517. </dl>
  3518. <dl>
  3519. <dt>Type</dt>
  3520. <dd>Ancient</dd>
  3521. </dl>
  3522. <dl>
  3523. <dt>DP</dt>
  3524. <dd>11000</dl>
  3525. <dl>
  3526. <dt>PlayCost</dt>
  3527. <dd>11</dd>
  3528. </dl>
  3529. <dl>
  3530. <dt>DigivolveCost1</dt>
  3531. <dd>3fromLv.5</dd>
  3532. </dl>
  3533. <dl>
  3534. <dt>DigivolveCost2</dt>
  3535. <dd>-</dd>
  3536. </dl>
  3537. </div>
  3538. </div>
  3539. <divclass="cardinfo_bottom">
  3540. <dl>
  3541. <dt>Effect</dt>
  3542. <dd>[On Play][When Digivolving] You may place 1 Tamer card from your hand on top of your security stack.<br> [All Turns][Once Per Turn] When you play a Tamer, you may play 1 level 3 Digimon card from your hand without paying the cost.</dd>
  3543. </dl>
  3544. <dl>
  3545. <dt>Digivolveeffect</dt>
  3546. <dd>-</dd>
  3547. </dl>
  3548. <dl>
  3549. <dt>Securityeffect</dt>
  3550. <dd>-</dd>
  3551. </dl>
  3552. <dl>
  3553. <dt>Notes</dt>
  3554. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3555. </div>
  3556. </div>
  3557. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3558. </div>
  3559. </div>
  3560. </li>
  3561. <liclass="image_lists_itemdatapage-2">
  3562. <aclass="card_img">
  3563. <imgsrc="../images/cardlist/card/BT14-041.png"alt="BT14-041Seraphimon"></a>
  3564. <divclass="popup">
  3565. <divclass="card_detailcard_detail_yellow">
  3566. <divclass="card_detail_inner">
  3567. <ulclass="cardinfo_head">
  3568. <liclass="cardno">BT14-041</li>
  3569. <li>R</li>
  3570. <liclass="cardtype">Digimon</li>
  3571. <liclass="cardlv">Lv.6</li>
  3572. </ul>
  3573. <divclass="card_name">Seraphimon</div>
  3574. <divclass="cardinfo_top">
  3575. <divclass="card_img">
  3576. <imgsrc="../images/cardlist/card/BT14-041.png"alt="BT14-041Seraphimon"></div>
  3577. <divclass="cardinfo_top_body">
  3578. <dl>
  3579. <dt>Form</dt>
  3580. <dd>Mega</dd>
  3581. </dl>
  3582. <dl>
  3583. <dt>Attribute</dt>
  3584. <dd>Vaccine</dd>
  3585. </dl>
  3586. <dl>
  3587. <dt>Type</dt>
  3588. <dd>Seraph/ThreeGreatAngels</dd>
  3589. </dl>
  3590. <dl>
  3591. <dt>DP</dt>
  3592. <dd>12000</dl>
  3593. <dl>
  3594. <dt>PlayCost</dt>
  3595. <dd>12</dd>
  3596. </dl>
  3597. <dl>
  3598. <dt>DigivolveCost1</dt>
  3599. <dd>4fromLv.5</dd>
  3600. </dl>
  3601. <dl>
  3602. <dt>DigivolveCost2</dt>
  3603. <dd>-</dd>
  3604. </dl>
  3605. </div>
  3606. </div>
  3607. <divclass="cardinfo_bottom">
  3608. <dl>
  3609. <dt>Effect</dt>
  3610. <dd>[When Digivolving] <Recovery +1 (Deck)><br> [All Turns][Once Per Turn] When a card is added to your security stack, 1 of your opponent's Digimon gets -7000 DP and this Digimon gains <Security A. +1> for the turn.</dd>
  3611. </dl>
  3612. <dl>
  3613. <dt>Digivolveeffect</dt>
  3614. <dd>-</dd>
  3615. </dl>
  3616. <dl>
  3617. <dt>Securityeffect</dt>
  3618. <dd>-</dd>
  3619. </dl>
  3620. <dl>
  3621. <dt>Notes</dt>
  3622. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3623. </div>
  3624. </div>
  3625. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3626. </div>
  3627. </div>
  3628. </li>
  3629. <liclass="image_lists_itemdatapage-2">
  3630. <aclass="card_img">
  3631. <imgsrc="../images/cardlist/card/BT14-042.png"alt="BT14-042Kunemon"></a>
  3632. <divclass="popup">
  3633. <divclass="card_detailcard_detail_green">
  3634. <divclass="card_detail_inner">
  3635. <ulclass="cardinfo_head">
  3636. <liclass="cardno">BT14-042</li>
  3637. <li>C</li>
  3638. <liclass="cardtype">Digimon</li>
  3639. <liclass="cardlv">Lv.3</li>
  3640. </ul>
  3641. <divclass="card_name">Kunemon</div>
  3642. <divclass="cardinfo_top">
  3643. <divclass="card_img">
  3644. <imgsrc="../images/cardlist/card/BT14-042.png"alt="BT14-042Kunemon"></div>
  3645. <divclass="cardinfo_top_body">
  3646. <dl>
  3647. <dt>Form</dt>
  3648. <dd>Rookie</dd>
  3649. </dl>
  3650. <dl>
  3651. <dt>Attribute</dt>
  3652. <dd>Virus</dd>
  3653. </dl>
  3654. <dl>
  3655. <dt>Type</dt>
  3656. <dd>Larva</dd>
  3657. </dl>
  3658. <dl>
  3659. <dt>DP</dt>
  3660. <dd>2000</dl>
  3661. <dl>
  3662. <dt>PlayCost</dt>
  3663. <dd>3</dd>
  3664. </dl>
  3665. <dl>
  3666. <dt>DigivolveCost1</dt>
  3667. <dd>0fromLv.2</dd>
  3668. </dl>
  3669. <dl>
  3670. <dt>DigivolveCost2</dt>
  3671. <dd>-</dd>
  3672. </dl>
  3673. </div>
  3674. </div>
  3675. <divclass="cardinfo_bottom">
  3676. <dl>
  3677. <dt>Effect</dt>
  3678. <dd>[On Play] By suspending this Digimon, reveal the top 3 cards of your deck. Add 1 green card among them to the hand. Return the rest to the bottom of the deck.</dd>
  3679. </dl>
  3680. <dl>
  3681. <dt>Digivolveeffect</dt>
  3682. <dd>-</dd>
  3683. </dl>
  3684. <dl>
  3685. <dt>Securityeffect</dt>
  3686. <dd>-</dd>
  3687. </dl>
  3688. <dl>
  3689. <dt>Notes</dt>
  3690. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3691. </div>
  3692. </div>
  3693. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3694. </div>
  3695. </div>
  3696. </li>
  3697. <liclass="image_lists_itemdatapage-2">
  3698. <aclass="card_img">
  3699. <imgsrc="../images/cardlist/card/BT14-043.png"alt="BT14-043KoDokugumon"></a>
  3700. <divclass="popup">
  3701. <divclass="card_detailcard_detail_green">
  3702. <divclass="card_detail_inner">
  3703. <ulclass="cardinfo_head">
  3704. <liclass="cardno">BT14-043</li>
  3705. <li>C</li>
  3706. <liclass="cardtype">Digimon</li>
  3707. <liclass="cardlv">Lv.3</li>
  3708. </ul>
  3709. <divclass="card_name">KoDokugumon</div>
  3710. <divclass="cardinfo_top">
  3711. <divclass="card_img">
  3712. <imgsrc="../images/cardlist/card/BT14-043.png"alt="BT14-043KoDokugumon"></div>
  3713. <divclass="cardinfo_top_body">
  3714. <dl>
  3715. <dt>Form</dt>
  3716. <dd>Rookie</dd>
  3717. </dl>
  3718. <dl>
  3719. <dt>Attribute</dt>
  3720. <dd>Virus</dd>
  3721. </dl>
  3722. <dl>
  3723. <dt>Type</dt>
  3724. <dd>Insectoid</dd>
  3725. </dl>
  3726. <dl>
  3727. <dt>DP</dt>
  3728. <dd>2000</dl>
  3729. <dl>
  3730. <dt>PlayCost</dt>
  3731. <dd>3</dd>
  3732. </dl>
  3733. <dl>
  3734. <dt>DigivolveCost1</dt>
  3735. <dd>0fromLv.2</dd>
  3736. </dl>
  3737. <dl>
  3738. <dt>DigivolveCost2</dt>
  3739. <dd>-</dd>
  3740. </dl>
  3741. </div>
  3742. </div>
  3743. <divclass="cardinfo_bottom">
  3744. <dl>
  3745. <dt>Effect</dt>
  3746. <dd>[On Play] By suspending 1 of your Digimon, suspend 1 of your opponent's Digimon.</dd>
  3747. </dl>
  3748. <dl>
  3749. <dt>Digivolveeffect</dt>
  3750. <dd>-</dd>
  3751. </dl>
  3752. <dl>
  3753. <dt>Securityeffect</dt>
  3754. <dd>-</dd>
  3755. </dl>
  3756. <dl>
  3757. <dt>Notes</dt>
  3758. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3759. </div>
  3760. </div>
  3761. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3762. </div>
  3763. </div>
  3764. </li>
  3765. <liclass="image_lists_itemdatapage-2">
  3766. <aclass="card_img">
  3767. <imgsrc="../images/cardlist/card/BT14-044.png"alt="BT14-044Palmon"></a>
  3768. <divclass="popup">
  3769. <divclass="card_detailcard_detail_green">
  3770. <divclass="card_detail_inner">
  3771. <ulclass="cardinfo_head">
  3772. <liclass="cardno">BT14-044</li>
  3773. <li>SR</li>
  3774. <liclass="cardtype">Digimon</li>
  3775. <liclass="cardlv">Lv.3</li>
  3776. </ul>
  3777. <divclass="card_name">Palmon</div>
  3778. <divclass="cardinfo_top">
  3779. <divclass="card_img">
  3780. <imgsrc="../images/cardlist/card/BT14-044.png"alt="BT14-044Palmon"></div>
  3781. <divclass="cardinfo_top_body">
  3782. <dl>
  3783. <dt>Form</dt>
  3784. <dd>Rookie</dd>
  3785. </dl>
  3786. <dl>
  3787. <dt>Attribute</dt>
  3788. <dd>Data</dd>
  3789. </dl>
  3790. <dl>
  3791. <dt>Type</dt>
  3792. <dd>Vegetation</dd>
  3793. </dl>
  3794. <dl>
  3795. <dt>DP</dt>
  3796. <dd>1000</dl>
  3797. <dl>
  3798. <dt>PlayCost</dt>
  3799. <dd>3</dd>
  3800. </dl>
  3801. <dl>
  3802. <dt>DigivolveCost1</dt>
  3803. <dd>0fromLv.2</dd>
  3804. </dl>
  3805. <dl>
  3806. <dt>DigivolveCost2</dt>
  3807. <dd>-</dd>
  3808. </dl>
  3809. </div>
  3810. </div>
  3811. <divclass="cardinfo_bottom">
  3812. <dl>
  3813. <dt>Effect</dt>
  3814. <dd>[Start of Your Main Phase] 1 of your opponent's Digimon gains "[All Turns] When this Digimon becomes suspended, lose 2 memory." until the end of their turn.</dd>
  3815. </dl>
  3816. <dl>
  3817. <dt>Digivolveeffect</dt>
  3818. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, if you have a green Tamer, reduce the digivolution cost by 1.</dd>
  3819. </dl>
  3820. <dl>
  3821. <dt>Securityeffect</dt>
  3822. <dd>-</dd>
  3823. </dl>
  3824. <dl>
  3825. <dt>Notes</dt>
  3826. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3827. </div>
  3828. </div>
  3829. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3830. </div>
  3831. </div>
  3832. </li>
  3833. <liclass="image_lists_itemdatapage-2">
  3834. <aclass="card_img">
  3835. <imgsrc="../images/cardlist/card/BT14-044_P1.png"alt="BT14-044Palmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  3836. </a>
  3837. <divclass="popup">
  3838. <divclass="card_detailcard_detail_green">
  3839. <divclass="card_detail_inner">
  3840. <ulclass="cardinfo_head">
  3841. <liclass="cardno">BT14-044</li>
  3842. <li>SR</li>
  3843. <liclass="cardtype">Digimon</li>
  3844. <liclass="cardlv">Lv.3</li>
  3845. <liclass="cardtypecardParallel">AlternativeArt</li>
  3846. </ul>
  3847. <divclass="card_name">Palmon</div>
  3848. <divclass="cardinfo_top">
  3849. <divclass="card_img">
  3850. <imgsrc="../images/cardlist/card/BT14-044_P1.png"alt="BT14-044Palmon"></div>
  3851. <divclass="cardinfo_top_body">
  3852. <dl>
  3853. <dt>Form</dt>
  3854. <dd>Rookie</dd>
  3855. </dl>
  3856. <dl>
  3857. <dt>Attribute</dt>
  3858. <dd>Data</dd>
  3859. </dl>
  3860. <dl>
  3861. <dt>Type</dt>
  3862. <dd>Vegetation</dd>
  3863. </dl>
  3864. <dl>
  3865. <dt>DP</dt>
  3866. <dd>1000</dl>
  3867. <dl>
  3868. <dt>PlayCost</dt>
  3869. <dd>3</dd>
  3870. </dl>
  3871. <dl>
  3872. <dt>DigivolveCost1</dt>
  3873. <dd>0fromLv.2</dd>
  3874. </dl>
  3875. <dl>
  3876. <dt>DigivolveCost2</dt>
  3877. <dd>-</dd>
  3878. </dl>
  3879. </div>
  3880. </div>
  3881. <divclass="cardinfo_bottom">
  3882. <dl>
  3883. <dt>Effect</dt>
  3884. <dd>[Start of Your Main Phase] 1 of your opponent's Digimon gains "[All Turns] When this Digimon becomes suspended, lose 2 memory." until the end of their turn.</dd>
  3885. </dl>
  3886. <dl>
  3887. <dt>Digivolveeffect</dt>
  3888. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, if you have a green Tamer, reduce the digivolution cost by 1.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-045.png"alt="BT14-045Kuwagamon"></a>
  3906. <divclass="popup">
  3907. <divclass="card_detailcard_detail_green">
  3908. <divclass="card_detail_inner">
  3909. <ulclass="cardinfo_head">
  3910. <liclass="cardno">BT14-045</li>
  3911. <li>C</li>
  3912. <liclass="cardtype">Digimon</li>
  3913. <liclass="cardlv">Lv.4</li>
  3914. </ul>
  3915. <divclass="card_name">Kuwagamon</div>
  3916. <divclass="cardinfo_top">
  3917. <divclass="card_img">
  3918. <imgsrc="../images/cardlist/card/BT14-045.png"alt="BT14-045Kuwagamon"></div>
  3919. <divclass="cardinfo_top_body">
  3920. <dl>
  3921. <dt>Form</dt>
  3922. <dd>Champion</dd>
  3923. </dl>
  3924. <dl>
  3925. <dt>Attribute</dt>
  3926. <dd>Virus</dd>
  3927. </dl>
  3928. <dl>
  3929. <dt>Type</dt>
  3930. <dd>Insectoid</dd>
  3931. </dl>
  3932. <dl>
  3933. <dt>DP</dt>
  3934. <dd>5000</dl>
  3935. <dl>
  3936. <dt>PlayCost</dt>
  3937. <dd>4</dd>
  3938. </dl>
  3939. <dl>
  3940. <dt>DigivolveCost1</dt>
  3941. <dd>2fromLv.3</dd>
  3942. </dl>
  3943. <dl>
  3944. <dt>DigivolveCost2</dt>
  3945. <dd>-</dd>
  3946. </dl>
  3947. </div>
  3948. </div>
  3949. <divclass="cardinfo_bottom">
  3950. <dl>
  3951. <dt>Effect</dt>
  3952. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  3953. </dl>
  3954. <dl>
  3955. <dt>Digivolveeffect</dt>
  3956. <dd>-</dd>
  3957. </dl>
  3958. <dl>
  3959. <dt>Securityeffect</dt>
  3960. <dd>-</dd>
  3961. </dl>
  3962. <dl>
  3963. <dt>Notes</dt>
  3964. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  3965. </div>
  3966. </div>
  3967. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3968. </div>
  3969. </div>
  3970. </li>
  3971. <liclass="image_lists_itemdatapage-2">
  3972. <aclass="card_img">
  3973. <imgsrc="../images/cardlist/card/BT14-046.png"alt="BT14-046Togemon"></a>
  3974. <divclass="popup">
  3975. <divclass="card_detailcard_detail_green">
  3976. <divclass="card_detail_inner">
  3977. <ulclass="cardinfo_head">
  3978. <liclass="cardno">BT14-046</li>
  3979. <li>U</li>
  3980. <liclass="cardtype">Digimon</li>
  3981. <liclass="cardlv">Lv.4</li>
  3982. </ul>
  3983. <divclass="card_name">Togemon</div>
  3984. <divclass="cardinfo_top">
  3985. <divclass="card_img">
  3986. <imgsrc="../images/cardlist/card/BT14-046.png"alt="BT14-046Togemon"></div>
  3987. <divclass="cardinfo_top_body">
  3988. <dl>
  3989. <dt>Form</dt>
  3990. <dd>Champion</dd>
  3991. </dl>
  3992. <dl>
  3993. <dt>Attribute</dt>
  3994. <dd>Data</dd>
  3995. </dl>
  3996. <dl>
  3997. <dt>Type</dt>
  3998. <dd>Vegetation</dd>
  3999. </dl>
  4000. <dl>
  4001. <dt>DP</dt>
  4002. <dd>3000</dl>
  4003. <dl>
  4004. <dt>PlayCost</dt>
  4005. <dd>4</dd>
  4006. </dl>
  4007. <dl>
  4008. <dt>DigivolveCost1</dt>
  4009. <dd>2fromLv.3</dd>
  4010. </dl>
  4011. <dl>
  4012. <dt>DigivolveCost2</dt>
  4013. <dd>-</dd>
  4014. </dl>
  4015. </div>
  4016. </div>
  4017. <divclass="cardinfo_bottom">
  4018. <dl>
  4019. <dt>Effect</dt>
  4020. <dd>[Your Turn][Once Per Turn] When you would play a green Tamer card from your hand, by suspending 1 of your green Digimon, reduce the play cost by 3.</dd>
  4021. </dl>
  4022. <dl>
  4023. <dt>Digivolveeffect</dt>
  4024. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, if you have a green Tamer, reduce the digivolution cost by 1.</dd>
  4025. </dl>
  4026. <dl>
  4027. <dt>Securityeffect</dt>
  4028. <dd>-</dd>
  4029. </dl>
  4030. <dl>
  4031. <dt>Notes</dt>
  4032. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  4033. </div>
  4034. </div>
  4035. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4036. </div>
  4037. </div>
  4038. </li>
  4039. <liclass="image_lists_itemdatapage-2">
  4040. <aclass="card_img">
  4041. <imgsrc="../images/cardlist/card/BT14-047.png"alt="BT14-047Dokugumon"></a>
  4042. <divclass="popup">
  4043. <divclass="card_detailcard_detail_green">
  4044. <divclass="card_detail_inner">
  4045. <ulclass="cardinfo_head">
  4046. <liclass="cardno">BT14-047</li>
  4047. <li>C</li>
  4048. <liclass="cardtype">Digimon</li>
  4049. <liclass="cardlv">Lv.4</li>
  4050. </ul>
  4051. <divclass="card_name">Dokugumon</div>
  4052. <divclass="cardinfo_top">
  4053. <divclass="card_img">
  4054. <imgsrc="../images/cardlist/card/BT14-047.png"alt="BT14-047Dokugumon"></div>
  4055. <divclass="cardinfo_top_body">
  4056. <dl>
  4057. <dt>Form</dt>
  4058. <dd>Champion</dd>
  4059. </dl>
  4060. <dl>
  4061. <dt>Attribute</dt>
  4062. <dd>Virus</dd>
  4063. </dl>
  4064. <dl>
  4065. <dt>Type</dt>
  4066. <dd>Insectoid</dd>
  4067. </dl>
  4068. <dl>
  4069. <dt>DP</dt>
  4070. <dd>5000</dl>
  4071. <dl>
  4072. <dt>PlayCost</dt>
  4073. <dd>5</dd>
  4074. </dl>
  4075. <dl>
  4076. <dt>DigivolveCost1</dt>
  4077. <dd>2fromLv.3</dd>
  4078. </dl>
  4079. <dl>
  4080. <dt>DigivolveCost2</dt>
  4081. <dd>-</dd>
  4082. </dl>
  4083. </div>
  4084. </div>
  4085. <divclass="cardinfo_bottom">
  4086. <dl>
  4087. <dt>Effect</dt>
  4088. <dd>[On Play][When Digivolving] Suspend 1 of your opponent's Digimon. During your opponent's next unsuspend phase, all of your opponent's Digimon with 5000 DP or less don't unsuspend.</dd>
  4089. </dl>
  4090. <dl>
  4091. <dt>Digivolveeffect</dt>
  4092. <dd>-</dd>
  4093. </dl>
  4094. <dl>
  4095. <dt>Securityeffect</dt>
  4096. <dd>-</dd>
  4097. </dl>
  4098. <dl>
  4099. <dt>Notes</dt>
  4100. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  4101. </div>
  4102. </div>
  4103. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4104. </div>
  4105. </div>
  4106. </li>
  4107. <liclass="image_lists_itemdatapage-2">
  4108. <aclass="card_img">
  4109. <imgsrc="../images/cardlist/card/BT14-048.png"alt="BT14-048Leomon"></a>
  4110. <divclass="popup">
  4111. <divclass="card_detailcard_detail_green">
  4112. <divclass="card_detail_inner">
  4113. <ulclass="cardinfo_head">
  4114. <liclass="cardno">BT14-048</li>
  4115. <li>R</li>
  4116. <liclass="cardtype">Digimon</li>
  4117. <liclass="cardlv">Lv.4</li>
  4118. </ul>
  4119. <divclass="card_name">Leomon</div>
  4120. <divclass="cardinfo_top">
  4121. <divclass="card_img">
  4122. <imgsrc="../images/cardlist/card/BT14-048.png"alt="BT14-048Leomon"></div>
  4123. <divclass="cardinfo_top_body">
  4124. <dl>
  4125. <dt>Form</dt>
  4126. <dd>Champion</dd>
  4127. </dl>
  4128. <dl>
  4129. <dt>Attribute</dt>
  4130. <dd>Vaccine</dd>
  4131. </dl>
  4132. <dl>
  4133. <dt>Type</dt>
  4134. <dd>Beastkin</dd>
  4135. </dl>
  4136. <dl>
  4137. <dt>DP</dt>
  4138. <dd>4000</dl>
  4139. <dl>
  4140. <dt>PlayCost</dt>
  4141. <dd>5</dd>
  4142. </dl>
  4143. <dl>
  4144. <dt>DigivolveCost1</dt>
  4145. <dd>2fromLv.3</dd>
  4146. </dl>
  4147. <dl>
  4148. <dt>DigivolveCost2</dt>
  4149. <dd>-</dd>
  4150. </dl>
  4151. </div>
  4152. </div>
  4153. <divclass="cardinfo_bottom">
  4154. <dl>
  4155. <dt>Effect</dt>
  4156. <dd>[When Attacking] If attacked a Digimon with higher DP than this Digimon, this Digimon may digivolve into 1 level 6 Digimon card with [Leomon] in its name in your hand for a digivolution cost of 6, ignoring its digivolution requirements.</dd>
  4157. </dl>
  4158. <dl>
  4159. <dt>Digivolveeffect</dt>
  4160. <dd>[Your Turn] While this Digimon has [Leomon] in its name, it gets +2000 DP.</dd>
  4161. </dl>
  4162. <dl>
  4163. <dt>Securityeffect</dt>
  4164. <dd>-</dd>
  4165. </dl>
  4166. <dl>
  4167. <dt>Notes</dt>
  4168. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  4169. </div>
  4170. </div>
  4171. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4172. </div>
  4173. </div>
  4174. </li>
  4175. <liclass="image_lists_itemdatapage-2">
  4176. <aclass="card_img">
  4177. <imgsrc="../images/cardlist/card/BT14-049.png"alt="BT14-049LillymonACE"></a>
  4178. <divclass="popup">
  4179. <divclass="card_detailcard_detail_green">
  4180. <divclass="card_detail_inner">
  4181. <ulclass="cardinfo_head">
  4182. <liclass="cardno">BT14-049</li>
  4183. <li>SR</li>
  4184. <liclass="cardtype">Digimon</li>
  4185. <liclass="cardlv">Lv.5</li>
  4186. </ul>
  4187. <divclass="card_name">LillymonACE</div>
  4188. <divclass="cardinfo_top">
  4189. <divclass="card_img">
  4190. <imgsrc="../images/cardlist/card/BT14-049.png"alt="BT14-049LillymonACE"></div>
  4191. <divclass="cardinfo_top_body">
  4192. <dl>
  4193. <dt>Form</dt>
  4194. <dd>Ultimate</dd>
  4195. </dl>
  4196. <dl>
  4197. <dt>Attribute</dt>
  4198. <dd>Data</dd>
  4199. </dl>
  4200. <dl>
  4201. <dt>Type</dt>
  4202. <dd>Fairy</dd>
  4203. </dl>
  4204. <dl>
  4205. <dt>DP</dt>
  4206. <dd>8000</dl>
  4207. <dl>
  4208. <dt>PlayCost</dt>
  4209. <dd>4</dd>
  4210. </dl>
  4211. <dl>
  4212. <dt>DigivolveCost1</dt>
  4213. <dd>3fromLv.4</dd>
  4214. </dl>
  4215. <dl>
  4216. <dt>DigivolveCost2</dt>
  4217. <dd>-</dd>
  4218. </dl>
  4219. </div>
  4220. </div>
  4221. <divclass="cardinfo_bottom">
  4222. <dl>
  4223. <dt>Effect</dt>
  4224. <dd>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] Suspend 1 of your opponent's Digimon. Then, you may return 1 of your opponent's suspended Digimon with 5000 DP or less to the bottom of the deck.</dd>
  4225. </dl>
  4226. <dl>
  4227. <dt>Digivolveeffect</dt>
  4228. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</dd>
  4229. </dl>
  4230. <dl>
  4231. <dt>Securityeffect</dt>
  4232. <dd>-</dd>
  4233. </dl>
  4234. <dl>
  4235. <dt>Notes</dt>
  4236. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  4237. </div>
  4238. </div>
  4239. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4240. </div>
  4241. </div>
  4242. </li>
  4243. <liclass="image_lists_itemdatapage-2">
  4244. <aclass="card_img">
  4245. <imgsrc="../images/cardlist/card/BT14-049_P1.png"alt="BT14-049LillymonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4246. </a>
  4247. <divclass="popup">
  4248. <divclass="card_detailcard_detail_green">
  4249. <divclass="card_detail_inner">
  4250. <ulclass="cardinfo_head">
  4251. <liclass="cardno">BT14-049</li>
  4252. <li>SR</li>
  4253. <liclass="cardtype">Digimon</li>
  4254. <liclass="cardlv">Lv.5</li>
  4255. <liclass="cardtypecardParallel">AlternativeArt</li>
  4256. </ul>
  4257. <divclass="card_name">LillymonACE</div>
  4258. <divclass="cardinfo_top">
  4259. <divclass="card_img">
  4260. <imgsrc="../images/cardlist/card/BT14-049_P1.png"alt="BT14-049LillymonACE"></div>
  4261. <divclass="cardinfo_top_body">
  4262. <dl>
  4263. <dt>Form</dt>
  4264. <dd>Ultimate</dd>
  4265. </dl>
  4266. <dl>
  4267. <dt>Attribute</dt>
  4268. <dd>Data</dd>
  4269. </dl>
  4270. <dl>
  4271. <dt>Type</dt>
  4272. <dd>Fairy</dd>
  4273. </dl>
  4274. <dl>
  4275. <dt>DP</dt>
  4276. <dd>8000</dl>
  4277. <dl>
  4278. <dt>PlayCost</dt>
  4279. <dd>4</dd>
  4280. </dl>
  4281. <dl>
  4282. <dt>DigivolveCost1</dt>
  4283. <dd>3fromLv.4</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>[Hand][Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.)<br> [On Play][When Digivolving] Suspend 1 of your opponent's Digimon. Then, you may return 1 of your opponent's suspended Digimon with 5000 DP or less to the bottom of the deck.</dd>
  4295. </dl>
  4296. <dl>
  4297. <dt>Digivolveeffect</dt>
  4298. <dd><Overflow (-3)> (When this card would move from the battle area or under a card to another area, lose 3 memory.)</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-050.png"alt="BT14-050Piximon"></a>
  4316. <divclass="popup">
  4317. <divclass="card_detailcard_detail_green">
  4318. <divclass="card_detail_inner">
  4319. <ulclass="cardinfo_head">
  4320. <liclass="cardno">BT14-050</li>
  4321. <li>C</li>
  4322. <liclass="cardtype">Digimon</li>
  4323. <liclass="cardlv">Lv.5</li>
  4324. </ul>
  4325. <divclass="card_name">Piximon</div>
  4326. <divclass="cardinfo_top">
  4327. <divclass="card_img">
  4328. <imgsrc="../images/cardlist/card/BT14-050.png"alt="BT14-050Piximon"></div>
  4329. <divclass="cardinfo_top_body">
  4330. <dl>
  4331. <dt>Form</dt>
  4332. <dd>Ultimate</dd>
  4333. </dl>
  4334. <dl>
  4335. <dt>Attribute</dt>
  4336. <dd>Data</dd>
  4337. </dl>
  4338. <dl>
  4339. <dt>Type</dt>
  4340. <dd>Fairy</dd>
  4341. </dl>
  4342. <dl>
  4343. <dt>DP</dt>
  4344. <dd>7000</dl>
  4345. <dl>
  4346. <dt>PlayCost</dt>
  4347. <dd>6</dd>
  4348. </dl>
  4349. <dl>
  4350. <dt>DigivolveCost1</dt>
  4351. <dd>3fromLv.4</dd>
  4352. </dl>
  4353. <dl>
  4354. <dt>DigivolveCost2</dt>
  4355. <dd>-</dd>
  4356. </dl>
  4357. </div>
  4358. </div>
  4359. <divclass="cardinfo_bottom">
  4360. <dl>
  4361. <dt>Effect</dt>
  4362. <dd>[On Play][When Digivolving] 1 of your opponent's Digimon doesn't unsuspend until the end of their turn.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-051.png"alt="BT14-051Okuwamon"></a>
  4384. <divclass="popup">
  4385. <divclass="card_detailcard_detail_green">
  4386. <divclass="card_detail_inner">
  4387. <ulclass="cardinfo_head">
  4388. <liclass="cardno">BT14-051</li>
  4389. <li>C</li>
  4390. <liclass="cardtype">Digimon</li>
  4391. <liclass="cardlv">Lv.5</li>
  4392. </ul>
  4393. <divclass="card_name">Okuwamon</div>
  4394. <divclass="cardinfo_top">
  4395. <divclass="card_img">
  4396. <imgsrc="../images/cardlist/card/BT14-051.png"alt="BT14-051Okuwamon"></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>Virus</dd>
  4405. </dl>
  4406. <dl>
  4407. <dt>Type</dt>
  4408. <dd>Insectoid</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>3fromLv.4</dd>
  4420. </dl>
  4421. <dl>
  4422. <dt>DigivolveCost2</dt>
  4423. <dd>-</dd>
  4424. </dl>
  4425. </div>
  4426. </div>
  4427. <divclass="cardinfo_bottom">
  4428. <dl>
  4429. <dt>Effect</dt>
  4430. <dd>[End of Opponent's Turn][Once Per Turn] By suspending 1 of your Digimon, reveal the top 5 cards of your deck. Add 2 green Digimon cards among them to the hand. Return the rest to the bottom of deck.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-052.png"alt="BT14-052Panjyamon"></a>
  4452. <divclass="popup">
  4453. <divclass="card_detailcard_detail_green">
  4454. <divclass="card_detail_inner">
  4455. <ulclass="cardinfo_head">
  4456. <liclass="cardno">BT14-052</li>
  4457. <li>C</li>
  4458. <liclass="cardtype">Digimon</li>
  4459. <liclass="cardlv">Lv.5</li>
  4460. </ul>
  4461. <divclass="card_name">Panjyamon</div>
  4462. <divclass="cardinfo_top">
  4463. <divclass="card_img">
  4464. <imgsrc="../images/cardlist/card/BT14-052.png"alt="BT14-052Panjyamon"></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>Vaccine</dd>
  4473. </dl>
  4474. <dl>
  4475. <dt>Type</dt>
  4476. <dd>Beastkin</dd>
  4477. </dl>
  4478. <dl>
  4479. <dt>DP</dt>
  4480. <dd>7000</dl>
  4481. <dl>
  4482. <dt>PlayCost</dt>
  4483. <dd>8</dd>
  4484. </dl>
  4485. <dl>
  4486. <dt>DigivolveCost1</dt>
  4487. <dd>3fromLv.4</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><Piercing><br> [When Digivolving] Suspend 1 of your opponent's Digimon.<br> (Rule) Name: Treated as having [Leomon].</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>Digivolveeffect</dt>
  4502. <dd>[Your Turn] While this Digimon has [Leomon] in its name, it gets +2000 DP.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-053.png"alt="BT14-053Rosemon"></a>
  4520. <divclass="popup">
  4521. <divclass="card_detailcard_detail_green">
  4522. <divclass="card_detail_inner">
  4523. <ulclass="cardinfo_head">
  4524. <liclass="cardno">BT14-053</li>
  4525. <li>R</li>
  4526. <liclass="cardtype">Digimon</li>
  4527. <liclass="cardlv">Lv.6</li>
  4528. </ul>
  4529. <divclass="card_name">Rosemon</div>
  4530. <divclass="cardinfo_top">
  4531. <divclass="card_img">
  4532. <imgsrc="../images/cardlist/card/BT14-053.png"alt="BT14-053Rosemon"></div>
  4533. <divclass="cardinfo_top_body">
  4534. <dl>
  4535. <dt>Form</dt>
  4536. <dd>Mega</dd>
  4537. </dl>
  4538. <dl>
  4539. <dt>Attribute</dt>
  4540. <dd>Data</dd>
  4541. </dl>
  4542. <dl>
  4543. <dt>Type</dt>
  4544. <dd>Fairy</dd>
  4545. </dl>
  4546. <dl>
  4547. <dt>DP</dt>
  4548. <dd>11000</dl>
  4549. <dl>
  4550. <dt>PlayCost</dt>
  4551. <dd>11</dd>
  4552. </dl>
  4553. <dl>
  4554. <dt>DigivolveCost1</dt>
  4555. <dd>3fromLv.5</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>[When Digivolving][When Attacking] Suspend 1 of your opponent's Digimon or Tamers.<br> [Your Turn][Once Per Turn] When an effect suspends a Digimon or Tamer, you may unsuspend this Digimon.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-054.png"alt="BT14-054SaberLeomon"></a>
  4588. <divclass="popup">
  4589. <divclass="card_detailcard_detail_green">
  4590. <divclass="card_detail_inner">
  4591. <ulclass="cardinfo_head">
  4592. <liclass="cardno">BT14-054</li>
  4593. <li>U</li>
  4594. <liclass="cardtype">Digimon</li>
  4595. <liclass="cardlv">Lv.6</li>
  4596. </ul>
  4597. <divclass="card_name">SaberLeomon</div>
  4598. <divclass="cardinfo_top">
  4599. <divclass="card_img">
  4600. <imgsrc="../images/cardlist/card/BT14-054.png"alt="BT14-054SaberLeomon"></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>Data</dd>
  4609. </dl>
  4610. <dl>
  4611. <dt>Type</dt>
  4612. <dd>AncientAnimal</dd>
  4613. </dl>
  4614. <dl>
  4615. <dt>DP</dt>
  4616. <dd>12000</dl>
  4617. <dl>
  4618. <dt>PlayCost</dt>
  4619. <dd>12</dd>
  4620. </dl>
  4621. <dl>
  4622. <dt>DigivolveCost1</dt>
  4623. <dd>4fromLv.5</dd>
  4624. </dl>
  4625. <dl>
  4626. <dt>DigivolveCost2</dt>
  4627. <dd>-</dd>
  4628. </dl>
  4629. </div>
  4630. </div>
  4631. <divclass="cardinfo_bottom">
  4632. <dl>
  4633. <dt>Effect</dt>
  4634. <dd><Piercing><br> [When Digivolving] By unsuspending this Digimon, suspend 1 of your opponent's Digimon.<br> [End of Your Turn] This Digimon may attack an opponent's Digimon.</dd>
  4635. </dl>
  4636. <dl>
  4637. <dt>Digivolveeffect</dt>
  4638. <dd>-</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-055.png"alt="BT14-055Kokuwamon"></a>
  4656. <divclass="popup">
  4657. <divclass="card_detailcard_detail_black">
  4658. <divclass="card_detail_inner">
  4659. <ulclass="cardinfo_head">
  4660. <liclass="cardno">BT14-055</li>
  4661. <li>C</li>
  4662. <liclass="cardtype">Digimon</li>
  4663. <liclass="cardlv">Lv.3</li>
  4664. </ul>
  4665. <divclass="card_name">Kokuwamon</div>
  4666. <divclass="cardinfo_top">
  4667. <divclass="card_img">
  4668. <imgsrc="../images/cardlist/card/BT14-055.png"alt="BT14-055Kokuwamon"></div>
  4669. <divclass="cardinfo_top_body">
  4670. <dl>
  4671. <dt>Form</dt>
  4672. <dd>Rookie</dd>
  4673. </dl>
  4674. <dl>
  4675. <dt>Attribute</dt>
  4676. <dd>Data</dd>
  4677. </dl>
  4678. <dl>
  4679. <dt>Type</dt>
  4680. <dd>Machine</dd>
  4681. </dl>
  4682. <dl>
  4683. <dt>DP</dt>
  4684. <dd>2000</dl>
  4685. <dl>
  4686. <dt>PlayCost</dt>
  4687. <dd>3</dd>
  4688. </dl>
  4689. <dl>
  4690. <dt>DigivolveCost1</dt>
  4691. <dd>0fromLv.2</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>-</dd>
  4703. </dl>
  4704. <dl>
  4705. <dt>Digivolveeffect</dt>
  4706. <dd><Blocker></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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-056.png"alt="BT14-056Commandramon"></a>
  4724. <divclass="popup">
  4725. <divclass="card_detailcard_detail_black">
  4726. <divclass="card_detail_inner">
  4727. <ulclass="cardinfo_head">
  4728. <liclass="cardno">BT14-056</li>
  4729. <li>SR</li>
  4730. <liclass="cardtype">Digimon</li>
  4731. <liclass="cardlv">Lv.3</li>
  4732. </ul>
  4733. <divclass="card_name">Commandramon</div>
  4734. <divclass="cardinfo_top">
  4735. <divclass="card_img">
  4736. <imgsrc="../images/cardlist/card/BT14-056.png"alt="BT14-056Commandramon"></div>
  4737. <divclass="cardinfo_top_body">
  4738. <dl>
  4739. <dt>Form</dt>
  4740. <dd>Rookie</dd>
  4741. </dl>
  4742. <dl>
  4743. <dt>Attribute</dt>
  4744. <dd>Virus</dd>
  4745. </dl>
  4746. <dl>
  4747. <dt>Type</dt>
  4748. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  4749. </dl>
  4750. <dl>
  4751. <dt>DP</dt>
  4752. <dd>1000</dl>
  4753. <dl>
  4754. <dt>PlayCost</dt>
  4755. <dd>3</dd>
  4756. </dl>
  4757. <dl>
  4758. <dt>DigivolveCost1</dt>
  4759. <dd>0fromLv.2</dd>
  4760. </dl>
  4761. <dl>
  4762. <dt>DigivolveCost2</dt>
  4763. <dd>-</dd>
  4764. </dl>
  4765. </div>
  4766. </div>
  4767. <divclass="cardinfo_bottom">
  4768. <dl>
  4769. <dt>Effect</dt>
  4770. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with the [D-Brigade] or [DigiPolice] trait among them to the hand. Return the rest to the top or bottom of the deck.</dd>
  4771. </dl>
  4772. <dl>
  4773. <dt>Digivolveeffect</dt>
  4774. <dd>[All Turns][Once Per Turn] When this Digimon would leave the battle area other than by one of your effects, by deleting 1 of your other Digimon with the [D-Brigade] trait, prevent it from leaving.</dd>
  4775. </dl>
  4776. <dl>
  4777. <dt>Securityeffect</dt>
  4778. <dd>-</dd>
  4779. </dl>
  4780. <dl>
  4781. <dt>Notes</dt>
  4782. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  4783. </div>
  4784. </div>
  4785. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4786. </div>
  4787. </div>
  4788. </li>
  4789. <liclass="image_lists_itemdatapage-2">
  4790. <aclass="card_img">
  4791. <imgsrc="../images/cardlist/card/BT14-056_P1.png"alt="BT14-056Commandramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  4792. </a>
  4793. <divclass="popup">
  4794. <divclass="card_detailcard_detail_black">
  4795. <divclass="card_detail_inner">
  4796. <ulclass="cardinfo_head">
  4797. <liclass="cardno">BT14-056</li>
  4798. <li>SR</li>
  4799. <liclass="cardtype">Digimon</li>
  4800. <liclass="cardlv">Lv.3</li>
  4801. <liclass="cardtypecardParallel">AlternativeArt</li>
  4802. </ul>
  4803. <divclass="card_name">Commandramon</div>
  4804. <divclass="cardinfo_top">
  4805. <divclass="card_img">
  4806. <imgsrc="../images/cardlist/card/BT14-056_P1.png"alt="BT14-056Commandramon"></div>
  4807. <divclass="cardinfo_top_body">
  4808. <dl>
  4809. <dt>Form</dt>
  4810. <dd>Rookie</dd>
  4811. </dl>
  4812. <dl>
  4813. <dt>Attribute</dt>
  4814. <dd>Virus</dd>
  4815. </dl>
  4816. <dl>
  4817. <dt>Type</dt>
  4818. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  4819. </dl>
  4820. <dl>
  4821. <dt>DP</dt>
  4822. <dd>1000</dl>
  4823. <dl>
  4824. <dt>PlayCost</dt>
  4825. <dd>3</dd>
  4826. </dl>
  4827. <dl>
  4828. <dt>DigivolveCost1</dt>
  4829. <dd>0fromLv.2</dd>
  4830. </dl>
  4831. <dl>
  4832. <dt>DigivolveCost2</dt>
  4833. <dd>-</dd>
  4834. </dl>
  4835. </div>
  4836. </div>
  4837. <divclass="cardinfo_bottom">
  4838. <dl>
  4839. <dt>Effect</dt>
  4840. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with the [D-Brigade] or [DigiPolice] trait among them to the hand. Return the rest to the top or bottom of the deck.</dd>
  4841. </dl>
  4842. <dl>
  4843. <dt>Digivolveeffect</dt>
  4844. <dd>[All Turns][Once Per Turn] When this Digimon would leave the battle area other than by one of your effects, by deleting 1 of your other Digimon with the [D-Brigade] trait, prevent it from leaving.</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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-057.png"alt="BT14-057ChuuChuumon"></a>
  4862. <divclass="popup">
  4863. <divclass="card_detailcard_detail_black_purplemulticolor">
  4864. <divclass="card_detail_inner">
  4865. <ulclass="cardinfo_head">
  4866. <liclass="cardno">BT14-057</li>
  4867. <li>C</li>
  4868. <liclass="cardtype">Digimon</li>
  4869. <liclass="cardlv">Lv.3</li>
  4870. </ul>
  4871. <divclass="card_name">ChuuChuumon</div>
  4872. <divclass="cardinfo_top">
  4873. <divclass="card_img">
  4874. <imgsrc="../images/cardlist/card/BT14-057.png"alt="BT14-057ChuuChuumon"></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>Virus</dd>
  4883. </dl>
  4884. <dl>
  4885. <dt>Type</dt>
  4886. <dd>Beast/BagraArmy/Twilight</dd>
  4887. </dl>
  4888. <dl>
  4889. <dt>DP</dt>
  4890. <dd>2000</dl>
  4891. <dl>
  4892. <dt>PlayCost</dt>
  4893. <dd>3</dd>
  4894. </dl>
  4895. <dl>
  4896. <dt>DigivolveCost1</dt>
  4897. <dd>1fromLv.2</dd>
  4898. </dl>
  4899. <dl>
  4900. <dt>DigivolveCost2</dt>
  4901. <dd>1fromLv.2</dd>
  4902. </dl>
  4903. </div>
  4904. </div>
  4905. <divclass="cardinfo_bottom">
  4906. <dl>
  4907. <dt>Effect</dt>
  4908. <dd>[On Deletion] <Save> (You may place this card under one of your Tamers.)</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>Digivolveeffect</dt>
  4912. <dd><Blocker></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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-058.png"alt="BT14-058Numemon"></a>
  4930. <divclass="popup">
  4931. <divclass="card_detailcard_detail_black">
  4932. <divclass="card_detail_inner">
  4933. <ulclass="cardinfo_head">
  4934. <liclass="cardno">BT14-058</li>
  4935. <li>R</li>
  4936. <liclass="cardtype">Digimon</li>
  4937. <liclass="cardlv">Lv.4</li>
  4938. </ul>
  4939. <divclass="card_name">Numemon</div>
  4940. <divclass="cardinfo_top">
  4941. <divclass="card_img">
  4942. <imgsrc="../images/cardlist/card/BT14-058.png"alt="BT14-058Numemon"></div>
  4943. <divclass="cardinfo_top_body">
  4944. <dl>
  4945. <dt>Form</dt>
  4946. <dd>Champion</dd>
  4947. </dl>
  4948. <dl>
  4949. <dt>Attribute</dt>
  4950. <dd>Virus</dd>
  4951. </dl>
  4952. <dl>
  4953. <dt>Type</dt>
  4954. <dd>Mollusk/DigiPolice</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>2fromLv.3</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][When Digivolving] By placing 1 [Satsuki Tamahime] from your hand as this Digimon's bottom digivolution card, 1 of your Digimon gains <Rush> for the turn.</dd>
  4977. </dl>
  4978. <dl>
  4979. <dt>Digivolveeffect</dt>
  4980. <dd><Blocker></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/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</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/BT14-059.png"alt="BT14-059Damemon"></a>
  4998. <divclass="popup">
  4999. <divclass="card_detailcard_detail_black_purplemulticolor">
  5000. <divclass="card_detail_inner">
  5001. <ulclass="cardinfo_head">
  5002. <liclass="cardno">BT14-059</li>
  5003. <li>C</li>
  5004. <liclass="cardtype">Digimon</li>
  5005. <liclass="cardlv">Lv.4</li>
  5006. </ul>
  5007. <divclass="card_name">Damemon</div>
  5008. <divclass="cardinfo_top">
  5009. <divclass="card_img">
  5010. <imgsrc="../images/cardlist/card/BT14-059.png"alt="BT14-059Damemon"></div>
  5011. <divclass="cardinfo_top_body">
  5012. <dl>
  5013. <dt>Form</dt>
  5014. <dd>Champion</dd>
  5015. </dl>
  5016. <dl>
  5017. <dt>Attribute</dt>
  5018. <dd>Virus</dd>
  5019. </dl>
  5020. <dl>
  5021. <dt>Type</dt>
  5022. <dd>Mutant/BagraArmy/Twilight</dd>
  5023. </dl>
  5024. <dl>
  5025. <dt>DP</dt>
  5026. <dd>3000</dl>
  5027. <dl>
  5028. <dt>PlayCost</dt>
  5029. <dd>4</dd>
  5030. </dl>
  5031. <dl>
  5032. <dt>DigivolveCost1</dt>
  5033. <dd>2fromLv.3</dd>
  5034. </dl>
  5035. <dl>
  5036. <dt>DigivolveCost2</dt>
  5037. <dd>2fromLv.3</dd>
  5038. </dl>
  5039. </div>
  5040. </div>
  5041. <divclass="cardinfo_bottom">
  5042. <dl>
  5043. <dt>Effect</dt>
  5044. <dd><Retaliation><br> [On Deletion] <Save></dd>
  5045. </dl>
  5046. <dl>
  5047. <dt>Digivolveeffect</dt>
  5048. <dd><Blocker></dd>
  5049. </dl>
  5050. <dl>
  5051. <dt>Securityeffect</dt>
  5052. <dd>-</dd>
  5053. </dl>
  5054. <dl>
  5055. <dt>Notes</dt>
  5056. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5057. </div>
  5058. </div>
  5059. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5060. </div>
  5061. </div>
  5062. </li>
  5063. <liclass="image_lists_itemdatapage-2">
  5064. <aclass="card_img">
  5065. <imgsrc="../images/cardlist/card/BT14-060.png"alt="BT14-060Hi-Commandramon"></a>
  5066. <divclass="popup">
  5067. <divclass="card_detailcard_detail_black">
  5068. <divclass="card_detail_inner">
  5069. <ulclass="cardinfo_head">
  5070. <liclass="cardno">BT14-060</li>
  5071. <li>U</li>
  5072. <liclass="cardtype">Digimon</li>
  5073. <liclass="cardlv">Lv.4</li>
  5074. </ul>
  5075. <divclass="card_name">Hi-Commandramon</div>
  5076. <divclass="cardinfo_top">
  5077. <divclass="card_img">
  5078. <imgsrc="../images/cardlist/card/BT14-060.png"alt="BT14-060Hi-Commandramon"></div>
  5079. <divclass="cardinfo_top_body">
  5080. <dl>
  5081. <dt>Form</dt>
  5082. <dd>Champion</dd>
  5083. </dl>
  5084. <dl>
  5085. <dt>Attribute</dt>
  5086. <dd>Virus</dd>
  5087. </dl>
  5088. <dl>
  5089. <dt>Type</dt>
  5090. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  5091. </dl>
  5092. <dl>
  5093. <dt>DP</dt>
  5094. <dd>4000</dl>
  5095. <dl>
  5096. <dt>PlayCost</dt>
  5097. <dd>4</dd>
  5098. </dl>
  5099. <dl>
  5100. <dt>DigivolveCost1</dt>
  5101. <dd>2fromLv.3</dd>
  5102. </dl>
  5103. <dl>
  5104. <dt>DigivolveCost2</dt>
  5105. <dd>-</dd>
  5106. </dl>
  5107. </div>
  5108. </div>
  5109. <divclass="cardinfo_bottom">
  5110. <dl>
  5111. <dt>Effect</dt>
  5112. <dd>[When Attacking] Reveal the top 3 cards of your deck. You may play 1 card with the [D-Brigade] or [DigiPolice] trait and a play cost of 3 or less among them without paying the cost. Return the rest to the bottom of the deck.<br> (Rule) Name: Also treated as [Commandramon].</dd>
  5113. </dl>
  5114. <dl>
  5115. <dt>Digivolveeffect</dt>
  5116. <dd>[All Turns][Once Per Turn] When this Digimon would leave the battle area other than by one of your effects, by deleting 1 of your other Digimon with the [D-Brigade] trait, prevent it from leaving.</dd>
  5117. </dl>
  5118. <dl>
  5119. <dt>Securityeffect</dt>
  5120. <dd>-</dd>
  5121. </dl>
  5122. <dl>
  5123. <dt>Notes</dt>
  5124. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5125. </div>
  5126. </div>
  5127. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5128. </div>
  5129. </div>
  5130. </li>
  5131. <liclass="image_lists_itemdatapage-2">
  5132. <aclass="card_img">
  5133. <imgsrc="../images/cardlist/card/BT14-061.png"alt="BT14-061Vegiemon"></a>
  5134. <divclass="popup">
  5135. <divclass="card_detailcard_detail_black">
  5136. <divclass="card_detail_inner">
  5137. <ulclass="cardinfo_head">
  5138. <liclass="cardno">BT14-061</li>
  5139. <li>C</li>
  5140. <liclass="cardtype">Digimon</li>
  5141. <liclass="cardlv">Lv.4</li>
  5142. </ul>
  5143. <divclass="card_name">Vegiemon</div>
  5144. <divclass="cardinfo_top">
  5145. <divclass="card_img">
  5146. <imgsrc="../images/cardlist/card/BT14-061.png"alt="BT14-061Vegiemon"></div>
  5147. <divclass="cardinfo_top_body">
  5148. <dl>
  5149. <dt>Form</dt>
  5150. <dd>Champion</dd>
  5151. </dl>
  5152. <dl>
  5153. <dt>Attribute</dt>
  5154. <dd>Virus</dd>
  5155. </dl>
  5156. <dl>
  5157. <dt>Type</dt>
  5158. <dd>CarnivorousPlant</dd>
  5159. </dl>
  5160. <dl>
  5161. <dt>DP</dt>
  5162. <dd>4000</dl>
  5163. <dl>
  5164. <dt>PlayCost</dt>
  5165. <dd>4</dd>
  5166. </dl>
  5167. <dl>
  5168. <dt>DigivolveCost1</dt>
  5169. <dd>2fromLv.3</dd>
  5170. </dl>
  5171. <dl>
  5172. <dt>DigivolveCost2</dt>
  5173. <dd>-</dd>
  5174. </dl>
  5175. </div>
  5176. </div>
  5177. <divclass="cardinfo_bottom">
  5178. <dl>
  5179. <dt>Effect</dt>
  5180. <dd>[On Play][When Digivolving] By returning 1 Digimon card from your opponent's trash to the top of the deck, gain 1 memory.</dd>
  5181. </dl>
  5182. <dl>
  5183. <dt>Digivolveeffect</dt>
  5184. <dd>-</dd>
  5185. </dl>
  5186. <dl>
  5187. <dt>Securityeffect</dt>
  5188. <dd>-</dd>
  5189. </dl>
  5190. <dl>
  5191. <dt>Notes</dt>
  5192. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5193. </div>
  5194. </div>
  5195. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5196. </div>
  5197. </div>
  5198. </li>
  5199. <liclass="image_lists_itemdatapage-2">
  5200. <aclass="card_img">
  5201. <imgsrc="../images/cardlist/card/BT14-062.png"alt="BT14-062Datamon"></a>
  5202. <divclass="popup">
  5203. <divclass="card_detailcard_detail_black">
  5204. <divclass="card_detail_inner">
  5205. <ulclass="cardinfo_head">
  5206. <liclass="cardno">BT14-062</li>
  5207. <li>C</li>
  5208. <liclass="cardtype">Digimon</li>
  5209. <liclass="cardlv">Lv.5</li>
  5210. </ul>
  5211. <divclass="card_name">Datamon</div>
  5212. <divclass="cardinfo_top">
  5213. <divclass="card_img">
  5214. <imgsrc="../images/cardlist/card/BT14-062.png"alt="BT14-062Datamon"></div>
  5215. <divclass="cardinfo_top_body">
  5216. <dl>
  5217. <dt>Form</dt>
  5218. <dd>Ultimate</dd>
  5219. </dl>
  5220. <dl>
  5221. <dt>Attribute</dt>
  5222. <dd>Virus</dd>
  5223. </dl>
  5224. <dl>
  5225. <dt>Type</dt>
  5226. <dd>Machine</dd>
  5227. </dl>
  5228. <dl>
  5229. <dt>DP</dt>
  5230. <dd>6000</dl>
  5231. <dl>
  5232. <dt>PlayCost</dt>
  5233. <dd>6</dd>
  5234. </dl>
  5235. <dl>
  5236. <dt>DigivolveCost1</dt>
  5237. <dd>2fromLv.4</dd>
  5238. </dl>
  5239. <dl>
  5240. <dt>DigivolveCost2</dt>
  5241. <dd>-</dd>
  5242. </dl>
  5243. </div>
  5244. </div>
  5245. <divclass="cardinfo_bottom">
  5246. <dl>
  5247. <dt>Effect</dt>
  5248. <dd>[All Turns] This Digimon can't be deleted by your opponent's effects.</dd>
  5249. </dl>
  5250. <dl>
  5251. <dt>Digivolveeffect</dt>
  5252. <dd>-</dd>
  5253. </dl>
  5254. <dl>
  5255. <dt>Securityeffect</dt>
  5256. <dd>-</dd>
  5257. </dl>
  5258. <dl>
  5259. <dt>Notes</dt>
  5260. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5261. </div>
  5262. </div>
  5263. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5264. </div>
  5265. </div>
  5266. </li>
  5267. <liclass="image_lists_itemdatapage-2">
  5268. <aclass="card_img">
  5269. <imgsrc="../images/cardlist/card/BT14-063.png"alt="BT14-063BlackKingNumemon"></a>
  5270. <divclass="popup">
  5271. <divclass="card_detailcard_detail_black">
  5272. <divclass="card_detail_inner">
  5273. <ulclass="cardinfo_head">
  5274. <liclass="cardno">BT14-063</li>
  5275. <li>U</li>
  5276. <liclass="cardtype">Digimon</li>
  5277. <liclass="cardlv">Lv.5</li>
  5278. </ul>
  5279. <divclass="card_name">BlackKingNumemon</div>
  5280. <divclass="cardinfo_top">
  5281. <divclass="card_img">
  5282. <imgsrc="../images/cardlist/card/BT14-063.png"alt="BT14-063BlackKingNumemon"></div>
  5283. <divclass="cardinfo_top_body">
  5284. <dl>
  5285. <dt>Form</dt>
  5286. <dd>Ultimate</dd>
  5287. </dl>
  5288. <dl>
  5289. <dt>Attribute</dt>
  5290. <dd>Virus</dd>
  5291. </dl>
  5292. <dl>
  5293. <dt>Type</dt>
  5294. <dd>Mollusk</dd>
  5295. </dl>
  5296. <dl>
  5297. <dt>DP</dt>
  5298. <dd>6000</dl>
  5299. <dl>
  5300. <dt>PlayCost</dt>
  5301. <dd>6</dd>
  5302. </dl>
  5303. <dl>
  5304. <dt>DigivolveCost1</dt>
  5305. <dd>3fromLv.4</dd>
  5306. </dl>
  5307. <dl>
  5308. <dt>DigivolveCost2</dt>
  5309. <dd>-</dd>
  5310. </dl>
  5311. </div>
  5312. </div>
  5313. <divclass="cardinfo_bottom">
  5314. <dl>
  5315. <dt>Effect</dt>
  5316. <dd>[Digivolve] Lv.4 w/[Numemon] in name: Cost 3<br>[On Deletion] Reveal the top 3 cards of your deck. From among them, add 1 card with [Monzaemon] in its name to your hand and play 1 Digimon card with [Numemon] in its name without paying the cost. Return the rest to the bottom of the deck.</dd>
  5317. </dl>
  5318. <dl>
  5319. <dt>Digivolveeffect</dt>
  5320. <dd><Blocker></dd>
  5321. </dl>
  5322. <dl>
  5323. <dt>Securityeffect</dt>
  5324. <dd>-</dd>
  5325. </dl>
  5326. <dl>
  5327. <dt>Notes</dt>
  5328. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5329. </div>
  5330. </div>
  5331. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5332. </div>
  5333. </div>
  5334. </li>
  5335. <liclass="image_lists_itemdatapage-2">
  5336. <aclass="card_img">
  5337. <imgsrc="../images/cardlist/card/BT14-064.png"alt="BT14-064Cargodramon"></a>
  5338. <divclass="popup">
  5339. <divclass="card_detailcard_detail_black">
  5340. <divclass="card_detail_inner">
  5341. <ulclass="cardinfo_head">
  5342. <liclass="cardno">BT14-064</li>
  5343. <li>R</li>
  5344. <liclass="cardtype">Digimon</li>
  5345. <liclass="cardlv">Lv.5</li>
  5346. </ul>
  5347. <divclass="card_name">Cargodramon</div>
  5348. <divclass="cardinfo_top">
  5349. <divclass="card_img">
  5350. <imgsrc="../images/cardlist/card/BT14-064.png"alt="BT14-064Cargodramon"></div>
  5351. <divclass="cardinfo_top_body">
  5352. <dl>
  5353. <dt>Form</dt>
  5354. <dd>Ultimate</dd>
  5355. </dl>
  5356. <dl>
  5357. <dt>Attribute</dt>
  5358. <dd>Virus</dd>
  5359. </dl>
  5360. <dl>
  5361. <dt>Type</dt>
  5362. <dd>Machine/D-Brigade/DigiPolice</dd>
  5363. </dl>
  5364. <dl>
  5365. <dt>DP</dt>
  5366. <dd>7000</dl>
  5367. <dl>
  5368. <dt>PlayCost</dt>
  5369. <dd>7</dd>
  5370. </dl>
  5371. <dl>
  5372. <dt>DigivolveCost1</dt>
  5373. <dd>3fromLv.4</dd>
  5374. </dl>
  5375. <dl>
  5376. <dt>DigivolveCost2</dt>
  5377. <dd>-</dd>
  5378. </dl>
  5379. </div>
  5380. </div>
  5381. <divclass="cardinfo_bottom">
  5382. <dl>
  5383. <dt>Effect</dt>
  5384. <dd>[On Play][When Digivolving] Reveal the top 3 cards of your deck. You may play 1 card with the [D-Brigade] or [DigiPolice] trait and a play cost of 4 or less among them without paying the cost. Trash the rest.</dd>
  5385. </dl>
  5386. <dl>
  5387. <dt>Digivolveeffect</dt>
  5388. <dd>[All Turns][Once Per Turn] When one of your other Digimon is deleted, reveal the top 3 cards of your deck. You may play 1 [Commandramon] among them without paying the cost. Trash the rest.</dd>
  5389. </dl>
  5390. <dl>
  5391. <dt>Securityeffect</dt>
  5392. <dd>-</dd>
  5393. </dl>
  5394. <dl>
  5395. <dt>Notes</dt>
  5396. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5397. </div>
  5398. </div>
  5399. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5400. </div>
  5401. </div>
  5402. </li>
  5403. <liclass="image_lists_itemdatapage-2">
  5404. <aclass="card_img">
  5405. <imgsrc="../images/cardlist/card/BT14-065.png"alt="BT14-065Vademon"></a>
  5406. <divclass="popup">
  5407. <divclass="card_detailcard_detail_black">
  5408. <divclass="card_detail_inner">
  5409. <ulclass="cardinfo_head">
  5410. <liclass="cardno">BT14-065</li>
  5411. <li>C</li>
  5412. <liclass="cardtype">Digimon</li>
  5413. <liclass="cardlv">Lv.5</li>
  5414. </ul>
  5415. <divclass="card_name">Vademon</div>
  5416. <divclass="cardinfo_top">
  5417. <divclass="card_img">
  5418. <imgsrc="../images/cardlist/card/BT14-065.png"alt="BT14-065Vademon"></div>
  5419. <divclass="cardinfo_top_body">
  5420. <dl>
  5421. <dt>Form</dt>
  5422. <dd>Ultimate</dd>
  5423. </dl>
  5424. <dl>
  5425. <dt>Attribute</dt>
  5426. <dd>Virus</dd>
  5427. </dl>
  5428. <dl>
  5429. <dt>Type</dt>
  5430. <dd>Alien</dd>
  5431. </dl>
  5432. <dl>
  5433. <dt>DP</dt>
  5434. <dd>7000</dl>
  5435. <dl>
  5436. <dt>PlayCost</dt>
  5437. <dd>7</dd>
  5438. </dl>
  5439. <dl>
  5440. <dt>DigivolveCost1</dt>
  5441. <dd>3fromLv.4</dd>
  5442. </dl>
  5443. <dl>
  5444. <dt>DigivolveCost2</dt>
  5445. <dd>-</dd>
  5446. </dl>
  5447. </div>
  5448. </div>
  5449. <divclass="cardinfo_bottom">
  5450. <dl>
  5451. <dt>Effect</dt>
  5452. <dd>[On Play][When Digivolving] Your opponent reveals the top 3 cards of their deck. <De-Digivolve 1> 1 of your opponent's Digimon for each Digimon card among them. Return the revealed cards to the top or bottom of the deck.</dd>
  5453. </dl>
  5454. <dl>
  5455. <dt>Digivolveeffect</dt>
  5456. <dd>-</dd>
  5457. </dl>
  5458. <dl>
  5459. <dt>Securityeffect</dt>
  5460. <dd>-</dd>
  5461. </dl>
  5462. <dl>
  5463. <dt>Notes</dt>
  5464. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5465. </div>
  5466. </div>
  5467. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5468. </div>
  5469. </div>
  5470. </li>
  5471. <liclass="image_lists_itemdatapage-3">
  5472. <aclass="card_img">
  5473. <imgsrc="../images/cardlist/card/BT14-066.png"alt="BT14-066PlatinumNumemon"></a>
  5474. <divclass="popup">
  5475. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5476. <divclass="card_detail_inner">
  5477. <ulclass="cardinfo_head">
  5478. <liclass="cardno">BT14-066</li>
  5479. <li>R</li>
  5480. <liclass="cardtype">Digimon</li>
  5481. <liclass="cardlv">Lv.6</li>
  5482. </ul>
  5483. <divclass="card_name">PlatinumNumemon</div>
  5484. <divclass="cardinfo_top">
  5485. <divclass="card_img">
  5486. <imgsrc="../images/cardlist/card/BT14-066.png"alt="BT14-066PlatinumNumemon"></div>
  5487. <divclass="cardinfo_top_body">
  5488. <dl>
  5489. <dt>Form</dt>
  5490. <dd>Mega</dd>
  5491. </dl>
  5492. <dl>
  5493. <dt>Attribute</dt>
  5494. <dd>Virus</dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>Type</dt>
  5498. <dd>Mutant</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>DP</dt>
  5502. <dd>9000</dl>
  5503. <dl>
  5504. <dt>PlayCost</dt>
  5505. <dd>10</dd>
  5506. </dl>
  5507. <dl>
  5508. <dt>DigivolveCost1</dt>
  5509. <dd>3fromLv.5</dd>
  5510. </dl>
  5511. <dl>
  5512. <dt>DigivolveCost2</dt>
  5513. <dd>3fromLv.5</dd>
  5514. </dl>
  5515. </div>
  5516. </div>
  5517. <divclass="cardinfo_bottom">
  5518. <dl>
  5519. <dt>Effect</dt>
  5520. <dd>[Digivolve] Lv.5 w/[Numemon]/[Monzaemon] in name: Cost 3<br>[On Play][When Digivolving] By trashing 1 card with [Numemon] in its name in your hand, gain 2 memory.<br>[On Deletion] You may play 1 level 5 or lower Digimon card with [Numemon] or [Monzaemon] in its name from your hand without paying the cost.</dd>
  5521. </dl>
  5522. <dl>
  5523. <dt>Digivolveeffect</dt>
  5524. <dd>-</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>Securityeffect</dt>
  5528. <dd>-</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>Notes</dt>
  5532. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5533. </div>
  5534. </div>
  5535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5536. </div>
  5537. </div>
  5538. </li>
  5539. <liclass="image_lists_itemdatapage-3">
  5540. <aclass="card_img">
  5541. <imgsrc="../images/cardlist/card/BT14-067.png"alt="BT14-067Ebemon"></a>
  5542. <divclass="popup">
  5543. <divclass="card_detailcard_detail_black">
  5544. <divclass="card_detail_inner">
  5545. <ulclass="cardinfo_head">
  5546. <liclass="cardno">BT14-067</li>
  5547. <li>U</li>
  5548. <liclass="cardtype">Digimon</li>
  5549. <liclass="cardlv">Lv.6</li>
  5550. </ul>
  5551. <divclass="card_name">Ebemon</div>
  5552. <divclass="cardinfo_top">
  5553. <divclass="card_img">
  5554. <imgsrc="../images/cardlist/card/BT14-067.png"alt="BT14-067Ebemon"></div>
  5555. <divclass="cardinfo_top_body">
  5556. <dl>
  5557. <dt>Form</dt>
  5558. <dd>Mega</dd>
  5559. </dl>
  5560. <dl>
  5561. <dt>Attribute</dt>
  5562. <dd>Virus</dd>
  5563. </dl>
  5564. <dl>
  5565. <dt>Type</dt>
  5566. <dd>Cyborg</dd>
  5567. </dl>
  5568. <dl>
  5569. <dt>DP</dt>
  5570. <dd>11000</dl>
  5571. <dl>
  5572. <dt>PlayCost</dt>
  5573. <dd>11</dd>
  5574. </dl>
  5575. <dl>
  5576. <dt>DigivolveCost1</dt>
  5577. <dd>3fromLv.5</dd>
  5578. </dl>
  5579. <dl>
  5580. <dt>DigivolveCost2</dt>
  5581. <dd>-</dd>
  5582. </dl>
  5583. </div>
  5584. </div>
  5585. <divclass="cardinfo_bottom">
  5586. <dl>
  5587. <dt>Effect</dt>
  5588. <dd>[On Play][When Digivolving] Your opponent reveals the top 3 cards of their deck. Choose 1 Digimon card among them, and delete up to its play cost's total worth of your opponent's Digimon. Return the revealed cards to the top or bottom of the deck.</dd>
  5589. </dl>
  5590. <dl>
  5591. <dt>Digivolveeffect</dt>
  5592. <dd>-</dd>
  5593. </dl>
  5594. <dl>
  5595. <dt>Securityeffect</dt>
  5596. <dd>-</dd>
  5597. </dl>
  5598. <dl>
  5599. <dt>Notes</dt>
  5600. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5601. </div>
  5602. </div>
  5603. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5604. </div>
  5605. </div>
  5606. </li>
  5607. <liclass="image_lists_itemdatapage-3">
  5608. <aclass="card_img">
  5609. <imgsrc="../images/cardlist/card/BT14-068.png"alt="BT14-068Brigadramon"></a>
  5610. <divclass="popup">
  5611. <divclass="card_detailcard_detail_black">
  5612. <divclass="card_detail_inner">
  5613. <ulclass="cardinfo_head">
  5614. <liclass="cardno">BT14-068</li>
  5615. <li>SR</li>
  5616. <liclass="cardtype">Digimon</li>
  5617. <liclass="cardlv">Lv.6</li>
  5618. </ul>
  5619. <divclass="card_name">Brigadramon</div>
  5620. <divclass="cardinfo_top">
  5621. <divclass="card_img">
  5622. <imgsrc="../images/cardlist/card/BT14-068.png"alt="BT14-068Brigadramon"></div>
  5623. <divclass="cardinfo_top_body">
  5624. <dl>
  5625. <dt>Form</dt>
  5626. <dd>Mega</dd>
  5627. </dl>
  5628. <dl>
  5629. <dt>Attribute</dt>
  5630. <dd>Virus</dd>
  5631. </dl>
  5632. <dl>
  5633. <dt>Type</dt>
  5634. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  5635. </dl>
  5636. <dl>
  5637. <dt>DP</dt>
  5638. <dd>12000</dl>
  5639. <dl>
  5640. <dt>PlayCost</dt>
  5641. <dd>12</dd>
  5642. </dl>
  5643. <dl>
  5644. <dt>DigivolveCost1</dt>
  5645. <dd>4fromLv.5</dd>
  5646. </dl>
  5647. <dl>
  5648. <dt>DigivolveCost2</dt>
  5649. <dd>-</dd>
  5650. </dl>
  5651. </div>
  5652. </div>
  5653. <divclass="cardinfo_bottom">
  5654. <dl>
  5655. <dt>Effect</dt>
  5656. <dd>[When Digivolving] Delete up to 7 play cost's total worth of your opponent's Digimon.<br> [Opponent's Turn] All of your Digimon with the [D-Brigade] trait gain <Blocker>.<br> [End of Your Turn][Once Per Turn] Reveal the top 3 cards of your deck. You may play up to 7 play cost's total worth of cards with the [D-Brigade] or [DigiPolice] trait among them without paying the costs. Trash the rest.</dd>
  5657. </dl>
  5658. <dl>
  5659. <dt>Digivolveeffect</dt>
  5660. <dd>-</dd>
  5661. </dl>
  5662. <dl>
  5663. <dt>Securityeffect</dt>
  5664. <dd>-</dd>
  5665. </dl>
  5666. <dl>
  5667. <dt>Notes</dt>
  5668. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5669. </div>
  5670. </div>
  5671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5672. </div>
  5673. </div>
  5674. </li>
  5675. <liclass="image_lists_itemdatapage-3">
  5676. <aclass="card_img">
  5677. <imgsrc="../images/cardlist/card/BT14-068_P1.png"alt="BT14-068Brigadramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5678. </a>
  5679. <divclass="popup">
  5680. <divclass="card_detailcard_detail_black">
  5681. <divclass="card_detail_inner">
  5682. <ulclass="cardinfo_head">
  5683. <liclass="cardno">BT14-068</li>
  5684. <li>SR</li>
  5685. <liclass="cardtype">Digimon</li>
  5686. <liclass="cardlv">Lv.6</li>
  5687. <liclass="cardtypecardParallel">AlternativeArt</li>
  5688. </ul>
  5689. <divclass="card_name">Brigadramon</div>
  5690. <divclass="cardinfo_top">
  5691. <divclass="card_img">
  5692. <imgsrc="../images/cardlist/card/BT14-068_P1.png"alt="BT14-068Brigadramon"></div>
  5693. <divclass="cardinfo_top_body">
  5694. <dl>
  5695. <dt>Form</dt>
  5696. <dd>Mega</dd>
  5697. </dl>
  5698. <dl>
  5699. <dt>Attribute</dt>
  5700. <dd>Virus</dd>
  5701. </dl>
  5702. <dl>
  5703. <dt>Type</dt>
  5704. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  5705. </dl>
  5706. <dl>
  5707. <dt>DP</dt>
  5708. <dd>12000</dl>
  5709. <dl>
  5710. <dt>PlayCost</dt>
  5711. <dd>12</dd>
  5712. </dl>
  5713. <dl>
  5714. <dt>DigivolveCost1</dt>
  5715. <dd>4fromLv.5</dd>
  5716. </dl>
  5717. <dl>
  5718. <dt>DigivolveCost2</dt>
  5719. <dd>-</dd>
  5720. </dl>
  5721. </div>
  5722. </div>
  5723. <divclass="cardinfo_bottom">
  5724. <dl>
  5725. <dt>Effect</dt>
  5726. <dd>[When Digivolving] Delete up to 7 play cost's worth of your opponent's Digimon.<br> [Opponent's Turn] All of your Digimon with the [D-Brigade] trait gain <Blocker>.<br> [End of Your Turn][Once Per Turn] Reveal the top 3 cards of your deck. You may play cards with the [D-Brigade] or [DigiPolice] trait among them up to a total play cost of 7 without paying the costs. Trash the rest.</dd>
  5727. </dl>
  5728. <dl>
  5729. <dt>Digivolveeffect</dt>
  5730. <dd>-</dd>
  5731. </dl>
  5732. <dl>
  5733. <dt>Securityeffect</dt>
  5734. <dd>-</dd>
  5735. </dl>
  5736. <dl>
  5737. <dt>Notes</dt>
  5738. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5739. </div>
  5740. </div>
  5741. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5742. </div>
  5743. </div>
  5744. </li>
  5745. <liclass="image_lists_itemdatapage-3">
  5746. <aclass="card_img">
  5747. <imgsrc="../images/cardlist/card/BT14-069.png"alt="BT14-069Gazimon"></a>
  5748. <divclass="popup">
  5749. <divclass="card_detailcard_detail_purple">
  5750. <divclass="card_detail_inner">
  5751. <ulclass="cardinfo_head">
  5752. <liclass="cardno">BT14-069</li>
  5753. <li>C</li>
  5754. <liclass="cardtype">Digimon</li>
  5755. <liclass="cardlv">Lv.3</li>
  5756. </ul>
  5757. <divclass="card_name">Gazimon</div>
  5758. <divclass="cardinfo_top">
  5759. <divclass="card_img">
  5760. <imgsrc="../images/cardlist/card/BT14-069.png"alt="BT14-069Gazimon"></div>
  5761. <divclass="cardinfo_top_body">
  5762. <dl>
  5763. <dt>Form</dt>
  5764. <dd>Rookie</dd>
  5765. </dl>
  5766. <dl>
  5767. <dt>Attribute</dt>
  5768. <dd>Virus</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>Type</dt>
  5772. <dd>Mammal</dd>
  5773. </dl>
  5774. <dl>
  5775. <dt>DP</dt>
  5776. <dd>2000</dl>
  5777. <dl>
  5778. <dt>PlayCost</dt>
  5779. <dd>3</dd>
  5780. </dl>
  5781. <dl>
  5782. <dt>DigivolveCost1</dt>
  5783. <dd>0fromLv.2</dd>
  5784. </dl>
  5785. <dl>
  5786. <dt>DigivolveCost2</dt>
  5787. <dd>-</dd>
  5788. </dl>
  5789. </div>
  5790. </div>
  5791. <divclass="cardinfo_bottom">
  5792. <dl>
  5793. <dt>Effect</dt>
  5794. <dd>-</dd>
  5795. </dl>
  5796. <dl>
  5797. <dt>Digivolveeffect</dt>
  5798. <dd>[On Deletion] Gain 1 memory.</dd>
  5799. </dl>
  5800. <dl>
  5801. <dt>Securityeffect</dt>
  5802. <dd>-</dd>
  5803. </dl>
  5804. <dl>
  5805. <dt>Notes</dt>
  5806. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5807. </div>
  5808. </div>
  5809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5810. </div>
  5811. </div>
  5812. </li>
  5813. <liclass="image_lists_itemdatapage-3">
  5814. <aclass="card_img">
  5815. <imgsrc="../images/cardlist/card/BT14-070.png"alt="BT14-070Goblimon"></a>
  5816. <divclass="popup">
  5817. <divclass="card_detailcard_detail_purple">
  5818. <divclass="card_detail_inner">
  5819. <ulclass="cardinfo_head">
  5820. <liclass="cardno">BT14-070</li>
  5821. <li>C</li>
  5822. <liclass="cardtype">Digimon</li>
  5823. <liclass="cardlv">Lv.3</li>
  5824. </ul>
  5825. <divclass="card_name">Goblimon</div>
  5826. <divclass="cardinfo_top">
  5827. <divclass="card_img">
  5828. <imgsrc="../images/cardlist/card/BT14-070.png"alt="BT14-070Goblimon"></div>
  5829. <divclass="cardinfo_top_body">
  5830. <dl>
  5831. <dt>Form</dt>
  5832. <dd>Rookie</dd>
  5833. </dl>
  5834. <dl>
  5835. <dt>Attribute</dt>
  5836. <dd>Virus</dd>
  5837. </dl>
  5838. <dl>
  5839. <dt>Type</dt>
  5840. <dd>Demon</dd>
  5841. </dl>
  5842. <dl>
  5843. <dt>DP</dt>
  5844. <dd>2000</dl>
  5845. <dl>
  5846. <dt>PlayCost</dt>
  5847. <dd>3</dd>
  5848. </dl>
  5849. <dl>
  5850. <dt>DigivolveCost1</dt>
  5851. <dd>0fromLv.2</dd>
  5852. </dl>
  5853. <dl>
  5854. <dt>DigivolveCost2</dt>
  5855. <dd>-</dd>
  5856. </dl>
  5857. </div>
  5858. </div>
  5859. <divclass="cardinfo_bottom">
  5860. <dl>
  5861. <dt>Effect</dt>
  5862. <dd>-</dd>
  5863. </dl>
  5864. <dl>
  5865. <dt>Digivolveeffect</dt>
  5866. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  5867. </dl>
  5868. <dl>
  5869. <dt>Securityeffect</dt>
  5870. <dd>-</dd>
  5871. </dl>
  5872. <dl>
  5873. <dt>Notes</dt>
  5874. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5875. </div>
  5876. </div>
  5877. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5878. </div>
  5879. </div>
  5880. </li>
  5881. <liclass="image_lists_itemdatapage-3">
  5882. <aclass="card_img">
  5883. <imgsrc="../images/cardlist/card/BT14-071.png"alt="BT14-071Loogamon"></a>
  5884. <divclass="popup">
  5885. <divclass="card_detailcard_detail_purple">
  5886. <divclass="card_detail_inner">
  5887. <ulclass="cardinfo_head">
  5888. <liclass="cardno">BT14-071</li>
  5889. <li>SR</li>
  5890. <liclass="cardtype">Digimon</li>
  5891. <liclass="cardlv">Lv.3</li>
  5892. </ul>
  5893. <divclass="card_name">Loogamon</div>
  5894. <divclass="cardinfo_top">
  5895. <divclass="card_img">
  5896. <imgsrc="../images/cardlist/card/BT14-071.png"alt="BT14-071Loogamon"></div>
  5897. <divclass="cardinfo_top_body">
  5898. <dl>
  5899. <dt>Form</dt>
  5900. <dd>Rookie</dd>
  5901. </dl>
  5902. <dl>
  5903. <dt>Attribute</dt>
  5904. <dd>Virus</dd>
  5905. </dl>
  5906. <dl>
  5907. <dt>Type</dt>
  5908. <dd>DarkAnimal/XAntibody/SoC</dd>
  5909. </dl>
  5910. <dl>
  5911. <dt>DP</dt>
  5912. <dd>1000</dl>
  5913. <dl>
  5914. <dt>PlayCost</dt>
  5915. <dd>3</dd>
  5916. </dl>
  5917. <dl>
  5918. <dt>DigivolveCost1</dt>
  5919. <dd>0fromLv.2</dd>
  5920. </dl>
  5921. <dl>
  5922. <dt>DigivolveCost2</dt>
  5923. <dd>-</dd>
  5924. </dl>
  5925. </div>
  5926. </div>
  5927. <divclass="cardinfo_bottom">
  5928. <dl>
  5929. <dt>Effect</dt>
  5930. <dd>[Start of Your Main Phase] By placing 1 [Eiji Nagasumi] from your hand or trash as this Digimon's bottom digivolution card, gain 1 memory.</dd>
  5931. </dl>
  5932. <dl>
  5933. <dt>Digivolveeffect</dt>
  5934. <dd>[Your Turn][Once Per Turn] When you play a card with the [Dark Animal] or [SoC] trait, gain 1 memory.</dd>
  5935. </dl>
  5936. <dl>
  5937. <dt>Securityeffect</dt>
  5938. <dd>-</dd>
  5939. </dl>
  5940. <dl>
  5941. <dt>Notes</dt>
  5942. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  5943. </div>
  5944. </div>
  5945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5946. </div>
  5947. </div>
  5948. </li>
  5949. <liclass="image_lists_itemdatapage-3">
  5950. <aclass="card_img">
  5951. <imgsrc="../images/cardlist/card/BT14-071_P1.png"alt="BT14-071Loogamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  5952. </a>
  5953. <divclass="popup">
  5954. <divclass="card_detailcard_detail_purple">
  5955. <divclass="card_detail_inner">
  5956. <ulclass="cardinfo_head">
  5957. <liclass="cardno">BT14-071</li>
  5958. <li>SR</li>
  5959. <liclass="cardtype">Digimon</li>
  5960. <liclass="cardlv">Lv.3</li>
  5961. <liclass="cardtypecardParallel">AlternativeArt</li>
  5962. </ul>
  5963. <divclass="card_name">Loogamon</div>
  5964. <divclass="cardinfo_top">
  5965. <divclass="card_img">
  5966. <imgsrc="../images/cardlist/card/BT14-071_P1.png"alt="BT14-071Loogamon"></div>
  5967. <divclass="cardinfo_top_body">
  5968. <dl>
  5969. <dt>Form</dt>
  5970. <dd>Rookie</dd>
  5971. </dl>
  5972. <dl>
  5973. <dt>Attribute</dt>
  5974. <dd>Virus</dd>
  5975. </dl>
  5976. <dl>
  5977. <dt>Type</dt>
  5978. <dd>DarkAnimal/XAntibody/SoC</dd>
  5979. </dl>
  5980. <dl>
  5981. <dt>DP</dt>
  5982. <dd>1000</dl>
  5983. <dl>
  5984. <dt>PlayCost</dt>
  5985. <dd>3</dd>
  5986. </dl>
  5987. <dl>
  5988. <dt>DigivolveCost1</dt>
  5989. <dd>0fromLv.2</dd>
  5990. </dl>
  5991. <dl>
  5992. <dt>DigivolveCost2</dt>
  5993. <dd>-</dd>
  5994. </dl>
  5995. </div>
  5996. </div>
  5997. <divclass="cardinfo_bottom">
  5998. <dl>
  5999. <dt>Effect</dt>
  6000. <dd>[Start of Your Main Phase] By placing 1 [Eiji Nagasumi] from your hand or trash as this Digimon's bottom digivolution card, gain 1 memory.</dd>
  6001. </dl>
  6002. <dl>
  6003. <dt>Digivolveeffect</dt>
  6004. <dd>[Your Turn][Once Per Turn] When you play a card with the [Dark Animal] or [SoC] trait, gain 1 memory.</dd>
  6005. </dl>
  6006. <dl>
  6007. <dt>Securityeffect</dt>
  6008. <dd>-</dd>
  6009. </dl>
  6010. <dl>
  6011. <dt>Notes</dt>
  6012. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6013. </div>
  6014. </div>
  6015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6016. </div>
  6017. </div>
  6018. </li>
  6019. <liclass="image_lists_itemdatapage-3">
  6020. <aclass="card_img">
  6021. <imgsrc="../images/cardlist/card/BT14-072.png"alt="BT14-072Fangmon"></a>
  6022. <divclass="popup">
  6023. <divclass="card_detailcard_detail_purple">
  6024. <divclass="card_detail_inner">
  6025. <ulclass="cardinfo_head">
  6026. <liclass="cardno">BT14-072</li>
  6027. <li>C</li>
  6028. <liclass="cardtype">Digimon</li>
  6029. <liclass="cardlv">Lv.4</li>
  6030. </ul>
  6031. <divclass="card_name">Fangmon</div>
  6032. <divclass="cardinfo_top">
  6033. <divclass="card_img">
  6034. <imgsrc="../images/cardlist/card/BT14-072.png"alt="BT14-072Fangmon"></div>
  6035. <divclass="cardinfo_top_body">
  6036. <dl>
  6037. <dt>Form</dt>
  6038. <dd>Champion</dd>
  6039. </dl>
  6040. <dl>
  6041. <dt>Attribute</dt>
  6042. <dd>Data</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>Type</dt>
  6046. <dd>DarkAnimal</dd>
  6047. </dl>
  6048. <dl>
  6049. <dt>DP</dt>
  6050. <dd>4000</dl>
  6051. <dl>
  6052. <dt>PlayCost</dt>
  6053. <dd>4</dd>
  6054. </dl>
  6055. <dl>
  6056. <dt>DigivolveCost1</dt>
  6057. <dd>2fromLv.3</dd>
  6058. </dl>
  6059. <dl>
  6060. <dt>DigivolveCost2</dt>
  6061. <dd>-</dd>
  6062. </dl>
  6063. </div>
  6064. </div>
  6065. <divclass="cardinfo_bottom">
  6066. <dl>
  6067. <dt>Effect</dt>
  6068. <dd>[On Play][When Attacking] Return 1 purple Digimon card with the [Dark Animal] trait from your trash to the hand. Then, trash 1 card in your hand.</dd>
  6069. </dl>
  6070. <dl>
  6071. <dt>Digivolveeffect</dt>
  6072. <dd>-</dd>
  6073. </dl>
  6074. <dl>
  6075. <dt>Securityeffect</dt>
  6076. <dd>-</dd>
  6077. </dl>
  6078. <dl>
  6079. <dt>Notes</dt>
  6080. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6081. </div>
  6082. </div>
  6083. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6084. </div>
  6085. </div>
  6086. </li>
  6087. <liclass="image_lists_itemdatapage-3">
  6088. <aclass="card_img">
  6089. <imgsrc="../images/cardlist/card/BT14-073.png"alt="BT14-073Ogremon"></a>
  6090. <divclass="popup">
  6091. <divclass="card_detailcard_detail_purple">
  6092. <divclass="card_detail_inner">
  6093. <ulclass="cardinfo_head">
  6094. <liclass="cardno">BT14-073</li>
  6095. <li>C</li>
  6096. <liclass="cardtype">Digimon</li>
  6097. <liclass="cardlv">Lv.4</li>
  6098. </ul>
  6099. <divclass="card_name">Ogremon</div>
  6100. <divclass="cardinfo_top">
  6101. <divclass="card_img">
  6102. <imgsrc="../images/cardlist/card/BT14-073.png"alt="BT14-073Ogremon"></div>
  6103. <divclass="cardinfo_top_body">
  6104. <dl>
  6105. <dt>Form</dt>
  6106. <dd>Champion</dd>
  6107. </dl>
  6108. <dl>
  6109. <dt>Attribute</dt>
  6110. <dd>Virus</dd>
  6111. </dl>
  6112. <dl>
  6113. <dt>Type</dt>
  6114. <dd>Demon</dd>
  6115. </dl>
  6116. <dl>
  6117. <dt>DP</dt>
  6118. <dd>5000</dl>
  6119. <dl>
  6120. <dt>PlayCost</dt>
  6121. <dd>5</dd>
  6122. </dl>
  6123. <dl>
  6124. <dt>DigivolveCost1</dt>
  6125. <dd>2fromLv.3</dd>
  6126. </dl>
  6127. <dl>
  6128. <dt>DigivolveCost2</dt>
  6129. <dd>-</dd>
  6130. </dl>
  6131. </div>
  6132. </div>
  6133. <divclass="cardinfo_bottom">
  6134. <dl>
  6135. <dt>Effect</dt>
  6136. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  6137. </dl>
  6138. <dl>
  6139. <dt>Digivolveeffect</dt>
  6140. <dd>[Your Turn][Once Per Turn] When one of your effects trashes a card in your hand, gain 1 memory.</dd>
  6141. </dl>
  6142. <dl>
  6143. <dt>Securityeffect</dt>
  6144. <dd>-</dd>
  6145. </dl>
  6146. <dl>
  6147. <dt>Notes</dt>
  6148. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6149. </div>
  6150. </div>
  6151. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6152. </div>
  6153. </div>
  6154. </li>
  6155. <liclass="image_lists_itemdatapage-3">
  6156. <aclass="card_img">
  6157. <imgsrc="../images/cardlist/card/BT14-074.png"alt="BT14-074Loogarmon"></a>
  6158. <divclass="popup">
  6159. <divclass="card_detailcard_detail_purple">
  6160. <divclass="card_detail_inner">
  6161. <ulclass="cardinfo_head">
  6162. <liclass="cardno">BT14-074</li>
  6163. <li>C</li>
  6164. <liclass="cardtype">Digimon</li>
  6165. <liclass="cardlv">Lv.4</li>
  6166. </ul>
  6167. <divclass="card_name">Loogarmon</div>
  6168. <divclass="cardinfo_top">
  6169. <divclass="card_img">
  6170. <imgsrc="../images/cardlist/card/BT14-074.png"alt="BT14-074Loogarmon"></div>
  6171. <divclass="cardinfo_top_body">
  6172. <dl>
  6173. <dt>Form</dt>
  6174. <dd>Champion</dd>
  6175. </dl>
  6176. <dl>
  6177. <dt>Attribute</dt>
  6178. <dd>Virus</dd>
  6179. </dl>
  6180. <dl>
  6181. <dt>Type</dt>
  6182. <dd>DarkAnimal/XAntibody/SoC</dd>
  6183. </dl>
  6184. <dl>
  6185. <dt>DP</dt>
  6186. <dd>6000</dl>
  6187. <dl>
  6188. <dt>PlayCost</dt>
  6189. <dd>6</dd>
  6190. </dl>
  6191. <dl>
  6192. <dt>DigivolveCost1</dt>
  6193. <dd>2fromLv.3</dd>
  6194. </dl>
  6195. <dl>
  6196. <dt>DigivolveCost2</dt>
  6197. <dd>-</dd>
  6198. </dl>
  6199. </div>
  6200. </div>
  6201. <divclass="cardinfo_bottom">
  6202. <dl>
  6203. <dt>Effect</dt>
  6204. <dd>[When Attacking] By trashing 1 card in your hand, <Draw 1>. If [Eiji Nagasumi] is in this Digimon's digivolution cards, gain 1 memory.</dd>
  6205. </dl>
  6206. <dl>
  6207. <dt>Digivolveeffect</dt>
  6208. <dd>[Your Turn][Once Per Turn] When you play a card with the [Dark Animal] or [SoC] trait, gain 1 memory.</dd>
  6209. </dl>
  6210. <dl>
  6211. <dt>Securityeffect</dt>
  6212. <dd>-</dd>
  6213. </dl>
  6214. <dl>
  6215. <dt>Notes</dt>
  6216. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6217. </div>
  6218. </div>
  6219. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6220. </div>
  6221. </div>
  6222. </li>
  6223. <liclass="image_lists_itemdatapage-3">
  6224. <aclass="card_img">
  6225. <imgsrc="../images/cardlist/card/BT14-075.png"alt="BT14-075Devimon"></a>
  6226. <divclass="popup">
  6227. <divclass="card_detailcard_detail_purple">
  6228. <divclass="card_detail_inner">
  6229. <ulclass="cardinfo_head">
  6230. <liclass="cardno">BT14-075</li>
  6231. <li>R</li>
  6232. <liclass="cardtype">Digimon</li>
  6233. <liclass="cardlv">Lv.4</li>
  6234. </ul>
  6235. <divclass="card_name">Devimon</div>
  6236. <divclass="cardinfo_top">
  6237. <divclass="card_img">
  6238. <imgsrc="../images/cardlist/card/BT14-075.png"alt="BT14-075Devimon"></div>
  6239. <divclass="cardinfo_top_body">
  6240. <dl>
  6241. <dt>Form</dt>
  6242. <dd>Champion</dd>
  6243. </dl>
  6244. <dl>
  6245. <dt>Attribute</dt>
  6246. <dd>Virus</dd>
  6247. </dl>
  6248. <dl>
  6249. <dt>Type</dt>
  6250. <dd>FallenAngel</dd>
  6251. </dl>
  6252. <dl>
  6253. <dt>DP</dt>
  6254. <dd>6000</dl>
  6255. <dl>
  6256. <dt>PlayCost</dt>
  6257. <dd>7</dd>
  6258. </dl>
  6259. <dl>
  6260. <dt>DigivolveCost1</dt>
  6261. <dd>3fromLv.3</dd>
  6262. </dl>
  6263. <dl>
  6264. <dt>DigivolveCost2</dt>
  6265. <dd>-</dd>
  6266. </dl>
  6267. </div>
  6268. </div>
  6269. <divclass="cardinfo_bottom">
  6270. <dl>
  6271. <dt>Effect</dt>
  6272. <dd>[On Play][When Attacking] Trash the top 3 cards of your deck.<br>[Your Turn] This Digimon gets +1000 DP for every 3 cards in your trash.<br>[On Deletion] Trash 1 card in your opponent's hand without looking.</dd>
  6273. </dl>
  6274. <dl>
  6275. <dt>Digivolveeffect</dt>
  6276. <dd>-</dd>
  6277. </dl>
  6278. <dl>
  6279. <dt>Securityeffect</dt>
  6280. <dd>-</dd>
  6281. </dl>
  6282. <dl>
  6283. <dt>Notes</dt>
  6284. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6285. </div>
  6286. </div>
  6287. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6288. </div>
  6289. </div>
  6290. </li>
  6291. <liclass="image_lists_itemdatapage-3">
  6292. <aclass="card_img">
  6293. <imgsrc="../images/cardlist/card/BT14-076.png"alt="BT14-076SkullGreymon"></a>
  6294. <divclass="popup">
  6295. <divclass="card_detailcard_detail_purple">
  6296. <divclass="card_detail_inner">
  6297. <ulclass="cardinfo_head">
  6298. <liclass="cardno">BT14-076</li>
  6299. <li>R</li>
  6300. <liclass="cardtype">Digimon</li>
  6301. <liclass="cardlv">Lv.5</li>
  6302. </ul>
  6303. <divclass="card_name">SkullGreymon</div>
  6304. <divclass="cardinfo_top">
  6305. <divclass="card_img">
  6306. <imgsrc="../images/cardlist/card/BT14-076.png"alt="BT14-076SkullGreymon"></div>
  6307. <divclass="cardinfo_top_body">
  6308. <dl>
  6309. <dt>Form</dt>
  6310. <dd>Ultimate</dd>
  6311. </dl>
  6312. <dl>
  6313. <dt>Attribute</dt>
  6314. <dd>Virus</dd>
  6315. </dl>
  6316. <dl>
  6317. <dt>Type</dt>
  6318. <dd>Undead</dd>
  6319. </dl>
  6320. <dl>
  6321. <dt>DP</dt>
  6322. <dd>7000</dl>
  6323. <dl>
  6324. <dt>PlayCost</dt>
  6325. <dd>7</dd>
  6326. </dl>
  6327. <dl>
  6328. <dt>DigivolveCost1</dt>
  6329. <dd>3fromLv.4</dd>
  6330. </dl>
  6331. <dl>
  6332. <dt>DigivolveCost2</dt>
  6333. <dd>-</dd>
  6334. </dl>
  6335. </div>
  6336. </div>
  6337. <divclass="cardinfo_bottom">
  6338. <dl>
  6339. <dt>Effect</dt>
  6340. <dd>[Digivolve] Lv.4 w/[Greymon] in name: Cost 3<br>[When Digivolving] By trashing 1 card in your hand, delete 1 of your Digimon with the lowest level and 1 of your opponent's Digimon with the lowest level. <br>[On Deletion] You may play 1 [Agumon] from your trash without paying the cost. If you have a Tamer with [Tai Kamiya] in its name, that Digimon gains <Rush> for the turn.</dd>
  6341. </dl>
  6342. <dl>
  6343. <dt>Digivolveeffect</dt>
  6344. <dd>-</dd>
  6345. </dl>
  6346. <dl>
  6347. <dt>Securityeffect</dt>
  6348. <dd>-</dd>
  6349. </dl>
  6350. <dl>
  6351. <dt>Notes</dt>
  6352. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6353. </div>
  6354. </div>
  6355. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6356. </div>
  6357. </div>
  6358. </li>
  6359. <liclass="image_lists_itemdatapage-3">
  6360. <aclass="card_img">
  6361. <imgsrc="../images/cardlist/card/BT14-077.png"alt="BT14-077SkullSatamon"></a>
  6362. <divclass="popup">
  6363. <divclass="card_detailcard_detail_purple">
  6364. <divclass="card_detail_inner">
  6365. <ulclass="cardinfo_head">
  6366. <liclass="cardno">BT14-077</li>
  6367. <li>C</li>
  6368. <liclass="cardtype">Digimon</li>
  6369. <liclass="cardlv">Lv.5</li>
  6370. </ul>
  6371. <divclass="card_name">SkullSatamon</div>
  6372. <divclass="cardinfo_top">
  6373. <divclass="card_img">
  6374. <imgsrc="../images/cardlist/card/BT14-077.png"alt="BT14-077SkullSatamon"></div>
  6375. <divclass="cardinfo_top_body">
  6376. <dl>
  6377. <dt>Form</dt>
  6378. <dd>Ultimate</dd>
  6379. </dl>
  6380. <dl>
  6381. <dt>Attribute</dt>
  6382. <dd>Virus</dd>
  6383. </dl>
  6384. <dl>
  6385. <dt>Type</dt>
  6386. <dd>Undead</dd>
  6387. </dl>
  6388. <dl>
  6389. <dt>DP</dt>
  6390. <dd>7000</dl>
  6391. <dl>
  6392. <dt>PlayCost</dt>
  6393. <dd>7</dd>
  6394. </dl>
  6395. <dl>
  6396. <dt>DigivolveCost1</dt>
  6397. <dd>3fromLv.4</dd>
  6398. </dl>
  6399. <dl>
  6400. <dt>DigivolveCost2</dt>
  6401. <dd>-</dd>
  6402. </dl>
  6403. </div>
  6404. </div>
  6405. <divclass="cardinfo_bottom">
  6406. <dl>
  6407. <dt>Effect</dt>
  6408. <dd>[On Play][When Digivolving] Trash the top 2 cards of both players' decks.<br> [Your Turn][Once Per Turn] When a card in your opponent's deck is trashed, gain 1 memory.</dd>
  6409. </dl>
  6410. <dl>
  6411. <dt>Digivolveeffect</dt>
  6412. <dd>-</dd>
  6413. </dl>
  6414. <dl>
  6415. <dt>Securityeffect</dt>
  6416. <dd>-</dd>
  6417. </dl>
  6418. <dl>
  6419. <dt>Notes</dt>
  6420. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6421. </div>
  6422. </div>
  6423. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6424. </div>
  6425. </div>
  6426. </li>
  6427. <liclass="image_lists_itemdatapage-3">
  6428. <aclass="card_img">
  6429. <imgsrc="../images/cardlist/card/BT14-078.png"alt="BT14-078Helloogarmon"></a>
  6430. <divclass="popup">
  6431. <divclass="card_detailcard_detail_purple">
  6432. <divclass="card_detail_inner">
  6433. <ulclass="cardinfo_head">
  6434. <liclass="cardno">BT14-078</li>
  6435. <li>U</li>
  6436. <liclass="cardtype">Digimon</li>
  6437. <liclass="cardlv">Lv.5</li>
  6438. </ul>
  6439. <divclass="card_name">Helloogarmon</div>
  6440. <divclass="cardinfo_top">
  6441. <divclass="card_img">
  6442. <imgsrc="../images/cardlist/card/BT14-078.png"alt="BT14-078Helloogarmon"></div>
  6443. <divclass="cardinfo_top_body">
  6444. <dl>
  6445. <dt>Form</dt>
  6446. <dd>Ultimate</dd>
  6447. </dl>
  6448. <dl>
  6449. <dt>Attribute</dt>
  6450. <dd>Virus</dd>
  6451. </dl>
  6452. <dl>
  6453. <dt>Type</dt>
  6454. <dd>DarkAnimal/XAntibody/SoC</dd>
  6455. </dl>
  6456. <dl>
  6457. <dt>DP</dt>
  6458. <dd>9000</dl>
  6459. <dl>
  6460. <dt>PlayCost</dt>
  6461. <dd>7</dd>
  6462. </dl>
  6463. <dl>
  6464. <dt>DigivolveCost1</dt>
  6465. <dd>3fromLv.4</dd>
  6466. </dl>
  6467. <dl>
  6468. <dt>DigivolveCost2</dt>
  6469. <dd>-</dd>
  6470. </dl>
  6471. </div>
  6472. </div>
  6473. <divclass="cardinfo_bottom">
  6474. <dl>
  6475. <dt>Effect</dt>
  6476. <dd>[End of Your Turn] Delete this Digimon and <Draw 2>. Then, you may return 1 [Loogamon] from your trash to the hand.<br> [On Deletion] You may trash up to 3 cards with the [Dark Animal] or [SoC] trait in your hand. Then, delete 1 of your opponent's level 3 or lower Digimon. For each card trashed by this effect, add 1 to the level this effect may choose.</dd>
  6477. </dl>
  6478. <dl>
  6479. <dt>Digivolveeffect</dt>
  6480. <dd>-</dd>
  6481. </dl>
  6482. <dl>
  6483. <dt>Securityeffect</dt>
  6484. <dd>-</dd>
  6485. </dl>
  6486. <dl>
  6487. <dt>Notes</dt>
  6488. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6489. </div>
  6490. </div>
  6491. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6492. </div>
  6493. </div>
  6494. </li>
  6495. <liclass="image_lists_itemdatapage-3">
  6496. <aclass="card_img">
  6497. <imgsrc="../images/cardlist/card/BT14-079.png"alt="BT14-079Soloogarmon"></a>
  6498. <divclass="popup">
  6499. <divclass="card_detailcard_detail_purple">
  6500. <divclass="card_detail_inner">
  6501. <ulclass="cardinfo_head">
  6502. <liclass="cardno">BT14-079</li>
  6503. <li>R</li>
  6504. <liclass="cardtype">Digimon</li>
  6505. <liclass="cardlv">Lv.5</li>
  6506. </ul>
  6507. <divclass="card_name">Soloogarmon</div>
  6508. <divclass="cardinfo_top">
  6509. <divclass="card_img">
  6510. <imgsrc="../images/cardlist/card/BT14-079.png"alt="BT14-079Soloogarmon"></div>
  6511. <divclass="cardinfo_top_body">
  6512. <dl>
  6513. <dt>Form</dt>
  6514. <dd>Ultimate</dd>
  6515. </dl>
  6516. <dl>
  6517. <dt>Attribute</dt>
  6518. <dd>Virus</dd>
  6519. </dl>
  6520. <dl>
  6521. <dt>Type</dt>
  6522. <dd>DarkAnimal/XAntibody/SoC</dd>
  6523. </dl>
  6524. <dl>
  6525. <dt>DP</dt>
  6526. <dd>8000</dl>
  6527. <dl>
  6528. <dt>PlayCost</dt>
  6529. <dd>8</dd>
  6530. </dl>
  6531. <dl>
  6532. <dt>DigivolveCost1</dt>
  6533. <dd>3fromLv.4</dd>
  6534. </dl>
  6535. <dl>
  6536. <dt>DigivolveCost2</dt>
  6537. <dd>-</dd>
  6538. </dl>
  6539. </div>
  6540. </div>
  6541. <divclass="cardinfo_bottom">
  6542. <dl>
  6543. <dt>Effect</dt>
  6544. <dd>[When Digivolving] You may play 1 level 3 or lower card with the [Dark Animal] or [SoC] trait from your trash without paying the cost. If [Eiji Nagasumi] is in this Digimon's digivolution cards, add 1 to the level this effect may choose.<br> [When Attacking] By trashing 1 card in your hand, gain 1 memory.</dd>
  6545. </dl>
  6546. <dl>
  6547. <dt>Digivolveeffect</dt>
  6548. <dd>[Your Turn][Once Per Turn] When you play a card with the [Dark Animal] or [SoC] trait, you may unsuspend this Digimon.</dd>
  6549. </dl>
  6550. <dl>
  6551. <dt>Securityeffect</dt>
  6552. <dd>-</dd>
  6553. </dl>
  6554. <dl>
  6555. <dt>Notes</dt>
  6556. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6557. </div>
  6558. </div>
  6559. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6560. </div>
  6561. </div>
  6562. </li>
  6563. <liclass="image_lists_itemdatapage-3">
  6564. <aclass="card_img">
  6565. <imgsrc="../images/cardlist/card/BT14-080.png"alt="BT14-080Ghoulmon"></a>
  6566. <divclass="popup">
  6567. <divclass="card_detailcard_detail_purple">
  6568. <divclass="card_detail_inner">
  6569. <ulclass="cardinfo_head">
  6570. <liclass="cardno">BT14-080</li>
  6571. <li>U</li>
  6572. <liclass="cardtype">Digimon</li>
  6573. <liclass="cardlv">Lv.6</li>
  6574. </ul>
  6575. <divclass="card_name">Ghoulmon</div>
  6576. <divclass="cardinfo_top">
  6577. <divclass="card_img">
  6578. <imgsrc="../images/cardlist/card/BT14-080.png"alt="BT14-080Ghoulmon"></div>
  6579. <divclass="cardinfo_top_body">
  6580. <dl>
  6581. <dt>Form</dt>
  6582. <dd>Mega</dd>
  6583. </dl>
  6584. <dl>
  6585. <dt>Attribute</dt>
  6586. <dd>Data</dd>
  6587. </dl>
  6588. <dl>
  6589. <dt>Type</dt>
  6590. <dd>DemonLord</dd>
  6591. </dl>
  6592. <dl>
  6593. <dt>DP</dt>
  6594. <dd>11000</dl>
  6595. <dl>
  6596. <dt>PlayCost</dt>
  6597. <dd>11</dd>
  6598. </dl>
  6599. <dl>
  6600. <dt>DigivolveCost1</dt>
  6601. <dd>3fromLv.5</dd>
  6602. </dl>
  6603. <dl>
  6604. <dt>DigivolveCost2</dt>
  6605. <dd>-</dd>
  6606. </dl>
  6607. </div>
  6608. </div>
  6609. <divclass="cardinfo_bottom">
  6610. <dl>
  6611. <dt>Effect</dt>
  6612. <dd>[When Digivolving][When Attacking][Once Per Turn] For every 10 cards in your trash, trash the top 3 cards of your opponent's deck.<br> [When Attacking][Once Per Turn] If your opponent has 10 or more cards in their trash, this Digimon gains <Security A. +1> for the turn.</dd>
  6613. </dl>
  6614. <dl>
  6615. <dt>Digivolveeffect</dt>
  6616. <dd>-</dd>
  6617. </dl>
  6618. <dl>
  6619. <dt>Securityeffect</dt>
  6620. <dd>-</dd>
  6621. </dl>
  6622. <dl>
  6623. <dt>Notes</dt>
  6624. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6625. </div>
  6626. </div>
  6627. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6628. </div>
  6629. </div>
  6630. </li>
  6631. <liclass="image_lists_itemdatapage-3">
  6632. <aclass="card_img">
  6633. <imgsrc="../images/cardlist/card/BT14-081.png"alt="BT14-081Fenriloogamon"></a>
  6634. <divclass="popup">
  6635. <divclass="card_detailcard_detail_purple">
  6636. <divclass="card_detail_inner">
  6637. <ulclass="cardinfo_head">
  6638. <liclass="cardno">BT14-081</li>
  6639. <li>SR</li>
  6640. <liclass="cardtype">Digimon</li>
  6641. <liclass="cardlv">Lv.6</li>
  6642. </ul>
  6643. <divclass="card_name">Fenriloogamon</div>
  6644. <divclass="cardinfo_top">
  6645. <divclass="card_img">
  6646. <imgsrc="../images/cardlist/card/BT14-081.png"alt="BT14-081Fenriloogamon"></div>
  6647. <divclass="cardinfo_top_body">
  6648. <dl>
  6649. <dt>Form</dt>
  6650. <dd>Mega</dd>
  6651. </dl>
  6652. <dl>
  6653. <dt>Attribute</dt>
  6654. <dd>Virus</dd>
  6655. </dl>
  6656. <dl>
  6657. <dt>Type</dt>
  6658. <dd>DarkAnimal/XAntibody/SoC</dd>
  6659. </dl>
  6660. <dl>
  6661. <dt>DP</dt>
  6662. <dd>12000</dl>
  6663. <dl>
  6664. <dt>PlayCost</dt>
  6665. <dd>12</dd>
  6666. </dl>
  6667. <dl>
  6668. <dt>DigivolveCost1</dt>
  6669. <dd>4fromLv.5</dd>
  6670. </dl>
  6671. <dl>
  6672. <dt>DigivolveCost2</dt>
  6673. <dd>-</dd>
  6674. </dl>
  6675. </div>
  6676. </div>
  6677. <divclass="cardinfo_bottom">
  6678. <dl>
  6679. <dt>Effect</dt>
  6680. <dd>[When Digivolving] You may play 1 level 4 or lower card with the [Dark Animal] or [SoC] trait from your trash without paying the cost. If [Eiji Nagasumi] is in this Digimon's digivolution cards, add 2 to the number of cards this effect may play.<br> [When Attacking][Once Per Turn] By deleting 1 of your opponent's level 3 or lower Digimon, unsuspend this Digimon. For each of your Digimon, add 1 to the level this effect may choose.<br> [Your Turn] The turn end condition is the opponent having 3 or more memory.</dd>
  6681. </dl>
  6682. <dl>
  6683. <dt>Digivolveeffect</dt>
  6684. <dd>-</dd>
  6685. </dl>
  6686. <dl>
  6687. <dt>Securityeffect</dt>
  6688. <dd>-</dd>
  6689. </dl>
  6690. <dl>
  6691. <dt>Notes</dt>
  6692. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6693. </div>
  6694. </div>
  6695. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6696. </div>
  6697. </div>
  6698. </li>
  6699. <liclass="image_lists_itemdatapage-3">
  6700. <aclass="card_img">
  6701. <imgsrc="../images/cardlist/card/BT14-081_P1.png"alt="BT14-081Fenriloogamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  6702. </a>
  6703. <divclass="popup">
  6704. <divclass="card_detailcard_detail_purple">
  6705. <divclass="card_detail_inner">
  6706. <ulclass="cardinfo_head">
  6707. <liclass="cardno">BT14-081</li>
  6708. <li>SR</li>
  6709. <liclass="cardtype">Digimon</li>
  6710. <liclass="cardlv">Lv.6</li>
  6711. <liclass="cardtypecardParallel">AlternativeArt</li>
  6712. </ul>
  6713. <divclass="card_name">Fenriloogamon</div>
  6714. <divclass="cardinfo_top">
  6715. <divclass="card_img">
  6716. <imgsrc="../images/cardlist/card/BT14-081_P1.png"alt="BT14-081Fenriloogamon"></div>
  6717. <divclass="cardinfo_top_body">
  6718. <dl>
  6719. <dt>Form</dt>
  6720. <dd>Mega</dd>
  6721. </dl>
  6722. <dl>
  6723. <dt>Attribute</dt>
  6724. <dd>Virus</dd>
  6725. </dl>
  6726. <dl>
  6727. <dt>Type</dt>
  6728. <dd>DarkAnimal/XAntibody/SoC</dd>
  6729. </dl>
  6730. <dl>
  6731. <dt>DP</dt>
  6732. <dd>12000</dl>
  6733. <dl>
  6734. <dt>PlayCost</dt>
  6735. <dd>12</dd>
  6736. </dl>
  6737. <dl>
  6738. <dt>DigivolveCost1</dt>
  6739. <dd>4fromLv.5</dd>
  6740. </dl>
  6741. <dl>
  6742. <dt>DigivolveCost2</dt>
  6743. <dd>-</dd>
  6744. </dl>
  6745. </div>
  6746. </div>
  6747. <divclass="cardinfo_bottom">
  6748. <dl>
  6749. <dt>Effect</dt>
  6750. <dd>[When Digivolving] You may play 1 level 4 or lower card with the [Dark Animal] or [SoC] trait from your trash without paying the cost. If [Eiji Nagasumi] is in this Digimon's digivolution cards, add 2 to the number of cards this effect may play.<br> [When Attacking][Once Per Turn] By deleting 1 of your opponent's level 3 or lower Digimon, unsuspend this Digimon. For each of your Digimon, add 1 to the level this effect may choose.<br> [Your Turn] The turn end condition is the opponent having 3 or more memory.</dd>
  6751. </dl>
  6752. <dl>
  6753. <dt>Digivolveeffect</dt>
  6754. <dd>-</dd>
  6755. </dl>
  6756. <dl>
  6757. <dt>Securityeffect</dt>
  6758. <dd>-</dd>
  6759. </dl>
  6760. <dl>
  6761. <dt>Notes</dt>
  6762. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6763. </div>
  6764. </div>
  6765. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6766. </div>
  6767. </div>
  6768. </li>
  6769. <liclass="image_lists_itemdatapage-3">
  6770. <aclass="card_img">
  6771. <imgsrc="../images/cardlist/card/BT14-082.png"alt="BT14-082TaiKamiya"></a>
  6772. <divclass="popup">
  6773. <divclass="card_detailcard_detail_red">
  6774. <divclass="card_detail_inner">
  6775. <ulclass="cardinfo_head">
  6776. <liclass="cardno">BT14-082</li>
  6777. <li>R</li>
  6778. <liclass="cardtype">Tamer</li>
  6779. </ul>
  6780. <divclass="card_name">TaiKamiya</div>
  6781. <divclass="cardinfo_top">
  6782. <divclass="card_img">
  6783. <imgsrc="../images/cardlist/card/BT14-082.png"alt="BT14-082TaiKamiya"></div>
  6784. <divclass="cardinfo_top_body">
  6785. <dl>
  6786. <dt>Form</dt>
  6787. <dd>-</dd>
  6788. </dl>
  6789. <dl>
  6790. <dt>Attribute</dt>
  6791. <dd>-</dd>
  6792. </dl>
  6793. <dl>
  6794. <dt>Type</dt>
  6795. <dd>-</dd>
  6796. </dl>
  6797. <dl>
  6798. <dt>DP</dt>
  6799. <dd>-</dl>
  6800. <dl>
  6801. <dt>PlayCost</dt>
  6802. <dd>3</dd>
  6803. </dl>
  6804. <dl>
  6805. <dt>DigivolveCost1</dt>
  6806. <dd>-</dd>
  6807. </dl>
  6808. <dl>
  6809. <dt>DigivolveCost2</dt>
  6810. <dd>-</dd>
  6811. </dl>
  6812. </div>
  6813. </div>
  6814. <divclass="cardinfo_bottom">
  6815. <dl>
  6816. <dt>Effect</dt>
  6817. <dd>[Start of Your Main Phase] 1 of your Digimon with the [Vaccine] trait gets +2000 DP for the turn.<br> [Your Turn] When a card is removed from your opponent's security stack, by suspending this Tamer, gain 1 memory.</dd>
  6818. </dl>
  6819. <dl>
  6820. <dt>Digivolveeffect</dt>
  6821. <dd>-</dd>
  6822. </dl>
  6823. <dl>
  6824. <dt>Securityeffect</dt>
  6825. <dd>[Security] Play this card without paying the cost.</dd>
  6826. </dl>
  6827. <dl>
  6828. <dt>Notes</dt>
  6829. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6830. </div>
  6831. </div>
  6832. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6833. </div>
  6834. </div>
  6835. </li>
  6836. <liclass="image_lists_itemdatapage-3">
  6837. <aclass="card_img">
  6838. <imgsrc="../images/cardlist/card/BT14-082_P1.png"alt="BT14-082TaiKamiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  6839. </a>
  6840. <divclass="popup">
  6841. <divclass="card_detailcard_detail_red">
  6842. <divclass="card_detail_inner">
  6843. <ulclass="cardinfo_head">
  6844. <liclass="cardno">BT14-082</li>
  6845. <li>R</li>
  6846. <liclass="cardtype">Tamer</li>
  6847. <liclass="cardtypecardParallel">AlternativeArt</li>
  6848. </ul>
  6849. <divclass="card_name">TaiKamiya</div>
  6850. <divclass="cardinfo_top">
  6851. <divclass="card_img">
  6852. <imgsrc="../images/cardlist/card/BT14-082_P1.png"alt="BT14-082TaiKamiya"></div>
  6853. <divclass="cardinfo_top_body">
  6854. <dl>
  6855. <dt>Form</dt>
  6856. <dd>-</dd>
  6857. </dl>
  6858. <dl>
  6859. <dt>Attribute</dt>
  6860. <dd>-</dd>
  6861. </dl>
  6862. <dl>
  6863. <dt>Type</dt>
  6864. <dd>-</dd>
  6865. </dl>
  6866. <dl>
  6867. <dt>DP</dt>
  6868. <dd>-</dl>
  6869. <dl>
  6870. <dt>PlayCost</dt>
  6871. <dd>3</dd>
  6872. </dl>
  6873. <dl>
  6874. <dt>DigivolveCost1</dt>
  6875. <dd>-</dd>
  6876. </dl>
  6877. <dl>
  6878. <dt>DigivolveCost2</dt>
  6879. <dd>-</dd>
  6880. </dl>
  6881. </div>
  6882. </div>
  6883. <divclass="cardinfo_bottom">
  6884. <dl>
  6885. <dt>Effect</dt>
  6886. <dd>[Start of Your Main Phase] 1 of your Digimon with the [Vaccine] trait gets +2000 DP for the turn.<br> [Your Turn] When a card is removed from your opponent's security stack, by suspending this Tamer, gain 1 memory.</dd>
  6887. </dl>
  6888. <dl>
  6889. <dt>Digivolveeffect</dt>
  6890. <dd>-</dd>
  6891. </dl>
  6892. <dl>
  6893. <dt>Securityeffect</dt>
  6894. <dd>[Security] Play this card without paying the cost.</dd>
  6895. </dl>
  6896. <dl>
  6897. <dt>Notes</dt>
  6898. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6899. </div>
  6900. </div>
  6901. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6902. </div>
  6903. </div>
  6904. </li>
  6905. <liclass="image_lists_itemdatapage-3">
  6906. <aclass="card_img">
  6907. <imgsrc="../images/cardlist/card/BT14-083.png"alt="BT14-083JoeKido"></a>
  6908. <divclass="popup">
  6909. <divclass="card_detailcard_detail_blue">
  6910. <divclass="card_detail_inner">
  6911. <ulclass="cardinfo_head">
  6912. <liclass="cardno">BT14-083</li>
  6913. <li>R</li>
  6914. <liclass="cardtype">Tamer</li>
  6915. </ul>
  6916. <divclass="card_name">JoeKido</div>
  6917. <divclass="cardinfo_top">
  6918. <divclass="card_img">
  6919. <imgsrc="../images/cardlist/card/BT14-083.png"alt="BT14-083JoeKido"></div>
  6920. <divclass="cardinfo_top_body">
  6921. <dl>
  6922. <dt>Form</dt>
  6923. <dd>-</dd>
  6924. </dl>
  6925. <dl>
  6926. <dt>Attribute</dt>
  6927. <dd>-</dd>
  6928. </dl>
  6929. <dl>
  6930. <dt>Type</dt>
  6931. <dd>-</dd>
  6932. </dl>
  6933. <dl>
  6934. <dt>DP</dt>
  6935. <dd>-</dl>
  6936. <dl>
  6937. <dt>PlayCost</dt>
  6938. <dd>3</dd>
  6939. </dl>
  6940. <dl>
  6941. <dt>DigivolveCost1</dt>
  6942. <dd>-</dd>
  6943. </dl>
  6944. <dl>
  6945. <dt>DigivolveCost2</dt>
  6946. <dd>-</dd>
  6947. </dl>
  6948. </div>
  6949. </div>
  6950. <divclass="cardinfo_bottom">
  6951. <dl>
  6952. <dt>Effect</dt>
  6953. <dd>[On Play] Trash any 1 digivolution card of 1 of your opponent's Digimon.<br> [Your Turn] When a digivolution card of an opponent's Digimon is trashed, by suspending this Tamer, gain 1 memory.</dd>
  6954. </dl>
  6955. <dl>
  6956. <dt>Digivolveeffect</dt>
  6957. <dd>-</dd>
  6958. </dl>
  6959. <dl>
  6960. <dt>Securityeffect</dt>
  6961. <dd>[Security] Play this card without paying the cost.</dd>
  6962. </dl>
  6963. <dl>
  6964. <dt>Notes</dt>
  6965. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  6966. </div>
  6967. </div>
  6968. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6969. </div>
  6970. </div>
  6971. </li>
  6972. <liclass="image_lists_itemdatapage-3">
  6973. <aclass="card_img">
  6974. <imgsrc="../images/cardlist/card/BT14-083_P1.png"alt="BT14-083JoeKido"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  6975. </a>
  6976. <divclass="popup">
  6977. <divclass="card_detailcard_detail_blue">
  6978. <divclass="card_detail_inner">
  6979. <ulclass="cardinfo_head">
  6980. <liclass="cardno">BT14-083</li>
  6981. <li>R</li>
  6982. <liclass="cardtype">Tamer</li>
  6983. <liclass="cardtypecardParallel">AlternativeArt</li>
  6984. </ul>
  6985. <divclass="card_name">JoeKido</div>
  6986. <divclass="cardinfo_top">
  6987. <divclass="card_img">
  6988. <imgsrc="../images/cardlist/card/BT14-083_P1.png"alt="BT14-083JoeKido"></div>
  6989. <divclass="cardinfo_top_body">
  6990. <dl>
  6991. <dt>Form</dt>
  6992. <dd>-</dd>
  6993. </dl>
  6994. <dl>
  6995. <dt>Attribute</dt>
  6996. <dd>-</dd>
  6997. </dl>
  6998. <dl>
  6999. <dt>Type</dt>
  7000. <dd>-</dd>
  7001. </dl>
  7002. <dl>
  7003. <dt>DP</dt>
  7004. <dd>-</dl>
  7005. <dl>
  7006. <dt>PlayCost</dt>
  7007. <dd>3</dd>
  7008. </dl>
  7009. <dl>
  7010. <dt>DigivolveCost1</dt>
  7011. <dd>-</dd>
  7012. </dl>
  7013. <dl>
  7014. <dt>DigivolveCost2</dt>
  7015. <dd>-</dd>
  7016. </dl>
  7017. </div>
  7018. </div>
  7019. <divclass="cardinfo_bottom">
  7020. <dl>
  7021. <dt>Effect</dt>
  7022. <dd>[On Play] Trash any 1 digivolution card of 1 of your opponent's Digimon.<br> [Your Turn] When a digivolution card of an opponent's Digimon is trashed, by suspending this Tamer, gain 1 memory.</dd>
  7023. </dl>
  7024. <dl>
  7025. <dt>Digivolveeffect</dt>
  7026. <dd>-</dd>
  7027. </dl>
  7028. <dl>
  7029. <dt>Securityeffect</dt>
  7030. <dd>[Security] Play this card without paying the cost.</dd>
  7031. </dl>
  7032. <dl>
  7033. <dt>Notes</dt>
  7034. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7035. </div>
  7036. </div>
  7037. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7038. </div>
  7039. </div>
  7040. </li>
  7041. <liclass="image_lists_itemdatapage-3">
  7042. <aclass="card_img">
  7043. <imgsrc="../images/cardlist/card/BT14-084.png"alt="BT14-084T.K.Takaishi"></a>
  7044. <divclass="popup">
  7045. <divclass="card_detailcard_detail_yellow">
  7046. <divclass="card_detail_inner">
  7047. <ulclass="cardinfo_head">
  7048. <liclass="cardno">BT14-084</li>
  7049. <li>R</li>
  7050. <liclass="cardtype">Tamer</li>
  7051. </ul>
  7052. <divclass="card_name">T.K.Takaishi</div>
  7053. <divclass="cardinfo_top">
  7054. <divclass="card_img">
  7055. <imgsrc="../images/cardlist/card/BT14-084.png"alt="BT14-084T.K.Takaishi"></div>
  7056. <divclass="cardinfo_top_body">
  7057. <dl>
  7058. <dt>Form</dt>
  7059. <dd>-</dd>
  7060. </dl>
  7061. <dl>
  7062. <dt>Attribute</dt>
  7063. <dd>-</dd>
  7064. </dl>
  7065. <dl>
  7066. <dt>Type</dt>
  7067. <dd>-</dd>
  7068. </dl>
  7069. <dl>
  7070. <dt>DP</dt>
  7071. <dd>-</dl>
  7072. <dl>
  7073. <dt>PlayCost</dt>
  7074. <dd>3</dd>
  7075. </dl>
  7076. <dl>
  7077. <dt>DigivolveCost1</dt>
  7078. <dd>-</dd>
  7079. </dl>
  7080. <dl>
  7081. <dt>DigivolveCost2</dt>
  7082. <dd>-</dd>
  7083. </dl>
  7084. </div>
  7085. </div>
  7086. <divclass="cardinfo_bottom">
  7087. <dl>
  7088. <dt>Effect</dt>
  7089. <dd>[On Play] By returning the top card of your security stack to the hand, you may place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack.<br> [Your Turn] When a card is added to your security stack, by suspending this Tamer, gain 1 memory.</dd>
  7090. </dl>
  7091. <dl>
  7092. <dt>Digivolveeffect</dt>
  7093. <dd>-</dd>
  7094. </dl>
  7095. <dl>
  7096. <dt>Securityeffect</dt>
  7097. <dd>[Security] Play this card without paying the cost.</dd>
  7098. </dl>
  7099. <dl>
  7100. <dt>Notes</dt>
  7101. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7102. </div>
  7103. </div>
  7104. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7105. </div>
  7106. </div>
  7107. </li>
  7108. <liclass="image_lists_itemdatapage-3">
  7109. <aclass="card_img">
  7110. <imgsrc="../images/cardlist/card/BT14-084_P1.png"alt="BT14-084T.K.Takaishi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  7111. </a>
  7112. <divclass="popup">
  7113. <divclass="card_detailcard_detail_yellow">
  7114. <divclass="card_detail_inner">
  7115. <ulclass="cardinfo_head">
  7116. <liclass="cardno">BT14-084</li>
  7117. <li>R</li>
  7118. <liclass="cardtype">Tamer</li>
  7119. <liclass="cardtypecardParallel">AlternativeArt</li>
  7120. </ul>
  7121. <divclass="card_name">T.K.Takaishi</div>
  7122. <divclass="cardinfo_top">
  7123. <divclass="card_img">
  7124. <imgsrc="../images/cardlist/card/BT14-084_P1.png"alt="BT14-084T.K.Takaishi"></div>
  7125. <divclass="cardinfo_top_body">
  7126. <dl>
  7127. <dt>Form</dt>
  7128. <dd>-</dd>
  7129. </dl>
  7130. <dl>
  7131. <dt>Attribute</dt>
  7132. <dd>-</dd>
  7133. </dl>
  7134. <dl>
  7135. <dt>Type</dt>
  7136. <dd>-</dd>
  7137. </dl>
  7138. <dl>
  7139. <dt>DP</dt>
  7140. <dd>-</dl>
  7141. <dl>
  7142. <dt>PlayCost</dt>
  7143. <dd>3</dd>
  7144. </dl>
  7145. <dl>
  7146. <dt>DigivolveCost1</dt>
  7147. <dd>-</dd>
  7148. </dl>
  7149. <dl>
  7150. <dt>DigivolveCost2</dt>
  7151. <dd>-</dd>
  7152. </dl>
  7153. </div>
  7154. </div>
  7155. <divclass="cardinfo_bottom">
  7156. <dl>
  7157. <dt>Effect</dt>
  7158. <dd>[On Play] By returning the top card of your security stack to the hand, you may place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack.<br> [Your Turn] When a card is added to your security stack, by suspending this Tamer, gain 1 memory.</dd>
  7159. </dl>
  7160. <dl>
  7161. <dt>Digivolveeffect</dt>
  7162. <dd>-</dd>
  7163. </dl>
  7164. <dl>
  7165. <dt>Securityeffect</dt>
  7166. <dd>[Security] Play this card without paying the cost.</dd>
  7167. </dl>
  7168. <dl>
  7169. <dt>Notes</dt>
  7170. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7171. </div>
  7172. </div>
  7173. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7174. </div>
  7175. </div>
  7176. </li>
  7177. <liclass="image_lists_itemdatapage-3">
  7178. <aclass="card_img">
  7179. <imgsrc="../images/cardlist/card/BT14-085.png"alt="BT14-085MimiTachikawa"></a>
  7180. <divclass="popup">
  7181. <divclass="card_detailcard_detail_green">
  7182. <divclass="card_detail_inner">
  7183. <ulclass="cardinfo_head">
  7184. <liclass="cardno">BT14-085</li>
  7185. <li>R</li>
  7186. <liclass="cardtype">Tamer</li>
  7187. </ul>
  7188. <divclass="card_name">MimiTachikawa</div>
  7189. <divclass="cardinfo_top">
  7190. <divclass="card_img">
  7191. <imgsrc="../images/cardlist/card/BT14-085.png"alt="BT14-085MimiTachikawa"></div>
  7192. <divclass="cardinfo_top_body">
  7193. <dl>
  7194. <dt>Form</dt>
  7195. <dd>-</dd>
  7196. </dl>
  7197. <dl>
  7198. <dt>Attribute</dt>
  7199. <dd>-</dd>
  7200. </dl>
  7201. <dl>
  7202. <dt>Type</dt>
  7203. <dd>-</dd>
  7204. </dl>
  7205. <dl>
  7206. <dt>DP</dt>
  7207. <dd>-</dl>
  7208. <dl>
  7209. <dt>PlayCost</dt>
  7210. <dd>3</dd>
  7211. </dl>
  7212. <dl>
  7213. <dt>DigivolveCost1</dt>
  7214. <dd>-</dd>
  7215. </dl>
  7216. <dl>
  7217. <dt>DigivolveCost2</dt>
  7218. <dd>-</dd>
  7219. </dl>
  7220. </div>
  7221. </div>
  7222. <divclass="cardinfo_bottom">
  7223. <dl>
  7224. <dt>Effect</dt>
  7225. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [Vegetation], [Plant] or [Fairy] in one of its traits among them to the hand. Return the rest to the bottom of the deck.<br> [Your Turn] When an effect suspends a Digimon, by suspending this Tamer, gain 1 memory.</dd>
  7226. </dl>
  7227. <dl>
  7228. <dt>Digivolveeffect</dt>
  7229. <dd>-</dd>
  7230. </dl>
  7231. <dl>
  7232. <dt>Securityeffect</dt>
  7233. <dd>[Security] Play this card without paying the cost.</dd>
  7234. </dl>
  7235. <dl>
  7236. <dt>Notes</dt>
  7237. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7238. </div>
  7239. </div>
  7240. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7241. </div>
  7242. </div>
  7243. </li>
  7244. <liclass="image_lists_itemdatapage-3">
  7245. <aclass="card_img">
  7246. <imgsrc="../images/cardlist/card/BT14-085_P1.png"alt="BT14-085MimiTachikawa"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  7247. </a>
  7248. <divclass="popup">
  7249. <divclass="card_detailcard_detail_green">
  7250. <divclass="card_detail_inner">
  7251. <ulclass="cardinfo_head">
  7252. <liclass="cardno">BT14-085</li>
  7253. <li>R</li>
  7254. <liclass="cardtype">Tamer</li>
  7255. <liclass="cardtypecardParallel">AlternativeArt</li>
  7256. </ul>
  7257. <divclass="card_name">MimiTachikawa</div>
  7258. <divclass="cardinfo_top">
  7259. <divclass="card_img">
  7260. <imgsrc="../images/cardlist/card/BT14-085_P1.png"alt="BT14-085MimiTachikawa"></div>
  7261. <divclass="cardinfo_top_body">
  7262. <dl>
  7263. <dt>Form</dt>
  7264. <dd>-</dd>
  7265. </dl>
  7266. <dl>
  7267. <dt>Attribute</dt>
  7268. <dd>-</dd>
  7269. </dl>
  7270. <dl>
  7271. <dt>Type</dt>
  7272. <dd>-</dd>
  7273. </dl>
  7274. <dl>
  7275. <dt>DP</dt>
  7276. <dd>-</dl>
  7277. <dl>
  7278. <dt>PlayCost</dt>
  7279. <dd>3</dd>
  7280. </dl>
  7281. <dl>
  7282. <dt>DigivolveCost1</dt>
  7283. <dd>-</dd>
  7284. </dl>
  7285. <dl>
  7286. <dt>DigivolveCost2</dt>
  7287. <dd>-</dd>
  7288. </dl>
  7289. </div>
  7290. </div>
  7291. <divclass="cardinfo_bottom">
  7292. <dl>
  7293. <dt>Effect</dt>
  7294. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [Vegetation], [Plant] or [Fairy] in one of its traits among them to the hand. Return the rest to the bottom of the deck.<br> [Your Turn] When an effect suspends a Digimon, by suspending this Tamer, gain 1 memory.</dd>
  7295. </dl>
  7296. <dl>
  7297. <dt>Digivolveeffect</dt>
  7298. <dd>-</dd>
  7299. </dl>
  7300. <dl>
  7301. <dt>Securityeffect</dt>
  7302. <dd>[Security] Play this card without paying the cost.</dd>
  7303. </dl>
  7304. <dl>
  7305. <dt>Notes</dt>
  7306. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7307. </div>
  7308. </div>
  7309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7310. </div>
  7311. </div>
  7312. </li>
  7313. <liclass="image_lists_itemdatapage-3">
  7314. <aclass="card_img">
  7315. <imgsrc="../images/cardlist/card/BT14-086.png"alt="BT14-086SatsukiTamahime"></a>
  7316. <divclass="popup">
  7317. <divclass="card_detailcard_detail_black">
  7318. <divclass="card_detail_inner">
  7319. <ulclass="cardinfo_head">
  7320. <liclass="cardno">BT14-086</li>
  7321. <li>R</li>
  7322. <liclass="cardtype">Tamer</li>
  7323. </ul>
  7324. <divclass="card_name">SatsukiTamahime</div>
  7325. <divclass="cardinfo_top">
  7326. <divclass="card_img">
  7327. <imgsrc="../images/cardlist/card/BT14-086.png"alt="BT14-086SatsukiTamahime"></div>
  7328. <divclass="cardinfo_top_body">
  7329. <dl>
  7330. <dt>Form</dt>
  7331. <dd>-</dd>
  7332. </dl>
  7333. <dl>
  7334. <dt>Attribute</dt>
  7335. <dd>-</dd>
  7336. </dl>
  7337. <dl>
  7338. <dt>Type</dt>
  7339. <dd>DigiPolice</dd>
  7340. </dl>
  7341. <dl>
  7342. <dt>DP</dt>
  7343. <dd>-</dl>
  7344. <dl>
  7345. <dt>PlayCost</dt>
  7346. <dd>3</dd>
  7347. </dl>
  7348. <dl>
  7349. <dt>DigivolveCost1</dt>
  7350. <dd>-</dd>
  7351. </dl>
  7352. <dl>
  7353. <dt>DigivolveCost2</dt>
  7354. <dd>-</dd>
  7355. </dl>
  7356. </div>
  7357. </div>
  7358. <divclass="cardinfo_bottom">
  7359. <dl>
  7360. <dt>Effect</dt>
  7361. <dd>[Security] Play this card without paying the cost.<br> [Start of Your Main Phase] If your opponent has a Digimon, gain 1 memory.<br> [Main] <Mind Link> with 1 of your Digimon with [Numemon] or [Monzaemon] in its name, or the [DigiPolice] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  7362. </dl>
  7363. <dl>
  7364. <dt>Digivolveeffect</dt>
  7365. <dd>[All Turns] While this Digimon has [Numemon] or [Monzaemon] in its name, or the [DigiPolice] trait, it gains <Jamming> and <Reboot>.<br> [End of All Turns] You may play 1 [Satsuki Tamahime] from this Digimon's digivolution cards without paying the cost.</dd>
  7366. </dl>
  7367. <dl>
  7368. <dt>Securityeffect</dt>
  7369. <dd>-</dd>
  7370. </dl>
  7371. <dl>
  7372. <dt>Notes</dt>
  7373. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7374. </div>
  7375. </div>
  7376. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7377. </div>
  7378. </div>
  7379. </li>
  7380. <liclass="image_lists_itemdatapage-3">
  7381. <aclass="card_img">
  7382. <imgsrc="../images/cardlist/card/BT14-086_P1.png"alt="BT14-086SatsukiTamahime"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  7383. </a>
  7384. <divclass="popup">
  7385. <divclass="card_detailcard_detail_black">
  7386. <divclass="card_detail_inner">
  7387. <ulclass="cardinfo_head">
  7388. <liclass="cardno">BT14-086</li>
  7389. <li>R</li>
  7390. <liclass="cardtype">Tamer</li>
  7391. <liclass="cardtypecardParallel">AlternativeArt</li>
  7392. </ul>
  7393. <divclass="card_name">SatsukiTamahime</div>
  7394. <divclass="cardinfo_top">
  7395. <divclass="card_img">
  7396. <imgsrc="../images/cardlist/card/BT14-086_P1.png"alt="BT14-086SatsukiTamahime"></div>
  7397. <divclass="cardinfo_top_body">
  7398. <dl>
  7399. <dt>Form</dt>
  7400. <dd>-</dd>
  7401. </dl>
  7402. <dl>
  7403. <dt>Attribute</dt>
  7404. <dd>-</dd>
  7405. </dl>
  7406. <dl>
  7407. <dt>Type</dt>
  7408. <dd>DigiPolice</dd>
  7409. </dl>
  7410. <dl>
  7411. <dt>DP</dt>
  7412. <dd>-</dl>
  7413. <dl>
  7414. <dt>PlayCost</dt>
  7415. <dd>3</dd>
  7416. </dl>
  7417. <dl>
  7418. <dt>DigivolveCost1</dt>
  7419. <dd>-</dd>
  7420. </dl>
  7421. <dl>
  7422. <dt>DigivolveCost2</dt>
  7423. <dd>-</dd>
  7424. </dl>
  7425. </div>
  7426. </div>
  7427. <divclass="cardinfo_bottom">
  7428. <dl>
  7429. <dt>Effect</dt>
  7430. <dd>[Security] Play this card without paying the cost.<br> [Start of Your Main Phase] If your opponent has a Digimon, gain 1 memory.<br> [Main] <Mind Link> with 1 of your Digimon with [Numemon] or [Monzaemon] in its name, or the [DigiPolice] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  7431. </dl>
  7432. <dl>
  7433. <dt>Digivolveeffect</dt>
  7434. <dd>[All Turns] While this Digimon has [Numemon] or [Monzaemon] in its name, or the [DigiPolice] trait, it gains <Jamming> and <Reboot>.<br> [End of All Turns] You may play 1 [Satsuki Tamahime] from this Digimon's digivolution cards without paying the cost.</dd>
  7435. </dl>
  7436. <dl>
  7437. <dt>Securityeffect</dt>
  7438. <dd>-</dd>
  7439. </dl>
  7440. <dl>
  7441. <dt>Notes</dt>
  7442. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7443. </div>
  7444. </div>
  7445. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7446. </div>
  7447. </div>
  7448. </li>
  7449. <liclass="image_lists_itemdatapage-3">
  7450. <aclass="card_img">
  7451. <imgsrc="../images/cardlist/card/BT14-087.png"alt="BT14-087EijiNagasumi"></a>
  7452. <divclass="popup">
  7453. <divclass="card_detailcard_detail_purple">
  7454. <divclass="card_detail_inner">
  7455. <ulclass="cardinfo_head">
  7456. <liclass="cardno">BT14-087</li>
  7457. <li>R</li>
  7458. <liclass="cardtype">Tamer</li>
  7459. </ul>
  7460. <divclass="card_name">EijiNagasumi</div>
  7461. <divclass="cardinfo_top">
  7462. <divclass="card_img">
  7463. <imgsrc="../images/cardlist/card/BT14-087.png"alt="BT14-087EijiNagasumi"></div>
  7464. <divclass="cardinfo_top_body">
  7465. <dl>
  7466. <dt>Form</dt>
  7467. <dd>-</dd>
  7468. </dl>
  7469. <dl>
  7470. <dt>Attribute</dt>
  7471. <dd>-</dd>
  7472. </dl>
  7473. <dl>
  7474. <dt>Type</dt>
  7475. <dd>SoC</dd>
  7476. </dl>
  7477. <dl>
  7478. <dt>DP</dt>
  7479. <dd>-</dl>
  7480. <dl>
  7481. <dt>PlayCost</dt>
  7482. <dd>3</dd>
  7483. </dl>
  7484. <dl>
  7485. <dt>DigivolveCost1</dt>
  7486. <dd>-</dd>
  7487. </dl>
  7488. <dl>
  7489. <dt>DigivolveCost2</dt>
  7490. <dd>-</dd>
  7491. </dl>
  7492. </div>
  7493. </div>
  7494. <divclass="cardinfo_bottom">
  7495. <dl>
  7496. <dt>Effect</dt>
  7497. <dd>[Security] Play this card without paying the cost.<br> [Start of Your Main Phase] If your opponent has a Digimon, gain 1 memory.<br> [Main] <Mind Link> with 1 of your Digimon with the [Dark Animal] or [SoC] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  7498. </dl>
  7499. <dl>
  7500. <dt>Digivolveeffect</dt>
  7501. <dd>[All Turns] While this Digimon has the [Dark Animal] or [SoC] trait, it gains <Alliance> and <Blocker>.<br> [End of All Turns] You may play 1 [Eiji Nagasumi] from this Digimon's digivolution cards without paying the cost.</dd>
  7502. </dl>
  7503. <dl>
  7504. <dt>Securityeffect</dt>
  7505. <dd>-</dd>
  7506. </dl>
  7507. <dl>
  7508. <dt>Notes</dt>
  7509. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7510. </div>
  7511. </div>
  7512. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7513. </div>
  7514. </div>
  7515. </li>
  7516. <liclass="image_lists_itemdatapage-3">
  7517. <aclass="card_img">
  7518. <imgsrc="../images/cardlist/card/BT14-087_P1.png"alt="BT14-087EijiNagasumi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7519. </a>
  7520. <divclass="popup">
  7521. <divclass="card_detailcard_detail_purple">
  7522. <divclass="card_detail_inner">
  7523. <ulclass="cardinfo_head">
  7524. <liclass="cardno">BT14-087</li>
  7525. <li>R</li>
  7526. <liclass="cardtype">Tamer</li>
  7527. <liclass="cardtypecardParallel">AlternativeArt</li>
  7528. </ul>
  7529. <divclass="card_name">EijiNagasumi</div>
  7530. <divclass="cardinfo_top">
  7531. <divclass="card_img">
  7532. <imgsrc="../images/cardlist/card/BT14-087_P1.png"alt="BT14-087EijiNagasumi"></div>
  7533. <divclass="cardinfo_top_body">
  7534. <dl>
  7535. <dt>Form</dt>
  7536. <dd>-</dd>
  7537. </dl>
  7538. <dl>
  7539. <dt>Attribute</dt>
  7540. <dd>-</dd>
  7541. </dl>
  7542. <dl>
  7543. <dt>Type</dt>
  7544. <dd>SoC</dd>
  7545. </dl>
  7546. <dl>
  7547. <dt>DP</dt>
  7548. <dd>-</dl>
  7549. <dl>
  7550. <dt>PlayCost</dt>
  7551. <dd>3</dd>
  7552. </dl>
  7553. <dl>
  7554. <dt>DigivolveCost1</dt>
  7555. <dd>-</dd>
  7556. </dl>
  7557. <dl>
  7558. <dt>DigivolveCost2</dt>
  7559. <dd>-</dd>
  7560. </dl>
  7561. </div>
  7562. </div>
  7563. <divclass="cardinfo_bottom">
  7564. <dl>
  7565. <dt>Effect</dt>
  7566. <dd>[Security] Play this card without paying the cost.<br> [Start of Your Main Phase] If your opponent has a Digimon, gain 1 memory.<br> [Main] <Mind Link> with 1 of your Digimon with the [Dark Animal] or [SoC] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  7567. </dl>
  7568. <dl>
  7569. <dt>Digivolveeffect</dt>
  7570. <dd>[All Turns] While this Digimon has the [Dark Animal] or [SoC] trait, it gains <Alliance> and <Blocker>.<br> [End of All Turns] You may play 1 [Eiji Nagasumi] from this Digimon's digivolution cards without paying the cost.</dd>
  7571. </dl>
  7572. <dl>
  7573. <dt>Securityeffect</dt>
  7574. <dd>-</dd>
  7575. </dl>
  7576. <dl>
  7577. <dt>Notes</dt>
  7578. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7579. </div>
  7580. </div>
  7581. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7582. </div>
  7583. </div>
  7584. </li>
  7585. <liclass="image_lists_itemdatapage-3">
  7586. <aclass="card_img">
  7587. <imgsrc="../images/cardlist/card/BT14-088.png"alt="BT14-088Gennai"></a>
  7588. <divclass="popup">
  7589. <divclass="card_detailcard_detail_white">
  7590. <divclass="card_detail_inner">
  7591. <ulclass="cardinfo_head">
  7592. <liclass="cardno">BT14-088</li>
  7593. <li>R</li>
  7594. <liclass="cardtype">Tamer</li>
  7595. </ul>
  7596. <divclass="card_name">Gennai</div>
  7597. <divclass="cardinfo_top">
  7598. <divclass="card_img">
  7599. <imgsrc="../images/cardlist/card/BT14-088.png"alt="BT14-088Gennai"></div>
  7600. <divclass="cardinfo_top_body">
  7601. <dl>
  7602. <dt>Form</dt>
  7603. <dd>-</dd>
  7604. </dl>
  7605. <dl>
  7606. <dt>Attribute</dt>
  7607. <dd>-</dd>
  7608. </dl>
  7609. <dl>
  7610. <dt>Type</dt>
  7611. <dd>-</dd>
  7612. </dl>
  7613. <dl>
  7614. <dt>DP</dt>
  7615. <dd>-</dl>
  7616. <dl>
  7617. <dt>PlayCost</dt>
  7618. <dd>3</dd>
  7619. </dl>
  7620. <dl>
  7621. <dt>DigivolveCost1</dt>
  7622. <dd>-</dd>
  7623. </dl>
  7624. <dl>
  7625. <dt>DigivolveCost2</dt>
  7626. <dd>-</dd>
  7627. </dl>
  7628. </div>
  7629. </div>
  7630. <divclass="cardinfo_bottom">
  7631. <dl>
  7632. <dt>Effect</dt>
  7633. <dd>[On Play] You may reveal the top 5 cards of your deck. Add 1 level 3 Digimon card and 1 non-white Tamer card among them to the hand. Return the rest to the bottom of the deck.<br> [Opponent's Turn] When an opponent's level 5 or higher Digimon attacks, by suspending this Tamer, move 1 of your Digimon from the breeding area to the battle area.</dd>
  7634. </dl>
  7635. <dl>
  7636. <dt>Digivolveeffect</dt>
  7637. <dd>-</dd>
  7638. </dl>
  7639. <dl>
  7640. <dt>Securityeffect</dt>
  7641. <dd>[Security] Play this card without paying the cost.</dd>
  7642. </dl>
  7643. <dl>
  7644. <dt>Notes</dt>
  7645. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7646. </div>
  7647. </div>
  7648. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7649. </div>
  7650. </div>
  7651. </li>
  7652. <liclass="image_lists_itemdatapage-3">
  7653. <aclass="card_img">
  7654. <imgsrc="../images/cardlist/card/BT14-089.png"alt="BT14-089MegaFlame"></a>
  7655. <divclass="popup">
  7656. <divclass="card_detailcard_detail_red">
  7657. <divclass="card_detail_inner">
  7658. <ulclass="cardinfo_head">
  7659. <liclass="cardno">BT14-089</li>
  7660. <li>C</li>
  7661. <liclass="cardtype">Opiton</li>
  7662. </ul>
  7663. <divclass="card_name">MegaFlame</div>
  7664. <divclass="cardinfo_top">
  7665. <divclass="card_img">
  7666. <imgsrc="../images/cardlist/card/BT14-089.png"alt="BT14-089MegaFlame"></div>
  7667. <divclass="cardinfo_top_body">
  7668. <dl>
  7669. <dt>Form</dt>
  7670. <dd>-</dd>
  7671. </dl>
  7672. <dl>
  7673. <dt>Attribute</dt>
  7674. <dd>-</dd>
  7675. </dl>
  7676. <dl>
  7677. <dt>Type</dt>
  7678. <dd>-</dd>
  7679. </dl>
  7680. <dl>
  7681. <dt>DP</dt>
  7682. <dd>-</dl>
  7683. <dl>
  7684. <dt>PlayCost</dt>
  7685. <dd>4</dd>
  7686. </dl>
  7687. <dl>
  7688. <dt>DigivolveCost1</dt>
  7689. <dd>-</dd>
  7690. </dl>
  7691. <dl>
  7692. <dt>DigivolveCost2</dt>
  7693. <dd>-</dd>
  7694. </dl>
  7695. </div>
  7696. </div>
  7697. <divclass="cardinfo_bottom">
  7698. <dl>
  7699. <dt>Effect</dt>
  7700. <dd>[Main] Delete 1 of your opponent's Digimon with 6000 DP or less. If you have a Digimon with [Greymon] in its name, delete 1 of your opponent's Digimon with the lowest DP instead.</dd>
  7701. </dl>
  7702. <dl>
  7703. <dt>Digivolveeffect</dt>
  7704. <dd>-</dd>
  7705. </dl>
  7706. <dl>
  7707. <dt>Securityeffect</dt>
  7708. <dd>[Security] Activate this card's [Main] effect.</dd>
  7709. </dl>
  7710. <dl>
  7711. <dt>Notes</dt>
  7712. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7713. </div>
  7714. </div>
  7715. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7716. </div>
  7717. </div>
  7718. </li>
  7719. <liclass="image_lists_itemdatapage-3">
  7720. <aclass="card_img">
  7721. <imgsrc="../images/cardlist/card/BT14-090.png"alt="BT14-090DragonofCourage"></a>
  7722. <divclass="popup">
  7723. <divclass="card_detailcard_detail_red">
  7724. <divclass="card_detail_inner">
  7725. <ulclass="cardinfo_head">
  7726. <liclass="cardno">BT14-090</li>
  7727. <li>U</li>
  7728. <liclass="cardtype">Opiton</li>
  7729. </ul>
  7730. <divclass="card_name">DragonofCourage</div>
  7731. <divclass="cardinfo_top">
  7732. <divclass="card_img">
  7733. <imgsrc="../images/cardlist/card/BT14-090.png"alt="BT14-090DragonofCourage"></div>
  7734. <divclass="cardinfo_top_body">
  7735. <dl>
  7736. <dt>Form</dt>
  7737. <dd>-</dd>
  7738. </dl>
  7739. <dl>
  7740. <dt>Attribute</dt>
  7741. <dd>-</dd>
  7742. </dl>
  7743. <dl>
  7744. <dt>Type</dt>
  7745. <dd>-</dd>
  7746. </dl>
  7747. <dl>
  7748. <dt>DP</dt>
  7749. <dd>-</dl>
  7750. <dl>
  7751. <dt>PlayCost</dt>
  7752. <dd>4</dd>
  7753. </dl>
  7754. <dl>
  7755. <dt>DigivolveCost1</dt>
  7756. <dd>-</dd>
  7757. </dl>
  7758. <dl>
  7759. <dt>DigivolveCost2</dt>
  7760. <dd>-</dd>
  7761. </dl>
  7762. </div>
  7763. </div>
  7764. <divclass="cardinfo_bottom">
  7765. <dl>
  7766. <dt>Effect</dt>
  7767. <dd>While you have a Tamer with [Tai Kamiya] in its name, you may ignore this card's color requirements.<br>[Main] By placing 1 [Greymon] and 1 [MetalGreymon] from your trash as 1 of your [Agumon]'s bottom digivolution cards, that Digimon may digivolve into [WarGreymon] in your hand without paying the cost, ignoring its digivolution requirements.</dd>
  7768. </dl>
  7769. <dl>
  7770. <dt>Digivolveeffect</dt>
  7771. <dd>-</dd>
  7772. </dl>
  7773. <dl>
  7774. <dt>Securityeffect</dt>
  7775. <dd>[Security] You may play 1 [Agumon] from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  7776. </dl>
  7777. <dl>
  7778. <dt>Notes</dt>
  7779. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7780. </div>
  7781. </div>
  7782. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7783. </div>
  7784. </div>
  7785. </li>
  7786. <liclass="image_lists_itemdatapage-3">
  7787. <aclass="card_img">
  7788. <imgsrc="../images/cardlist/card/BT14-091.png"alt="BT14-091WaveofReliability"></a>
  7789. <divclass="popup">
  7790. <divclass="card_detailcard_detail_blue">
  7791. <divclass="card_detail_inner">
  7792. <ulclass="cardinfo_head">
  7793. <liclass="cardno">BT14-091</li>
  7794. <li>U</li>
  7795. <liclass="cardtype">Opiton</li>
  7796. </ul>
  7797. <divclass="card_name">WaveofReliability</div>
  7798. <divclass="cardinfo_top">
  7799. <divclass="card_img">
  7800. <imgsrc="../images/cardlist/card/BT14-091.png"alt="BT14-091WaveofReliability"></div>
  7801. <divclass="cardinfo_top_body">
  7802. <dl>
  7803. <dt>Form</dt>
  7804. <dd>-</dd>
  7805. </dl>
  7806. <dl>
  7807. <dt>Attribute</dt>
  7808. <dd>-</dd>
  7809. </dl>
  7810. <dl>
  7811. <dt>Type</dt>
  7812. <dd>-</dd>
  7813. </dl>
  7814. <dl>
  7815. <dt>DP</dt>
  7816. <dd>-</dl>
  7817. <dl>
  7818. <dt>PlayCost</dt>
  7819. <dd>2</dd>
  7820. </dl>
  7821. <dl>
  7822. <dt>DigivolveCost1</dt>
  7823. <dd>-</dd>
  7824. </dl>
  7825. <dl>
  7826. <dt>DigivolveCost2</dt>
  7827. <dd>-</dd>
  7828. </dl>
  7829. </div>
  7830. </div>
  7831. <divclass="cardinfo_bottom">
  7832. <dl>
  7833. <dt>Effect</dt>
  7834. <dd>[Main] Trash any 2 digivolution cards from your opponent's Digimon. Then, if you have a Tamer with [Joe Kido] in its name, choose 1 of your Digimon. If your opponent has no Digimon with more digivolution cards than the chosen Digimon, unsuspend it.</dd>
  7835. </dl>
  7836. <dl>
  7837. <dt>Digivolveeffect</dt>
  7838. <dd>-</dd>
  7839. </dl>
  7840. <dl>
  7841. <dt>Securityeffect</dt>
  7842. <dd>[Security] Activate this card's [Main] effect. Then, add this card to the hand.</dd>
  7843. </dl>
  7844. <dl>
  7845. <dt>Notes</dt>
  7846. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7847. </div>
  7848. </div>
  7849. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7850. </div>
  7851. </div>
  7852. </li>
  7853. <liclass="image_lists_itemdatapage-3">
  7854. <aclass="card_img">
  7855. <imgsrc="../images/cardlist/card/BT14-092.png"alt="BT14-092MarchingFishes"></a>
  7856. <divclass="popup">
  7857. <divclass="card_detailcard_detail_blue">
  7858. <divclass="card_detail_inner">
  7859. <ulclass="cardinfo_head">
  7860. <liclass="cardno">BT14-092</li>
  7861. <li>C</li>
  7862. <liclass="cardtype">Opiton</li>
  7863. </ul>
  7864. <divclass="card_name">MarchingFishes</div>
  7865. <divclass="cardinfo_top">
  7866. <divclass="card_img">
  7867. <imgsrc="../images/cardlist/card/BT14-092.png"alt="BT14-092MarchingFishes"></div>
  7868. <divclass="cardinfo_top_body">
  7869. <dl>
  7870. <dt>Form</dt>
  7871. <dd>-</dd>
  7872. </dl>
  7873. <dl>
  7874. <dt>Attribute</dt>
  7875. <dd>-</dd>
  7876. </dl>
  7877. <dl>
  7878. <dt>Type</dt>
  7879. <dd>-</dd>
  7880. </dl>
  7881. <dl>
  7882. <dt>DP</dt>
  7883. <dd>-</dl>
  7884. <dl>
  7885. <dt>PlayCost</dt>
  7886. <dd>3</dd>
  7887. </dl>
  7888. <dl>
  7889. <dt>DigivolveCost1</dt>
  7890. <dd>-</dd>
  7891. </dl>
  7892. <dl>
  7893. <dt>DigivolveCost2</dt>
  7894. <dd>-</dd>
  7895. </dl>
  7896. </div>
  7897. </div>
  7898. <divclass="cardinfo_bottom">
  7899. <dl>
  7900. <dt>Effect</dt>
  7901. <dd>[Main] Choose 1 of your Digimon. Until the end of your opponent's turn, 3 of your opponent's Digimon with as many or fewer digivolution cards as that Digimon can't attack or block.</dd>
  7902. </dl>
  7903. <dl>
  7904. <dt>Digivolveeffect</dt>
  7905. <dd>-</dd>
  7906. </dl>
  7907. <dl>
  7908. <dt>Securityeffect</dt>
  7909. <dd>[Security] 1 of your opponent's Digimon can't attack for the turn. Then, add this card to the hand.</dd>
  7910. </dl>
  7911. <dl>
  7912. <dt>Notes</dt>
  7913. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7914. </div>
  7915. </div>
  7916. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7917. </div>
  7918. </div>
  7919. </li>
  7920. <liclass="image_lists_itemdatapage-3">
  7921. <aclass="card_img">
  7922. <imgsrc="../images/cardlist/card/BT14-093.png"alt="BT14-093EmissaryofHope"></a>
  7923. <divclass="popup">
  7924. <divclass="card_detailcard_detail_yellow">
  7925. <divclass="card_detail_inner">
  7926. <ulclass="cardinfo_head">
  7927. <liclass="cardno">BT14-093</li>
  7928. <li>U</li>
  7929. <liclass="cardtype">Opiton</li>
  7930. </ul>
  7931. <divclass="card_name">EmissaryofHope</div>
  7932. <divclass="cardinfo_top">
  7933. <divclass="card_img">
  7934. <imgsrc="../images/cardlist/card/BT14-093.png"alt="BT14-093EmissaryofHope"></div>
  7935. <divclass="cardinfo_top_body">
  7936. <dl>
  7937. <dt>Form</dt>
  7938. <dd>-</dd>
  7939. </dl>
  7940. <dl>
  7941. <dt>Attribute</dt>
  7942. <dd>-</dd>
  7943. </dl>
  7944. <dl>
  7945. <dt>Type</dt>
  7946. <dd>-</dd>
  7947. </dl>
  7948. <dl>
  7949. <dt>DP</dt>
  7950. <dd>-</dl>
  7951. <dl>
  7952. <dt>PlayCost</dt>
  7953. <dd>1</dd>
  7954. </dl>
  7955. <dl>
  7956. <dt>DigivolveCost1</dt>
  7957. <dd>-</dd>
  7958. </dl>
  7959. <dl>
  7960. <dt>DigivolveCost2</dt>
  7961. <dd>-</dd>
  7962. </dl>
  7963. </div>
  7964. </div>
  7965. <divclass="cardinfo_bottom">
  7966. <dl>
  7967. <dt>Effect</dt>
  7968. <dd>[Main] Search your security stack. 1 of your Digimon may digivolve into 1 yellow level 6 or lower Digimon card with the [Vaccine] trait among them without paying the cost. Then, shuffle your security stack. If digivolved by this effect, and you have a Tamer with [T.K. Takaishi] in its name, <Recovery +1 (Deck)>.</dd>
  7969. </dl>
  7970. <dl>
  7971. <dt>Digivolveeffect</dt>
  7972. <dd>-</dd>
  7973. </dl>
  7974. <dl>
  7975. <dt>Securityeffect</dt>
  7976. <dd>[Security] You may play 1 [Patamon] from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  7977. </dl>
  7978. <dl>
  7979. <dt>Notes</dt>
  7980. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  7981. </div>
  7982. </div>
  7983. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7984. </div>
  7985. </div>
  7986. </li>
  7987. <liclass="image_lists_itemdatapage-3">
  7988. <aclass="card_img">
  7989. <imgsrc="../images/cardlist/card/BT14-094.png"alt="BT14-094Heaven'sKnuckle"></a>
  7990. <divclass="popup">
  7991. <divclass="card_detailcard_detail_yellow">
  7992. <divclass="card_detail_inner">
  7993. <ulclass="cardinfo_head">
  7994. <liclass="cardno">BT14-094</li>
  7995. <li>C</li>
  7996. <liclass="cardtype">Opiton</li>
  7997. </ul>
  7998. <divclass="card_name">Heaven'sKnuckle</div>
  7999. <divclass="cardinfo_top">
  8000. <divclass="card_img">
  8001. <imgsrc="../images/cardlist/card/BT14-094.png"alt="BT14-094Heaven'sKnuckle"></div>
  8002. <divclass="cardinfo_top_body">
  8003. <dl>
  8004. <dt>Form</dt>
  8005. <dd>-</dd>
  8006. </dl>
  8007. <dl>
  8008. <dt>Attribute</dt>
  8009. <dd>-</dd>
  8010. </dl>
  8011. <dl>
  8012. <dt>Type</dt>
  8013. <dd>-</dd>
  8014. </dl>
  8015. <dl>
  8016. <dt>DP</dt>
  8017. <dd>-</dl>
  8018. <dl>
  8019. <dt>PlayCost</dt>
  8020. <dd>4</dd>
  8021. </dl>
  8022. <dl>
  8023. <dt>DigivolveCost1</dt>
  8024. <dd>-</dd>
  8025. </dl>
  8026. <dl>
  8027. <dt>DigivolveCost2</dt>
  8028. <dd>-</dd>
  8029. </dl>
  8030. </div>
  8031. </div>
  8032. <divclass="cardinfo_bottom">
  8033. <dl>
  8034. <dt>Effect</dt>
  8035. <dd>[Main] Activate 1 of the effects below:<br> ・1 of your opponent's Digimon gets -6000 DP for the turn.<br> ・By deleting 1 of your [Angemon], place 1 of your opponent's Digimon at the bottom of their security stack.</dd>
  8036. </dl>
  8037. <dl>
  8038. <dt>Digivolveeffect</dt>
  8039. <dd>-</dd>
  8040. </dl>
  8041. <dl>
  8042. <dt>Securityeffect</dt>
  8043. <dd>[Security] Activate this card's [Main] effect.</dd>
  8044. </dl>
  8045. <dl>
  8046. <dt>Notes</dt>
  8047. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8048. </div>
  8049. </div>
  8050. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8051. </div>
  8052. </div>
  8053. </li>
  8054. <liclass="image_lists_itemdatapage-3">
  8055. <aclass="card_img">
  8056. <imgsrc="../images/cardlist/card/BT14-095.png"alt="BT14-095PoisonIvy"></a>
  8057. <divclass="popup">
  8058. <divclass="card_detailcard_detail_green">
  8059. <divclass="card_detail_inner">
  8060. <ulclass="cardinfo_head">
  8061. <liclass="cardno">BT14-095</li>
  8062. <li>C</li>
  8063. <liclass="cardtype">Opiton</li>
  8064. </ul>
  8065. <divclass="card_name">PoisonIvy</div>
  8066. <divclass="cardinfo_top">
  8067. <divclass="card_img">
  8068. <imgsrc="../images/cardlist/card/BT14-095.png"alt="BT14-095PoisonIvy"></div>
  8069. <divclass="cardinfo_top_body">
  8070. <dl>
  8071. <dt>Form</dt>
  8072. <dd>-</dd>
  8073. </dl>
  8074. <dl>
  8075. <dt>Attribute</dt>
  8076. <dd>-</dd>
  8077. </dl>
  8078. <dl>
  8079. <dt>Type</dt>
  8080. <dd>-</dd>
  8081. </dl>
  8082. <dl>
  8083. <dt>DP</dt>
  8084. <dd>-</dl>
  8085. <dl>
  8086. <dt>PlayCost</dt>
  8087. <dd>1</dd>
  8088. </dl>
  8089. <dl>
  8090. <dt>DigivolveCost1</dt>
  8091. <dd>-</dd>
  8092. </dl>
  8093. <dl>
  8094. <dt>DigivolveCost2</dt>
  8095. <dd>-</dd>
  8096. </dl>
  8097. </div>
  8098. </div>
  8099. <divclass="cardinfo_bottom">
  8100. <dl>
  8101. <dt>Effect</dt>
  8102. <dd>[Main] 1 of your opponent's Digimon gains "[All Turns] When this Digimon becomes suspended, lose 2 memory." until the end of their turn.</dd>
  8103. </dl>
  8104. <dl>
  8105. <dt>Digivolveeffect</dt>
  8106. <dd>-</dd>
  8107. </dl>
  8108. <dl>
  8109. <dt>Securityeffect</dt>
  8110. <dd>[Security] Activate this card's [Main] effect. Then, add this card to the hand.</dd>
  8111. </dl>
  8112. <dl>
  8113. <dt>Notes</dt>
  8114. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8115. </div>
  8116. </div>
  8117. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8118. </div>
  8119. </div>
  8120. </li>
  8121. <liclass="image_lists_itemdatapage-3">
  8122. <aclass="card_img">
  8123. <imgsrc="../images/cardlist/card/BT14-096.png"alt="BT14-096BloomingofSincerity"></a>
  8124. <divclass="popup">
  8125. <divclass="card_detailcard_detail_green">
  8126. <divclass="card_detail_inner">
  8127. <ulclass="cardinfo_head">
  8128. <liclass="cardno">BT14-096</li>
  8129. <li>U</li>
  8130. <liclass="cardtype">Opiton</li>
  8131. </ul>
  8132. <divclass="card_name">BloomingofSincerity</div>
  8133. <divclass="cardinfo_top">
  8134. <divclass="card_img">
  8135. <imgsrc="../images/cardlist/card/BT14-096.png"alt="BT14-096BloomingofSincerity"></div>
  8136. <divclass="cardinfo_top_body">
  8137. <dl>
  8138. <dt>Form</dt>
  8139. <dd>-</dd>
  8140. </dl>
  8141. <dl>
  8142. <dt>Attribute</dt>
  8143. <dd>-</dd>
  8144. </dl>
  8145. <dl>
  8146. <dt>Type</dt>
  8147. <dd>-</dd>
  8148. </dl>
  8149. <dl>
  8150. <dt>DP</dt>
  8151. <dd>-</dl>
  8152. <dl>
  8153. <dt>PlayCost</dt>
  8154. <dd>3</dd>
  8155. </dl>
  8156. <dl>
  8157. <dt>DigivolveCost1</dt>
  8158. <dd>-</dd>
  8159. </dl>
  8160. <dl>
  8161. <dt>DigivolveCost2</dt>
  8162. <dd>-</dd>
  8163. </dl>
  8164. </div>
  8165. </div>
  8166. <divclass="cardinfo_bottom">
  8167. <dl>
  8168. <dt>Effect</dt>
  8169. <dd>[Main] Suspend 1 of your opponent's Digimon. Then, if you have a Tamer with [Mimi Tachikawa] in its name, 1 of your opponent's Digimon doesn't unsuspend until the end of their turn.</dd>
  8170. </dl>
  8171. <dl>
  8172. <dt>Digivolveeffect</dt>
  8173. <dd>-</dd>
  8174. </dl>
  8175. <dl>
  8176. <dt>Securityeffect</dt>
  8177. <dd>[Security] Activate this card's [Main] effect. Then, add this card to the hand.</dd>
  8178. </dl>
  8179. <dl>
  8180. <dt>Notes</dt>
  8181. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8182. </div>
  8183. </div>
  8184. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8185. </div>
  8186. </div>
  8187. </li>
  8188. <liclass="image_lists_itemdatapage-4">
  8189. <aclass="card_img">
  8190. <imgsrc="../images/cardlist/card/BT14-097.png"alt="BT14-097Suka'sCurse"></a>
  8191. <divclass="popup">
  8192. <divclass="card_detailcard_detail_black_yellowmulticolor">
  8193. <divclass="card_detail_inner">
  8194. <ulclass="cardinfo_head">
  8195. <liclass="cardno">BT14-097</li>
  8196. <li>U</li>
  8197. <liclass="cardtype">Opiton</li>
  8198. </ul>
  8199. <divclass="card_name">Suka'sCurse</div>
  8200. <divclass="cardinfo_top">
  8201. <divclass="card_img">
  8202. <imgsrc="../images/cardlist/card/BT14-097.png"alt="BT14-097Suka'sCurse"></div>
  8203. <divclass="cardinfo_top_body">
  8204. <dl>
  8205. <dt>Form</dt>
  8206. <dd>-</dd>
  8207. </dl>
  8208. <dl>
  8209. <dt>Attribute</dt>
  8210. <dd>-</dd>
  8211. </dl>
  8212. <dl>
  8213. <dt>Type</dt>
  8214. <dd>-</dd>
  8215. </dl>
  8216. <dl>
  8217. <dt>DP</dt>
  8218. <dd>-</dl>
  8219. <dl>
  8220. <dt>PlayCost</dt>
  8221. <dd>3</dd>
  8222. </dl>
  8223. <dl>
  8224. <dt>DigivolveCost1</dt>
  8225. <dd>-</dd>
  8226. </dl>
  8227. <dl>
  8228. <dt>DigivolveCost2</dt>
  8229. <dd>-</dd>
  8230. </dl>
  8231. </div>
  8232. </div>
  8233. <divclass="cardinfo_bottom">
  8234. <dl>
  8235. <dt>Effect</dt>
  8236. <dd>[Main] 1 of your non-white Digimon may digivolve into a Digimon card with [Sukamon] in its name in your hand without paying the cost, ignoring its digivolution requirements.<br> (Rule) Name: Also treated as having [Sukamon].</dd>
  8237. </dl>
  8238. <dl>
  8239. <dt>Digivolveeffect</dt>
  8240. <dd>-</dd>
  8241. </dl>
  8242. <dl>
  8243. <dt>Securityeffect</dt>
  8244. <dd>[Security] Until the end of your turn, change 1 of your opponent's Digimon into being white and having 3000 DP and an original name of [Sukamon].</dd>
  8245. </dl>
  8246. <dl>
  8247. <dt>Notes</dt>
  8248. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8249. </div>
  8250. </div>
  8251. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8252. </div>
  8253. </div>
  8254. </li>
  8255. <liclass="image_lists_itemdatapage-4">
  8256. <aclass="card_img">
  8257. <imgsrc="../images/cardlist/card/BT14-098.png"alt="BT14-098DCDBomb"></a>
  8258. <divclass="popup">
  8259. <divclass="card_detailcard_detail_black">
  8260. <divclass="card_detail_inner">
  8261. <ulclass="cardinfo_head">
  8262. <liclass="cardno">BT14-098</li>
  8263. <li>C</li>
  8264. <liclass="cardtype">Opiton</li>
  8265. </ul>
  8266. <divclass="card_name">DCDBomb</div>
  8267. <divclass="cardinfo_top">
  8268. <divclass="card_img">
  8269. <imgsrc="../images/cardlist/card/BT14-098.png"alt="BT14-098DCDBomb"></div>
  8270. <divclass="cardinfo_top_body">
  8271. <dl>
  8272. <dt>Form</dt>
  8273. <dd>-</dd>
  8274. </dl>
  8275. <dl>
  8276. <dt>Attribute</dt>
  8277. <dd>-</dd>
  8278. </dl>
  8279. <dl>
  8280. <dt>Type</dt>
  8281. <dd>D-Brigade</dd>
  8282. </dl>
  8283. <dl>
  8284. <dt>DP</dt>
  8285. <dd>-</dl>
  8286. <dl>
  8287. <dt>PlayCost</dt>
  8288. <dd>4</dd>
  8289. </dl>
  8290. <dl>
  8291. <dt>DigivolveCost1</dt>
  8292. <dd>-</dd>
  8293. </dl>
  8294. <dl>
  8295. <dt>DigivolveCost2</dt>
  8296. <dd>-</dd>
  8297. </dl>
  8298. </div>
  8299. </div>
  8300. <divclass="cardinfo_bottom">
  8301. <dl>
  8302. <dt>Effect</dt>
  8303. <dd>[Main] <De-Digivolve 1> 1 of your opponent's Digimon. Then, by returning 3 cards with the [D-Brigade] or [DigiPolice] trait from your trash to the top of the deck, delete up to 6 play cost's total worth of your opponent's Digimon.</dd>
  8304. </dl>
  8305. <dl>
  8306. <dt>Digivolveeffect</dt>
  8307. <dd>-</dd>
  8308. </dl>
  8309. <dl>
  8310. <dt>Securityeffect</dt>
  8311. <dd>[Security] Activate this card's [Main] effect.</dd>
  8312. </dl>
  8313. <dl>
  8314. <dt>Notes</dt>
  8315. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8316. </div>
  8317. </div>
  8318. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8319. </div>
  8320. </div>
  8321. </li>
  8322. <liclass="image_lists_itemdatapage-4">
  8323. <aclass="card_img">
  8324. <imgsrc="../images/cardlist/card/BT14-099.png"alt="BT14-099DarkWingsDelusion"></a>
  8325. <divclass="popup">
  8326. <divclass="card_detailcard_detail_purple">
  8327. <divclass="card_detail_inner">
  8328. <ulclass="cardinfo_head">
  8329. <liclass="cardno">BT14-099</li>
  8330. <li>U</li>
  8331. <liclass="cardtype">Opiton</li>
  8332. </ul>
  8333. <divclass="card_name">DarkWingsDelusion</div>
  8334. <divclass="cardinfo_top">
  8335. <divclass="card_img">
  8336. <imgsrc="../images/cardlist/card/BT14-099.png"alt="BT14-099DarkWingsDelusion"></div>
  8337. <divclass="cardinfo_top_body">
  8338. <dl>
  8339. <dt>Form</dt>
  8340. <dd>-</dd>
  8341. </dl>
  8342. <dl>
  8343. <dt>Attribute</dt>
  8344. <dd>-</dd>
  8345. </dl>
  8346. <dl>
  8347. <dt>Type</dt>
  8348. <dd>-</dd>
  8349. </dl>
  8350. <dl>
  8351. <dt>DP</dt>
  8352. <dd>-</dl>
  8353. <dl>
  8354. <dt>PlayCost</dt>
  8355. <dd>1</dd>
  8356. </dl>
  8357. <dl>
  8358. <dt>DigivolveCost1</dt>
  8359. <dd>-</dd>
  8360. </dl>
  8361. <dl>
  8362. <dt>DigivolveCost2</dt>
  8363. <dd>-</dd>
  8364. </dl>
  8365. </div>
  8366. </div>
  8367. <divclass="cardinfo_bottom">
  8368. <dl>
  8369. <dt>Effect</dt>
  8370. <dd>[Main] Trash the top 3 cards of your deck. Then, 1 of your Digimon with [Devimon] in its name gains <Security A. +1> for the turn.</dd>
  8371. </dl>
  8372. <dl>
  8373. <dt>Digivolveeffect</dt>
  8374. <dd>-</dd>
  8375. </dl>
  8376. <dl>
  8377. <dt>Securityeffect</dt>
  8378. <dd>[Security] Activate this card's [Main] effect.</dd>
  8379. </dl>
  8380. <dl>
  8381. <dt>Notes</dt>
  8382. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8383. </div>
  8384. </div>
  8385. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8386. </div>
  8387. </div>
  8388. </li>
  8389. <liclass="image_lists_itemdatapage-4">
  8390. <aclass="card_img">
  8391. <imgsrc="../images/cardlist/card/BT14-100.png"alt="BT14-100PummelWhack"></a>
  8392. <divclass="popup">
  8393. <divclass="card_detailcard_detail_purple">
  8394. <divclass="card_detail_inner">
  8395. <ulclass="cardinfo_head">
  8396. <liclass="cardno">BT14-100</li>
  8397. <li>C</li>
  8398. <liclass="cardtype">Opiton</li>
  8399. </ul>
  8400. <divclass="card_name">PummelWhack</div>
  8401. <divclass="cardinfo_top">
  8402. <divclass="card_img">
  8403. <imgsrc="../images/cardlist/card/BT14-100.png"alt="BT14-100PummelWhack"></div>
  8404. <divclass="cardinfo_top_body">
  8405. <dl>
  8406. <dt>Form</dt>
  8407. <dd>-</dd>
  8408. </dl>
  8409. <dl>
  8410. <dt>Attribute</dt>
  8411. <dd>-</dd>
  8412. </dl>
  8413. <dl>
  8414. <dt>Type</dt>
  8415. <dd>-</dd>
  8416. </dl>
  8417. <dl>
  8418. <dt>DP</dt>
  8419. <dd>-</dl>
  8420. <dl>
  8421. <dt>PlayCost</dt>
  8422. <dd>3</dd>
  8423. </dl>
  8424. <dl>
  8425. <dt>DigivolveCost1</dt>
  8426. <dd>-</dd>
  8427. </dl>
  8428. <dl>
  8429. <dt>DigivolveCost2</dt>
  8430. <dd>-</dd>
  8431. </dl>
  8432. </div>
  8433. </div>
  8434. <divclass="cardinfo_bottom">
  8435. <dl>
  8436. <dt>Effect</dt>
  8437. <dd>When one of your effects trashes this card in your hand, <Draw 1>.<br> [Main] Delete 1 of your opponent's level 4 or lower Digimon.</dd>
  8438. </dl>
  8439. <dl>
  8440. <dt>Digivolveeffect</dt>
  8441. <dd>-</dd>
  8442. </dl>
  8443. <dl>
  8444. <dt>Securityeffect</dt>
  8445. <dd>[Security] Activate this card's [Main] effect.</dd>
  8446. </dl>
  8447. <dl>
  8448. <dt>Notes</dt>
  8449. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8450. </div>
  8451. </div>
  8452. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8453. </div>
  8454. </div>
  8455. </li>
  8456. <liclass="image_lists_itemdatapage-4">
  8457. <aclass="card_img">
  8458. <imgsrc="../images/cardlist/card/BT14-101.png"alt="BT14-101WarGreymon"></a>
  8459. <divclass="popup">
  8460. <divclass="card_detailcard_detail_red">
  8461. <divclass="card_detail_inner">
  8462. <ulclass="cardinfo_head">
  8463. <liclass="cardno">BT14-101</li>
  8464. <li>SEC</li>
  8465. <liclass="cardtype">Digimon</li>
  8466. <liclass="cardlv">Lv.6</li>
  8467. </ul>
  8468. <divclass="card_name">WarGreymon</div>
  8469. <divclass="cardinfo_top">
  8470. <divclass="card_img">
  8471. <imgsrc="../images/cardlist/card/BT14-101.png"alt="BT14-101WarGreymon"></div>
  8472. <divclass="cardinfo_top_body">
  8473. <dl>
  8474. <dt>Form</dt>
  8475. <dd>Mega</dd>
  8476. </dl>
  8477. <dl>
  8478. <dt>Attribute</dt>
  8479. <dd>Vaccine</dd>
  8480. </dl>
  8481. <dl>
  8482. <dt>Type</dt>
  8483. <dd>Dragonkin</dd>
  8484. </dl>
  8485. <dl>
  8486. <dt>DP</dt>
  8487. <dd>12000</dl>
  8488. <dl>
  8489. <dt>PlayCost</dt>
  8490. <dd>12</dd>
  8491. </dl>
  8492. <dl>
  8493. <dt>DigivolveCost1</dt>
  8494. <dd>4fromLv.5</dd>
  8495. </dl>
  8496. <dl>
  8497. <dt>DigivolveCost2</dt>
  8498. <dd>-</dd>
  8499. </dl>
  8500. </div>
  8501. </div>
  8502. <divclass="cardinfo_bottom">
  8503. <dl>
  8504. <dt>Effect</dt>
  8505. <dd>[Digivolve] Lv.5 w/[Greymon] in name: Cost 4<br>While you have a Tamer with [Tai Kamiya] in its name and your opponent has a Digimon with 10000 DP or more, one of your [Agumon] may digivolve into this card in your hand for a digivolution cost of 4, ignoring digivolution requirements.<br>[When Digivolving] This Digimon gains <Raid> for the turn. Then, it may attack.<br>[When Attacking] If you have a Tamer, this Digimon gains <Security A. +1> and <Piercing> for the turn.</dd>
  8506. </dl>
  8507. <dl>
  8508. <dt>Digivolveeffect</dt>
  8509. <dd>-</dd>
  8510. </dl>
  8511. <dl>
  8512. <dt>Securityeffect</dt>
  8513. <dd>-</dd>
  8514. </dl>
  8515. <dl>
  8516. <dt>Notes</dt>
  8517. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8518. </div>
  8519. </div>
  8520. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8521. </div>
  8522. </div>
  8523. </li>
  8524. <liclass="image_lists_itemdatapage-4">
  8525. <aclass="card_img">
  8526. <imgsrc="../images/cardlist/card/BT14-101_P1.png"alt="BT14-101WarGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  8527. </a>
  8528. <divclass="popup">
  8529. <divclass="card_detailcard_detail_red">
  8530. <divclass="card_detail_inner">
  8531. <ulclass="cardinfo_head">
  8532. <liclass="cardno">BT14-101</li>
  8533. <li>SEC</li>
  8534. <liclass="cardtype">Digimon</li>
  8535. <liclass="cardlv">Lv.6</li>
  8536. <liclass="cardtypecardParallel">AlternativeArt</li>
  8537. </ul>
  8538. <divclass="card_name">WarGreymon</div>
  8539. <divclass="cardinfo_top">
  8540. <divclass="card_img">
  8541. <imgsrc="../images/cardlist/card/BT14-101_P1.png"alt="BT14-101WarGreymon"></div>
  8542. <divclass="cardinfo_top_body">
  8543. <dl>
  8544. <dt>Form</dt>
  8545. <dd>Mega</dd>
  8546. </dl>
  8547. <dl>
  8548. <dt>Attribute</dt>
  8549. <dd>Vaccine</dd>
  8550. </dl>
  8551. <dl>
  8552. <dt>Type</dt>
  8553. <dd>Dragonkin</dd>
  8554. </dl>
  8555. <dl>
  8556. <dt>DP</dt>
  8557. <dd>12000</dl>
  8558. <dl>
  8559. <dt>PlayCost</dt>
  8560. <dd>12</dd>
  8561. </dl>
  8562. <dl>
  8563. <dt>DigivolveCost1</dt>
  8564. <dd>4fromLv.5</dd>
  8565. </dl>
  8566. <dl>
  8567. <dt>DigivolveCost2</dt>
  8568. <dd>-</dd>
  8569. </dl>
  8570. </div>
  8571. </div>
  8572. <divclass="cardinfo_bottom">
  8573. <dl>
  8574. <dt>Effect</dt>
  8575. <dd>[Digivolve] Lv.5 w/[Greymon] in name: Cost 4<br>While you have a Tamer with [Tai Kamiya] in its name and your opponent has a Digimon with 10000 DP or more, one of your [Agumon] may digivolve into this card in your hand for a digivolution cost of 4, ignoring digivolution requirements.<br>[When Digivolving] This Digimon gains <Raid> for the turn. Then, it may attack.<br>[When Attacking] If you have a Tamer, this Digimon gains <Security A. +1> and <Piercing> for the turn.</dd>
  8576. </dl>
  8577. <dl>
  8578. <dt>Digivolveeffect</dt>
  8579. <dd>-</dd>
  8580. </dl>
  8581. <dl>
  8582. <dt>Securityeffect</dt>
  8583. <dd>-</dd>
  8584. </dl>
  8585. <dl>
  8586. <dt>Notes</dt>
  8587. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8588. </div>
  8589. </div>
  8590. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8591. </div>
  8592. </div>
  8593. </li>
  8594. <liclass="image_lists_itemdatapage-4">
  8595. <aclass="card_img">
  8596. <imgsrc="../images/cardlist/card/BT14-102.png"alt="BT14-102Angemon"></a>
  8597. <divclass="popup">
  8598. <divclass="card_detailcard_detail_yellow">
  8599. <divclass="card_detail_inner">
  8600. <ulclass="cardinfo_head">
  8601. <liclass="cardno">BT14-102</li>
  8602. <li>SEC</li>
  8603. <liclass="cardtype">Digimon</li>
  8604. <liclass="cardlv">Lv.4</li>
  8605. </ul>
  8606. <divclass="card_name">Angemon</div>
  8607. <divclass="cardinfo_top">
  8608. <divclass="card_img">
  8609. <imgsrc="../images/cardlist/card/BT14-102.png"alt="BT14-102Angemon"></div>
  8610. <divclass="cardinfo_top_body">
  8611. <dl>
  8612. <dt>Form</dt>
  8613. <dd>Champion</dd>
  8614. </dl>
  8615. <dl>
  8616. <dt>Attribute</dt>
  8617. <dd>Vaccine</dd>
  8618. </dl>
  8619. <dl>
  8620. <dt>Type</dt>
  8621. <dd>Angel</dd>
  8622. </dl>
  8623. <dl>
  8624. <dt>DP</dt>
  8625. <dd>6000</dl>
  8626. <dl>
  8627. <dt>PlayCost</dt>
  8628. <dd>6</dd>
  8629. </dl>
  8630. <dl>
  8631. <dt>DigivolveCost1</dt>
  8632. <dd>3fromLv.3</dd>
  8633. </dl>
  8634. <dl>
  8635. <dt>DigivolveCost2</dt>
  8636. <dd>-</dd>
  8637. </dl>
  8638. </div>
  8639. </div>
  8640. <divclass="cardinfo_bottom">
  8641. <dl>
  8642. <dt>Effect</dt>
  8643. <dd>[Digivolve][Patamon]: Cost 2<br>[When Attacking] By deleting this Digimon, activate 1 of the effects below:<br>・Place 1 of your opponent's Digimon with the [Virus] trait at the bottom of their security stack.<br>・1 of your opponent's Digimon gets -5000 DP for the turn.<br> [On Deletion] Place this card at the bottom of your security stack. Then, if you have a Tamer, you may hatch in your breeding area.</dd>
  8644. </dl>
  8645. <dl>
  8646. <dt>Digivolveeffect</dt>
  8647. <dd>[On Deletion] Place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack. </dd>
  8648. </dl>
  8649. <dl>
  8650. <dt>Securityeffect</dt>
  8651. <dd>-</dd>
  8652. </dl>
  8653. <dl>
  8654. <dt>Notes</dt>
  8655. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8656. </div>
  8657. </div>
  8658. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8659. </div>
  8660. </div>
  8661. </li>
  8662. <liclass="image_lists_itemdatapage-4">
  8663. <aclass="card_img">
  8664. <imgsrc="../images/cardlist/card/BT14-102_P1.png"alt="BT14-102Angemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  8665. </a>
  8666. <divclass="popup">
  8667. <divclass="card_detailcard_detail_yellow">
  8668. <divclass="card_detail_inner">
  8669. <ulclass="cardinfo_head">
  8670. <liclass="cardno">BT14-102</li>
  8671. <li>SEC</li>
  8672. <liclass="cardtype">Digimon</li>
  8673. <liclass="cardlv">Lv.4</li>
  8674. <liclass="cardtypecardParallel">AlternativeArt</li>
  8675. </ul>
  8676. <divclass="card_name">Angemon</div>
  8677. <divclass="cardinfo_top">
  8678. <divclass="card_img">
  8679. <imgsrc="../images/cardlist/card/BT14-102_P1.png"alt="BT14-102Angemon"></div>
  8680. <divclass="cardinfo_top_body">
  8681. <dl>
  8682. <dt>Form</dt>
  8683. <dd>Champion</dd>
  8684. </dl>
  8685. <dl>
  8686. <dt>Attribute</dt>
  8687. <dd>Vaccine</dd>
  8688. </dl>
  8689. <dl>
  8690. <dt>Type</dt>
  8691. <dd>Angel</dd>
  8692. </dl>
  8693. <dl>
  8694. <dt>DP</dt>
  8695. <dd>6000</dl>
  8696. <dl>
  8697. <dt>PlayCost</dt>
  8698. <dd>6</dd>
  8699. </dl>
  8700. <dl>
  8701. <dt>DigivolveCost1</dt>
  8702. <dd>3fromLv.3</dd>
  8703. </dl>
  8704. <dl>
  8705. <dt>DigivolveCost2</dt>
  8706. <dd>-</dd>
  8707. </dl>
  8708. </div>
  8709. </div>
  8710. <divclass="cardinfo_bottom">
  8711. <dl>
  8712. <dt>Effect</dt>
  8713. <dd>[Digivolve][Patamon]: Cost 2<br>[When Attacking] By deleting this Digimon, activate 1 of the effects below:<br>・Place 1 of your opponent's Digimon with the [Virus] trait at the bottom of their security stack.<br>・1 of your opponent's Digimon gets -5000 DP for the turn.<br> [On Deletion] Place this card at the bottom of your security stack. Then, if you have a Tamer, you may hatch in your breeding area.</dd>
  8714. </dl>
  8715. <dl>
  8716. <dt>Digivolveeffect</dt>
  8717. <dd>[On Deletion] Place 1 yellow card with the [Vaccine] trait from your hand at the bottom of your security stack. </dd>
  8718. </dl>
  8719. <dl>
  8720. <dt>Securityeffect</dt>
  8721. <dd>-</dd>
  8722. </dl>
  8723. <dl>
  8724. <dt>Notes</dt>
  8725. <dd><ahref="/products/pack/ver14.php">&rtri;BOOSTERBLASTACE[BT14]</a></dd></dl>
  8726. </div>
  8727. </div>
  8728. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8729. </div>
  8730. </div>
  8731. </li>