522007.txt 278 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT7-001.png"alt="BT7-001Kapurimon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT7-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Kapurimon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT7-001.png"alt="BT7-001Kapurimon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Form</dt>
  20. <dd>In-Training</dd>
  21. </dl>
  22. <dl>
  23. <dt>Attribute</dt>
  24. <dd>-</dd>
  25. </dl>
  26. <dl>
  27. <dt>Type</dt>
  28. <dd>Lesser</dd>
  29. </dl>
  30. <dl>
  31. <dt>DP</dt>
  32. <dd>-</dl>
  33. <dl>
  34. <dt>PlayCost</dt>
  35. <dd>-</dd>
  36. </dl>
  37. <dl>
  38. <dt>DigivolveCost1</dt>
  39. <dd>-</dd>
  40. </dl>
  41. <dl>
  42. <dt>DigivolveCost2</dt>
  43. <dd>-</dd>
  44. </dl>
  45. </div>
  46. </div>
  47. <divclass="cardinfo_bottom">
  48. <dl>
  49. <dt>Effect</dt>
  50. <dd>-</dd>
  51. </dl>
  52. <dl>
  53. <dt>Digivolveeffect</dt>
  54. <dd>[Your Turn] While you have a Tamer in play, this Digimon gets +1000 DP.</dd>
  55. </dl>
  56. <dl>
  57. <dt>Securityeffect</dt>
  58. <dd>-</dd>
  59. </dl>
  60. <dl>
  61. <dt>Notes</dt>
  62. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</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/BT7-002.png"alt="BT7-002Bukamon"></a>
  72. <divclass="popup">
  73. <divclass="card_detailcard_detail_blue">
  74. <divclass="card_detail_inner">
  75. <ulclass="cardinfo_head">
  76. <liclass="cardno">BT7-002</li>
  77. <li>U</li>
  78. <liclass="cardtype">Digi-Egg</li>
  79. <liclass="cardlv">Lv.2</li>
  80. </ul>
  81. <divclass="card_name">Bukamon</div>
  82. <divclass="cardinfo_top">
  83. <divclass="card_img">
  84. <imgsrc="../images/cardlist/card/BT7-002.png"alt="BT7-002Bukamon"></div>
  85. <divclass="cardinfo_top_body">
  86. <dl>
  87. <dt>Form</dt>
  88. <dd>In-Training</dd>
  89. </dl>
  90. <dl>
  91. <dt>Attribute</dt>
  92. <dd>-</dd>
  93. </dl>
  94. <dl>
  95. <dt>Type</dt>
  96. <dd>Lesser</dd>
  97. </dl>
  98. <dl>
  99. <dt>DP</dt>
  100. <dd>-</dl>
  101. <dl>
  102. <dt>PlayCost</dt>
  103. <dd>-</dd>
  104. </dl>
  105. <dl>
  106. <dt>DigivolveCost1</dt>
  107. <dd>-</dd>
  108. </dl>
  109. <dl>
  110. <dt>DigivolveCost2</dt>
  111. <dd>-</dd>
  112. </dl>
  113. </div>
  114. </div>
  115. <divclass="cardinfo_bottom">
  116. <dl>
  117. <dt>Effect</dt>
  118. <dd>-</dd>
  119. </dl>
  120. <dl>
  121. <dt>Digivolveeffect</dt>
  122. <dd>[Your Turn][Once Per Turn] When you play a Digimon from one of your Digimon's digivolution cards, gain 1 memory.</dd>
  123. </dl>
  124. <dl>
  125. <dt>Securityeffect</dt>
  126. <dd>-</dd>
  127. </dl>
  128. <dl>
  129. <dt>Notes</dt>
  130. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  131. </div>
  132. </div>
  133. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  134. </div>
  135. </div>
  136. </li>
  137. <liclass="image_lists_itemdatapage-1">
  138. <aclass="card_img">
  139. <imgsrc="../images/cardlist/card/BT7-003.png"alt="BT7-003Pusurimon"></a>
  140. <divclass="popup">
  141. <divclass="card_detailcard_detail_yellow">
  142. <divclass="card_detail_inner">
  143. <ulclass="cardinfo_head">
  144. <liclass="cardno">BT7-003</li>
  145. <li>U</li>
  146. <liclass="cardtype">Digi-Egg</li>
  147. <liclass="cardlv">Lv.2</li>
  148. </ul>
  149. <divclass="card_name">Pusurimon</div>
  150. <divclass="cardinfo_top">
  151. <divclass="card_img">
  152. <imgsrc="../images/cardlist/card/BT7-003.png"alt="BT7-003Pusurimon"></div>
  153. <divclass="cardinfo_top_body">
  154. <dl>
  155. <dt>Form</dt>
  156. <dd>In-Training</dd>
  157. </dl>
  158. <dl>
  159. <dt>Attribute</dt>
  160. <dd>-</dd>
  161. </dl>
  162. <dl>
  163. <dt>Type</dt>
  164. <dd>Lesser</dd>
  165. </dl>
  166. <dl>
  167. <dt>DP</dt>
  168. <dd>-</dl>
  169. <dl>
  170. <dt>PlayCost</dt>
  171. <dd>-</dd>
  172. </dl>
  173. <dl>
  174. <dt>DigivolveCost1</dt>
  175. <dd>-</dd>
  176. </dl>
  177. <dl>
  178. <dt>DigivolveCost2</dt>
  179. <dd>-</dd>
  180. </dl>
  181. </div>
  182. </div>
  183. <divclass="cardinfo_bottom">
  184. <dl>
  185. <dt>Effect</dt>
  186. <dd>-</dd>
  187. </dl>
  188. <dl>
  189. <dt>Digivolveeffect</dt>
  190. <dd>[Your Turn] When this card is trashed due to activating this Digimon's <Digi-Burst>, 1 of your opponent's Digimon gets -1000 DP for the turn.</dd>
  191. </dl>
  192. <dl>
  193. <dt>Securityeffect</dt>
  194. <dd>-</dd>
  195. </dl>
  196. <dl>
  197. <dt>Notes</dt>
  198. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  199. </div>
  200. </div>
  201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  202. </div>
  203. </div>
  204. </li>
  205. <liclass="image_lists_itemdatapage-1">
  206. <aclass="card_img">
  207. <imgsrc="../images/cardlist/card/BT7-004.png"alt="BT7-004Koromon"></a>
  208. <divclass="popup">
  209. <divclass="card_detailcard_detail_green">
  210. <divclass="card_detail_inner">
  211. <ulclass="cardinfo_head">
  212. <liclass="cardno">BT7-004</li>
  213. <li>U</li>
  214. <liclass="cardtype">Digi-Egg</li>
  215. <liclass="cardlv">Lv.2</li>
  216. </ul>
  217. <divclass="card_name">Koromon</div>
  218. <divclass="cardinfo_top">
  219. <divclass="card_img">
  220. <imgsrc="../images/cardlist/card/BT7-004.png"alt="BT7-004Koromon"></div>
  221. <divclass="cardinfo_top_body">
  222. <dl>
  223. <dt>Form</dt>
  224. <dd>In-Training</dd>
  225. </dl>
  226. <dl>
  227. <dt>Attribute</dt>
  228. <dd>-</dd>
  229. </dl>
  230. <dl>
  231. <dt>Type</dt>
  232. <dd>Lesser</dd>
  233. </dl>
  234. <dl>
  235. <dt>DP</dt>
  236. <dd>-</dl>
  237. <dl>
  238. <dt>PlayCost</dt>
  239. <dd>-</dd>
  240. </dl>
  241. <dl>
  242. <dt>DigivolveCost1</dt>
  243. <dd>-</dd>
  244. </dl>
  245. <dl>
  246. <dt>DigivolveCost2</dt>
  247. <dd>-</dd>
  248. </dl>
  249. </div>
  250. </div>
  251. <divclass="cardinfo_bottom">
  252. <dl>
  253. <dt>Effect</dt>
  254. <dd>-</dd>
  255. </dl>
  256. <dl>
  257. <dt>Digivolveeffect</dt>
  258. <dd>[When Attacking] Reveal the top card of your deck, and place it at the top or bottom of your deck.</dd>
  259. </dl>
  260. <dl>
  261. <dt>Securityeffect</dt>
  262. <dd>-</dd>
  263. </dl>
  264. <dl>
  265. <dt>Notes</dt>
  266. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  267. </div>
  268. </div>
  269. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  270. </div>
  271. </div>
  272. </li>
  273. <liclass="image_lists_itemdatapage-1">
  274. <aclass="card_img">
  275. <imgsrc="../images/cardlist/card/BT7-004_P1.png"alt="BT7-004Koromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  276. </a>
  277. <divclass="popup">
  278. <divclass="card_detailcard_detail_green">
  279. <divclass="card_detail_inner">
  280. <ulclass="cardinfo_head">
  281. <liclass="cardno">BT7-004</li>
  282. <li>U</li>
  283. <liclass="cardtype">Digi-Egg</li>
  284. <liclass="cardlv">Lv.2</li>
  285. <liclass="cardtypecardParallel">AlternativeArt</li>
  286. </ul>
  287. <divclass="card_name">Koromon</div>
  288. <divclass="cardinfo_top">
  289. <divclass="card_img">
  290. <imgsrc="../images/cardlist/card/BT7-004_P1.png"alt="BT7-004Koromon"></div>
  291. <divclass="cardinfo_top_body">
  292. <dl>
  293. <dt>Form</dt>
  294. <dd>In-Training</dd>
  295. </dl>
  296. <dl>
  297. <dt>Attribute</dt>
  298. <dd>-</dd>
  299. </dl>
  300. <dl>
  301. <dt>Type</dt>
  302. <dd>Lesser</dd>
  303. </dl>
  304. <dl>
  305. <dt>DP</dt>
  306. <dd>-</dl>
  307. <dl>
  308. <dt>PlayCost</dt>
  309. <dd>-</dd>
  310. </dl>
  311. <dl>
  312. <dt>DigivolveCost1</dt>
  313. <dd>-</dd>
  314. </dl>
  315. <dl>
  316. <dt>DigivolveCost2</dt>
  317. <dd>-</dd>
  318. </dl>
  319. </div>
  320. </div>
  321. <divclass="cardinfo_bottom">
  322. <dl>
  323. <dt>Effect</dt>
  324. <dd>[When Attacking] Reveal the top card of your deck, and place it at the top or bottom of your deck.</dd>
  325. </dl>
  326. <dl>
  327. <dt>Digivolveeffect</dt>
  328. <dd>-</dd>
  329. </dl>
  330. <dl>
  331. <dt>Securityeffect</dt>
  332. <dd>-</dd>
  333. </dl>
  334. <dl>
  335. <dt>Notes</dt>
  336. <dd>Digi-EggSet</dd></dl>
  337. </div>
  338. </div>
  339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  340. </div>
  341. </div>
  342. </li>
  343. <liclass="image_lists_itemdatapage-1">
  344. <aclass="card_img">
  345. <imgsrc="../images/cardlist/card/BT7-005.png"alt="BT7-005Dorimon"></a>
  346. <divclass="popup">
  347. <divclass="card_detailcard_detail_black">
  348. <divclass="card_detail_inner">
  349. <ulclass="cardinfo_head">
  350. <liclass="cardno">BT7-005</li>
  351. <li>U</li>
  352. <liclass="cardtype">Digi-Egg</li>
  353. <liclass="cardlv">Lv.2</li>
  354. </ul>
  355. <divclass="card_name">Dorimon</div>
  356. <divclass="cardinfo_top">
  357. <divclass="card_img">
  358. <imgsrc="../images/cardlist/card/BT7-005.png"alt="BT7-005Dorimon"></div>
  359. <divclass="cardinfo_top_body">
  360. <dl>
  361. <dt>Form</dt>
  362. <dd>In-Training</dd>
  363. </dl>
  364. <dl>
  365. <dt>Attribute</dt>
  366. <dd>-</dd>
  367. </dl>
  368. <dl>
  369. <dt>Type</dt>
  370. <dd>Lesser/X-Antibody</dd>
  371. </dl>
  372. <dl>
  373. <dt>DP</dt>
  374. <dd>-</dl>
  375. <dl>
  376. <dt>PlayCost</dt>
  377. <dd>-</dd>
  378. </dl>
  379. <dl>
  380. <dt>DigivolveCost1</dt>
  381. <dd>-</dd>
  382. </dl>
  383. <dl>
  384. <dt>DigivolveCost2</dt>
  385. <dd>-</dd>
  386. </dl>
  387. </div>
  388. </div>
  389. <divclass="cardinfo_bottom">
  390. <dl>
  391. <dt>Effect</dt>
  392. <dd>-</dd>
  393. </dl>
  394. <dl>
  395. <dt>Digivolveeffect</dt>
  396. <dd>[Your Turn][Once Per Turn] When one of your effects places a digivolution card under this Digimon, <Draw 1>. (Draw 1 card from your deck.)</dd>
  397. </dl>
  398. <dl>
  399. <dt>Securityeffect</dt>
  400. <dd>-</dd>
  401. </dl>
  402. <dl>
  403. <dt>Notes</dt>
  404. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  405. </div>
  406. </div>
  407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  408. </div>
  409. </div>
  410. </li>
  411. <liclass="image_lists_itemdatapage-1">
  412. <aclass="card_img">
  413. <imgsrc="../images/cardlist/card/BT7-005_P1.png"alt="BT7-005Dorimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  414. </a>
  415. <divclass="popup">
  416. <divclass="card_detailcard_detail_black">
  417. <divclass="card_detail_inner">
  418. <ulclass="cardinfo_head">
  419. <liclass="cardno">BT7-005</li>
  420. <li>U</li>
  421. <liclass="cardtype">Digi-Egg</li>
  422. <liclass="cardlv">Lv.2</li>
  423. <liclass="cardtypecardParallel">AlternativeArt</li>
  424. </ul>
  425. <divclass="card_name">Dorimon</div>
  426. <divclass="cardinfo_top">
  427. <divclass="card_img">
  428. <imgsrc="../images/cardlist/card/BT7-005_P1.png"alt="BT7-005Dorimon"></div>
  429. <divclass="cardinfo_top_body">
  430. <dl>
  431. <dt>Form</dt>
  432. <dd>In-Training</dd>
  433. </dl>
  434. <dl>
  435. <dt>Attribute</dt>
  436. <dd>-</dd>
  437. </dl>
  438. <dl>
  439. <dt>Type</dt>
  440. <dd>Lesser/X-Antibody</dd>
  441. </dl>
  442. <dl>
  443. <dt>DP</dt>
  444. <dd>-</dl>
  445. <dl>
  446. <dt>PlayCost</dt>
  447. <dd>-</dd>
  448. </dl>
  449. <dl>
  450. <dt>DigivolveCost1</dt>
  451. <dd>-</dd>
  452. </dl>
  453. <dl>
  454. <dt>DigivolveCost2</dt>
  455. <dd>-</dd>
  456. </dl>
  457. </div>
  458. </div>
  459. <divclass="cardinfo_bottom">
  460. <dl>
  461. <dt>Effect</dt>
  462. <dd>-</dd>
  463. </dl>
  464. <dl>
  465. <dt>Digivolveeffect</dt>
  466. <dd>[Your Turn][Once Per Turn] When one of your effects places a digivolution card under this Digimon, <Draw 1>. (Draw 1 card from your deck.)</dd>
  467. </dl>
  468. <dl>
  469. <dt>Securityeffect</dt>
  470. <dd>-</dd>
  471. </dl>
  472. <dl>
  473. <dt>Notes</dt>
  474. <dd><ahref="/products/pack/ver11.php">&rtri;BOOSTERDIMENSIONALPHASE[BT11]</a></dd></dl>
  475. </div>
  476. </div>
  477. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  478. </div>
  479. </div>
  480. </li>
  481. <liclass="image_lists_itemdatapage-1">
  482. <aclass="card_img">
  483. <imgsrc="../images/cardlist/card/BT7-006.png"alt="BT7-006Kokomon"></a>
  484. <divclass="popup">
  485. <divclass="card_detailcard_detail_purple">
  486. <divclass="card_detail_inner">
  487. <ulclass="cardinfo_head">
  488. <liclass="cardno">BT7-006</li>
  489. <li>U</li>
  490. <liclass="cardtype">Digi-Egg</li>
  491. <liclass="cardlv">Lv.2</li>
  492. </ul>
  493. <divclass="card_name">Kokomon</div>
  494. <divclass="cardinfo_top">
  495. <divclass="card_img">
  496. <imgsrc="../images/cardlist/card/BT7-006.png"alt="BT7-006Kokomon"></div>
  497. <divclass="cardinfo_top_body">
  498. <dl>
  499. <dt>Form</dt>
  500. <dd>In-Training</dd>
  501. </dl>
  502. <dl>
  503. <dt>Attribute</dt>
  504. <dd>-</dd>
  505. </dl>
  506. <dl>
  507. <dt>Type</dt>
  508. <dd>Lesser</dd>
  509. </dl>
  510. <dl>
  511. <dt>DP</dt>
  512. <dd>-</dl>
  513. <dl>
  514. <dt>PlayCost</dt>
  515. <dd>-</dd>
  516. </dl>
  517. <dl>
  518. <dt>DigivolveCost1</dt>
  519. <dd>-</dd>
  520. </dl>
  521. <dl>
  522. <dt>DigivolveCost2</dt>
  523. <dd>-</dd>
  524. </dl>
  525. </div>
  526. </div>
  527. <divclass="cardinfo_bottom">
  528. <dl>
  529. <dt>Effect</dt>
  530. <dd>-</dd>
  531. </dl>
  532. <dl>
  533. <dt>Digivolveeffect</dt>
  534. <dd>[When Attacking] You may reveal the top 3 cards of your deck. Trash 1 Tamer card among them. Place the remaining cards at the bottom of your deck in any order.</dd>
  535. </dl>
  536. <dl>
  537. <dt>Securityeffect</dt>
  538. <dd>-</dd>
  539. </dl>
  540. <dl>
  541. <dt>Notes</dt>
  542. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  543. </div>
  544. </div>
  545. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  546. </div>
  547. </div>
  548. </li>
  549. <liclass="image_lists_itemdatapage-1">
  550. <aclass="card_img">
  551. <imgsrc="../images/cardlist/card/BT7-007.png"alt="BT7-007ToyAgumon"></a>
  552. <divclass="popup">
  553. <divclass="card_detailcard_detail_red">
  554. <divclass="card_detail_inner">
  555. <ulclass="cardinfo_head">
  556. <liclass="cardno">BT7-007</li>
  557. <li>C</li>
  558. <liclass="cardtype">Digimon</li>
  559. <liclass="cardlv">Lv.3</li>
  560. </ul>
  561. <divclass="card_name">ToyAgumon</div>
  562. <divclass="cardinfo_top">
  563. <divclass="card_img">
  564. <imgsrc="../images/cardlist/card/BT7-007.png"alt="BT7-007ToyAgumon"></div>
  565. <divclass="cardinfo_top_body">
  566. <dl>
  567. <dt>Form</dt>
  568. <dd>Rookie</dd>
  569. </dl>
  570. <dl>
  571. <dt>Attribute</dt>
  572. <dd>Vaccine</dd>
  573. </dl>
  574. <dl>
  575. <dt>Type</dt>
  576. <dd>Puppet</dd>
  577. </dl>
  578. <dl>
  579. <dt>DP</dt>
  580. <dd>3000</dl>
  581. <dl>
  582. <dt>PlayCost</dt>
  583. <dd>2</dd>
  584. </dl>
  585. <dl>
  586. <dt>DigivolveCost1</dt>
  587. <dd>0fromLv.2</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost2</dt>
  591. <dd>-</dd>
  592. </dl>
  593. </div>
  594. </div>
  595. <divclass="cardinfo_bottom">
  596. <dl>
  597. <dt>Effect</dt>
  598. <dd>-</dd>
  599. </dl>
  600. <dl>
  601. <dt>Digivolveeffect</dt>
  602. <dd>-</dd>
  603. </dl>
  604. <dl>
  605. <dt>Securityeffect</dt>
  606. <dd>-</dd>
  607. </dl>
  608. <dl>
  609. <dt>Notes</dt>
  610. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  611. </div>
  612. </div>
  613. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  614. </div>
  615. </div>
  616. </li>
  617. <liclass="image_lists_itemdatapage-1">
  618. <aclass="card_img">
  619. <imgsrc="../images/cardlist/card/BT7-008_P1.png"alt="BT7-008Flamemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  620. </a>
  621. <divclass="popup">
  622. <divclass="card_detailcard_detail_red">
  623. <divclass="card_detail_inner">
  624. <ulclass="cardinfo_head">
  625. <liclass="cardno">BT7-008</li>
  626. <li>R</li>
  627. <liclass="cardtype">Digimon</li>
  628. <liclass="cardlv">Lv.3</li>
  629. <liclass="cardtypecardParallel">AlternativeArt</li>
  630. </ul>
  631. <divclass="card_name">Flamemon</div>
  632. <divclass="cardinfo_top">
  633. <divclass="card_img">
  634. <imgsrc="../images/cardlist/card/BT7-008_P1.png"alt="BT7-008Flamemon"></div>
  635. <divclass="cardinfo_top_body">
  636. <dl>
  637. <dt>Form</dt>
  638. <dd>Hybrid</dd>
  639. </dl>
  640. <dl>
  641. <dt>Attribute</dt>
  642. <dd>Variable</dd>
  643. </dl>
  644. <dl>
  645. <dt>Type</dt>
  646. <dd>Wizard</dd>
  647. </dl>
  648. <dl>
  649. <dt>DP</dt>
  650. <dd>1000</dl>
  651. <dl>
  652. <dt>PlayCost</dt>
  653. <dd>3</dd>
  654. </dl>
  655. <dl>
  656. <dt>DigivolveCost1</dt>
  657. <dd>0fromLv.2</dd>
  658. </dl>
  659. <dl>
  660. <dt>DigivolveCost2</dt>
  661. <dd>-</dd>
  662. </dl>
  663. </div>
  664. </div>
  665. <divclass="cardinfo_bottom">
  666. <dl>
  667. <dt>Effect</dt>
  668. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Hybrid] in its traits, [Susanoomon], or [Takuya Kanbara] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  669. </dl>
  670. <dl>
  671. <dt>Digivolveeffect</dt>
  672. <dd>[On Deletion] You may play 1 [Takuya Kanbara] from your hand without paying its memory cost.</dd>
  673. </dl>
  674. <dl>
  675. <dt>Securityeffect</dt>
  676. <dd>-</dd>
  677. </dl>
  678. <dl>
  679. <dt>Notes</dt>
  680. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  681. </div>
  682. </div>
  683. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  684. </div>
  685. </div>
  686. </li>
  687. <liclass="image_lists_itemdatapage-1">
  688. <aclass="card_img">
  689. <imgsrc="../images/cardlist/card/BT7-008.png"alt="BT7-008Flamemon"></a>
  690. <divclass="popup">
  691. <divclass="card_detailcard_detail_red">
  692. <divclass="card_detail_inner">
  693. <ulclass="cardinfo_head">
  694. <liclass="cardno">BT7-008</li>
  695. <li>R</li>
  696. <liclass="cardtype">Digimon</li>
  697. <liclass="cardlv">Lv.3</li>
  698. </ul>
  699. <divclass="card_name">Flamemon</div>
  700. <divclass="cardinfo_top">
  701. <divclass="card_img">
  702. <imgsrc="../images/cardlist/card/BT7-008.png"alt="BT7-008Flamemon"></div>
  703. <divclass="cardinfo_top_body">
  704. <dl>
  705. <dt>Form</dt>
  706. <dd>Hybrid</dd>
  707. </dl>
  708. <dl>
  709. <dt>Attribute</dt>
  710. <dd>Variable</dd>
  711. </dl>
  712. <dl>
  713. <dt>Type</dt>
  714. <dd>Wizard</dd>
  715. </dl>
  716. <dl>
  717. <dt>DP</dt>
  718. <dd>1000</dl>
  719. <dl>
  720. <dt>PlayCost</dt>
  721. <dd>3</dd>
  722. </dl>
  723. <dl>
  724. <dt>DigivolveCost1</dt>
  725. <dd>0fromLv.2</dd>
  726. </dl>
  727. <dl>
  728. <dt>DigivolveCost2</dt>
  729. <dd>-</dd>
  730. </dl>
  731. </div>
  732. </div>
  733. <divclass="cardinfo_bottom">
  734. <dl>
  735. <dt>Effect</dt>
  736. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Hybrid] in its traits, [Susanoomon], or [Takuya Kanbara] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  737. </dl>
  738. <dl>
  739. <dt>Digivolveeffect</dt>
  740. <dd>[On Deletion] You may play 1 [Takuya Kanbara] from your hand without paying its memory cost.</dd>
  741. </dl>
  742. <dl>
  743. <dt>Securityeffect</dt>
  744. <dd>-</dd>
  745. </dl>
  746. <dl>
  747. <dt>Notes</dt>
  748. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  749. </div>
  750. </div>
  751. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  752. </div>
  753. </div>
  754. </li>
  755. <liclass="image_lists_itemdatapage-1">
  756. <aclass="card_img">
  757. <imgsrc="../images/cardlist/card/BT7-009.png"alt="BT7-009Huckmon"></a>
  758. <divclass="popup">
  759. <divclass="card_detailcard_detail_red">
  760. <divclass="card_detail_inner">
  761. <ulclass="cardinfo_head">
  762. <liclass="cardno">BT7-009</li>
  763. <li>C</li>
  764. <liclass="cardtype">Digimon</li>
  765. <liclass="cardlv">Lv.3</li>
  766. </ul>
  767. <divclass="card_name">Huckmon</div>
  768. <divclass="cardinfo_top">
  769. <divclass="card_img">
  770. <imgsrc="../images/cardlist/card/BT7-009.png"alt="BT7-009Huckmon"></div>
  771. <divclass="cardinfo_top_body">
  772. <dl>
  773. <dt>Form</dt>
  774. <dd>Rookie</dd>
  775. </dl>
  776. <dl>
  777. <dt>Attribute</dt>
  778. <dd>Data</dd>
  779. </dl>
  780. <dl>
  781. <dt>Type</dt>
  782. <dd>MiniDragon</dd>
  783. </dl>
  784. <dl>
  785. <dt>DP</dt>
  786. <dd>3000</dl>
  787. <dl>
  788. <dt>PlayCost</dt>
  789. <dd>4</dd>
  790. </dl>
  791. <dl>
  792. <dt>DigivolveCost1</dt>
  793. <dd>0fromLv.2</dd>
  794. </dl>
  795. <dl>
  796. <dt>DigivolveCost2</dt>
  797. <dd>-</dd>
  798. </dl>
  799. </div>
  800. </div>
  801. <divclass="cardinfo_bottom">
  802. <dl>
  803. <dt>Effect</dt>
  804. <dd>-</dd>
  805. </dl>
  806. <dl>
  807. <dt>Digivolveeffect</dt>
  808. <dd>[When Attacking][Once Per Turn] Reveal the top 5 cards of your deck. Add all cards with [Sistermon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  809. </dl>
  810. <dl>
  811. <dt>Securityeffect</dt>
  812. <dd>-</dd>
  813. </dl>
  814. <dl>
  815. <dt>Notes</dt>
  816. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  817. </div>
  818. </div>
  819. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  820. </div>
  821. </div>
  822. </li>
  823. <liclass="image_lists_itemdatapage-1">
  824. <aclass="card_img">
  825. <imgsrc="../images/cardlist/card/BT7-010.png"alt="BT7-010Tuskmon"></a>
  826. <divclass="popup">
  827. <divclass="card_detailcard_detail_red">
  828. <divclass="card_detail_inner">
  829. <ulclass="cardinfo_head">
  830. <liclass="cardno">BT7-010</li>
  831. <li>C</li>
  832. <liclass="cardtype">Digimon</li>
  833. <liclass="cardlv">Lv.4</li>
  834. </ul>
  835. <divclass="card_name">Tuskmon</div>
  836. <divclass="cardinfo_top">
  837. <divclass="card_img">
  838. <imgsrc="../images/cardlist/card/BT7-010.png"alt="BT7-010Tuskmon"></div>
  839. <divclass="cardinfo_top_body">
  840. <dl>
  841. <dt>Form</dt>
  842. <dd>Champion</dd>
  843. </dl>
  844. <dl>
  845. <dt>Attribute</dt>
  846. <dd>Virus</dd>
  847. </dl>
  848. <dl>
  849. <dt>Type</dt>
  850. <dd>Dinosaur</dd>
  851. </dl>
  852. <dl>
  853. <dt>DP</dt>
  854. <dd>5000</dl>
  855. <dl>
  856. <dt>PlayCost</dt>
  857. <dd>4</dd>
  858. </dl>
  859. <dl>
  860. <dt>DigivolveCost1</dt>
  861. <dd>2fromLv.3</dd>
  862. </dl>
  863. <dl>
  864. <dt>DigivolveCost2</dt>
  865. <dd>-</dd>
  866. </dl>
  867. </div>
  868. </div>
  869. <divclass="cardinfo_bottom">
  870. <dl>
  871. <dt>Effect</dt>
  872. <dd>[When Digivolving] 1 of your Digimon gets +2000 DP for the turn.</dd>
  873. </dl>
  874. <dl>
  875. <dt>Digivolveeffect</dt>
  876. <dd>-</dd>
  877. </dl>
  878. <dl>
  879. <dt>Securityeffect</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Notes</dt>
  884. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  885. </div>
  886. </div>
  887. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  888. </div>
  889. </div>
  890. </li>
  891. <liclass="image_lists_itemdatapage-1">
  892. <aclass="card_img">
  893. <imgsrc="../images/cardlist/card/BT7-011.png"alt="BT7-011BurningGreymon"></a>
  894. <divclass="popup">
  895. <divclass="card_detailcard_detail_red">
  896. <divclass="card_detail_inner">
  897. <ulclass="cardinfo_head">
  898. <liclass="cardno">BT7-011</li>
  899. <li>U</li>
  900. <liclass="cardtype">Digimon</li>
  901. <liclass="cardlv">Lv.4</li>
  902. </ul>
  903. <divclass="card_name">BurningGreymon</div>
  904. <divclass="cardinfo_top">
  905. <divclass="card_img">
  906. <imgsrc="../images/cardlist/card/BT7-011.png"alt="BT7-011BurningGreymon"></div>
  907. <divclass="cardinfo_top_body">
  908. <dl>
  909. <dt>Form</dt>
  910. <dd>Hybrid</dd>
  911. </dl>
  912. <dl>
  913. <dt>Attribute</dt>
  914. <dd>Variable</dd>
  915. </dl>
  916. <dl>
  917. <dt>Type</dt>
  918. <dd>DarkDragon</dd>
  919. </dl>
  920. <dl>
  921. <dt>DP</dt>
  922. <dd>6000</dl>
  923. <dl>
  924. <dt>PlayCost</dt>
  925. <dd>6</dd>
  926. </dl>
  927. <dl>
  928. <dt>DigivolveCost1</dt>
  929. <dd>3fromLv.3</dd>
  930. </dl>
  931. <dl>
  932. <dt>DigivolveCost2</dt>
  933. <dd>1fromLv.4</dd>
  934. </dl>
  935. </div>
  936. </div>
  937. <divclass="cardinfo_bottom">
  938. <dl>
  939. <dt>Effect</dt>
  940. <dd>You may digivolve this card from your hand onto one of your red Tamers as if the Tamer is a level 3 red Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Takuya Kanbara] is in this Digimon's digivolution cards, delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  941. </dl>
  942. <dl>
  943. <dt>Digivolveeffect</dt>
  944. <dd>-</dd>
  945. </dl>
  946. <dl>
  947. <dt>Securityeffect</dt>
  948. <dd>-</dd>
  949. </dl>
  950. <dl>
  951. <dt>Notes</dt>
  952. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  953. </div>
  954. </div>
  955. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  956. </div>
  957. </div>
  958. </li>
  959. <liclass="image_lists_itemdatapage-1">
  960. <aclass="card_img">
  961. <imgsrc="../images/cardlist/card/BT7-012.png"alt="BT7-012Brachiomon"></a>
  962. <divclass="popup">
  963. <divclass="card_detailcard_detail_red">
  964. <divclass="card_detail_inner">
  965. <ulclass="cardinfo_head">
  966. <liclass="cardno">BT7-012</li>
  967. <li>C</li>
  968. <liclass="cardtype">Digimon</li>
  969. <liclass="cardlv">Lv.5</li>
  970. </ul>
  971. <divclass="card_name">Brachiomon</div>
  972. <divclass="cardinfo_top">
  973. <divclass="card_img">
  974. <imgsrc="../images/cardlist/card/BT7-012.png"alt="BT7-012Brachiomon"></div>
  975. <divclass="cardinfo_top_body">
  976. <dl>
  977. <dt>Form</dt>
  978. <dd>Ultimate</dd>
  979. </dl>
  980. <dl>
  981. <dt>Attribute</dt>
  982. <dd>Data</dd>
  983. </dl>
  984. <dl>
  985. <dt>Type</dt>
  986. <dd>Plesiosaur</dd>
  987. </dl>
  988. <dl>
  989. <dt>DP</dt>
  990. <dd>10000</dl>
  991. <dl>
  992. <dt>PlayCost</dt>
  993. <dd>7</dd>
  994. </dl>
  995. <dl>
  996. <dt>DigivolveCost1</dt>
  997. <dd>3fromLv.4</dd>
  998. </dl>
  999. <dl>
  1000. <dt>DigivolveCost2</dt>
  1001. <dd>-</dd>
  1002. </dl>
  1003. </div>
  1004. </div>
  1005. <divclass="cardinfo_bottom">
  1006. <dl>
  1007. <dt>Effect</dt>
  1008. <dd>-</dd>
  1009. </dl>
  1010. <dl>
  1011. <dt>Digivolveeffect</dt>
  1012. <dd>-</dd>
  1013. </dl>
  1014. <dl>
  1015. <dt>Securityeffect</dt>
  1016. <dd>-</dd>
  1017. </dl>
  1018. <dl>
  1019. <dt>Notes</dt>
  1020. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1021. </div>
  1022. </div>
  1023. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1024. </div>
  1025. </div>
  1026. </li>
  1027. <liclass="image_lists_itemdatapage-1">
  1028. <aclass="card_img">
  1029. <imgsrc="../images/cardlist/card/BT7-013.png"alt="BT7-013MetalGreymon"></a>
  1030. <divclass="popup">
  1031. <divclass="card_detailcard_detail_red">
  1032. <divclass="card_detail_inner">
  1033. <ulclass="cardinfo_head">
  1034. <liclass="cardno">BT7-013</li>
  1035. <li>SR</li>
  1036. <liclass="cardtype">Digimon</li>
  1037. <liclass="cardlv">Lv.5</li>
  1038. </ul>
  1039. <divclass="card_name">MetalGreymon</div>
  1040. <divclass="cardinfo_top">
  1041. <divclass="card_img">
  1042. <imgsrc="../images/cardlist/card/BT7-013.png"alt="BT7-013MetalGreymon"></div>
  1043. <divclass="cardinfo_top_body">
  1044. <dl>
  1045. <dt>Form</dt>
  1046. <dd>Ultimate</dd>
  1047. </dl>
  1048. <dl>
  1049. <dt>Attribute</dt>
  1050. <dd>Vaccine</dd>
  1051. </dl>
  1052. <dl>
  1053. <dt>Type</dt>
  1054. <dd>Cyborg</dd>
  1055. </dl>
  1056. <dl>
  1057. <dt>DP</dt>
  1058. <dd>7000</dl>
  1059. <dl>
  1060. <dt>PlayCost</dt>
  1061. <dd>7</dd>
  1062. </dl>
  1063. <dl>
  1064. <dt>DigivolveCost1</dt>
  1065. <dd>3fromLv.4</dd>
  1066. </dl>
  1067. <dl>
  1068. <dt>DigivolveCost2</dt>
  1069. <dd>-</dd>
  1070. </dl>
  1071. </div>
  1072. </div>
  1073. <divclass="cardinfo_bottom">
  1074. <dl>
  1075. <dt>Effect</dt>
  1076. <dd>[On Play] If you have a Tamer in play, gain 2 memory. If you don't have a Tamer in play, you may play 1 red Tamer card from your hand without paying its memory cost.</dd>
  1077. </dl>
  1078. <dl>
  1079. <dt>Digivolveeffect</dt>
  1080. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon is deleted, gain 1 memory.</dd>
  1081. </dl>
  1082. <dl>
  1083. <dt>Securityeffect</dt>
  1084. <dd>-</dd>
  1085. </dl>
  1086. <dl>
  1087. <dt>Notes</dt>
  1088. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1089. </div>
  1090. </div>
  1091. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1092. </div>
  1093. </div>
  1094. </li>
  1095. <liclass="image_lists_itemdatapage-1">
  1096. <aclass="card_img">
  1097. <imgsrc="../images/cardlist/card/BT7-013_P1.png"alt="BT7-013MetalGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1098. </a>
  1099. <divclass="popup">
  1100. <divclass="card_detailcard_detail_red">
  1101. <divclass="card_detail_inner">
  1102. <ulclass="cardinfo_head">
  1103. <liclass="cardno">BT7-013</li>
  1104. <li>SR</li>
  1105. <liclass="cardtype">Digimon</li>
  1106. <liclass="cardlv">Lv.5</li>
  1107. <liclass="cardtypecardParallel">AlternativeArt</li>
  1108. </ul>
  1109. <divclass="card_name">MetalGreymon</div>
  1110. <divclass="cardinfo_top">
  1111. <divclass="card_img">
  1112. <imgsrc="../images/cardlist/card/BT7-013_P1.png"alt="BT7-013MetalGreymon"></div>
  1113. <divclass="cardinfo_top_body">
  1114. <dl>
  1115. <dt>Form</dt>
  1116. <dd>Ultimate</dd>
  1117. </dl>
  1118. <dl>
  1119. <dt>Attribute</dt>
  1120. <dd>Vaccine</dd>
  1121. </dl>
  1122. <dl>
  1123. <dt>Type</dt>
  1124. <dd>Cyborg</dd>
  1125. </dl>
  1126. <dl>
  1127. <dt>DP</dt>
  1128. <dd>7000</dl>
  1129. <dl>
  1130. <dt>PlayCost</dt>
  1131. <dd>7</dd>
  1132. </dl>
  1133. <dl>
  1134. <dt>DigivolveCost1</dt>
  1135. <dd>3fromLv.4</dd>
  1136. </dl>
  1137. <dl>
  1138. <dt>DigivolveCost2</dt>
  1139. <dd>-</dd>
  1140. </dl>
  1141. </div>
  1142. </div>
  1143. <divclass="cardinfo_bottom">
  1144. <dl>
  1145. <dt>Effect</dt>
  1146. <dd>[On Play] If you have a Tamer in play, gain 2 memory. If you don't have a Tamer in play, you may play 1 red Tamer card from your hand without paying its memory cost.</dd>
  1147. </dl>
  1148. <dl>
  1149. <dt>Digivolveeffect</dt>
  1150. <dd>[Your Turn][Once Per Turn] When one of your opponent's Digimon is deleted, gain 1 memory.</dd>
  1151. </dl>
  1152. <dl>
  1153. <dt>Securityeffect</dt>
  1154. <dd>-</dd>
  1155. </dl>
  1156. <dl>
  1157. <dt>Notes</dt>
  1158. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1159. </div>
  1160. </div>
  1161. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1162. </div>
  1163. </div>
  1164. </li>
  1165. <liclass="image_lists_itemdatapage-1">
  1166. <aclass="card_img">
  1167. <imgsrc="../images/cardlist/card/BT7-014.png"alt="BT7-014Aldamon"></a>
  1168. <divclass="popup">
  1169. <divclass="card_detailcard_detail_red">
  1170. <divclass="card_detail_inner">
  1171. <ulclass="cardinfo_head">
  1172. <liclass="cardno">BT7-014</li>
  1173. <li>U</li>
  1174. <liclass="cardtype">Digimon</li>
  1175. <liclass="cardlv">Lv.5</li>
  1176. </ul>
  1177. <divclass="card_name">Aldamon</div>
  1178. <divclass="cardinfo_top">
  1179. <divclass="card_img">
  1180. <imgsrc="../images/cardlist/card/BT7-014.png"alt="BT7-014Aldamon"></div>
  1181. <divclass="cardinfo_top_body">
  1182. <dl>
  1183. <dt>Form</dt>
  1184. <dd>Hybrid</dd>
  1185. </dl>
  1186. <dl>
  1187. <dt>Attribute</dt>
  1188. <dd>Variable</dd>
  1189. </dl>
  1190. <dl>
  1191. <dt>Type</dt>
  1192. <dd>Wizard</dd>
  1193. </dl>
  1194. <dl>
  1195. <dt>DP</dt>
  1196. <dd>8000</dl>
  1197. <dl>
  1198. <dt>PlayCost</dt>
  1199. <dd>8</dd>
  1200. </dl>
  1201. <dl>
  1202. <dt>DigivolveCost1</dt>
  1203. <dd>3fromLv.4</dd>
  1204. </dl>
  1205. <dl>
  1206. <dt>DigivolveCost2</dt>
  1207. <dd>-</dd>
  1208. </dl>
  1209. </div>
  1210. </div>
  1211. <divclass="cardinfo_bottom">
  1212. <dl>
  1213. <dt>Effect</dt>
  1214. <dd>When one of your Digimon with a Tamer card in its digivolution cards digivolves into this card in your hand, reduce the memory cost of the digivolution by 2. [When Digivolving] If a card with [Hybrid] in its traits is in this Digimon's digivolution cards, this Digimon gets +4000 DP for the turn.</dd>
  1215. </dl>
  1216. <dl>
  1217. <dt>Digivolveeffect</dt>
  1218. <dd>[Your Turn] While this Digimon has [Hybrid] or [Ten Warriors] in its traits, it doesn't activate [Security] effects on Option cards it checks.</dd>
  1219. </dl>
  1220. <dl>
  1221. <dt>Securityeffect</dt>
  1222. <dd>-</dd>
  1223. </dl>
  1224. <dl>
  1225. <dt>Notes</dt>
  1226. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1227. </div>
  1228. </div>
  1229. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1230. </div>
  1231. </div>
  1232. </li>
  1233. <liclass="image_lists_itemdatapage-1">
  1234. <aclass="card_img">
  1235. <imgsrc="../images/cardlist/card/BT7-015.png"alt="BT7-015AvengeKidmon"></a>
  1236. <divclass="popup">
  1237. <divclass="card_detailcard_detail_red">
  1238. <divclass="card_detail_inner">
  1239. <ulclass="cardinfo_head">
  1240. <liclass="cardno">BT7-015</li>
  1241. <li>U</li>
  1242. <liclass="cardtype">Digimon</li>
  1243. <liclass="cardlv">Lv.6</li>
  1244. </ul>
  1245. <divclass="card_name">AvengeKidmon</div>
  1246. <divclass="cardinfo_top">
  1247. <divclass="card_img">
  1248. <imgsrc="../images/cardlist/card/BT7-015.png"alt="BT7-015AvengeKidmon"></div>
  1249. <divclass="cardinfo_top_body">
  1250. <dl>
  1251. <dt>Form</dt>
  1252. <dd>Mega</dd>
  1253. </dl>
  1254. <dl>
  1255. <dt>Attribute</dt>
  1256. <dd>Virus</dd>
  1257. </dl>
  1258. <dl>
  1259. <dt>Type</dt>
  1260. <dd>Dragonkin</dd>
  1261. </dl>
  1262. <dl>
  1263. <dt>DP</dt>
  1264. <dd>11000</dl>
  1265. <dl>
  1266. <dt>PlayCost</dt>
  1267. <dd>12</dd>
  1268. </dl>
  1269. <dl>
  1270. <dt>DigivolveCost1</dt>
  1271. <dd>3fromLv.5</dd>
  1272. </dl>
  1273. <dl>
  1274. <dt>DigivolveCost2</dt>
  1275. <dd>-</dd>
  1276. </dl>
  1277. </div>
  1278. </div>
  1279. <divclass="cardinfo_bottom">
  1280. <dl>
  1281. <dt>Effect</dt>
  1282. <dd>When playing this card from your hand, reduce its memory cost by 1 for each Option card in you and your opponent's trashes. [On Play] Return all cards with [Three Musketeers] in their traits and all Option cards from both players' trashes to the bottom of their owners' decks. If 7 or more cards were returned using this effect, delete 1 of your opponent's Digimon with [Three Musketeers] in its traits or 8000 DP or less.</dd>
  1283. </dl>
  1284. <dl>
  1285. <dt>Digivolveeffect</dt>
  1286. <dd>-</dd>
  1287. </dl>
  1288. <dl>
  1289. <dt>Securityeffect</dt>
  1290. <dd>-</dd>
  1291. </dl>
  1292. <dl>
  1293. <dt>Notes</dt>
  1294. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1295. </div>
  1296. </div>
  1297. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1298. </div>
  1299. </div>
  1300. </li>
  1301. <liclass="image_lists_itemdatapage-1">
  1302. <aclass="card_img">
  1303. <imgsrc="../images/cardlist/card/BT7-016.png"alt="BT7-016EmperorGreymon"></a>
  1304. <divclass="popup">
  1305. <divclass="card_detailcard_detail_red">
  1306. <divclass="card_detail_inner">
  1307. <ulclass="cardinfo_head">
  1308. <liclass="cardno">BT7-016</li>
  1309. <li>SR</li>
  1310. <liclass="cardtype">Digimon</li>
  1311. <liclass="cardlv">Lv.6</li>
  1312. </ul>
  1313. <divclass="card_name">EmperorGreymon</div>
  1314. <divclass="cardinfo_top">
  1315. <divclass="card_img">
  1316. <imgsrc="../images/cardlist/card/BT7-016.png"alt="BT7-016EmperorGreymon"></div>
  1317. <divclass="cardinfo_top_body">
  1318. <dl>
  1319. <dt>Form</dt>
  1320. <dd>Hybrid</dd>
  1321. </dl>
  1322. <dl>
  1323. <dt>Attribute</dt>
  1324. <dd>Variable</dd>
  1325. </dl>
  1326. <dl>
  1327. <dt>Type</dt>
  1328. <dd>DragonWarrior</dd>
  1329. </dl>
  1330. <dl>
  1331. <dt>DP</dt>
  1332. <dd>12000</dl>
  1333. <dl>
  1334. <dt>PlayCost</dt>
  1335. <dd>12</dd>
  1336. </dl>
  1337. <dl>
  1338. <dt>DigivolveCost1</dt>
  1339. <dd>4fromLv.5</dd>
  1340. </dl>
  1341. <dl>
  1342. <dt>DigivolveCost2</dt>
  1343. <dd>-</dd>
  1344. </dl>
  1345. </div>
  1346. </div>
  1347. <divclass="cardinfo_bottom">
  1348. <dl>
  1349. <dt>Effect</dt>
  1350. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[Your Turn][Once Per Turn] When this Digimon is blocked, unsuspend it, and gain 1 memory for each digivolution card this Digimon has with [Hybrid] in its traits.</dd>
  1351. </dl>
  1352. <dl>
  1353. <dt>Digivolveeffect</dt>
  1354. <dd>-</dd>
  1355. </dl>
  1356. <dl>
  1357. <dt>Securityeffect</dt>
  1358. <dd>-</dd>
  1359. </dl>
  1360. <dl>
  1361. <dt>Notes</dt>
  1362. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1363. </div>
  1364. </div>
  1365. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1366. </div>
  1367. </div>
  1368. </li>
  1369. <liclass="image_lists_itemdatapage-1">
  1370. <aclass="card_img">
  1371. <imgsrc="../images/cardlist/card/BT7-016_P1.png"alt="BT7-016EmperorGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1372. </a>
  1373. <divclass="popup">
  1374. <divclass="card_detailcard_detail_red">
  1375. <divclass="card_detail_inner">
  1376. <ulclass="cardinfo_head">
  1377. <liclass="cardno">BT7-016</li>
  1378. <li>SR</li>
  1379. <liclass="cardtype">Digimon</li>
  1380. <liclass="cardlv">Lv.6</li>
  1381. <liclass="cardtypecardParallel">AlternativeArt</li>
  1382. </ul>
  1383. <divclass="card_name">EmperorGreymon</div>
  1384. <divclass="cardinfo_top">
  1385. <divclass="card_img">
  1386. <imgsrc="../images/cardlist/card/BT7-016_P1.png"alt="BT7-016EmperorGreymon"></div>
  1387. <divclass="cardinfo_top_body">
  1388. <dl>
  1389. <dt>Form</dt>
  1390. <dd>Hybrid</dd>
  1391. </dl>
  1392. <dl>
  1393. <dt>Attribute</dt>
  1394. <dd>Variable</dd>
  1395. </dl>
  1396. <dl>
  1397. <dt>Type</dt>
  1398. <dd>DragonWarrior</dd>
  1399. </dl>
  1400. <dl>
  1401. <dt>DP</dt>
  1402. <dd>12000</dl>
  1403. <dl>
  1404. <dt>PlayCost</dt>
  1405. <dd>12</dd>
  1406. </dl>
  1407. <dl>
  1408. <dt>DigivolveCost1</dt>
  1409. <dd>4fromLv.5</dd>
  1410. </dl>
  1411. <dl>
  1412. <dt>DigivolveCost2</dt>
  1413. <dd>-</dd>
  1414. </dl>
  1415. </div>
  1416. </div>
  1417. <divclass="cardinfo_bottom">
  1418. <dl>
  1419. <dt>Effect</dt>
  1420. <dd>[When Digivolving] <Blitz> (This Digimon can attack when your opponent has 1 or more memory.)[Your Turn][Once Per Turn] When this Digimon is blocked, unsuspend it, and gain 1 memory for each digivolution card this Digimon has with [Hybrid] in its traits.</dd>
  1421. </dl>
  1422. <dl>
  1423. <dt>Digivolveeffect</dt>
  1424. <dd>-</dd>
  1425. </dl>
  1426. <dl>
  1427. <dt>Securityeffect</dt>
  1428. <dd>-</dd>
  1429. </dl>
  1430. <dl>
  1431. <dt>Notes</dt>
  1432. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1433. </div>
  1434. </div>
  1435. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1436. </div>
  1437. </div>
  1438. </li>
  1439. <liclass="image_lists_itemdatapage-1">
  1440. <aclass="card_img">
  1441. <imgsrc="../images/cardlist/card/BT7-017.png"alt="BT7-017Chaosdramon"></a>
  1442. <divclass="popup">
  1443. <divclass="card_detailcard_detail_red">
  1444. <divclass="card_detail_inner">
  1445. <ulclass="cardinfo_head">
  1446. <liclass="cardno">BT7-017</li>
  1447. <li>R</li>
  1448. <liclass="cardtype">Digimon</li>
  1449. <liclass="cardlv">Lv.6</li>
  1450. </ul>
  1451. <divclass="card_name">Chaosdramon</div>
  1452. <divclass="cardinfo_top">
  1453. <divclass="card_img">
  1454. <imgsrc="../images/cardlist/card/BT7-017.png"alt="BT7-017Chaosdramon"></div>
  1455. <divclass="cardinfo_top_body">
  1456. <dl>
  1457. <dt>Form</dt>
  1458. <dd>Mega</dd>
  1459. </dl>
  1460. <dl>
  1461. <dt>Attribute</dt>
  1462. <dd>Virus</dd>
  1463. </dl>
  1464. <dl>
  1465. <dt>Type</dt>
  1466. <dd>Machine</dd>
  1467. </dl>
  1468. <dl>
  1469. <dt>DP</dt>
  1470. <dd>12000</dl>
  1471. <dl>
  1472. <dt>PlayCost</dt>
  1473. <dd>12</dd>
  1474. </dl>
  1475. <dl>
  1476. <dt>DigivolveCost1</dt>
  1477. <dd>4fromLv.5</dd>
  1478. </dl>
  1479. <dl>
  1480. <dt>DigivolveCost2</dt>
  1481. <dd>4fromLv.5</dd>
  1482. </dl>
  1483. </div>
  1484. </div>
  1485. <divclass="cardinfo_bottom">
  1486. <dl>
  1487. <dt>Effect</dt>
  1488. <dd>Your [Machinedramon] can digivolve into this card in your hand for a memory cost of 1, ignoring this card's digivolution requirements. [When Digivolving] You may place 1 red or black level 5 card with [Cyborg] in its traits from your hand or trash on top of this card's digivolution cards to delete 1 of your opponent's Digimon with 6000 DP or less for each level 5 card with [Cyborg] in its traits in this Digimon's digivolution cards.</dd>
  1489. </dl>
  1490. <dl>
  1491. <dt>Digivolveeffect</dt>
  1492. <dd>-</dd>
  1493. </dl>
  1494. <dl>
  1495. <dt>Securityeffect</dt>
  1496. <dd>-</dd>
  1497. </dl>
  1498. <dl>
  1499. <dt>Notes</dt>
  1500. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1501. </div>
  1502. </div>
  1503. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1504. </div>
  1505. </div>
  1506. </li>
  1507. <liclass="image_lists_itemdatapage-1">
  1508. <aclass="card_img">
  1509. <imgsrc="../images/cardlist/card/BT7-018.png"alt="BT7-018Gomamon"></a>
  1510. <divclass="popup">
  1511. <divclass="card_detailcard_detail_blue">
  1512. <divclass="card_detail_inner">
  1513. <ulclass="cardinfo_head">
  1514. <liclass="cardno">BT7-018</li>
  1515. <li>U</li>
  1516. <liclass="cardtype">Digimon</li>
  1517. <liclass="cardlv">Lv.3</li>
  1518. </ul>
  1519. <divclass="card_name">Gomamon</div>
  1520. <divclass="cardinfo_top">
  1521. <divclass="card_img">
  1522. <imgsrc="../images/cardlist/card/BT7-018.png"alt="BT7-018Gomamon"></div>
  1523. <divclass="cardinfo_top_body">
  1524. <dl>
  1525. <dt>Form</dt>
  1526. <dd>Rookie</dd>
  1527. </dl>
  1528. <dl>
  1529. <dt>Attribute</dt>
  1530. <dd>Vaccine</dd>
  1531. </dl>
  1532. <dl>
  1533. <dt>Type</dt>
  1534. <dd>SeaBeast</dd>
  1535. </dl>
  1536. <dl>
  1537. <dt>DP</dt>
  1538. <dd>3000</dl>
  1539. <dl>
  1540. <dt>PlayCost</dt>
  1541. <dd>3</dd>
  1542. </dl>
  1543. <dl>
  1544. <dt>DigivolveCost1</dt>
  1545. <dd>0fromLv.2</dd>
  1546. </dl>
  1547. <dl>
  1548. <dt>DigivolveCost2</dt>
  1549. <dd>-</dd>
  1550. </dl>
  1551. </div>
  1552. </div>
  1553. <divclass="cardinfo_bottom">
  1554. <dl>
  1555. <dt>Effect</dt>
  1556. <dd>[On Play] When played from digivolution cards, <Draw 2>. (Draw 2 cards from your deck.)</dd>
  1557. </dl>
  1558. <dl>
  1559. <dt>Digivolveeffect</dt>
  1560. <dd>-</dd>
  1561. </dl>
  1562. <dl>
  1563. <dt>Securityeffect</dt>
  1564. <dd>-</dd>
  1565. </dl>
  1566. <dl>
  1567. <dt>Notes</dt>
  1568. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1569. </div>
  1570. </div>
  1571. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1572. </div>
  1573. </div>
  1574. </li>
  1575. <liclass="image_lists_itemdatapage-1">
  1576. <aclass="card_img">
  1577. <imgsrc="../images/cardlist/card/BT7-018_P1.png"alt="BT7-018Gomamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1578. </a>
  1579. <divclass="popup">
  1580. <divclass="card_detailcard_detail_blue">
  1581. <divclass="card_detail_inner">
  1582. <ulclass="cardinfo_head">
  1583. <liclass="cardno">BT7-018</li>
  1584. <li>U</li>
  1585. <liclass="cardtype">Digimon</li>
  1586. <liclass="cardlv">Lv.3</li>
  1587. <liclass="cardtypecardParallel">AlternativeArt</li>
  1588. </ul>
  1589. <divclass="card_name">Gomamon</div>
  1590. <divclass="cardinfo_top">
  1591. <divclass="card_img">
  1592. <imgsrc="../images/cardlist/card/BT7-018_P1.png"alt="BT7-018Gomamon"></div>
  1593. <divclass="cardinfo_top_body">
  1594. <dl>
  1595. <dt>Form</dt>
  1596. <dd>Rookie</dd>
  1597. </dl>
  1598. <dl>
  1599. <dt>Attribute</dt>
  1600. <dd>Vaccine</dd>
  1601. </dl>
  1602. <dl>
  1603. <dt>Type</dt>
  1604. <dd>SeaBeast</dd>
  1605. </dl>
  1606. <dl>
  1607. <dt>DP</dt>
  1608. <dd>3000</dl>
  1609. <dl>
  1610. <dt>PlayCost</dt>
  1611. <dd>3</dd>
  1612. </dl>
  1613. <dl>
  1614. <dt>DigivolveCost1</dt>
  1615. <dd>0fromLv.2</dd>
  1616. </dl>
  1617. <dl>
  1618. <dt>DigivolveCost2</dt>
  1619. <dd>-</dd>
  1620. </dl>
  1621. </div>
  1622. </div>
  1623. <divclass="cardinfo_bottom">
  1624. <dl>
  1625. <dt>Effect</dt>
  1626. <dd>[On Play] When played from digivolution cards, <Draw 2>. (Draw 2 cards from your deck.)</dd>
  1627. </dl>
  1628. <dl>
  1629. <dt>Digivolveeffect</dt>
  1630. <dd>-</dd>
  1631. </dl>
  1632. <dl>
  1633. <dt>Securityeffect</dt>
  1634. <dd>-</dd>
  1635. </dl>
  1636. <dl>
  1637. <dt>Notes</dt>
  1638. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1639. </div>
  1640. </div>
  1641. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1642. </div>
  1643. </div>
  1644. </li>
  1645. <liclass="image_lists_itemdatapage-1">
  1646. <aclass="card_img">
  1647. <imgsrc="../images/cardlist/card/BT7-019.png"alt="BT7-019Strabimon"></a>
  1648. <divclass="popup">
  1649. <divclass="card_detailcard_detail_blue">
  1650. <divclass="card_detail_inner">
  1651. <ulclass="cardinfo_head">
  1652. <liclass="cardno">BT7-019</li>
  1653. <li>R</li>
  1654. <liclass="cardtype">Digimon</li>
  1655. <liclass="cardlv">Lv.3</li>
  1656. </ul>
  1657. <divclass="card_name">Strabimon</div>
  1658. <divclass="cardinfo_top">
  1659. <divclass="card_img">
  1660. <imgsrc="../images/cardlist/card/BT7-019.png"alt="BT7-019Strabimon"></div>
  1661. <divclass="cardinfo_top_body">
  1662. <dl>
  1663. <dt>Form</dt>
  1664. <dd>Hybrid</dd>
  1665. </dl>
  1666. <dl>
  1667. <dt>Attribute</dt>
  1668. <dd>Variable</dd>
  1669. </dl>
  1670. <dl>
  1671. <dt>Type</dt>
  1672. <dd>Beastkin</dd>
  1673. </dl>
  1674. <dl>
  1675. <dt>DP</dt>
  1676. <dd>1000</dl>
  1677. <dl>
  1678. <dt>PlayCost</dt>
  1679. <dd>3</dd>
  1680. </dl>
  1681. <dl>
  1682. <dt>DigivolveCost1</dt>
  1683. <dd>0fromLv.2</dd>
  1684. </dl>
  1685. <dl>
  1686. <dt>DigivolveCost2</dt>
  1687. <dd>-</dd>
  1688. </dl>
  1689. </div>
  1690. </div>
  1691. <divclass="cardinfo_bottom">
  1692. <dl>
  1693. <dt>Effect</dt>
  1694. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Hybrid] in its traits, [Susanoomon], or [Koji Minamoto] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1695. </dl>
  1696. <dl>
  1697. <dt>Digivolveeffect</dt>
  1698. <dd>[On Deletion] You may play 1 [Koji Minamoto] from your hand without paying its memory cost.</dd>
  1699. </dl>
  1700. <dl>
  1701. <dt>Securityeffect</dt>
  1702. <dd>-</dd>
  1703. </dl>
  1704. <dl>
  1705. <dt>Notes</dt>
  1706. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1707. </div>
  1708. </div>
  1709. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1710. </div>
  1711. </div>
  1712. </li>
  1713. <liclass="image_lists_itemdatapage-1">
  1714. <aclass="card_img">
  1715. <imgsrc="../images/cardlist/card/BT7-019_P1.png"alt="BT7-019Strabimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1716. </a>
  1717. <divclass="popup">
  1718. <divclass="card_detailcard_detail_blue">
  1719. <divclass="card_detail_inner">
  1720. <ulclass="cardinfo_head">
  1721. <liclass="cardno">BT7-019</li>
  1722. <li>R</li>
  1723. <liclass="cardtype">Digimon</li>
  1724. <liclass="cardlv">Lv.3</li>
  1725. <liclass="cardtypecardParallel">AlternativeArt</li>
  1726. </ul>
  1727. <divclass="card_name">Strabimon</div>
  1728. <divclass="cardinfo_top">
  1729. <divclass="card_img">
  1730. <imgsrc="../images/cardlist/card/BT7-019_P1.png"alt="BT7-019Strabimon"></div>
  1731. <divclass="cardinfo_top_body">
  1732. <dl>
  1733. <dt>Form</dt>
  1734. <dd>Hybrid</dd>
  1735. </dl>
  1736. <dl>
  1737. <dt>Attribute</dt>
  1738. <dd>Variable</dd>
  1739. </dl>
  1740. <dl>
  1741. <dt>Type</dt>
  1742. <dd>Beastkin</dd>
  1743. </dl>
  1744. <dl>
  1745. <dt>DP</dt>
  1746. <dd>1000</dl>
  1747. <dl>
  1748. <dt>PlayCost</dt>
  1749. <dd>3</dd>
  1750. </dl>
  1751. <dl>
  1752. <dt>DigivolveCost1</dt>
  1753. <dd>0fromLv.2</dd>
  1754. </dl>
  1755. <dl>
  1756. <dt>DigivolveCost2</dt>
  1757. <dd>-</dd>
  1758. </dl>
  1759. </div>
  1760. </div>
  1761. <divclass="cardinfo_bottom">
  1762. <dl>
  1763. <dt>Effect</dt>
  1764. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Hybrid] in its traits, [Susanoomon], or [Koji Minamoto] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  1765. </dl>
  1766. <dl>
  1767. <dt>Digivolveeffect</dt>
  1768. <dd>[On Deletion] You may play 1 [Koji Minamoto] from your hand without paying its memory cost.</dd>
  1769. </dl>
  1770. <dl>
  1771. <dt>Securityeffect</dt>
  1772. <dd>-</dd>
  1773. </dl>
  1774. <dl>
  1775. <dt>Notes</dt>
  1776. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1777. </div>
  1778. </div>
  1779. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1780. </div>
  1781. </div>
  1782. </li>
  1783. <liclass="image_lists_itemdatapage-1">
  1784. <aclass="card_img">
  1785. <imgsrc="../images/cardlist/card/BT7-020.png"alt="BT7-020Shellmon"></a>
  1786. <divclass="popup">
  1787. <divclass="card_detailcard_detail_blue">
  1788. <divclass="card_detail_inner">
  1789. <ulclass="cardinfo_head">
  1790. <liclass="cardno">BT7-020</li>
  1791. <li>C</li>
  1792. <liclass="cardtype">Digimon</li>
  1793. <liclass="cardlv">Lv.4</li>
  1794. </ul>
  1795. <divclass="card_name">Shellmon</div>
  1796. <divclass="cardinfo_top">
  1797. <divclass="card_img">
  1798. <imgsrc="../images/cardlist/card/BT7-020.png"alt="BT7-020Shellmon"></div>
  1799. <divclass="cardinfo_top_body">
  1800. <dl>
  1801. <dt>Form</dt>
  1802. <dd>Champion</dd>
  1803. </dl>
  1804. <dl>
  1805. <dt>Attribute</dt>
  1806. <dd>Data</dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>Type</dt>
  1810. <dd>Mollusk</dd>
  1811. </dl>
  1812. <dl>
  1813. <dt>DP</dt>
  1814. <dd>6000</dl>
  1815. <dl>
  1816. <dt>PlayCost</dt>
  1817. <dd>4</dd>
  1818. </dl>
  1819. <dl>
  1820. <dt>DigivolveCost1</dt>
  1821. <dd>2fromLv.3</dd>
  1822. </dl>
  1823. <dl>
  1824. <dt>DigivolveCost2</dt>
  1825. <dd>-</dd>
  1826. </dl>
  1827. </div>
  1828. </div>
  1829. <divclass="cardinfo_bottom">
  1830. <dl>
  1831. <dt>Effect</dt>
  1832. <dd>-</dd>
  1833. </dl>
  1834. <dl>
  1835. <dt>Digivolveeffect</dt>
  1836. <dd>-</dd>
  1837. </dl>
  1838. <dl>
  1839. <dt>Securityeffect</dt>
  1840. <dd>-</dd>
  1841. </dl>
  1842. <dl>
  1843. <dt>Notes</dt>
  1844. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1845. </div>
  1846. </div>
  1847. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1848. </div>
  1849. </div>
  1850. </li>
  1851. <liclass="image_lists_itemdatapage-1">
  1852. <aclass="card_img">
  1853. <imgsrc="../images/cardlist/card/BT7-021.png"alt="BT7-021Kumamon"></a>
  1854. <divclass="popup">
  1855. <divclass="card_detailcard_detail_blue">
  1856. <divclass="card_detail_inner">
  1857. <ulclass="cardinfo_head">
  1858. <liclass="cardno">BT7-021</li>
  1859. <li>C</li>
  1860. <liclass="cardtype">Digimon</li>
  1861. <liclass="cardlv">Lv.4</li>
  1862. </ul>
  1863. <divclass="card_name">Kumamon</div>
  1864. <divclass="cardinfo_top">
  1865. <divclass="card_img">
  1866. <imgsrc="../images/cardlist/card/BT7-021.png"alt="BT7-021Kumamon"></div>
  1867. <divclass="cardinfo_top_body">
  1868. <dl>
  1869. <dt>Form</dt>
  1870. <dd>Hybrid</dd>
  1871. </dl>
  1872. <dl>
  1873. <dt>Attribute</dt>
  1874. <dd>Variable</dd>
  1875. </dl>
  1876. <dl>
  1877. <dt>Type</dt>
  1878. <dd>Beastkin</dd>
  1879. </dl>
  1880. <dl>
  1881. <dt>DP</dt>
  1882. <dd>4000</dl>
  1883. <dl>
  1884. <dt>PlayCost</dt>
  1885. <dd>5</dd>
  1886. </dl>
  1887. <dl>
  1888. <dt>DigivolveCost1</dt>
  1889. <dd>2fromLv.3</dd>
  1890. </dl>
  1891. <dl>
  1892. <dt>DigivolveCost2</dt>
  1893. <dd>-</dd>
  1894. </dl>
  1895. </div>
  1896. </div>
  1897. <divclass="cardinfo_bottom">
  1898. <dl>
  1899. <dt>Effect</dt>
  1900. <dd>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon. [When Digivolving] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</dd>
  1901. </dl>
  1902. <dl>
  1903. <dt>Digivolveeffect</dt>
  1904. <dd>-</dd>
  1905. </dl>
  1906. <dl>
  1907. <dt>Securityeffect</dt>
  1908. <dd>-</dd>
  1909. </dl>
  1910. <dl>
  1911. <dt>Notes</dt>
  1912. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  1913. </div>
  1914. </div>
  1915. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1916. </div>
  1917. </div>
  1918. </li>
  1919. <liclass="image_lists_itemdatapage-1">
  1920. <aclass="card_img">
  1921. <imgsrc="../images/cardlist/card/BT7-021_P1.png"alt="BT7-021Kumamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1922. </a>
  1923. <divclass="popup">
  1924. <divclass="card_detailcard_detail_blue">
  1925. <divclass="card_detail_inner">
  1926. <ulclass="cardinfo_head">
  1927. <liclass="cardno">BT7-021</li>
  1928. <li>C</li>
  1929. <liclass="cardtype">Digimon</li>
  1930. <liclass="cardlv">Lv.4</li>
  1931. <liclass="cardtypecardParallel">AlternativeArt</li>
  1932. </ul>
  1933. <divclass="card_name">Kumamon</div>
  1934. <divclass="cardinfo_top">
  1935. <divclass="card_img">
  1936. <imgsrc="../images/cardlist/card/BT7-021_P1.png"alt="BT7-021Kumamon"></div>
  1937. <divclass="cardinfo_top_body">
  1938. <dl>
  1939. <dt>Form</dt>
  1940. <dd>Hybrid</dd>
  1941. </dl>
  1942. <dl>
  1943. <dt>Attribute</dt>
  1944. <dd>Variable</dd>
  1945. </dl>
  1946. <dl>
  1947. <dt>Type</dt>
  1948. <dd>Beastkin</dd>
  1949. </dl>
  1950. <dl>
  1951. <dt>DP</dt>
  1952. <dd>4000</dl>
  1953. <dl>
  1954. <dt>PlayCost</dt>
  1955. <dd>5</dd>
  1956. </dl>
  1957. <dl>
  1958. <dt>DigivolveCost1</dt>
  1959. <dd>2fromLv.3</dd>
  1960. </dl>
  1961. <dl>
  1962. <dt>DigivolveCost2</dt>
  1963. <dd>-</dd>
  1964. </dl>
  1965. </div>
  1966. </div>
  1967. <divclass="cardinfo_bottom">
  1968. <dl>
  1969. <dt>Effect</dt>
  1970. <dd>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon. [When Digivolving] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</dd>
  1971. </dl>
  1972. <dl>
  1973. <dt>Digivolveeffect</dt>
  1974. <dd>-</dd>
  1975. </dl>
  1976. <dl>
  1977. <dt>Securityeffect</dt>
  1978. <dd>-</dd>
  1979. </dl>
  1980. <dl>
  1981. <dt>Notes</dt>
  1982. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  1983. </div>
  1984. </div>
  1985. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1986. </div>
  1987. </div>
  1988. </li>
  1989. <liclass="image_lists_itemdatapage-1">
  1990. <aclass="card_img">
  1991. <imgsrc="../images/cardlist/card/BT7-021_P2.png"alt="BT7-021Kumamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  1992. </a>
  1993. <divclass="popup">
  1994. <divclass="card_detailcard_detail_blue">
  1995. <divclass="card_detail_inner">
  1996. <ulclass="cardinfo_head">
  1997. <liclass="cardno">BT7-021</li>
  1998. <li>C</li>
  1999. <liclass="cardtype">Digimon</li>
  2000. <liclass="cardlv">Lv.4</li>
  2001. <liclass="cardtypecardParallel">AlternativeArt</li>
  2002. </ul>
  2003. <divclass="card_name">Kumamon</div>
  2004. <divclass="cardinfo_top">
  2005. <divclass="card_img">
  2006. <imgsrc="../images/cardlist/card/BT7-021_P2.png"alt="BT7-021Kumamon"></div>
  2007. <divclass="cardinfo_top_body">
  2008. <dl>
  2009. <dt>Form</dt>
  2010. <dd>Hybrid</dd>
  2011. </dl>
  2012. <dl>
  2013. <dt>Attribute</dt>
  2014. <dd>Variable</dd>
  2015. </dl>
  2016. <dl>
  2017. <dt>Type</dt>
  2018. <dd>Beastkin</dd>
  2019. </dl>
  2020. <dl>
  2021. <dt>DP</dt>
  2022. <dd>4000</dl>
  2023. <dl>
  2024. <dt>PlayCost</dt>
  2025. <dd>5</dd>
  2026. </dl>
  2027. <dl>
  2028. <dt>DigivolveCost1</dt>
  2029. <dd>2fromLv.3</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>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon. [When Digivolving] Trash 1 digivolution card from the bottom of 1 of your opponent's Digimon.</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>EventPack3</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/BT7-022.png"alt="BT7-022KendoGarurumon"></a>
  2062. <divclass="popup">
  2063. <divclass="card_detailcard_detail_blue">
  2064. <divclass="card_detail_inner">
  2065. <ulclass="cardinfo_head">
  2066. <liclass="cardno">BT7-022</li>
  2067. <li>C</li>
  2068. <liclass="cardtype">Digimon</li>
  2069. <liclass="cardlv">Lv.4</li>
  2070. </ul>
  2071. <divclass="card_name">KendoGarurumon</div>
  2072. <divclass="cardinfo_top">
  2073. <divclass="card_img">
  2074. <imgsrc="../images/cardlist/card/BT7-022.png"alt="BT7-022KendoGarurumon"></div>
  2075. <divclass="cardinfo_top_body">
  2076. <dl>
  2077. <dt>Form</dt>
  2078. <dd>Hybrid</dd>
  2079. </dl>
  2080. <dl>
  2081. <dt>Attribute</dt>
  2082. <dd>Variable</dd>
  2083. </dl>
  2084. <dl>
  2085. <dt>Type</dt>
  2086. <dd>Cyborg</dd>
  2087. </dl>
  2088. <dl>
  2089. <dt>DP</dt>
  2090. <dd>6000</dl>
  2091. <dl>
  2092. <dt>PlayCost</dt>
  2093. <dd>6</dd>
  2094. </dl>
  2095. <dl>
  2096. <dt>DigivolveCost1</dt>
  2097. <dd>3fromLv.3</dd>
  2098. </dl>
  2099. <dl>
  2100. <dt>DigivolveCost2</dt>
  2101. <dd>1fromLv.4</dd>
  2102. </dl>
  2103. </div>
  2104. </div>
  2105. <divclass="cardinfo_bottom">
  2106. <dl>
  2107. <dt>Effect</dt>
  2108. <dd>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Koji Minamoto] is in this Digimon's digivolution cards, this Digimon gains <Jamming> for the turn. (This Digimon can't be deleted in battles against Security Digimon.)</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/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</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/BT7-023.png"alt="BT7-023Korikakumon"></a>
  2130. <divclass="popup">
  2131. <divclass="card_detailcard_detail_blue">
  2132. <divclass="card_detail_inner">
  2133. <ulclass="cardinfo_head">
  2134. <liclass="cardno">BT7-023</li>
  2135. <li>C</li>
  2136. <liclass="cardtype">Digimon</li>
  2137. <liclass="cardlv">Lv.4</li>
  2138. </ul>
  2139. <divclass="card_name">Korikakumon</div>
  2140. <divclass="cardinfo_top">
  2141. <divclass="card_img">
  2142. <imgsrc="../images/cardlist/card/BT7-023.png"alt="BT7-023Korikakumon"></div>
  2143. <divclass="cardinfo_top_body">
  2144. <dl>
  2145. <dt>Form</dt>
  2146. <dd>Hybrid</dd>
  2147. </dl>
  2148. <dl>
  2149. <dt>Attribute</dt>
  2150. <dd>Variable</dd>
  2151. </dl>
  2152. <dl>
  2153. <dt>Type</dt>
  2154. <dd>Beast</dd>
  2155. </dl>
  2156. <dl>
  2157. <dt>DP</dt>
  2158. <dd>6000</dl>
  2159. <dl>
  2160. <dt>PlayCost</dt>
  2161. <dd>6</dd>
  2162. </dl>
  2163. <dl>
  2164. <dt>DigivolveCost1</dt>
  2165. <dd>3fromLv.3</dd>
  2166. </dl>
  2167. <dl>
  2168. <dt>DigivolveCost2</dt>
  2169. <dd>1fromLv.4</dd>
  2170. </dl>
  2171. </div>
  2172. </div>
  2173. <divclass="cardinfo_bottom">
  2174. <dl>
  2175. <dt>Effect</dt>
  2176. <dd>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Tommy Himi] is in this Digimon's digivolution cards, 1 of your opponent's Digimon with no digivolution cards can't attack or block until the end of their next turn.</dd>
  2177. </dl>
  2178. <dl>
  2179. <dt>Digivolveeffect</dt>
  2180. <dd>-</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/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</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/BT7-023_P1.png"alt="BT7-023Korikakumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2198. </a>
  2199. <divclass="popup">
  2200. <divclass="card_detailcard_detail_blue">
  2201. <divclass="card_detail_inner">
  2202. <ulclass="cardinfo_head">
  2203. <liclass="cardno">BT7-023</li>
  2204. <li>C</li>
  2205. <liclass="cardtype">Digimon</li>
  2206. <liclass="cardlv">Lv.4</li>
  2207. <liclass="cardtypecardParallel">AlternativeArt</li>
  2208. </ul>
  2209. <divclass="card_name">Korikakumon</div>
  2210. <divclass="cardinfo_top">
  2211. <divclass="card_img">
  2212. <imgsrc="../images/cardlist/card/BT7-023_P1.png"alt="BT7-023Korikakumon"></div>
  2213. <divclass="cardinfo_top_body">
  2214. <dl>
  2215. <dt>Form</dt>
  2216. <dd>Hybrid</dd>
  2217. </dl>
  2218. <dl>
  2219. <dt>Attribute</dt>
  2220. <dd>Variable</dd>
  2221. </dl>
  2222. <dl>
  2223. <dt>Type</dt>
  2224. <dd>Beast</dd>
  2225. </dl>
  2226. <dl>
  2227. <dt>DP</dt>
  2228. <dd>6000</dl>
  2229. <dl>
  2230. <dt>PlayCost</dt>
  2231. <dd>6</dd>
  2232. </dl>
  2233. <dl>
  2234. <dt>DigivolveCost1</dt>
  2235. <dd>3fromLv.3</dd>
  2236. </dl>
  2237. <dl>
  2238. <dt>DigivolveCost2</dt>
  2239. <dd>1fromLv.4</dd>
  2240. </dl>
  2241. </div>
  2242. </div>
  2243. <divclass="cardinfo_bottom">
  2244. <dl>
  2245. <dt>Effect</dt>
  2246. <dd>You may digivolve this card from your hand onto one of your blue Tamers as if the Tamer is a level 3 blue Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Tommy Himi] is in this Digimon's digivolution cards, 1 of your opponent's Digimon with no digivolution cards can't attack or block until the end of their next turn.</dd>
  2247. </dl>
  2248. <dl>
  2249. <dt>Digivolveeffect</dt>
  2250. <dd>-</dd>
  2251. </dl>
  2252. <dl>
  2253. <dt>Securityeffect</dt>
  2254. <dd>-</dd>
  2255. </dl>
  2256. <dl>
  2257. <dt>Notes</dt>
  2258. <dd>EventPack3</dd></dl>
  2259. </div>
  2260. </div>
  2261. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2262. </div>
  2263. </div>
  2264. </li>
  2265. <liclass="image_lists_itemdatapage-1">
  2266. <aclass="card_img">
  2267. <imgsrc="../images/cardlist/card/BT7-024.png"alt="BT7-024DaiPenmon"></a>
  2268. <divclass="popup">
  2269. <divclass="card_detailcard_detail_blue">
  2270. <divclass="card_detail_inner">
  2271. <ulclass="cardinfo_head">
  2272. <liclass="cardno">BT7-024</li>
  2273. <li>U</li>
  2274. <liclass="cardtype">Digimon</li>
  2275. <liclass="cardlv">Lv.5</li>
  2276. </ul>
  2277. <divclass="card_name">DaiPenmon</div>
  2278. <divclass="cardinfo_top">
  2279. <divclass="card_img">
  2280. <imgsrc="../images/cardlist/card/BT7-024.png"alt="BT7-024DaiPenmon"></div>
  2281. <divclass="cardinfo_top_body">
  2282. <dl>
  2283. <dt>Form</dt>
  2284. <dd>Hybrid</dd>
  2285. </dl>
  2286. <dl>
  2287. <dt>Attribute</dt>
  2288. <dd>Variable</dd>
  2289. </dl>
  2290. <dl>
  2291. <dt>Type</dt>
  2292. <dd>Cyborg</dd>
  2293. </dl>
  2294. <dl>
  2295. <dt>DP</dt>
  2296. <dd>7000</dl>
  2297. <dl>
  2298. <dt>PlayCost</dt>
  2299. <dd>7</dd>
  2300. </dl>
  2301. <dl>
  2302. <dt>DigivolveCost1</dt>
  2303. <dd>3fromLv.4</dd>
  2304. </dl>
  2305. <dl>
  2306. <dt>DigivolveCost2</dt>
  2307. <dd>-</dd>
  2308. </dl>
  2309. </div>
  2310. </div>
  2311. <divclass="cardinfo_bottom">
  2312. <dl>
  2313. <dt>Effect</dt>
  2314. <dd>[When Digivolving] For each Digimon your opponent has with no digivolution cards, <Draw 1>. (Draw 1 card from your deck.) [Opponent's Turn] While a card with [Hybrid] in its traits is in this Digimon's digivolution cards, none of your opponent's level 3 Digimon can attack.</dd>
  2315. </dl>
  2316. <dl>
  2317. <dt>Digivolveeffect</dt>
  2318. <dd>-</dd>
  2319. </dl>
  2320. <dl>
  2321. <dt>Securityeffect</dt>
  2322. <dd>-</dd>
  2323. </dl>
  2324. <dl>
  2325. <dt>Notes</dt>
  2326. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2327. </div>
  2328. </div>
  2329. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2330. </div>
  2331. </div>
  2332. </li>
  2333. <liclass="image_lists_itemdatapage-1">
  2334. <aclass="card_img">
  2335. <imgsrc="../images/cardlist/card/BT7-025.png"alt="BT7-025Beowolfmon"></a>
  2336. <divclass="popup">
  2337. <divclass="card_detailcard_detail_blue">
  2338. <divclass="card_detail_inner">
  2339. <ulclass="cardinfo_head">
  2340. <liclass="cardno">BT7-025</li>
  2341. <li>U</li>
  2342. <liclass="cardtype">Digimon</li>
  2343. <liclass="cardlv">Lv.5</li>
  2344. </ul>
  2345. <divclass="card_name">Beowolfmon</div>
  2346. <divclass="cardinfo_top">
  2347. <divclass="card_img">
  2348. <imgsrc="../images/cardlist/card/BT7-025.png"alt="BT7-025Beowolfmon"></div>
  2349. <divclass="cardinfo_top_body">
  2350. <dl>
  2351. <dt>Form</dt>
  2352. <dd>Hybrid</dd>
  2353. </dl>
  2354. <dl>
  2355. <dt>Attribute</dt>
  2356. <dd>Variable</dd>
  2357. </dl>
  2358. <dl>
  2359. <dt>Type</dt>
  2360. <dd>Warrior</dd>
  2361. </dl>
  2362. <dl>
  2363. <dt>DP</dt>
  2364. <dd>7000</dl>
  2365. <dl>
  2366. <dt>PlayCost</dt>
  2367. <dd>7</dd>
  2368. </dl>
  2369. <dl>
  2370. <dt>DigivolveCost1</dt>
  2371. <dd>3fromLv.4</dd>
  2372. </dl>
  2373. <dl>
  2374. <dt>DigivolveCost2</dt>
  2375. <dd>-</dd>
  2376. </dl>
  2377. </div>
  2378. </div>
  2379. <divclass="cardinfo_bottom">
  2380. <dl>
  2381. <dt>Effect</dt>
  2382. <dd>When one of your Digimon with a Tamer card in its digivolution cards digivolves into this card in your hand, reduce the memory cost of the digivolution by 2. [When Attacking] You may return 1 card with [Hybrid] in its traits from this Digimon's digivolution cards to your hand to return 1 of your opponent's level 4 or lower Digimon to its owner's hand. Trash all of the digivolution cards of that Digimon.</dd>
  2383. </dl>
  2384. <dl>
  2385. <dt>Digivolveeffect</dt>
  2386. <dd>-</dd>
  2387. </dl>
  2388. <dl>
  2389. <dt>Securityeffect</dt>
  2390. <dd>-</dd>
  2391. </dl>
  2392. <dl>
  2393. <dt>Notes</dt>
  2394. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2395. </div>
  2396. </div>
  2397. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2398. </div>
  2399. </div>
  2400. </li>
  2401. <liclass="image_lists_itemdatapage-1">
  2402. <aclass="card_img">
  2403. <imgsrc="../images/cardlist/card/BT7-026.png"alt="BT7-026WereGarurumon"></a>
  2404. <divclass="popup">
  2405. <divclass="card_detailcard_detail_blue">
  2406. <divclass="card_detail_inner">
  2407. <ulclass="cardinfo_head">
  2408. <liclass="cardno">BT7-026</li>
  2409. <li>SR</li>
  2410. <liclass="cardtype">Digimon</li>
  2411. <liclass="cardlv">Lv.5</li>
  2412. </ul>
  2413. <divclass="card_name">WereGarurumon</div>
  2414. <divclass="cardinfo_top">
  2415. <divclass="card_img">
  2416. <imgsrc="../images/cardlist/card/BT7-026.png"alt="BT7-026WereGarurumon"></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>Beastkin</dd>
  2429. </dl>
  2430. <dl>
  2431. <dt>DP</dt>
  2432. <dd>7000</dl>
  2433. <dl>
  2434. <dt>PlayCost</dt>
  2435. <dd>7</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>[On Play] If you have a Tamer in play, gain 2 memory. If you don't have a Tamer in play, you may play 1 blue Tamer card from your hand without paying its memory cost.</dd>
  2451. </dl>
  2452. <dl>
  2453. <dt>Digivolveeffect</dt>
  2454. <dd>[Your Turn][Once Per Turn] When this Digimon becomes unsuspended during your main phase, gain 1 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/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</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/BT7-026_P1.png"alt="BT7-026WereGarurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2472. </a>
  2473. <divclass="popup">
  2474. <divclass="card_detailcard_detail_blue">
  2475. <divclass="card_detail_inner">
  2476. <ulclass="cardinfo_head">
  2477. <liclass="cardno">BT7-026</li>
  2478. <li>SR</li>
  2479. <liclass="cardtype">Digimon</li>
  2480. <liclass="cardlv">Lv.5</li>
  2481. <liclass="cardtypecardParallel">AlternativeArt</li>
  2482. </ul>
  2483. <divclass="card_name">WereGarurumon</div>
  2484. <divclass="cardinfo_top">
  2485. <divclass="card_img">
  2486. <imgsrc="../images/cardlist/card/BT7-026_P1.png"alt="BT7-026WereGarurumon"></div>
  2487. <divclass="cardinfo_top_body">
  2488. <dl>
  2489. <dt>Form</dt>
  2490. <dd>Ultimate</dd>
  2491. </dl>
  2492. <dl>
  2493. <dt>Attribute</dt>
  2494. <dd>Vaccine</dd>
  2495. </dl>
  2496. <dl>
  2497. <dt>Type</dt>
  2498. <dd>Beastkin</dd>
  2499. </dl>
  2500. <dl>
  2501. <dt>DP</dt>
  2502. <dd>7000</dl>
  2503. <dl>
  2504. <dt>PlayCost</dt>
  2505. <dd>7</dd>
  2506. </dl>
  2507. <dl>
  2508. <dt>DigivolveCost1</dt>
  2509. <dd>3fromLv.4</dd>
  2510. </dl>
  2511. <dl>
  2512. <dt>DigivolveCost2</dt>
  2513. <dd>-</dd>
  2514. </dl>
  2515. </div>
  2516. </div>
  2517. <divclass="cardinfo_bottom">
  2518. <dl>
  2519. <dt>Effect</dt>
  2520. <dd>[On Play] If you have a Tamer in play, gain 2 memory. If you don't have a Tamer in play, you may play 1 blue Tamer card from your hand without paying its memory cost.</dd>
  2521. </dl>
  2522. <dl>
  2523. <dt>Digivolveeffect</dt>
  2524. <dd>[Your Turn][Once Per Turn] When this Digimon becomes unsuspended during your main phase, gain 1 memory.</dd>
  2525. </dl>
  2526. <dl>
  2527. <dt>Securityeffect</dt>
  2528. <dd>-</dd>
  2529. </dl>
  2530. <dl>
  2531. <dt>Notes</dt>
  2532. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2533. </div>
  2534. </div>
  2535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2536. </div>
  2537. </div>
  2538. </li>
  2539. <liclass="image_lists_itemdatapage-1">
  2540. <aclass="card_img">
  2541. <imgsrc="../images/cardlist/card/BT7-027.png"alt="BT7-027Whamon"></a>
  2542. <divclass="popup">
  2543. <divclass="card_detailcard_detail_blue">
  2544. <divclass="card_detail_inner">
  2545. <ulclass="cardinfo_head">
  2546. <liclass="cardno">BT7-027</li>
  2547. <li>C</li>
  2548. <liclass="cardtype">Digimon</li>
  2549. <liclass="cardlv">Lv.5</li>
  2550. </ul>
  2551. <divclass="card_name">Whamon</div>
  2552. <divclass="cardinfo_top">
  2553. <divclass="card_img">
  2554. <imgsrc="../images/cardlist/card/BT7-027.png"alt="BT7-027Whamon"></div>
  2555. <divclass="cardinfo_top_body">
  2556. <dl>
  2557. <dt>Form</dt>
  2558. <dd>Ultimate</dd>
  2559. </dl>
  2560. <dl>
  2561. <dt>Attribute</dt>
  2562. <dd>Vaccine</dd>
  2563. </dl>
  2564. <dl>
  2565. <dt>Type</dt>
  2566. <dd>SeaAnimal</dd>
  2567. </dl>
  2568. <dl>
  2569. <dt>DP</dt>
  2570. <dd>7000</dl>
  2571. <dl>
  2572. <dt>PlayCost</dt>
  2573. <dd>8</dd>
  2574. </dl>
  2575. <dl>
  2576. <dt>DigivolveCost1</dt>
  2577. <dd>3fromLv.4</dd>
  2578. </dl>
  2579. <dl>
  2580. <dt>DigivolveCost2</dt>
  2581. <dd>-</dd>
  2582. </dl>
  2583. </div>
  2584. </div>
  2585. <divclass="cardinfo_bottom">
  2586. <dl>
  2587. <dt>Effect</dt>
  2588. <dd>[On Play] You may play 1 level 3 Digimon card from one of your Digimon's digivolution cards as another Digimon without paying its memory cost. If you do, you may place 1 blue Digimon card from your hand at the bottom of one of your Digimon's digivolution cards.</dd>
  2589. </dl>
  2590. <dl>
  2591. <dt>Digivolveeffect</dt>
  2592. <dd>-</dd>
  2593. </dl>
  2594. <dl>
  2595. <dt>Securityeffect</dt>
  2596. <dd>-</dd>
  2597. </dl>
  2598. <dl>
  2599. <dt>Notes</dt>
  2600. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2601. </div>
  2602. </div>
  2603. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2604. </div>
  2605. </div>
  2606. </li>
  2607. <liclass="image_lists_itemdatapage-1">
  2608. <aclass="card_img">
  2609. <imgsrc="../images/cardlist/card/BT7-028.png"alt="BT7-028KingWhamon"></a>
  2610. <divclass="popup">
  2611. <divclass="card_detailcard_detail_blue">
  2612. <divclass="card_detail_inner">
  2613. <ulclass="cardinfo_head">
  2614. <liclass="cardno">BT7-028</li>
  2615. <li>C</li>
  2616. <liclass="cardtype">Digimon</li>
  2617. <liclass="cardlv">Lv.6</li>
  2618. </ul>
  2619. <divclass="card_name">KingWhamon</div>
  2620. <divclass="cardinfo_top">
  2621. <divclass="card_img">
  2622. <imgsrc="../images/cardlist/card/BT7-028.png"alt="BT7-028KingWhamon"></div>
  2623. <divclass="cardinfo_top_body">
  2624. <dl>
  2625. <dt>Form</dt>
  2626. <dd>Mega</dd>
  2627. </dl>
  2628. <dl>
  2629. <dt>Attribute</dt>
  2630. <dd>Vaccine</dd>
  2631. </dl>
  2632. <dl>
  2633. <dt>Type</dt>
  2634. <dd>SeaAnimal</dd>
  2635. </dl>
  2636. <dl>
  2637. <dt>DP</dt>
  2638. <dd>11000</dl>
  2639. <dl>
  2640. <dt>PlayCost</dt>
  2641. <dd>12</dd>
  2642. </dl>
  2643. <dl>
  2644. <dt>DigivolveCost1</dt>
  2645. <dd>4fromLv.5</dd>
  2646. </dl>
  2647. <dl>
  2648. <dt>DigivolveCost2</dt>
  2649. <dd>-</dd>
  2650. </dl>
  2651. </div>
  2652. </div>
  2653. <divclass="cardinfo_bottom">
  2654. <dl>
  2655. <dt>Effect</dt>
  2656. <dd>[When Attacking] You may play 1 level 3 Digimon card or 1 [Whamon] from this Digimon's digivolution cards as another Digimon without paying its memory cost. [Your Turn] When you play a Digimon from one of your Digimon's digivolution cards, return 1 of your opponent's level 4 or lower Digimon to its owner's hand. Trash all of the digivolution cards of that Digimon.</dd>
  2657. </dl>
  2658. <dl>
  2659. <dt>Digivolveeffect</dt>
  2660. <dd>-</dd>
  2661. </dl>
  2662. <dl>
  2663. <dt>Securityeffect</dt>
  2664. <dd>-</dd>
  2665. </dl>
  2666. <dl>
  2667. <dt>Notes</dt>
  2668. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2669. </div>
  2670. </div>
  2671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2672. </div>
  2673. </div>
  2674. </li>
  2675. <liclass="image_lists_itemdatapage-1">
  2676. <aclass="card_img">
  2677. <imgsrc="../images/cardlist/card/BT7-029.png"alt="BT7-029MagnaGarurumon"></a>
  2678. <divclass="popup">
  2679. <divclass="card_detailcard_detail_blue">
  2680. <divclass="card_detail_inner">
  2681. <ulclass="cardinfo_head">
  2682. <liclass="cardno">BT7-029</li>
  2683. <li>SR</li>
  2684. <liclass="cardtype">Digimon</li>
  2685. <liclass="cardlv">Lv.6</li>
  2686. </ul>
  2687. <divclass="card_name">MagnaGarurumon</div>
  2688. <divclass="cardinfo_top">
  2689. <divclass="card_img">
  2690. <imgsrc="../images/cardlist/card/BT7-029.png"alt="BT7-029MagnaGarurumon"></div>
  2691. <divclass="cardinfo_top_body">
  2692. <dl>
  2693. <dt>Form</dt>
  2694. <dd>Hybrid</dd>
  2695. </dl>
  2696. <dl>
  2697. <dt>Attribute</dt>
  2698. <dd>Variable</dd>
  2699. </dl>
  2700. <dl>
  2701. <dt>Type</dt>
  2702. <dd>Cyborg</dd>
  2703. </dl>
  2704. <dl>
  2705. <dt>DP</dt>
  2706. <dd>12000</dl>
  2707. <dl>
  2708. <dt>PlayCost</dt>
  2709. <dd>12</dd>
  2710. </dl>
  2711. <dl>
  2712. <dt>DigivolveCost1</dt>
  2713. <dd>4fromLv.5</dd>
  2714. </dl>
  2715. <dl>
  2716. <dt>DigivolveCost2</dt>
  2717. <dd>-</dd>
  2718. </dl>
  2719. </div>
  2720. </div>
  2721. <divclass="cardinfo_bottom">
  2722. <dl>
  2723. <dt>Effect</dt>
  2724. <dd>[When Digivolving][When Attacking][Once Per Turn] You may return 1 card with [Hybrid] in its traits from this Digimon's digivolution cards to your hand to return 1 of your opponent's Digimon with the same level as the returned card to its owner's hand. Trash all of the digivolution cards of that Digimon. [Your Turn][Once Per Turn] When an effect adds a card to your hand, you may unsuspend 1 of your Digimon.</dd>
  2725. </dl>
  2726. <dl>
  2727. <dt>Digivolveeffect</dt>
  2728. <dd>-</dd>
  2729. </dl>
  2730. <dl>
  2731. <dt>Securityeffect</dt>
  2732. <dd>-</dd>
  2733. </dl>
  2734. <dl>
  2735. <dt>Notes</dt>
  2736. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2737. </div>
  2738. </div>
  2739. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2740. </div>
  2741. </div>
  2742. </li>
  2743. <liclass="image_lists_itemdatapage-2">
  2744. <aclass="card_img">
  2745. <imgsrc="../images/cardlist/card/BT7-029_P1.png"alt="BT7-029MagnaGarurumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2746. </a>
  2747. <divclass="popup">
  2748. <divclass="card_detailcard_detail_blue">
  2749. <divclass="card_detail_inner">
  2750. <ulclass="cardinfo_head">
  2751. <liclass="cardno">BT7-029</li>
  2752. <li>SR</li>
  2753. <liclass="cardtype">Digimon</li>
  2754. <liclass="cardlv">Lv.6</li>
  2755. <liclass="cardtypecardParallel">AlternativeArt</li>
  2756. </ul>
  2757. <divclass="card_name">MagnaGarurumon</div>
  2758. <divclass="cardinfo_top">
  2759. <divclass="card_img">
  2760. <imgsrc="../images/cardlist/card/BT7-029_P1.png"alt="BT7-029MagnaGarurumon"></div>
  2761. <divclass="cardinfo_top_body">
  2762. <dl>
  2763. <dt>Form</dt>
  2764. <dd>Hybrid</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>Attribute</dt>
  2768. <dd>Variable</dd>
  2769. </dl>
  2770. <dl>
  2771. <dt>Type</dt>
  2772. <dd>Cyborg</dd>
  2773. </dl>
  2774. <dl>
  2775. <dt>DP</dt>
  2776. <dd>12000</dl>
  2777. <dl>
  2778. <dt>PlayCost</dt>
  2779. <dd>12</dd>
  2780. </dl>
  2781. <dl>
  2782. <dt>DigivolveCost1</dt>
  2783. <dd>4fromLv.5</dd>
  2784. </dl>
  2785. <dl>
  2786. <dt>DigivolveCost2</dt>
  2787. <dd>-</dd>
  2788. </dl>
  2789. </div>
  2790. </div>
  2791. <divclass="cardinfo_bottom">
  2792. <dl>
  2793. <dt>Effect</dt>
  2794. <dd>[When Digivolving][When Attacking][Once Per Turn] You may return 1 card with [Hybrid] in its traits from this Digimon's digivolution cards to your hand to return 1 of your opponent's Digimon with the same level as the returned card to its owner's hand. Trash all of the digivolution cards of that Digimon. [Your Turn][Once Per Turn] When an effect adds a card to your hand, you may unsuspend 1 of your Digimon.</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Digivolveeffect</dt>
  2798. <dd>-</dd>
  2799. </dl>
  2800. <dl>
  2801. <dt>Securityeffect</dt>
  2802. <dd>-</dd>
  2803. </dl>
  2804. <dl>
  2805. <dt>Notes</dt>
  2806. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2807. </div>
  2808. </div>
  2809. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2810. </div>
  2811. </div>
  2812. </li>
  2813. <liclass="image_lists_itemdatapage-2">
  2814. <aclass="card_img">
  2815. <imgsrc="../images/cardlist/card/BT7-030.png"alt="BT7-030AncientMegatheriummon"></a>
  2816. <divclass="popup">
  2817. <divclass="card_detailcard_detail_blue">
  2818. <divclass="card_detail_inner">
  2819. <ulclass="cardinfo_head">
  2820. <liclass="cardno">BT7-030</li>
  2821. <li>R</li>
  2822. <liclass="cardtype">Digimon</li>
  2823. <liclass="cardlv">Lv.6</li>
  2824. </ul>
  2825. <divclass="card_name">AncientMegatheriummon</div>
  2826. <divclass="cardinfo_top">
  2827. <divclass="card_img">
  2828. <imgsrc="../images/cardlist/card/BT7-030.png"alt="BT7-030AncientMegatheriummon"></div>
  2829. <divclass="cardinfo_top_body">
  2830. <dl>
  2831. <dt>Form</dt>
  2832. <dd>Mega</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>Attribute</dt>
  2836. <dd>Data</dd>
  2837. </dl>
  2838. <dl>
  2839. <dt>Type</dt>
  2840. <dd>AncientAnimal/TenWarriors</dd>
  2841. </dl>
  2842. <dl>
  2843. <dt>DP</dt>
  2844. <dd>13000</dl>
  2845. <dl>
  2846. <dt>PlayCost</dt>
  2847. <dd>13</dd>
  2848. </dl>
  2849. <dl>
  2850. <dt>DigivolveCost1</dt>
  2851. <dd>5fromLv.5</dd>
  2852. </dl>
  2853. <dl>
  2854. <dt>DigivolveCost2</dt>
  2855. <dd>-</dd>
  2856. </dl>
  2857. </div>
  2858. </div>
  2859. <divclass="cardinfo_bottom">
  2860. <dl>
  2861. <dt>Effect</dt>
  2862. <dd>[When Digivolving] For each card with [Hybrid] in its traits in this Digimon's digivolution cards, trash 1 digivolution card from the bottom of each of your opponent's Digimon. Then, for each Digimon your opponent has with no digivolution cards, <Draw 2>. (Draw 2 cards from your deck.) [On Deletion] You may play 1 blue level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Digivolveeffect</dt>
  2866. <dd>-</dd>
  2867. </dl>
  2868. <dl>
  2869. <dt>Securityeffect</dt>
  2870. <dd>-</dd>
  2871. </dl>
  2872. <dl>
  2873. <dt>Notes</dt>
  2874. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  2875. </div>
  2876. </div>
  2877. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2878. </div>
  2879. </div>
  2880. </li>
  2881. <liclass="image_lists_itemdatapage-2">
  2882. <aclass="card_img">
  2883. <imgsrc="../images/cardlist/card/BT7-030_P1.png"alt="BT7-030AncientMegatheriummon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2884. </a>
  2885. <divclass="popup">
  2886. <divclass="card_detailcard_detail_blue">
  2887. <divclass="card_detail_inner">
  2888. <ulclass="cardinfo_head">
  2889. <liclass="cardno">BT7-030</li>
  2890. <li>R</li>
  2891. <liclass="cardtype">Digimon</li>
  2892. <liclass="cardlv">Lv.6</li>
  2893. <liclass="cardtypecardParallel">AlternativeArt</li>
  2894. </ul>
  2895. <divclass="card_name">AncientMegatheriummon</div>
  2896. <divclass="cardinfo_top">
  2897. <divclass="card_img">
  2898. <imgsrc="../images/cardlist/card/BT7-030_P1.png"alt="BT7-030AncientMegatheriummon"></div>
  2899. <divclass="cardinfo_top_body">
  2900. <dl>
  2901. <dt>Form</dt>
  2902. <dd>Mega</dd>
  2903. </dl>
  2904. <dl>
  2905. <dt>Attribute</dt>
  2906. <dd>Data</dd>
  2907. </dl>
  2908. <dl>
  2909. <dt>Type</dt>
  2910. <dd>AncientAnimal/TenWarriors</dd>
  2911. </dl>
  2912. <dl>
  2913. <dt>DP</dt>
  2914. <dd>13000</dl>
  2915. <dl>
  2916. <dt>PlayCost</dt>
  2917. <dd>13</dd>
  2918. </dl>
  2919. <dl>
  2920. <dt>DigivolveCost1</dt>
  2921. <dd>5fromLv.5</dd>
  2922. </dl>
  2923. <dl>
  2924. <dt>DigivolveCost2</dt>
  2925. <dd>-</dd>
  2926. </dl>
  2927. </div>
  2928. </div>
  2929. <divclass="cardinfo_bottom">
  2930. <dl>
  2931. <dt>Effect</dt>
  2932. <dd>[When Digivolving] For each card with [Hybrid] in its traits in this Digimon's digivolution cards, trash 1 digivolution card from the bottom of each of your opponent's Digimon. Then, for each Digimon your opponent has with no digivolution cards, <Draw 2>. (Draw 2 cards from your deck.) [On Deletion] You may play 1 blue level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  2933. </dl>
  2934. <dl>
  2935. <dt>Digivolveeffect</dt>
  2936. <dd>-</dd>
  2937. </dl>
  2938. <dl>
  2939. <dt>Securityeffect</dt>
  2940. <dd>-</dd>
  2941. </dl>
  2942. <dl>
  2943. <dt>Notes</dt>
  2944. <dd>EventPack3</dd></dl>
  2945. </div>
  2946. </div>
  2947. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2948. </div>
  2949. </div>
  2950. </li>
  2951. <liclass="image_lists_itemdatapage-2">
  2952. <aclass="card_img">
  2953. <imgsrc="../images/cardlist/card/BT7-031.png"alt="BT7-031Herissmon"></a>
  2954. <divclass="popup">
  2955. <divclass="card_detailcard_detail_yellow">
  2956. <divclass="card_detail_inner">
  2957. <ulclass="cardinfo_head">
  2958. <liclass="cardno">BT7-031</li>
  2959. <li>R</li>
  2960. <liclass="cardtype">Digimon</li>
  2961. <liclass="cardlv">Lv.3</li>
  2962. </ul>
  2963. <divclass="card_name">Herissmon</div>
  2964. <divclass="cardinfo_top">
  2965. <divclass="card_img">
  2966. <imgsrc="../images/cardlist/card/BT7-031.png"alt="BT7-031Herissmon"></div>
  2967. <divclass="cardinfo_top_body">
  2968. <dl>
  2969. <dt>Form</dt>
  2970. <dd>Rookie</dd>
  2971. </dl>
  2972. <dl>
  2973. <dt>Attribute</dt>
  2974. <dd>Data</dd>
  2975. </dl>
  2976. <dl>
  2977. <dt>Type</dt>
  2978. <dd>Mammal</dd>
  2979. </dl>
  2980. <dl>
  2981. <dt>DP</dt>
  2982. <dd>2000</dl>
  2983. <dl>
  2984. <dt>PlayCost</dt>
  2985. <dd>3</dd>
  2986. </dl>
  2987. <dl>
  2988. <dt>DigivolveCost1</dt>
  2989. <dd>0fromLv.2</dd>
  2990. </dl>
  2991. <dl>
  2992. <dt>DigivolveCost2</dt>
  2993. <dd>-</dd>
  2994. </dl>
  2995. </div>
  2996. </div>
  2997. <divclass="cardinfo_bottom">
  2998. <dl>
  2999. <dt>Effect</dt>
  3000. <dd>-</dd>
  3001. </dl>
  3002. <dl>
  3003. <dt>Digivolveeffect</dt>
  3004. <dd>[Your Turn] When this card is trashed due to activating this Digimon's <Digi-Burst>, return this card to its owner's hand.</dd>
  3005. </dl>
  3006. <dl>
  3007. <dt>Securityeffect</dt>
  3008. <dd>-</dd>
  3009. </dl>
  3010. <dl>
  3011. <dt>Notes</dt>
  3012. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3013. </div>
  3014. </div>
  3015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3016. </div>
  3017. </div>
  3018. </li>
  3019. <liclass="image_lists_itemdatapage-2">
  3020. <aclass="card_img">
  3021. <imgsrc="../images/cardlist/card/BT7-031_P1.png"alt="BT7-031Herissmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3022. </a>
  3023. <divclass="popup">
  3024. <divclass="card_detailcard_detail_yellow">
  3025. <divclass="card_detail_inner">
  3026. <ulclass="cardinfo_head">
  3027. <liclass="cardno">BT7-031</li>
  3028. <li>R</li>
  3029. <liclass="cardtype">Digimon</li>
  3030. <liclass="cardlv">Lv.3</li>
  3031. <liclass="cardtypecardParallel">AlternativeArt</li>
  3032. </ul>
  3033. <divclass="card_name">Herissmon</div>
  3034. <divclass="cardinfo_top">
  3035. <divclass="card_img">
  3036. <imgsrc="../images/cardlist/card/BT7-031_P1.png"alt="BT7-031Herissmon"></div>
  3037. <divclass="cardinfo_top_body">
  3038. <dl>
  3039. <dt>Form</dt>
  3040. <dd>Rookie</dd>
  3041. </dl>
  3042. <dl>
  3043. <dt>Attribute</dt>
  3044. <dd>Data</dd>
  3045. </dl>
  3046. <dl>
  3047. <dt>Type</dt>
  3048. <dd>Mammal</dd>
  3049. </dl>
  3050. <dl>
  3051. <dt>DP</dt>
  3052. <dd>2000</dl>
  3053. <dl>
  3054. <dt>PlayCost</dt>
  3055. <dd>3</dd>
  3056. </dl>
  3057. <dl>
  3058. <dt>DigivolveCost1</dt>
  3059. <dd>0fromLv.2</dd>
  3060. </dl>
  3061. <dl>
  3062. <dt>DigivolveCost2</dt>
  3063. <dd>-</dd>
  3064. </dl>
  3065. </div>
  3066. </div>
  3067. <divclass="cardinfo_bottom">
  3068. <dl>
  3069. <dt>Effect</dt>
  3070. <dd>-</dd>
  3071. </dl>
  3072. <dl>
  3073. <dt>Digivolveeffect</dt>
  3074. <dd>[Your Turn] When this card is trashed due to activating this Digimon's <Digi-Burst>, return this card to its owner's hand.</dd>
  3075. </dl>
  3076. <dl>
  3077. <dt>Securityeffect</dt>
  3078. <dd>-</dd>
  3079. </dl>
  3080. <dl>
  3081. <dt>Notes</dt>
  3082. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3083. </div>
  3084. </div>
  3085. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3086. </div>
  3087. </div>
  3088. </li>
  3089. <liclass="image_lists_itemdatapage-2">
  3090. <aclass="card_img">
  3091. <imgsrc="../images/cardlist/card/BT7-032.png"alt="BT7-032Pulsemon"></a>
  3092. <divclass="popup">
  3093. <divclass="card_detailcard_detail_yellow">
  3094. <divclass="card_detail_inner">
  3095. <ulclass="cardinfo_head">
  3096. <liclass="cardno">BT7-032</li>
  3097. <li>C</li>
  3098. <liclass="cardtype">Digimon</li>
  3099. <liclass="cardlv">Lv.3</li>
  3100. </ul>
  3101. <divclass="card_name">Pulsemon</div>
  3102. <divclass="cardinfo_top">
  3103. <divclass="card_img">
  3104. <imgsrc="../images/cardlist/card/BT7-032.png"alt="BT7-032Pulsemon"></div>
  3105. <divclass="cardinfo_top_body">
  3106. <dl>
  3107. <dt>Form</dt>
  3108. <dd>Rookie</dd>
  3109. </dl>
  3110. <dl>
  3111. <dt>Attribute</dt>
  3112. <dd>Vaccine</dd>
  3113. </dl>
  3114. <dl>
  3115. <dt>Type</dt>
  3116. <dd>Beastkin</dd>
  3117. </dl>
  3118. <dl>
  3119. <dt>DP</dt>
  3120. <dd>2000</dl>
  3121. <dl>
  3122. <dt>PlayCost</dt>
  3123. <dd>3</dd>
  3124. </dl>
  3125. <dl>
  3126. <dt>DigivolveCost1</dt>
  3127. <dd>0fromLv.2</dd>
  3128. </dl>
  3129. <dl>
  3130. <dt>DigivolveCost2</dt>
  3131. <dd>-</dd>
  3132. </dl>
  3133. </div>
  3134. </div>
  3135. <divclass="cardinfo_bottom">
  3136. <dl>
  3137. <dt>Effect</dt>
  3138. <dd>-</dd>
  3139. </dl>
  3140. <dl>
  3141. <dt>Digivolveeffect</dt>
  3142. <dd>[When Attacking][Once Per Turn] If you have 3 security cards, gain 2 memory.</dd>
  3143. </dl>
  3144. <dl>
  3145. <dt>Securityeffect</dt>
  3146. <dd>-</dd>
  3147. </dl>
  3148. <dl>
  3149. <dt>Notes</dt>
  3150. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3151. </div>
  3152. </div>
  3153. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3154. </div>
  3155. </div>
  3156. </li>
  3157. <liclass="image_lists_itemdatapage-2">
  3158. <aclass="card_img">
  3159. <imgsrc="../images/cardlist/card/BT7-033.png"alt="BT7-033Bulkmon"></a>
  3160. <divclass="popup">
  3161. <divclass="card_detailcard_detail_yellow">
  3162. <divclass="card_detail_inner">
  3163. <ulclass="cardinfo_head">
  3164. <liclass="cardno">BT7-033</li>
  3165. <li>C</li>
  3166. <liclass="cardtype">Digimon</li>
  3167. <liclass="cardlv">Lv.4</li>
  3168. </ul>
  3169. <divclass="card_name">Bulkmon</div>
  3170. <divclass="cardinfo_top">
  3171. <divclass="card_img">
  3172. <imgsrc="../images/cardlist/card/BT7-033.png"alt="BT7-033Bulkmon"></div>
  3173. <divclass="cardinfo_top_body">
  3174. <dl>
  3175. <dt>Form</dt>
  3176. <dd>Champion</dd>
  3177. </dl>
  3178. <dl>
  3179. <dt>Attribute</dt>
  3180. <dd>Vaccine</dd>
  3181. </dl>
  3182. <dl>
  3183. <dt>Type</dt>
  3184. <dd>Dragonkin</dd>
  3185. </dl>
  3186. <dl>
  3187. <dt>DP</dt>
  3188. <dd>5000</dl>
  3189. <dl>
  3190. <dt>PlayCost</dt>
  3191. <dd>4</dd>
  3192. </dl>
  3193. <dl>
  3194. <dt>DigivolveCost1</dt>
  3195. <dd>2fromLv.3</dd>
  3196. </dl>
  3197. <dl>
  3198. <dt>DigivolveCost2</dt>
  3199. <dd>-</dd>
  3200. </dl>
  3201. </div>
  3202. </div>
  3203. <divclass="cardinfo_bottom">
  3204. <dl>
  3205. <dt>Effect</dt>
  3206. <dd>-</dd>
  3207. </dl>
  3208. <dl>
  3209. <dt>Digivolveeffect</dt>
  3210. <dd>[Opponent's Turn] While you have 3 or more security cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  3211. </dl>
  3212. <dl>
  3213. <dt>Securityeffect</dt>
  3214. <dd>-</dd>
  3215. </dl>
  3216. <dl>
  3217. <dt>Notes</dt>
  3218. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3219. </div>
  3220. </div>
  3221. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3222. </div>
  3223. </div>
  3224. </li>
  3225. <liclass="image_lists_itemdatapage-2">
  3226. <aclass="card_img">
  3227. <imgsrc="../images/cardlist/card/BT7-034.png"alt="BT7-034Filmon"></a>
  3228. <divclass="popup">
  3229. <divclass="card_detailcard_detail_yellow">
  3230. <divclass="card_detail_inner">
  3231. <ulclass="cardinfo_head">
  3232. <liclass="cardno">BT7-034</li>
  3233. <li>C</li>
  3234. <liclass="cardtype">Digimon</li>
  3235. <liclass="cardlv">Lv.4</li>
  3236. </ul>
  3237. <divclass="card_name">Filmon</div>
  3238. <divclass="cardinfo_top">
  3239. <divclass="card_img">
  3240. <imgsrc="../images/cardlist/card/BT7-034.png"alt="BT7-034Filmon"></div>
  3241. <divclass="cardinfo_top_body">
  3242. <dl>
  3243. <dt>Form</dt>
  3244. <dd>Champion</dd>
  3245. </dl>
  3246. <dl>
  3247. <dt>Attribute</dt>
  3248. <dd>Data</dd>
  3249. </dl>
  3250. <dl>
  3251. <dt>Type</dt>
  3252. <dd>Beastkin</dd>
  3253. </dl>
  3254. <dl>
  3255. <dt>DP</dt>
  3256. <dd>4000</dl>
  3257. <dl>
  3258. <dt>PlayCost</dt>
  3259. <dd>5</dd>
  3260. </dl>
  3261. <dl>
  3262. <dt>DigivolveCost1</dt>
  3263. <dd>2fromLv.3</dd>
  3264. </dl>
  3265. <dl>
  3266. <dt>DigivolveCost2</dt>
  3267. <dd>-</dd>
  3268. </dl>
  3269. </div>
  3270. </div>
  3271. <divclass="cardinfo_bottom">
  3272. <dl>
  3273. <dt>Effect</dt>
  3274. <dd>[Main] <Digi-Burst 2> (Trash 2 of this Digimon's digivolution cards to activate the effect below.) ・1 of your opponent's Digimon gains <Security Attack -2> until the end of your opponent's next turn. (This Digimon checks 2 fewer security cards)</dd>
  3275. </dl>
  3276. <dl>
  3277. <dt>Digivolveeffect</dt>
  3278. <dd>-</dd>
  3279. </dl>
  3280. <dl>
  3281. <dt>Securityeffect</dt>
  3282. <dd>-</dd>
  3283. </dl>
  3284. <dl>
  3285. <dt>Notes</dt>
  3286. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3287. </div>
  3288. </div>
  3289. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3290. </div>
  3291. </div>
  3292. </li>
  3293. <liclass="image_lists_itemdatapage-2">
  3294. <aclass="card_img">
  3295. <imgsrc="../images/cardlist/card/BT7-035.png"alt="BT7-035Kazemon"></a>
  3296. <divclass="popup">
  3297. <divclass="card_detailcard_detail_yellow">
  3298. <divclass="card_detail_inner">
  3299. <ulclass="cardinfo_head">
  3300. <liclass="cardno">BT7-035</li>
  3301. <li>C</li>
  3302. <liclass="cardtype">Digimon</li>
  3303. <liclass="cardlv">Lv.4</li>
  3304. </ul>
  3305. <divclass="card_name">Kazemon</div>
  3306. <divclass="cardinfo_top">
  3307. <divclass="card_img">
  3308. <imgsrc="../images/cardlist/card/BT7-035.png"alt="BT7-035Kazemon"></div>
  3309. <divclass="cardinfo_top_body">
  3310. <dl>
  3311. <dt>Form</dt>
  3312. <dd>Hybrid</dd>
  3313. </dl>
  3314. <dl>
  3315. <dt>Attribute</dt>
  3316. <dd>Variable</dd>
  3317. </dl>
  3318. <dl>
  3319. <dt>Type</dt>
  3320. <dd>Fairy</dd>
  3321. </dl>
  3322. <dl>
  3323. <dt>DP</dt>
  3324. <dd>5000</dl>
  3325. <dl>
  3326. <dt>PlayCost</dt>
  3327. <dd>5</dd>
  3328. </dl>
  3329. <dl>
  3330. <dt>DigivolveCost1</dt>
  3331. <dd>2fromLv.3</dd>
  3332. </dl>
  3333. <dl>
  3334. <dt>DigivolveCost2</dt>
  3335. <dd>-</dd>
  3336. </dl>
  3337. </div>
  3338. </div>
  3339. <divclass="cardinfo_bottom">
  3340. <dl>
  3341. <dt>Effect</dt>
  3342. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon.</dd>
  3343. </dl>
  3344. <dl>
  3345. <dt>Digivolveeffect</dt>
  3346. <dd>-</dd>
  3347. </dl>
  3348. <dl>
  3349. <dt>Securityeffect</dt>
  3350. <dd>-</dd>
  3351. </dl>
  3352. <dl>
  3353. <dt>Notes</dt>
  3354. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3355. </div>
  3356. </div>
  3357. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3358. </div>
  3359. </div>
  3360. </li>
  3361. <liclass="image_lists_itemdatapage-2">
  3362. <aclass="card_img">
  3363. <imgsrc="../images/cardlist/card/BT7-035_P1.png"alt="BT7-035Kazemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3364. </a>
  3365. <divclass="popup">
  3366. <divclass="card_detailcard_detail_yellow">
  3367. <divclass="card_detail_inner">
  3368. <ulclass="cardinfo_head">
  3369. <liclass="cardno">BT7-035</li>
  3370. <li>C</li>
  3371. <liclass="cardtype">Digimon</li>
  3372. <liclass="cardlv">Lv.4</li>
  3373. <liclass="cardtypecardParallel">AlternativeArt</li>
  3374. </ul>
  3375. <divclass="card_name">Kazemon</div>
  3376. <divclass="cardinfo_top">
  3377. <divclass="card_img">
  3378. <imgsrc="../images/cardlist/card/BT7-035_P1.png"alt="BT7-035Kazemon"></div>
  3379. <divclass="cardinfo_top_body">
  3380. <dl>
  3381. <dt>Form</dt>
  3382. <dd>Hybrid</dd>
  3383. </dl>
  3384. <dl>
  3385. <dt>Attribute</dt>
  3386. <dd>Variable</dd>
  3387. </dl>
  3388. <dl>
  3389. <dt>Type</dt>
  3390. <dd>Fairy</dd>
  3391. </dl>
  3392. <dl>
  3393. <dt>DP</dt>
  3394. <dd>5000</dl>
  3395. <dl>
  3396. <dt>PlayCost</dt>
  3397. <dd>5</dd>
  3398. </dl>
  3399. <dl>
  3400. <dt>DigivolveCost1</dt>
  3401. <dd>2fromLv.3</dd>
  3402. </dl>
  3403. <dl>
  3404. <dt>DigivolveCost2</dt>
  3405. <dd>-</dd>
  3406. </dl>
  3407. </div>
  3408. </div>
  3409. <divclass="cardinfo_bottom">
  3410. <dl>
  3411. <dt>Effect</dt>
  3412. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon.</dd>
  3413. </dl>
  3414. <dl>
  3415. <dt>Digivolveeffect</dt>
  3416. <dd>-</dd>
  3417. </dl>
  3418. <dl>
  3419. <dt>Securityeffect</dt>
  3420. <dd>-</dd>
  3421. </dl>
  3422. <dl>
  3423. <dt>Notes</dt>
  3424. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  3425. </div>
  3426. </div>
  3427. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3428. </div>
  3429. </div>
  3430. </li>
  3431. <liclass="image_lists_itemdatapage-2">
  3432. <aclass="card_img">
  3433. <imgsrc="../images/cardlist/card/BT7-035_P2.png"alt="BT7-035Kazemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3434. </a>
  3435. <divclass="popup">
  3436. <divclass="card_detailcard_detail_yellow">
  3437. <divclass="card_detail_inner">
  3438. <ulclass="cardinfo_head">
  3439. <liclass="cardno">BT7-035</li>
  3440. <li>C</li>
  3441. <liclass="cardtype">Digimon</li>
  3442. <liclass="cardlv">Lv.4</li>
  3443. <liclass="cardtypecardParallel">AlternativeArt</li>
  3444. </ul>
  3445. <divclass="card_name">Kazemon</div>
  3446. <divclass="cardinfo_top">
  3447. <divclass="card_img">
  3448. <imgsrc="../images/cardlist/card/BT7-035_P2.png"alt="BT7-035Kazemon"></div>
  3449. <divclass="cardinfo_top_body">
  3450. <dl>
  3451. <dt>Form</dt>
  3452. <dd>Hybrid</dd>
  3453. </dl>
  3454. <dl>
  3455. <dt>Attribute</dt>
  3456. <dd>Variable</dd>
  3457. </dl>
  3458. <dl>
  3459. <dt>Type</dt>
  3460. <dd>Fairy</dd>
  3461. </dl>
  3462. <dl>
  3463. <dt>DP</dt>
  3464. <dd>5000</dl>
  3465. <dl>
  3466. <dt>PlayCost</dt>
  3467. <dd>5</dd>
  3468. </dl>
  3469. <dl>
  3470. <dt>DigivolveCost1</dt>
  3471. <dd>2fromLv.3</dd>
  3472. </dl>
  3473. <dl>
  3474. <dt>DigivolveCost2</dt>
  3475. <dd>-</dd>
  3476. </dl>
  3477. </div>
  3478. </div>
  3479. <divclass="cardinfo_bottom">
  3480. <dl>
  3481. <dt>Effect</dt>
  3482. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon.</dd>
  3483. </dl>
  3484. <dl>
  3485. <dt>Digivolveeffect</dt>
  3486. <dd>-</dd>
  3487. </dl>
  3488. <dl>
  3489. <dt>Securityeffect</dt>
  3490. <dd>-</dd>
  3491. </dl>
  3492. <dl>
  3493. <dt>Notes</dt>
  3494. <dd>EventPack3</dd></dl>
  3495. </div>
  3496. </div>
  3497. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3498. </div>
  3499. </div>
  3500. </li>
  3501. <liclass="image_lists_itemdatapage-2">
  3502. <aclass="card_img">
  3503. <imgsrc="../images/cardlist/card/BT7-036.png"alt="BT7-036Zephyrmon"></a>
  3504. <divclass="popup">
  3505. <divclass="card_detailcard_detail_yellow">
  3506. <divclass="card_detail_inner">
  3507. <ulclass="cardinfo_head">
  3508. <liclass="cardno">BT7-036</li>
  3509. <li>U</li>
  3510. <liclass="cardtype">Digimon</li>
  3511. <liclass="cardlv">Lv.4</li>
  3512. </ul>
  3513. <divclass="card_name">Zephyrmon</div>
  3514. <divclass="cardinfo_top">
  3515. <divclass="card_img">
  3516. <imgsrc="../images/cardlist/card/BT7-036.png"alt="BT7-036Zephyrmon"></div>
  3517. <divclass="cardinfo_top_body">
  3518. <dl>
  3519. <dt>Form</dt>
  3520. <dd>Hybrid</dd>
  3521. </dl>
  3522. <dl>
  3523. <dt>Attribute</dt>
  3524. <dd>Variable</dd>
  3525. </dl>
  3526. <dl>
  3527. <dt>Type</dt>
  3528. <dd>Birdkin</dd>
  3529. </dl>
  3530. <dl>
  3531. <dt>DP</dt>
  3532. <dd>6000</dl>
  3533. <dl>
  3534. <dt>PlayCost</dt>
  3535. <dd>6</dd>
  3536. </dl>
  3537. <dl>
  3538. <dt>DigivolveCost1</dt>
  3539. <dd>3fromLv.3</dd>
  3540. </dl>
  3541. <dl>
  3542. <dt>DigivolveCost2</dt>
  3543. <dd>1fromLv.4</dd>
  3544. </dl>
  3545. </div>
  3546. </div>
  3547. <divclass="cardinfo_bottom">
  3548. <dl>
  3549. <dt>Effect</dt>
  3550. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Zoe Orimoto] is in this Digimon's digivolution cards, all of your Security Digimon get +3000 DP until the end of your opponent's next turn.</dd>
  3551. </dl>
  3552. <dl>
  3553. <dt>Digivolveeffect</dt>
  3554. <dd>-</dd>
  3555. </dl>
  3556. <dl>
  3557. <dt>Securityeffect</dt>
  3558. <dd>-</dd>
  3559. </dl>
  3560. <dl>
  3561. <dt>Notes</dt>
  3562. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3563. </div>
  3564. </div>
  3565. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3566. </div>
  3567. </div>
  3568. </li>
  3569. <liclass="image_lists_itemdatapage-2">
  3570. <aclass="card_img">
  3571. <imgsrc="../images/cardlist/card/BT7-036_P1.png"alt="BT7-036Zephyrmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3572. </a>
  3573. <divclass="popup">
  3574. <divclass="card_detailcard_detail_yellow">
  3575. <divclass="card_detail_inner">
  3576. <ulclass="cardinfo_head">
  3577. <liclass="cardno">BT7-036</li>
  3578. <li>U</li>
  3579. <liclass="cardtype">Digimon</li>
  3580. <liclass="cardlv">Lv.4</li>
  3581. <liclass="cardtypecardParallel">AlternativeArt</li>
  3582. </ul>
  3583. <divclass="card_name">Zephyrmon</div>
  3584. <divclass="cardinfo_top">
  3585. <divclass="card_img">
  3586. <imgsrc="../images/cardlist/card/BT7-036_P1.png"alt="BT7-036Zephyrmon"></div>
  3587. <divclass="cardinfo_top_body">
  3588. <dl>
  3589. <dt>Form</dt>
  3590. <dd>Hybrid</dd>
  3591. </dl>
  3592. <dl>
  3593. <dt>Attribute</dt>
  3594. <dd>Variable</dd>
  3595. </dl>
  3596. <dl>
  3597. <dt>Type</dt>
  3598. <dd>Birdkin</dd>
  3599. </dl>
  3600. <dl>
  3601. <dt>DP</dt>
  3602. <dd>6000</dl>
  3603. <dl>
  3604. <dt>PlayCost</dt>
  3605. <dd>6</dd>
  3606. </dl>
  3607. <dl>
  3608. <dt>DigivolveCost1</dt>
  3609. <dd>3fromLv.3</dd>
  3610. </dl>
  3611. <dl>
  3612. <dt>DigivolveCost2</dt>
  3613. <dd>1fromLv.4</dd>
  3614. </dl>
  3615. </div>
  3616. </div>
  3617. <divclass="cardinfo_bottom">
  3618. <dl>
  3619. <dt>Effect</dt>
  3620. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Zoe Orimoto] is in this Digimon's digivolution cards, all of your Security Digimon get +3000 DP until the end of your opponent's next turn.</dd>
  3621. </dl>
  3622. <dl>
  3623. <dt>Digivolveeffect</dt>
  3624. <dd>-</dd>
  3625. </dl>
  3626. <dl>
  3627. <dt>Securityeffect</dt>
  3628. <dd>-</dd>
  3629. </dl>
  3630. <dl>
  3631. <dt>Notes</dt>
  3632. <dd>EventPack3</dd></dl>
  3633. </div>
  3634. </div>
  3635. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3636. </div>
  3637. </div>
  3638. </li>
  3639. <liclass="image_lists_itemdatapage-2">
  3640. <aclass="card_img">
  3641. <imgsrc="../images/cardlist/card/BT7-036_P2.png"alt="BT7-036Zephyrmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3642. </a>
  3643. <divclass="popup">
  3644. <divclass="card_detailcard_detail_yellow">
  3645. <divclass="card_detail_inner">
  3646. <ulclass="cardinfo_head">
  3647. <liclass="cardno">BT7-036</li>
  3648. <li>U</li>
  3649. <liclass="cardtype">Digimon</li>
  3650. <liclass="cardlv">Lv.4</li>
  3651. <liclass="cardtypecardParallel">AlternativeArt</li>
  3652. </ul>
  3653. <divclass="card_name">Zephyrmon</div>
  3654. <divclass="cardinfo_top">
  3655. <divclass="card_img">
  3656. <imgsrc="../images/cardlist/card/BT7-036_P2.png"alt="BT7-036Zephyrmon"></div>
  3657. <divclass="cardinfo_top_body">
  3658. <dl>
  3659. <dt>Form</dt>
  3660. <dd>Hybrid</dd>
  3661. </dl>
  3662. <dl>
  3663. <dt>Attribute</dt>
  3664. <dd>Variable</dd>
  3665. </dl>
  3666. <dl>
  3667. <dt>Type</dt>
  3668. <dd>Birdkin</dd>
  3669. </dl>
  3670. <dl>
  3671. <dt>DP</dt>
  3672. <dd>6000</dl>
  3673. <dl>
  3674. <dt>PlayCost</dt>
  3675. <dd>6</dd>
  3676. </dl>
  3677. <dl>
  3678. <dt>DigivolveCost1</dt>
  3679. <dd>3fromLv.3</dd>
  3680. </dl>
  3681. <dl>
  3682. <dt>DigivolveCost2</dt>
  3683. <dd>1fromLv.4</dd>
  3684. </dl>
  3685. </div>
  3686. </div>
  3687. <divclass="cardinfo_bottom">
  3688. <dl>
  3689. <dt>Effect</dt>
  3690. <dd>You may digivolve this card from your hand onto one of your yellow Tamers as if the Tamer is a level 3 yellow Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Zoe Orimoto] is in this Digimon's digivolution cards, all of your Security Digimon get +3000 DP until the end of your opponent's next turn.</dd>
  3691. </dl>
  3692. <dl>
  3693. <dt>Digivolveeffect</dt>
  3694. <dd>-</dd>
  3695. </dl>
  3696. <dl>
  3697. <dt>Securityeffect</dt>
  3698. <dd>-</dd>
  3699. </dl>
  3700. <dl>
  3701. <dt>Notes</dt>
  3702. <dd><ahref="/products/pack/ver11.php">&rtri;BOOSTERDIMENSIONALPHASE[BT11]</a></dd></dl>
  3703. </div>
  3704. </div>
  3705. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3706. </div>
  3707. </div>
  3708. </li>
  3709. <liclass="image_lists_itemdatapage-2">
  3710. <aclass="card_img">
  3711. <imgsrc="../images/cardlist/card/BT7-037.png"alt="BT7-037Boutmon"></a>
  3712. <divclass="popup">
  3713. <divclass="card_detailcard_detail_yellow">
  3714. <divclass="card_detail_inner">
  3715. <ulclass="cardinfo_head">
  3716. <liclass="cardno">BT7-037</li>
  3717. <li>C</li>
  3718. <liclass="cardtype">Digimon</li>
  3719. <liclass="cardlv">Lv.5</li>
  3720. </ul>
  3721. <divclass="card_name">Boutmon</div>
  3722. <divclass="cardinfo_top">
  3723. <divclass="card_img">
  3724. <imgsrc="../images/cardlist/card/BT7-037.png"alt="BT7-037Boutmon"></div>
  3725. <divclass="cardinfo_top_body">
  3726. <dl>
  3727. <dt>Form</dt>
  3728. <dd>Ultimate</dd>
  3729. </dl>
  3730. <dl>
  3731. <dt>Attribute</dt>
  3732. <dd>Vaccine</dd>
  3733. </dl>
  3734. <dl>
  3735. <dt>Type</dt>
  3736. <dd>Beastkin</dd>
  3737. </dl>
  3738. <dl>
  3739. <dt>DP</dt>
  3740. <dd>7000</dl>
  3741. <dl>
  3742. <dt>PlayCost</dt>
  3743. <dd>6</dd>
  3744. </dl>
  3745. <dl>
  3746. <dt>DigivolveCost1</dt>
  3747. <dd>3fromLv.4</dd>
  3748. </dl>
  3749. <dl>
  3750. <dt>DigivolveCost2</dt>
  3751. <dd>-</dd>
  3752. </dl>
  3753. </div>
  3754. </div>
  3755. <divclass="cardinfo_bottom">
  3756. <dl>
  3757. <dt>Effect</dt>
  3758. <dd>-</dd>
  3759. </dl>
  3760. <dl>
  3761. <dt>Digivolveeffect</dt>
  3762. <dd>[Opponent's Turn] When an opponent's Digimon attacks a player, if you have 3 or more security cards, unsuspend this Digimon.</dd>
  3763. </dl>
  3764. <dl>
  3765. <dt>Securityeffect</dt>
  3766. <dd>-</dd>
  3767. </dl>
  3768. <dl>
  3769. <dt>Notes</dt>
  3770. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3771. </div>
  3772. </div>
  3773. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3774. </div>
  3775. </div>
  3776. </li>
  3777. <liclass="image_lists_itemdatapage-2">
  3778. <aclass="card_img">
  3779. <imgsrc="../images/cardlist/card/BT7-038.png"alt="BT7-038JetSilphymon"></a>
  3780. <divclass="popup">
  3781. <divclass="card_detailcard_detail_yellow">
  3782. <divclass="card_detail_inner">
  3783. <ulclass="cardinfo_head">
  3784. <liclass="cardno">BT7-038</li>
  3785. <li>U</li>
  3786. <liclass="cardtype">Digimon</li>
  3787. <liclass="cardlv">Lv.5</li>
  3788. </ul>
  3789. <divclass="card_name">JetSilphymon</div>
  3790. <divclass="cardinfo_top">
  3791. <divclass="card_img">
  3792. <imgsrc="../images/cardlist/card/BT7-038.png"alt="BT7-038JetSilphymon"></div>
  3793. <divclass="cardinfo_top_body">
  3794. <dl>
  3795. <dt>Form</dt>
  3796. <dd>Hybrid</dd>
  3797. </dl>
  3798. <dl>
  3799. <dt>Attribute</dt>
  3800. <dd>Variable</dd>
  3801. </dl>
  3802. <dl>
  3803. <dt>Type</dt>
  3804. <dd>Cyborg</dd>
  3805. </dl>
  3806. <dl>
  3807. <dt>DP</dt>
  3808. <dd>7000</dl>
  3809. <dl>
  3810. <dt>PlayCost</dt>
  3811. <dd>7</dd>
  3812. </dl>
  3813. <dl>
  3814. <dt>DigivolveCost1</dt>
  3815. <dd>3fromLv.4</dd>
  3816. </dl>
  3817. <dl>
  3818. <dt>DigivolveCost2</dt>
  3819. <dd>-</dd>
  3820. </dl>
  3821. </div>
  3822. </div>
  3823. <divclass="cardinfo_bottom">
  3824. <dl>
  3825. <dt>Effect</dt>
  3826. <dd>When one of your Digimon with a Tamer card in its digivolution cards digivolves into this card in your hand, reduce the memory cost of the digivolution by 2. [When Digivolving] If a card with [Hybrid] in its traits is in this Digimon's digivolution cards, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  3827. </dl>
  3828. <dl>
  3829. <dt>Digivolveeffect</dt>
  3830. <dd>-</dd>
  3831. </dl>
  3832. <dl>
  3833. <dt>Securityeffect</dt>
  3834. <dd>-</dd>
  3835. </dl>
  3836. <dl>
  3837. <dt>Notes</dt>
  3838. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3839. </div>
  3840. </div>
  3841. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3842. </div>
  3843. </div>
  3844. </li>
  3845. <liclass="image_lists_itemdatapage-2">
  3846. <aclass="card_img">
  3847. <imgsrc="../images/cardlist/card/BT7-039.png"alt="BT7-039Stefilmon"></a>
  3848. <divclass="popup">
  3849. <divclass="card_detailcard_detail_yellow">
  3850. <divclass="card_detail_inner">
  3851. <ulclass="cardinfo_head">
  3852. <liclass="cardno">BT7-039</li>
  3853. <li>U</li>
  3854. <liclass="cardtype">Digimon</li>
  3855. <liclass="cardlv">Lv.5</li>
  3856. </ul>
  3857. <divclass="card_name">Stefilmon</div>
  3858. <divclass="cardinfo_top">
  3859. <divclass="card_img">
  3860. <imgsrc="../images/cardlist/card/BT7-039.png"alt="BT7-039Stefilmon"></div>
  3861. <divclass="cardinfo_top_body">
  3862. <dl>
  3863. <dt>Form</dt>
  3864. <dd>Ultimate</dd>
  3865. </dl>
  3866. <dl>
  3867. <dt>Attribute</dt>
  3868. <dd>Data</dd>
  3869. </dl>
  3870. <dl>
  3871. <dt>Type</dt>
  3872. <dd>Beastkin</dd>
  3873. </dl>
  3874. <dl>
  3875. <dt>DP</dt>
  3876. <dd>7000</dl>
  3877. <dl>
  3878. <dt>PlayCost</dt>
  3879. <dd>8</dd>
  3880. </dl>
  3881. <dl>
  3882. <dt>DigivolveCost1</dt>
  3883. <dd>3fromLv.4</dd>
  3884. </dl>
  3885. <dl>
  3886. <dt>DigivolveCost2</dt>
  3887. <dd>-</dd>
  3888. </dl>
  3889. </div>
  3890. </div>
  3891. <divclass="cardinfo_bottom">
  3892. <dl>
  3893. <dt>Effect</dt>
  3894. <dd>[When Digivolving] If this Digimon has 1 digivolution card, you may place up to 2 level 4 or lower yellow Digimon cards from your hand at the bottom of this Digimon's digivolution cards in any order. Then, <Draw 1> for each Digimon card you placed. (Draw 1 card from your deck.)</dd>
  3895. </dl>
  3896. <dl>
  3897. <dt>Digivolveeffect</dt>
  3898. <dd>[Your Turn] When this card is trashed due to activating this Digimon's <Digi-Burst>, 1 of your Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  3899. </dl>
  3900. <dl>
  3901. <dt>Securityeffect</dt>
  3902. <dd>-</dd>
  3903. </dl>
  3904. <dl>
  3905. <dt>Notes</dt>
  3906. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3907. </div>
  3908. </div>
  3909. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3910. </div>
  3911. </div>
  3912. </li>
  3913. <liclass="image_lists_itemdatapage-2">
  3914. <aclass="card_img">
  3915. <imgsrc="../images/cardlist/card/BT7-040.png"alt="BT7-040Rasenmon"></a>
  3916. <divclass="popup">
  3917. <divclass="card_detailcard_detail_yellow">
  3918. <divclass="card_detail_inner">
  3919. <ulclass="cardinfo_head">
  3920. <liclass="cardno">BT7-040</li>
  3921. <li>SR</li>
  3922. <liclass="cardtype">Digimon</li>
  3923. <liclass="cardlv">Lv.6</li>
  3924. </ul>
  3925. <divclass="card_name">Rasenmon</div>
  3926. <divclass="cardinfo_top">
  3927. <divclass="card_img">
  3928. <imgsrc="../images/cardlist/card/BT7-040.png"alt="BT7-040Rasenmon"></div>
  3929. <divclass="cardinfo_top_body">
  3930. <dl>
  3931. <dt>Form</dt>
  3932. <dd>Mega</dd>
  3933. </dl>
  3934. <dl>
  3935. <dt>Attribute</dt>
  3936. <dd>Data</dd>
  3937. </dl>
  3938. <dl>
  3939. <dt>Type</dt>
  3940. <dd>Beastkin</dd>
  3941. </dl>
  3942. <dl>
  3943. <dt>DP</dt>
  3944. <dd>11000</dl>
  3945. <dl>
  3946. <dt>PlayCost</dt>
  3947. <dd>11</dd>
  3948. </dl>
  3949. <dl>
  3950. <dt>DigivolveCost1</dt>
  3951. <dd>5fromLv.5</dd>
  3952. </dl>
  3953. <dl>
  3954. <dt>DigivolveCost2</dt>
  3955. <dd>-</dd>
  3956. </dl>
  3957. </div>
  3958. </div>
  3959. <divclass="cardinfo_bottom">
  3960. <dl>
  3961. <dt>Effect</dt>
  3962. <dd>When digivolving into this card from your hand, the memory cost of the digivolution is equal to the number of cards in your security stack. If you have 0 security cards, the memory cost is 1. [Main][Once Per Turn] <Digi-Burst up to 4> (Trash up to 4 of this Digimon's digivolution cards to activate the effect below.) ・1 of your opponent's Digimon gets -3000 DP for the turn for each card trashed by this card's effect.</dd>
  3963. </dl>
  3964. <dl>
  3965. <dt>Digivolveeffect</dt>
  3966. <dd>-</dd>
  3967. </dl>
  3968. <dl>
  3969. <dt>Securityeffect</dt>
  3970. <dd>-</dd>
  3971. </dl>
  3972. <dl>
  3973. <dt>Notes</dt>
  3974. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  3975. </div>
  3976. </div>
  3977. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3978. </div>
  3979. </div>
  3980. </li>
  3981. <liclass="image_lists_itemdatapage-2">
  3982. <aclass="card_img">
  3983. <imgsrc="../images/cardlist/card/BT7-040_P1.png"alt="BT7-040Rasenmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3984. </a>
  3985. <divclass="popup">
  3986. <divclass="card_detailcard_detail_yellow">
  3987. <divclass="card_detail_inner">
  3988. <ulclass="cardinfo_head">
  3989. <liclass="cardno">BT7-040</li>
  3990. <li>SR</li>
  3991. <liclass="cardtype">Digimon</li>
  3992. <liclass="cardlv">Lv.6</li>
  3993. <liclass="cardtypecardParallel">AlternativeArt</li>
  3994. </ul>
  3995. <divclass="card_name">Rasenmon</div>
  3996. <divclass="cardinfo_top">
  3997. <divclass="card_img">
  3998. <imgsrc="../images/cardlist/card/BT7-040_P1.png"alt="BT7-040Rasenmon"></div>
  3999. <divclass="cardinfo_top_body">
  4000. <dl>
  4001. <dt>Form</dt>
  4002. <dd>Mega</dd>
  4003. </dl>
  4004. <dl>
  4005. <dt>Attribute</dt>
  4006. <dd>Data</dd>
  4007. </dl>
  4008. <dl>
  4009. <dt>Type</dt>
  4010. <dd>Beastkin</dd>
  4011. </dl>
  4012. <dl>
  4013. <dt>DP</dt>
  4014. <dd>11000</dl>
  4015. <dl>
  4016. <dt>PlayCost</dt>
  4017. <dd>11</dd>
  4018. </dl>
  4019. <dl>
  4020. <dt>DigivolveCost1</dt>
  4021. <dd>5fromLv.5</dd>
  4022. </dl>
  4023. <dl>
  4024. <dt>DigivolveCost2</dt>
  4025. <dd>-</dd>
  4026. </dl>
  4027. </div>
  4028. </div>
  4029. <divclass="cardinfo_bottom">
  4030. <dl>
  4031. <dt>Effect</dt>
  4032. <dd>When digivolving into this card from your hand, the memory cost of the digivolution is equal to the number of cards in your security stack. If you have 0 security cards, the memory cost is 1. [Main][Once Per Turn] <Digi-Burst up to 4> (Trash up to 4 of this Digimon's digivolution cards to activate the effect below.) ・1 of your opponent's Digimon gets -3000 DP for the turn for each card trashed by this card's effect.</dd>
  4033. </dl>
  4034. <dl>
  4035. <dt>Digivolveeffect</dt>
  4036. <dd>-</dd>
  4037. </dl>
  4038. <dl>
  4039. <dt>Securityeffect</dt>
  4040. <dd>-</dd>
  4041. </dl>
  4042. <dl>
  4043. <dt>Notes</dt>
  4044. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4045. </div>
  4046. </div>
  4047. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4048. </div>
  4049. </div>
  4050. </li>
  4051. <liclass="image_lists_itemdatapage-2">
  4052. <aclass="card_img">
  4053. <imgsrc="../images/cardlist/card/BT7-041.png"alt="BT7-041Kazuchimon"></a>
  4054. <divclass="popup">
  4055. <divclass="card_detailcard_detail_yellow">
  4056. <divclass="card_detail_inner">
  4057. <ulclass="cardinfo_head">
  4058. <liclass="cardno">BT7-041</li>
  4059. <li>SR</li>
  4060. <liclass="cardtype">Digimon</li>
  4061. <liclass="cardlv">Lv.6</li>
  4062. </ul>
  4063. <divclass="card_name">Kazuchimon</div>
  4064. <divclass="cardinfo_top">
  4065. <divclass="card_img">
  4066. <imgsrc="../images/cardlist/card/BT7-041.png"alt="BT7-041Kazuchimon"></div>
  4067. <divclass="cardinfo_top_body">
  4068. <dl>
  4069. <dt>Form</dt>
  4070. <dd>Mega</dd>
  4071. </dl>
  4072. <dl>
  4073. <dt>Attribute</dt>
  4074. <dd>Vaccine</dd>
  4075. </dl>
  4076. <dl>
  4077. <dt>Type</dt>
  4078. <dd>Shaman</dd>
  4079. </dl>
  4080. <dl>
  4081. <dt>DP</dt>
  4082. <dd>12000</dl>
  4083. <dl>
  4084. <dt>PlayCost</dt>
  4085. <dd>12</dd>
  4086. </dl>
  4087. <dl>
  4088. <dt>DigivolveCost1</dt>
  4089. <dd>5fromLv.5</dd>
  4090. </dl>
  4091. <dl>
  4092. <dt>DigivolveCost2</dt>
  4093. <dd>-</dd>
  4094. </dl>
  4095. </div>
  4096. </div>
  4097. <divclass="cardinfo_bottom">
  4098. <dl>
  4099. <dt>Effect</dt>
  4100. <dd>[When Digivolving] If you have 3 or more security cards, gain 2 memory. If you have 2 or fewer security cards, you may <Recovery +1 (Deck)> until there are 3 cards in your security stack. (Place the top card of your deck on top of your security stack.) [Your Turn] While you have 3 or more security cards, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  4101. </dl>
  4102. <dl>
  4103. <dt>Digivolveeffect</dt>
  4104. <dd>-</dd>
  4105. </dl>
  4106. <dl>
  4107. <dt>Securityeffect</dt>
  4108. <dd>-</dd>
  4109. </dl>
  4110. <dl>
  4111. <dt>Notes</dt>
  4112. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4113. </div>
  4114. </div>
  4115. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4116. </div>
  4117. </div>
  4118. </li>
  4119. <liclass="image_lists_itemdatapage-2">
  4120. <aclass="card_img">
  4121. <imgsrc="../images/cardlist/card/BT7-041_P1.png"alt="BT7-041Kazuchimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4122. </a>
  4123. <divclass="popup">
  4124. <divclass="card_detailcard_detail_yellow">
  4125. <divclass="card_detail_inner">
  4126. <ulclass="cardinfo_head">
  4127. <liclass="cardno">BT7-041</li>
  4128. <li>SR</li>
  4129. <liclass="cardtype">Digimon</li>
  4130. <liclass="cardlv">Lv.6</li>
  4131. <liclass="cardtypecardParallel">AlternativeArt</li>
  4132. </ul>
  4133. <divclass="card_name">Kazuchimon</div>
  4134. <divclass="cardinfo_top">
  4135. <divclass="card_img">
  4136. <imgsrc="../images/cardlist/card/BT7-041_P1.png"alt="BT7-041Kazuchimon"></div>
  4137. <divclass="cardinfo_top_body">
  4138. <dl>
  4139. <dt>Form</dt>
  4140. <dd>Mega</dd>
  4141. </dl>
  4142. <dl>
  4143. <dt>Attribute</dt>
  4144. <dd>Vaccine</dd>
  4145. </dl>
  4146. <dl>
  4147. <dt>Type</dt>
  4148. <dd>Shaman</dd>
  4149. </dl>
  4150. <dl>
  4151. <dt>DP</dt>
  4152. <dd>12000</dl>
  4153. <dl>
  4154. <dt>PlayCost</dt>
  4155. <dd>12</dd>
  4156. </dl>
  4157. <dl>
  4158. <dt>DigivolveCost1</dt>
  4159. <dd>5fromLv.5</dd>
  4160. </dl>
  4161. <dl>
  4162. <dt>DigivolveCost2</dt>
  4163. <dd>-</dd>
  4164. </dl>
  4165. </div>
  4166. </div>
  4167. <divclass="cardinfo_bottom">
  4168. <dl>
  4169. <dt>Effect</dt>
  4170. <dd>[When Digivolving] If you have 3 or more security cards, gain 2 memory. If you have 2 or fewer security cards, you may <Recovery +1 (Deck)> until there are 3 cards in your security stack. (Place the top card of your deck on top of your security stack.) [Your Turn] While you have 3 or more security cards, this Digimon gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  4171. </dl>
  4172. <dl>
  4173. <dt>Digivolveeffect</dt>
  4174. <dd>-</dd>
  4175. </dl>
  4176. <dl>
  4177. <dt>Securityeffect</dt>
  4178. <dd>-</dd>
  4179. </dl>
  4180. <dl>
  4181. <dt>Notes</dt>
  4182. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4183. </div>
  4184. </div>
  4185. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4186. </div>
  4187. </div>
  4188. </li>
  4189. <liclass="image_lists_itemdatapage-2">
  4190. <aclass="card_img">
  4191. <imgsrc="../images/cardlist/card/BT7-042.png"alt="BT7-042AncientKazemon"></a>
  4192. <divclass="popup">
  4193. <divclass="card_detailcard_detail_yellow">
  4194. <divclass="card_detail_inner">
  4195. <ulclass="cardinfo_head">
  4196. <liclass="cardno">BT7-042</li>
  4197. <li>R</li>
  4198. <liclass="cardtype">Digimon</li>
  4199. <liclass="cardlv">Lv.6</li>
  4200. </ul>
  4201. <divclass="card_name">AncientKazemon</div>
  4202. <divclass="cardinfo_top">
  4203. <divclass="card_img">
  4204. <imgsrc="../images/cardlist/card/BT7-042.png"alt="BT7-042AncientKazemon"></div>
  4205. <divclass="cardinfo_top_body">
  4206. <dl>
  4207. <dt>Form</dt>
  4208. <dd>Mega</dd>
  4209. </dl>
  4210. <dl>
  4211. <dt>Attribute</dt>
  4212. <dd>Vaccine</dd>
  4213. </dl>
  4214. <dl>
  4215. <dt>Type</dt>
  4216. <dd>AncientBirdkin/TenWarriors</dd>
  4217. </dl>
  4218. <dl>
  4219. <dt>DP</dt>
  4220. <dd>13000</dl>
  4221. <dl>
  4222. <dt>PlayCost</dt>
  4223. <dd>13</dd>
  4224. </dl>
  4225. <dl>
  4226. <dt>DigivolveCost1</dt>
  4227. <dd>5fromLv.5</dd>
  4228. </dl>
  4229. <dl>
  4230. <dt>DigivolveCost2</dt>
  4231. <dd>-</dd>
  4232. </dl>
  4233. </div>
  4234. </div>
  4235. <divclass="cardinfo_bottom">
  4236. <dl>
  4237. <dt>Effect</dt>
  4238. <dd>[Opponent's Turn] While a card with [Hybrid] in its traits is in this Digimon's digivolution cards, all of your Security Digimon get +4000 DP. [On Deletion] You may play 1 yellow level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  4239. </dl>
  4240. <dl>
  4241. <dt>Digivolveeffect</dt>
  4242. <dd>-</dd>
  4243. </dl>
  4244. <dl>
  4245. <dt>Securityeffect</dt>
  4246. <dd>-</dd>
  4247. </dl>
  4248. <dl>
  4249. <dt>Notes</dt>
  4250. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4251. </div>
  4252. </div>
  4253. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4254. </div>
  4255. </div>
  4256. </li>
  4257. <liclass="image_lists_itemdatapage-2">
  4258. <aclass="card_img">
  4259. <imgsrc="../images/cardlist/card/BT7-042_P1.png"alt="BT7-042AncientKazemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  4260. </a>
  4261. <divclass="popup">
  4262. <divclass="card_detailcard_detail_yellow">
  4263. <divclass="card_detail_inner">
  4264. <ulclass="cardinfo_head">
  4265. <liclass="cardno">BT7-042</li>
  4266. <li>R</li>
  4267. <liclass="cardtype">Digimon</li>
  4268. <liclass="cardlv">Lv.6</li>
  4269. <liclass="cardtypecardParallel">AlternativeArt</li>
  4270. </ul>
  4271. <divclass="card_name">AncientKazemon</div>
  4272. <divclass="cardinfo_top">
  4273. <divclass="card_img">
  4274. <imgsrc="../images/cardlist/card/BT7-042_P1.png"alt="BT7-042AncientKazemon"></div>
  4275. <divclass="cardinfo_top_body">
  4276. <dl>
  4277. <dt>Form</dt>
  4278. <dd>Mega</dd>
  4279. </dl>
  4280. <dl>
  4281. <dt>Attribute</dt>
  4282. <dd>Vaccine</dd>
  4283. </dl>
  4284. <dl>
  4285. <dt>Type</dt>
  4286. <dd>AncientBirdkin/TenWarriors</dd>
  4287. </dl>
  4288. <dl>
  4289. <dt>DP</dt>
  4290. <dd>13000</dl>
  4291. <dl>
  4292. <dt>PlayCost</dt>
  4293. <dd>13</dd>
  4294. </dl>
  4295. <dl>
  4296. <dt>DigivolveCost1</dt>
  4297. <dd>5fromLv.5</dd>
  4298. </dl>
  4299. <dl>
  4300. <dt>DigivolveCost2</dt>
  4301. <dd>-</dd>
  4302. </dl>
  4303. </div>
  4304. </div>
  4305. <divclass="cardinfo_bottom">
  4306. <dl>
  4307. <dt>Effect</dt>
  4308. <dd>[Opponent's Turn] While a card with [Hybrid] in its traits is in this Digimon's digivolution cards, all of your Security Digimon get +4000 DP. [On Deletion] You may play 1 yellow level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  4309. </dl>
  4310. <dl>
  4311. <dt>Digivolveeffect</dt>
  4312. <dd>-</dd>
  4313. </dl>
  4314. <dl>
  4315. <dt>Securityeffect</dt>
  4316. <dd>-</dd>
  4317. </dl>
  4318. <dl>
  4319. <dt>Notes</dt>
  4320. <dd>EventPack3</dd></dl>
  4321. </div>
  4322. </div>
  4323. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4324. </div>
  4325. </div>
  4326. </li>
  4327. <liclass="image_lists_itemdatapage-2">
  4328. <aclass="card_img">
  4329. <imgsrc="../images/cardlist/card/BT7-043.png"alt="BT7-043Gotsumon"></a>
  4330. <divclass="popup">
  4331. <divclass="card_detailcard_detail_green">
  4332. <divclass="card_detail_inner">
  4333. <ulclass="cardinfo_head">
  4334. <liclass="cardno">BT7-043</li>
  4335. <li>C</li>
  4336. <liclass="cardtype">Digimon</li>
  4337. <liclass="cardlv">Lv.3</li>
  4338. </ul>
  4339. <divclass="card_name">Gotsumon</div>
  4340. <divclass="cardinfo_top">
  4341. <divclass="card_img">
  4342. <imgsrc="../images/cardlist/card/BT7-043.png"alt="BT7-043Gotsumon"></div>
  4343. <divclass="cardinfo_top_body">
  4344. <dl>
  4345. <dt>Form</dt>
  4346. <dd>Rookie</dd>
  4347. </dl>
  4348. <dl>
  4349. <dt>Attribute</dt>
  4350. <dd>Data</dd>
  4351. </dl>
  4352. <dl>
  4353. <dt>Type</dt>
  4354. <dd>Rock</dd>
  4355. </dl>
  4356. <dl>
  4357. <dt>DP</dt>
  4358. <dd>3000</dl>
  4359. <dl>
  4360. <dt>PlayCost</dt>
  4361. <dd>3</dd>
  4362. </dl>
  4363. <dl>
  4364. <dt>DigivolveCost1</dt>
  4365. <dd>0fromLv.2</dd>
  4366. </dl>
  4367. <dl>
  4368. <dt>DigivolveCost2</dt>
  4369. <dd>-</dd>
  4370. </dl>
  4371. </div>
  4372. </div>
  4373. <divclass="cardinfo_bottom">
  4374. <dl>
  4375. <dt>Effect</dt>
  4376. <dd>[On Play] You may reveal 1 green Digimon card from your hand. If you do, place it on top of your deck.</dd>
  4377. </dl>
  4378. <dl>
  4379. <dt>Digivolveeffect</dt>
  4380. <dd>-</dd>
  4381. </dl>
  4382. <dl>
  4383. <dt>Securityeffect</dt>
  4384. <dd>-</dd>
  4385. </dl>
  4386. <dl>
  4387. <dt>Notes</dt>
  4388. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4389. </div>
  4390. </div>
  4391. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4392. </div>
  4393. </div>
  4394. </li>
  4395. <liclass="image_lists_itemdatapage-2">
  4396. <aclass="card_img">
  4397. <imgsrc="../images/cardlist/card/BT7-044.png"alt="BT7-044Betamon"></a>
  4398. <divclass="popup">
  4399. <divclass="card_detailcard_detail_green">
  4400. <divclass="card_detail_inner">
  4401. <ulclass="cardinfo_head">
  4402. <liclass="cardno">BT7-044</li>
  4403. <li>R</li>
  4404. <liclass="cardtype">Digimon</li>
  4405. <liclass="cardlv">Lv.3</li>
  4406. </ul>
  4407. <divclass="card_name">Betamon</div>
  4408. <divclass="cardinfo_top">
  4409. <divclass="card_img">
  4410. <imgsrc="../images/cardlist/card/BT7-044.png"alt="BT7-044Betamon"></div>
  4411. <divclass="cardinfo_top_body">
  4412. <dl>
  4413. <dt>Form</dt>
  4414. <dd>Rookie</dd>
  4415. </dl>
  4416. <dl>
  4417. <dt>Attribute</dt>
  4418. <dd>Virus</dd>
  4419. </dl>
  4420. <dl>
  4421. <dt>Type</dt>
  4422. <dd>Amphibian</dd>
  4423. </dl>
  4424. <dl>
  4425. <dt>DP</dt>
  4426. <dd>2000</dl>
  4427. <dl>
  4428. <dt>PlayCost</dt>
  4429. <dd>3</dd>
  4430. </dl>
  4431. <dl>
  4432. <dt>DigivolveCost1</dt>
  4433. <dd>0fromLv.2</dd>
  4434. </dl>
  4435. <dl>
  4436. <dt>DigivolveCost2</dt>
  4437. <dd>-</dd>
  4438. </dl>
  4439. </div>
  4440. </div>
  4441. <divclass="cardinfo_bottom">
  4442. <dl>
  4443. <dt>Effect</dt>
  4444. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 green level 4 Digimon card or 1 green Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4445. </dl>
  4446. <dl>
  4447. <dt>Digivolveeffect</dt>
  4448. <dd>-</dd>
  4449. </dl>
  4450. <dl>
  4451. <dt>Securityeffect</dt>
  4452. <dd>-</dd>
  4453. </dl>
  4454. <dl>
  4455. <dt>Notes</dt>
  4456. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4457. </div>
  4458. </div>
  4459. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4460. </div>
  4461. </div>
  4462. </li>
  4463. <liclass="image_lists_itemdatapage-2">
  4464. <aclass="card_img">
  4465. <imgsrc="../images/cardlist/card/BT7-044_P1.png"alt="BT7-044Betamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4466. </a>
  4467. <divclass="popup">
  4468. <divclass="card_detailcard_detail_green">
  4469. <divclass="card_detail_inner">
  4470. <ulclass="cardinfo_head">
  4471. <liclass="cardno">BT7-044</li>
  4472. <li>R</li>
  4473. <liclass="cardtype">Digimon</li>
  4474. <liclass="cardlv">Lv.3</li>
  4475. <liclass="cardtypecardParallel">AlternativeArt</li>
  4476. </ul>
  4477. <divclass="card_name">Betamon</div>
  4478. <divclass="cardinfo_top">
  4479. <divclass="card_img">
  4480. <imgsrc="../images/cardlist/card/BT7-044_P1.png"alt="BT7-044Betamon"></div>
  4481. <divclass="cardinfo_top_body">
  4482. <dl>
  4483. <dt>Form</dt>
  4484. <dd>Rookie</dd>
  4485. </dl>
  4486. <dl>
  4487. <dt>Attribute</dt>
  4488. <dd>Virus</dd>
  4489. </dl>
  4490. <dl>
  4491. <dt>Type</dt>
  4492. <dd>Amphibian</dd>
  4493. </dl>
  4494. <dl>
  4495. <dt>DP</dt>
  4496. <dd>2000</dl>
  4497. <dl>
  4498. <dt>PlayCost</dt>
  4499. <dd>3</dd>
  4500. </dl>
  4501. <dl>
  4502. <dt>DigivolveCost1</dt>
  4503. <dd>0fromLv.2</dd>
  4504. </dl>
  4505. <dl>
  4506. <dt>DigivolveCost2</dt>
  4507. <dd>-</dd>
  4508. </dl>
  4509. </div>
  4510. </div>
  4511. <divclass="cardinfo_bottom">
  4512. <dl>
  4513. <dt>Effect</dt>
  4514. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 green level 4 Digimon card or 1 green Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4515. </dl>
  4516. <dl>
  4517. <dt>Digivolveeffect</dt>
  4518. <dd>-</dd>
  4519. </dl>
  4520. <dl>
  4521. <dt>Securityeffect</dt>
  4522. <dd>-</dd>
  4523. </dl>
  4524. <dl>
  4525. <dt>Notes</dt>
  4526. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4527. </div>
  4528. </div>
  4529. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4530. </div>
  4531. </div>
  4532. </li>
  4533. <liclass="image_lists_itemdatapage-2">
  4534. <aclass="card_img">
  4535. <imgsrc="../images/cardlist/card/BT7-044_P2.png"alt="BT7-044Betamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4536. </a>
  4537. <divclass="popup">
  4538. <divclass="card_detailcard_detail_green">
  4539. <divclass="card_detail_inner">
  4540. <ulclass="cardinfo_head">
  4541. <liclass="cardno">BT7-044</li>
  4542. <li>R</li>
  4543. <liclass="cardtype">Digimon</li>
  4544. <liclass="cardlv">Lv.3</li>
  4545. <liclass="cardtypecardParallel">AlternativeArt</li>
  4546. </ul>
  4547. <divclass="card_name">Betamon</div>
  4548. <divclass="cardinfo_top">
  4549. <divclass="card_img">
  4550. <imgsrc="../images/cardlist/card/BT7-044_P2.png"alt="BT7-044Betamon"></div>
  4551. <divclass="cardinfo_top_body">
  4552. <dl>
  4553. <dt>Form</dt>
  4554. <dd>Rookie</dd>
  4555. </dl>
  4556. <dl>
  4557. <dt>Attribute</dt>
  4558. <dd>Virus</dd>
  4559. </dl>
  4560. <dl>
  4561. <dt>Type</dt>
  4562. <dd>Amphibian</dd>
  4563. </dl>
  4564. <dl>
  4565. <dt>DP</dt>
  4566. <dd>2000</dl>
  4567. <dl>
  4568. <dt>PlayCost</dt>
  4569. <dd>3</dd>
  4570. </dl>
  4571. <dl>
  4572. <dt>DigivolveCost1</dt>
  4573. <dd>0fromLv.2</dd>
  4574. </dl>
  4575. <dl>
  4576. <dt>DigivolveCost2</dt>
  4577. <dd>-</dd>
  4578. </dl>
  4579. </div>
  4580. </div>
  4581. <divclass="cardinfo_bottom">
  4582. <dl>
  4583. <dt>Effect</dt>
  4584. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 green level 4 Digimon card or 1 green Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4585. </dl>
  4586. <dl>
  4587. <dt>Digivolveeffect</dt>
  4588. <dd>-</dd>
  4589. </dl>
  4590. <dl>
  4591. <dt>Securityeffect</dt>
  4592. <dd>-</dd>
  4593. </dl>
  4594. <dl>
  4595. <dt>Notes</dt>
  4596. <dd>25thSpecialMemorialPack</dd></dl>
  4597. </div>
  4598. </div>
  4599. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4600. </div>
  4601. </div>
  4602. </li>
  4603. <liclass="image_lists_itemdatapage-2">
  4604. <aclass="card_img">
  4605. <imgsrc="../images/cardlist/card/BT7-045.png"alt="BT7-045Tortomon"></a>
  4606. <divclass="popup">
  4607. <divclass="card_detailcard_detail_green">
  4608. <divclass="card_detail_inner">
  4609. <ulclass="cardinfo_head">
  4610. <liclass="cardno">BT7-045</li>
  4611. <li>C</li>
  4612. <liclass="cardtype">Digimon</li>
  4613. <liclass="cardlv">Lv.4</li>
  4614. </ul>
  4615. <divclass="card_name">Tortomon</div>
  4616. <divclass="cardinfo_top">
  4617. <divclass="card_img">
  4618. <imgsrc="../images/cardlist/card/BT7-045.png"alt="BT7-045Tortomon"></div>
  4619. <divclass="cardinfo_top_body">
  4620. <dl>
  4621. <dt>Form</dt>
  4622. <dd>Champion</dd>
  4623. </dl>
  4624. <dl>
  4625. <dt>Attribute</dt>
  4626. <dd>Vaccine</dd>
  4627. </dl>
  4628. <dl>
  4629. <dt>Type</dt>
  4630. <dd>Reptile</dd>
  4631. </dl>
  4632. <dl>
  4633. <dt>DP</dt>
  4634. <dd>4000</dl>
  4635. <dl>
  4636. <dt>PlayCost</dt>
  4637. <dd>4</dd>
  4638. </dl>
  4639. <dl>
  4640. <dt>DigivolveCost1</dt>
  4641. <dd>2fromLv.3</dd>
  4642. </dl>
  4643. <dl>
  4644. <dt>DigivolveCost2</dt>
  4645. <dd>-</dd>
  4646. </dl>
  4647. </div>
  4648. </div>
  4649. <divclass="cardinfo_bottom">
  4650. <dl>
  4651. <dt>Effect</dt>
  4652. <dd>-</dd>
  4653. </dl>
  4654. <dl>
  4655. <dt>Digivolveeffect</dt>
  4656. <dd>[When Attacking] You may reveal 1 green Digimon card from your hand and place it on top of your deck to have this Digimon get +3000 DP for the turn.</dd>
  4657. </dl>
  4658. <dl>
  4659. <dt>Securityeffect</dt>
  4660. <dd>-</dd>
  4661. </dl>
  4662. <dl>
  4663. <dt>Notes</dt>
  4664. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4665. </div>
  4666. </div>
  4667. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4668. </div>
  4669. </div>
  4670. </li>
  4671. <liclass="image_lists_itemdatapage-2">
  4672. <aclass="card_img">
  4673. <imgsrc="../images/cardlist/card/BT7-045_P1.png"alt="BT7-045Tortomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4674. </a>
  4675. <divclass="popup">
  4676. <divclass="card_detailcard_detail_green">
  4677. <divclass="card_detail_inner">
  4678. <ulclass="cardinfo_head">
  4679. <liclass="cardno">BT7-045</li>
  4680. <li>C</li>
  4681. <liclass="cardtype">Digimon</li>
  4682. <liclass="cardlv">Lv.4</li>
  4683. <liclass="cardtypecardParallel">AlternativeArt</li>
  4684. </ul>
  4685. <divclass="card_name">Tortomon</div>
  4686. <divclass="cardinfo_top">
  4687. <divclass="card_img">
  4688. <imgsrc="../images/cardlist/card/BT7-045_P1.png"alt="BT7-045Tortomon"></div>
  4689. <divclass="cardinfo_top_body">
  4690. <dl>
  4691. <dt>Form</dt>
  4692. <dd>Champion</dd>
  4693. </dl>
  4694. <dl>
  4695. <dt>Attribute</dt>
  4696. <dd>Vaccine</dd>
  4697. </dl>
  4698. <dl>
  4699. <dt>Type</dt>
  4700. <dd>Reptile</dd>
  4701. </dl>
  4702. <dl>
  4703. <dt>DP</dt>
  4704. <dd>4000</dl>
  4705. <dl>
  4706. <dt>PlayCost</dt>
  4707. <dd>4</dd>
  4708. </dl>
  4709. <dl>
  4710. <dt>DigivolveCost1</dt>
  4711. <dd>2fromLv.3</dd>
  4712. </dl>
  4713. <dl>
  4714. <dt>DigivolveCost2</dt>
  4715. <dd>-</dd>
  4716. </dl>
  4717. </div>
  4718. </div>
  4719. <divclass="cardinfo_bottom">
  4720. <dl>
  4721. <dt>Effect</dt>
  4722. <dd>-</dd>
  4723. </dl>
  4724. <dl>
  4725. <dt>Digivolveeffect</dt>
  4726. <dd>[When Attacking] You may reveal 1 green Digimon card from your hand and place it on top of your deck to have this Digimon get +3000 DP for the turn.</dd>
  4727. </dl>
  4728. <dl>
  4729. <dt>Securityeffect</dt>
  4730. <dd>-</dd>
  4731. </dl>
  4732. <dl>
  4733. <dt>Notes</dt>
  4734. <dd>StoreChampionship2022ParticipantPack</dd></dl>
  4735. </div>
  4736. </div>
  4737. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4738. </div>
  4739. </div>
  4740. </li>
  4741. <liclass="image_lists_itemdatapage-2">
  4742. <aclass="card_img">
  4743. <imgsrc="../images/cardlist/card/BT7-045_P2.png"alt="BT7-045Tortomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4744. </a>
  4745. <divclass="popup">
  4746. <divclass="card_detailcard_detail_green">
  4747. <divclass="card_detail_inner">
  4748. <ulclass="cardinfo_head">
  4749. <liclass="cardno">BT7-045</li>
  4750. <li>C</li>
  4751. <liclass="cardtype">Digimon</li>
  4752. <liclass="cardlv">Lv.4</li>
  4753. <liclass="cardtypecardParallel">AlternativeArt</li>
  4754. </ul>
  4755. <divclass="card_name">Tortomon</div>
  4756. <divclass="cardinfo_top">
  4757. <divclass="card_img">
  4758. <imgsrc="../images/cardlist/card/BT7-045_P2.png"alt="BT7-045Tortomon"></div>
  4759. <divclass="cardinfo_top_body">
  4760. <dl>
  4761. <dt>Form</dt>
  4762. <dd>Champion</dd>
  4763. </dl>
  4764. <dl>
  4765. <dt>Attribute</dt>
  4766. <dd>Vaccine</dd>
  4767. </dl>
  4768. <dl>
  4769. <dt>Type</dt>
  4770. <dd>Reptile</dd>
  4771. </dl>
  4772. <dl>
  4773. <dt>DP</dt>
  4774. <dd>4000</dl>
  4775. <dl>
  4776. <dt>PlayCost</dt>
  4777. <dd>4</dd>
  4778. </dl>
  4779. <dl>
  4780. <dt>DigivolveCost1</dt>
  4781. <dd>2fromLv.3</dd>
  4782. </dl>
  4783. <dl>
  4784. <dt>DigivolveCost2</dt>
  4785. <dd>-</dd>
  4786. </dl>
  4787. </div>
  4788. </div>
  4789. <divclass="cardinfo_bottom">
  4790. <dl>
  4791. <dt>Effect</dt>
  4792. <dd>-</dd>
  4793. </dl>
  4794. <dl>
  4795. <dt>Digivolveeffect</dt>
  4796. <dd>[When Attacking] You may reveal 1 green Digimon card from your hand and place it on top of your deck to have this Digimon get +3000 DP for the turn.</dd>
  4797. </dl>
  4798. <dl>
  4799. <dt>Securityeffect</dt>
  4800. <dd>-</dd>
  4801. </dl>
  4802. <dl>
  4803. <dt>Notes</dt>
  4804. <dd>StoreChampionship2022ChampionCardSet</dd></dl>
  4805. </div>
  4806. </div>
  4807. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4808. </div>
  4809. </div>
  4810. </li>
  4811. <liclass="image_lists_itemdatapage-2">
  4812. <aclass="card_img">
  4813. <imgsrc="../images/cardlist/card/BT7-046.png"alt="BT7-046Beetlemon"></a>
  4814. <divclass="popup">
  4815. <divclass="card_detailcard_detail_green">
  4816. <divclass="card_detail_inner">
  4817. <ulclass="cardinfo_head">
  4818. <liclass="cardno">BT7-046</li>
  4819. <li>U</li>
  4820. <liclass="cardtype">Digimon</li>
  4821. <liclass="cardlv">Lv.4</li>
  4822. </ul>
  4823. <divclass="card_name">Beetlemon</div>
  4824. <divclass="cardinfo_top">
  4825. <divclass="card_img">
  4826. <imgsrc="../images/cardlist/card/BT7-046.png"alt="BT7-046Beetlemon"></div>
  4827. <divclass="cardinfo_top_body">
  4828. <dl>
  4829. <dt>Form</dt>
  4830. <dd>Hybrid</dd>
  4831. </dl>
  4832. <dl>
  4833. <dt>Attribute</dt>
  4834. <dd>Variable</dd>
  4835. </dl>
  4836. <dl>
  4837. <dt>Type</dt>
  4838. <dd>Cyborg</dd>
  4839. </dl>
  4840. <dl>
  4841. <dt>DP</dt>
  4842. <dd>5000</dl>
  4843. <dl>
  4844. <dt>PlayCost</dt>
  4845. <dd>6</dd>
  4846. </dl>
  4847. <dl>
  4848. <dt>DigivolveCost1</dt>
  4849. <dd>2fromLv.3</dd>
  4850. </dl>
  4851. <dl>
  4852. <dt>DigivolveCost2</dt>
  4853. <dd>-</dd>
  4854. </dl>
  4855. </div>
  4856. </div>
  4857. <divclass="cardinfo_bottom">
  4858. <dl>
  4859. <dt>Effect</dt>
  4860. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 green Digimon. [When Digivolving] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] in its traits and 1 [J.P. Shibayama] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4861. </dl>
  4862. <dl>
  4863. <dt>Digivolveeffect</dt>
  4864. <dd>-</dd>
  4865. </dl>
  4866. <dl>
  4867. <dt>Securityeffect</dt>
  4868. <dd>-</dd>
  4869. </dl>
  4870. <dl>
  4871. <dt>Notes</dt>
  4872. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  4873. </div>
  4874. </div>
  4875. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4876. </div>
  4877. </div>
  4878. </li>
  4879. <liclass="image_lists_itemdatapage-2">
  4880. <aclass="card_img">
  4881. <imgsrc="../images/cardlist/card/BT7-046_P1.png"alt="BT7-046Beetlemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4882. </a>
  4883. <divclass="popup">
  4884. <divclass="card_detailcard_detail_green">
  4885. <divclass="card_detail_inner">
  4886. <ulclass="cardinfo_head">
  4887. <liclass="cardno">BT7-046</li>
  4888. <li>U</li>
  4889. <liclass="cardtype">Digimon</li>
  4890. <liclass="cardlv">Lv.4</li>
  4891. <liclass="cardtypecardParallel">AlternativeArt</li>
  4892. </ul>
  4893. <divclass="card_name">Beetlemon</div>
  4894. <divclass="cardinfo_top">
  4895. <divclass="card_img">
  4896. <imgsrc="../images/cardlist/card/BT7-046_P1.png"alt="BT7-046Beetlemon"></div>
  4897. <divclass="cardinfo_top_body">
  4898. <dl>
  4899. <dt>Form</dt>
  4900. <dd>Hybrid</dd>
  4901. </dl>
  4902. <dl>
  4903. <dt>Attribute</dt>
  4904. <dd>Variable</dd>
  4905. </dl>
  4906. <dl>
  4907. <dt>Type</dt>
  4908. <dd>Cyborg</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>DP</dt>
  4912. <dd>5000</dl>
  4913. <dl>
  4914. <dt>PlayCost</dt>
  4915. <dd>6</dd>
  4916. </dl>
  4917. <dl>
  4918. <dt>DigivolveCost1</dt>
  4919. <dd>2fromLv.3</dd>
  4920. </dl>
  4921. <dl>
  4922. <dt>DigivolveCost2</dt>
  4923. <dd>-</dd>
  4924. </dl>
  4925. </div>
  4926. </div>
  4927. <divclass="cardinfo_bottom">
  4928. <dl>
  4929. <dt>Effect</dt>
  4930. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 green Digimon. [When Digivolving] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] in its traits and 1 [J.P. Shibayama] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  4931. </dl>
  4932. <dl>
  4933. <dt>Digivolveeffect</dt>
  4934. <dd>-</dd>
  4935. </dl>
  4936. <dl>
  4937. <dt>Securityeffect</dt>
  4938. <dd>-</dd>
  4939. </dl>
  4940. <dl>
  4941. <dt>Notes</dt>
  4942. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  4943. </div>
  4944. </div>
  4945. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4946. </div>
  4947. </div>
  4948. </li>
  4949. <liclass="image_lists_itemdatapage-2">
  4950. <aclass="card_img">
  4951. <imgsrc="../images/cardlist/card/BT7-046_P2.png"alt="BT7-046Beetlemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4952. </a>
  4953. <divclass="popup">
  4954. <divclass="card_detailcard_detail_green">
  4955. <divclass="card_detail_inner">
  4956. <ulclass="cardinfo_head">
  4957. <liclass="cardno">BT7-046</li>
  4958. <li>U</li>
  4959. <liclass="cardtype">Digimon</li>
  4960. <liclass="cardlv">Lv.4</li>
  4961. <liclass="cardtypecardParallel">AlternativeArt</li>
  4962. </ul>
  4963. <divclass="card_name">Beetlemon</div>
  4964. <divclass="cardinfo_top">
  4965. <divclass="card_img">
  4966. <imgsrc="../images/cardlist/card/BT7-046_P2.png"alt="BT7-046Beetlemon"></div>
  4967. <divclass="cardinfo_top_body">
  4968. <dl>
  4969. <dt>Form</dt>
  4970. <dd>Hybrid</dd>
  4971. </dl>
  4972. <dl>
  4973. <dt>Attribute</dt>
  4974. <dd>Variable</dd>
  4975. </dl>
  4976. <dl>
  4977. <dt>Type</dt>
  4978. <dd>Cyborg</dd>
  4979. </dl>
  4980. <dl>
  4981. <dt>DP</dt>
  4982. <dd>5000</dl>
  4983. <dl>
  4984. <dt>PlayCost</dt>
  4985. <dd>6</dd>
  4986. </dl>
  4987. <dl>
  4988. <dt>DigivolveCost1</dt>
  4989. <dd>2fromLv.3</dd>
  4990. </dl>
  4991. <dl>
  4992. <dt>DigivolveCost2</dt>
  4993. <dd>-</dd>
  4994. </dl>
  4995. </div>
  4996. </div>
  4997. <divclass="cardinfo_bottom">
  4998. <dl>
  4999. <dt>Effect</dt>
  5000. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 green Digimon. [When Digivolving] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] in its traits and 1 [J.P. Shibayama] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5001. </dl>
  5002. <dl>
  5003. <dt>Digivolveeffect</dt>
  5004. <dd>-</dd>
  5005. </dl>
  5006. <dl>
  5007. <dt>Securityeffect</dt>
  5008. <dd>-</dd>
  5009. </dl>
  5010. <dl>
  5011. <dt>Notes</dt>
  5012. <dd>EventPack3</dd></dl>
  5013. </div>
  5014. </div>
  5015. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5016. </div>
  5017. </div>
  5018. </li>
  5019. <liclass="image_lists_itemdatapage-2">
  5020. <aclass="card_img">
  5021. <imgsrc="../images/cardlist/card/BT7-047.png"alt="BT7-047MetalKabuterimon"></a>
  5022. <divclass="popup">
  5023. <divclass="card_detailcard_detail_green">
  5024. <divclass="card_detail_inner">
  5025. <ulclass="cardinfo_head">
  5026. <liclass="cardno">BT7-047</li>
  5027. <li>C</li>
  5028. <liclass="cardtype">Digimon</li>
  5029. <liclass="cardlv">Lv.4</li>
  5030. </ul>
  5031. <divclass="card_name">MetalKabuterimon</div>
  5032. <divclass="cardinfo_top">
  5033. <divclass="card_img">
  5034. <imgsrc="../images/cardlist/card/BT7-047.png"alt="BT7-047MetalKabuterimon"></div>
  5035. <divclass="cardinfo_top_body">
  5036. <dl>
  5037. <dt>Form</dt>
  5038. <dd>Hybrid</dd>
  5039. </dl>
  5040. <dl>
  5041. <dt>Attribute</dt>
  5042. <dd>Variable</dd>
  5043. </dl>
  5044. <dl>
  5045. <dt>Type</dt>
  5046. <dd>Cyborg</dd>
  5047. </dl>
  5048. <dl>
  5049. <dt>DP</dt>
  5050. <dd>6000</dl>
  5051. <dl>
  5052. <dt>PlayCost</dt>
  5053. <dd>6</dd>
  5054. </dl>
  5055. <dl>
  5056. <dt>DigivolveCost1</dt>
  5057. <dd>3fromLv.3</dd>
  5058. </dl>
  5059. <dl>
  5060. <dt>DigivolveCost2</dt>
  5061. <dd>1fromLv.4</dd>
  5062. </dl>
  5063. </div>
  5064. </div>
  5065. <divclass="cardinfo_bottom">
  5066. <dl>
  5067. <dt>Effect</dt>
  5068. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 green Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [J.P. Shibayama] is in this Digimon's digivolution cards, suspend 1 of your opponent's Digimon with 6000 DP or less.</dd>
  5069. </dl>
  5070. <dl>
  5071. <dt>Digivolveeffect</dt>
  5072. <dd>-</dd>
  5073. </dl>
  5074. <dl>
  5075. <dt>Securityeffect</dt>
  5076. <dd>-</dd>
  5077. </dl>
  5078. <dl>
  5079. <dt>Notes</dt>
  5080. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5081. </div>
  5082. </div>
  5083. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5084. </div>
  5085. </div>
  5086. </li>
  5087. <liclass="image_lists_itemdatapage-2">
  5088. <aclass="card_img">
  5089. <imgsrc="../images/cardlist/card/BT7-047_P1.png"alt="BT7-047MetalKabuterimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5090. </a>
  5091. <divclass="popup">
  5092. <divclass="card_detailcard_detail_green">
  5093. <divclass="card_detail_inner">
  5094. <ulclass="cardinfo_head">
  5095. <liclass="cardno">BT7-047</li>
  5096. <li>C</li>
  5097. <liclass="cardtype">Digimon</li>
  5098. <liclass="cardlv">Lv.4</li>
  5099. <liclass="cardtypecardParallel">AlternativeArt</li>
  5100. </ul>
  5101. <divclass="card_name">MetalKabuterimon</div>
  5102. <divclass="cardinfo_top">
  5103. <divclass="card_img">
  5104. <imgsrc="../images/cardlist/card/BT7-047_P1.png"alt="BT7-047MetalKabuterimon"></div>
  5105. <divclass="cardinfo_top_body">
  5106. <dl>
  5107. <dt>Form</dt>
  5108. <dd>Hybrid</dd>
  5109. </dl>
  5110. <dl>
  5111. <dt>Attribute</dt>
  5112. <dd>Variable</dd>
  5113. </dl>
  5114. <dl>
  5115. <dt>Type</dt>
  5116. <dd>Cyborg</dd>
  5117. </dl>
  5118. <dl>
  5119. <dt>DP</dt>
  5120. <dd>6000</dl>
  5121. <dl>
  5122. <dt>PlayCost</dt>
  5123. <dd>6</dd>
  5124. </dl>
  5125. <dl>
  5126. <dt>DigivolveCost1</dt>
  5127. <dd>3fromLv.3</dd>
  5128. </dl>
  5129. <dl>
  5130. <dt>DigivolveCost2</dt>
  5131. <dd>1fromLv.4</dd>
  5132. </dl>
  5133. </div>
  5134. </div>
  5135. <divclass="cardinfo_bottom">
  5136. <dl>
  5137. <dt>Effect</dt>
  5138. <dd>You may digivolve this card from your hand onto one of your green Tamers as if the Tamer is a level 3 green Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [J.P. Shibayama] is in this Digimon's digivolution cards, suspend 1 of your opponent's Digimon with 6000 DP or less.</dd>
  5139. </dl>
  5140. <dl>
  5141. <dt>Digivolveeffect</dt>
  5142. <dd>-</dd>
  5143. </dl>
  5144. <dl>
  5145. <dt>Securityeffect</dt>
  5146. <dd>-</dd>
  5147. </dl>
  5148. <dl>
  5149. <dt>Notes</dt>
  5150. <dd>EventPack3</dd></dl>
  5151. </div>
  5152. </div>
  5153. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5154. </div>
  5155. </div>
  5156. </li>
  5157. <liclass="image_lists_itemdatapage-2">
  5158. <aclass="card_img">
  5159. <imgsrc="../images/cardlist/card/BT7-048.png"alt="BT7-048Monochromon"></a>
  5160. <divclass="popup">
  5161. <divclass="card_detailcard_detail_green">
  5162. <divclass="card_detail_inner">
  5163. <ulclass="cardinfo_head">
  5164. <liclass="cardno">BT7-048</li>
  5165. <li>C</li>
  5166. <liclass="cardtype">Digimon</li>
  5167. <liclass="cardlv">Lv.4</li>
  5168. </ul>
  5169. <divclass="card_name">Monochromon</div>
  5170. <divclass="cardinfo_top">
  5171. <divclass="card_img">
  5172. <imgsrc="../images/cardlist/card/BT7-048.png"alt="BT7-048Monochromon"></div>
  5173. <divclass="cardinfo_top_body">
  5174. <dl>
  5175. <dt>Form</dt>
  5176. <dd>Champion</dd>
  5177. </dl>
  5178. <dl>
  5179. <dt>Attribute</dt>
  5180. <dd>Data</dd>
  5181. </dl>
  5182. <dl>
  5183. <dt>Type</dt>
  5184. <dd>Ankylosaur</dd>
  5185. </dl>
  5186. <dl>
  5187. <dt>DP</dt>
  5188. <dd>8000</dl>
  5189. <dl>
  5190. <dt>PlayCost</dt>
  5191. <dd>6</dd>
  5192. </dl>
  5193. <dl>
  5194. <dt>DigivolveCost1</dt>
  5195. <dd>2fromLv.3</dd>
  5196. </dl>
  5197. <dl>
  5198. <dt>DigivolveCost2</dt>
  5199. <dd>-</dd>
  5200. </dl>
  5201. </div>
  5202. </div>
  5203. <divclass="cardinfo_bottom">
  5204. <dl>
  5205. <dt>Effect</dt>
  5206. <dd>-</dd>
  5207. </dl>
  5208. <dl>
  5209. <dt>Digivolveeffect</dt>
  5210. <dd>-</dd>
  5211. </dl>
  5212. <dl>
  5213. <dt>Securityeffect</dt>
  5214. <dd>-</dd>
  5215. </dl>
  5216. <dl>
  5217. <dt>Notes</dt>
  5218. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5219. </div>
  5220. </div>
  5221. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5222. </div>
  5223. </div>
  5224. </li>
  5225. <liclass="image_lists_itemdatapage-2">
  5226. <aclass="card_img">
  5227. <imgsrc="../images/cardlist/card/BT7-049.png"alt="BT7-049MameTyramon"></a>
  5228. <divclass="popup">
  5229. <divclass="card_detailcard_detail_green">
  5230. <divclass="card_detail_inner">
  5231. <ulclass="cardinfo_head">
  5232. <liclass="cardno">BT7-049</li>
  5233. <li>U</li>
  5234. <liclass="cardtype">Digimon</li>
  5235. <liclass="cardlv">Lv.5</li>
  5236. </ul>
  5237. <divclass="card_name">MameTyramon</div>
  5238. <divclass="cardinfo_top">
  5239. <divclass="card_img">
  5240. <imgsrc="../images/cardlist/card/BT7-049.png"alt="BT7-049MameTyramon"></div>
  5241. <divclass="cardinfo_top_body">
  5242. <dl>
  5243. <dt>Form</dt>
  5244. <dd>Ultimate</dd>
  5245. </dl>
  5246. <dl>
  5247. <dt>Attribute</dt>
  5248. <dd>Data</dd>
  5249. </dl>
  5250. <dl>
  5251. <dt>Type</dt>
  5252. <dd>Mutant/X-Antibody</dd>
  5253. </dl>
  5254. <dl>
  5255. <dt>DP</dt>
  5256. <dd>5000</dl>
  5257. <dl>
  5258. <dt>PlayCost</dt>
  5259. <dd>5</dd>
  5260. </dl>
  5261. <dl>
  5262. <dt>DigivolveCost1</dt>
  5263. <dd>3fromLv.4</dd>
  5264. </dl>
  5265. <dl>
  5266. <dt>DigivolveCost2</dt>
  5267. <dd>-</dd>
  5268. </dl>
  5269. </div>
  5270. </div>
  5271. <divclass="cardinfo_bottom">
  5272. <dl>
  5273. <dt>Effect</dt>
  5274. <dd>[When Attacking] Reveal the top 3 cards of your deck. You may digivolve this Digimon into a green level 6 card among them without paying its memory cost. Place the remaining cards at the bottom of your deck in any order.</dd>
  5275. </dl>
  5276. <dl>
  5277. <dt>Digivolveeffect</dt>
  5278. <dd>-</dd>
  5279. </dl>
  5280. <dl>
  5281. <dt>Securityeffect</dt>
  5282. <dd>-</dd>
  5283. </dl>
  5284. <dl>
  5285. <dt>Notes</dt>
  5286. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5287. </div>
  5288. </div>
  5289. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5290. </div>
  5291. </div>
  5292. </li>
  5293. <liclass="image_lists_itemdatapage-2">
  5294. <aclass="card_img">
  5295. <imgsrc="../images/cardlist/card/BT7-050.png"alt="BT7-050Triceramon"></a>
  5296. <divclass="popup">
  5297. <divclass="card_detailcard_detail_green">
  5298. <divclass="card_detail_inner">
  5299. <ulclass="cardinfo_head">
  5300. <liclass="cardno">BT7-050</li>
  5301. <li>C</li>
  5302. <liclass="cardtype">Digimon</li>
  5303. <liclass="cardlv">Lv.5</li>
  5304. </ul>
  5305. <divclass="card_name">Triceramon</div>
  5306. <divclass="cardinfo_top">
  5307. <divclass="card_img">
  5308. <imgsrc="../images/cardlist/card/BT7-050.png"alt="BT7-050Triceramon"></div>
  5309. <divclass="cardinfo_top_body">
  5310. <dl>
  5311. <dt>Form</dt>
  5312. <dd>Ultimate</dd>
  5313. </dl>
  5314. <dl>
  5315. <dt>Attribute</dt>
  5316. <dd>Data</dd>
  5317. </dl>
  5318. <dl>
  5319. <dt>Type</dt>
  5320. <dd>Ceratopsian</dd>
  5321. </dl>
  5322. <dl>
  5323. <dt>DP</dt>
  5324. <dd>7000</dl>
  5325. <dl>
  5326. <dt>PlayCost</dt>
  5327. <dd>6</dd>
  5328. </dl>
  5329. <dl>
  5330. <dt>DigivolveCost1</dt>
  5331. <dd>2fromLv.4</dd>
  5332. </dl>
  5333. <dl>
  5334. <dt>DigivolveCost2</dt>
  5335. <dd>-</dd>
  5336. </dl>
  5337. </div>
  5338. </div>
  5339. <divclass="cardinfo_bottom">
  5340. <dl>
  5341. <dt>Effect</dt>
  5342. <dd>-</dd>
  5343. </dl>
  5344. <dl>
  5345. <dt>Digivolveeffect</dt>
  5346. <dd>-</dd>
  5347. </dl>
  5348. <dl>
  5349. <dt>Securityeffect</dt>
  5350. <dd>-</dd>
  5351. </dl>
  5352. <dl>
  5353. <dt>Notes</dt>
  5354. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5355. </div>
  5356. </div>
  5357. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5358. </div>
  5359. </div>
  5360. </li>
  5361. <liclass="image_lists_itemdatapage-2">
  5362. <aclass="card_img">
  5363. <imgsrc="../images/cardlist/card/BT7-051.png"alt="BT7-051RhinoKabuterimon"></a>
  5364. <divclass="popup">
  5365. <divclass="card_detailcard_detail_green">
  5366. <divclass="card_detail_inner">
  5367. <ulclass="cardinfo_head">
  5368. <liclass="cardno">BT7-051</li>
  5369. <li>U</li>
  5370. <liclass="cardtype">Digimon</li>
  5371. <liclass="cardlv">Lv.5</li>
  5372. </ul>
  5373. <divclass="card_name">RhinoKabuterimon</div>
  5374. <divclass="cardinfo_top">
  5375. <divclass="card_img">
  5376. <imgsrc="../images/cardlist/card/BT7-051.png"alt="BT7-051RhinoKabuterimon"></div>
  5377. <divclass="cardinfo_top_body">
  5378. <dl>
  5379. <dt>Form</dt>
  5380. <dd>Hybrid</dd>
  5381. </dl>
  5382. <dl>
  5383. <dt>Attribute</dt>
  5384. <dd>Variable</dd>
  5385. </dl>
  5386. <dl>
  5387. <dt>Type</dt>
  5388. <dd>Insectoid</dd>
  5389. </dl>
  5390. <dl>
  5391. <dt>DP</dt>
  5392. <dd>8000</dl>
  5393. <dl>
  5394. <dt>PlayCost</dt>
  5395. <dd>9</dd>
  5396. </dl>
  5397. <dl>
  5398. <dt>DigivolveCost1</dt>
  5399. <dd>3fromLv.4</dd>
  5400. </dl>
  5401. <dl>
  5402. <dt>DigivolveCost2</dt>
  5403. <dd>-</dd>
  5404. </dl>
  5405. </div>
  5406. </div>
  5407. <divclass="cardinfo_bottom">
  5408. <dl>
  5409. <dt>Effect</dt>
  5410. <dd>When one of your Digimon with a Tamer card in its digivolution cards digivolves into this card in your hand, reduce the memory cost of the digivolution by 2. [When Attacking] If a card with [Hybrid] or [Insectoid] in its traits is in this Digimon's digivolution cards, this Digimon can digivolve into a Digimon card with [Insectoid] or [Ten Warriors] in its traits in your hand for a memory cost of 3.</dd>
  5411. </dl>
  5412. <dl>
  5413. <dt>Digivolveeffect</dt>
  5414. <dd>-</dd>
  5415. </dl>
  5416. <dl>
  5417. <dt>Securityeffect</dt>
  5418. <dd>-</dd>
  5419. </dl>
  5420. <dl>
  5421. <dt>Notes</dt>
  5422. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5423. </div>
  5424. </div>
  5425. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5426. </div>
  5427. </div>
  5428. </li>
  5429. <liclass="image_lists_itemdatapage-2">
  5430. <aclass="card_img">
  5431. <imgsrc="../images/cardlist/card/BT7-052.png"alt="BT7-052SaberLeomon"></a>
  5432. <divclass="popup">
  5433. <divclass="card_detailcard_detail_green">
  5434. <divclass="card_detail_inner">
  5435. <ulclass="cardinfo_head">
  5436. <liclass="cardno">BT7-052</li>
  5437. <li>C</li>
  5438. <liclass="cardtype">Digimon</li>
  5439. <liclass="cardlv">Lv.6</li>
  5440. </ul>
  5441. <divclass="card_name">SaberLeomon</div>
  5442. <divclass="cardinfo_top">
  5443. <divclass="card_img">
  5444. <imgsrc="../images/cardlist/card/BT7-052.png"alt="BT7-052SaberLeomon"></div>
  5445. <divclass="cardinfo_top_body">
  5446. <dl>
  5447. <dt>Form</dt>
  5448. <dd>Mega</dd>
  5449. </dl>
  5450. <dl>
  5451. <dt>Attribute</dt>
  5452. <dd>Data</dd>
  5453. </dl>
  5454. <dl>
  5455. <dt>Type</dt>
  5456. <dd>AncientAnimal</dd>
  5457. </dl>
  5458. <dl>
  5459. <dt>DP</dt>
  5460. <dd>10000</dl>
  5461. <dl>
  5462. <dt>PlayCost</dt>
  5463. <dd>11</dd>
  5464. </dl>
  5465. <dl>
  5466. <dt>DigivolveCost1</dt>
  5467. <dd>3fromLv.5</dd>
  5468. </dl>
  5469. <dl>
  5470. <dt>DigivolveCost2</dt>
  5471. <dd>-</dd>
  5472. </dl>
  5473. </div>
  5474. </div>
  5475. <divclass="cardinfo_bottom">
  5476. <dl>
  5477. <dt>Effect</dt>
  5478. <dd>[When Digivolving] This Digimon gets +5000 DP for the turn. [On Deletion] Gain 2 memory.</dd>
  5479. </dl>
  5480. <dl>
  5481. <dt>Digivolveeffect</dt>
  5482. <dd>-</dd>
  5483. </dl>
  5484. <dl>
  5485. <dt>Securityeffect</dt>
  5486. <dd>-</dd>
  5487. </dl>
  5488. <dl>
  5489. <dt>Notes</dt>
  5490. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5491. </div>
  5492. </div>
  5493. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5494. </div>
  5495. </div>
  5496. </li>
  5497. <liclass="image_lists_itemdatapage-3">
  5498. <aclass="card_img">
  5499. <imgsrc="../images/cardlist/card/BT7-053.png"alt="BT7-053Dinorexmon"></a>
  5500. <divclass="popup">
  5501. <divclass="card_detailcard_detail_green">
  5502. <divclass="card_detail_inner">
  5503. <ulclass="cardinfo_head">
  5504. <liclass="cardno">BT7-053</li>
  5505. <li>R</li>
  5506. <liclass="cardtype">Digimon</li>
  5507. <liclass="cardlv">Lv.6</li>
  5508. </ul>
  5509. <divclass="card_name">Dinorexmon</div>
  5510. <divclass="cardinfo_top">
  5511. <divclass="card_img">
  5512. <imgsrc="../images/cardlist/card/BT7-053.png"alt="BT7-053Dinorexmon"></div>
  5513. <divclass="cardinfo_top_body">
  5514. <dl>
  5515. <dt>Form</dt>
  5516. <dd>Mega</dd>
  5517. </dl>
  5518. <dl>
  5519. <dt>Attribute</dt>
  5520. <dd>Data</dd>
  5521. </dl>
  5522. <dl>
  5523. <dt>Type</dt>
  5524. <dd>Dinosaur/X-Antibody</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>DP</dt>
  5528. <dd>12000</dl>
  5529. <dl>
  5530. <dt>PlayCost</dt>
  5531. <dd>12</dd>
  5532. </dl>
  5533. <dl>
  5534. <dt>DigivolveCost1</dt>
  5535. <dd>4fromLv.5</dd>
  5536. </dl>
  5537. <dl>
  5538. <dt>DigivolveCost2</dt>
  5539. <dd>-</dd>
  5540. </dl>
  5541. </div>
  5542. </div>
  5543. <divclass="cardinfo_bottom">
  5544. <dl>
  5545. <dt>Effect</dt>
  5546. <dd>[When Digivolving] Suspend 1 of your opponent's Digimon. That Digimon doesn't unsuspend during their next unsuspend phase. [Your Turn] This Digimon gets +1000 DP for each of your opponent's suspended Digimon.</dd>
  5547. </dl>
  5548. <dl>
  5549. <dt>Digivolveeffect</dt>
  5550. <dd>-</dd>
  5551. </dl>
  5552. <dl>
  5553. <dt>Securityeffect</dt>
  5554. <dd>-</dd>
  5555. </dl>
  5556. <dl>
  5557. <dt>Notes</dt>
  5558. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5559. </div>
  5560. </div>
  5561. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5562. </div>
  5563. </div>
  5564. </li>
  5565. <liclass="image_lists_itemdatapage-3">
  5566. <aclass="card_img">
  5567. <imgsrc="../images/cardlist/card/BT7-054.png"alt="BT7-054AncientBeetlemon"></a>
  5568. <divclass="popup">
  5569. <divclass="card_detailcard_detail_green">
  5570. <divclass="card_detail_inner">
  5571. <ulclass="cardinfo_head">
  5572. <liclass="cardno">BT7-054</li>
  5573. <li>R</li>
  5574. <liclass="cardtype">Digimon</li>
  5575. <liclass="cardlv">Lv.6</li>
  5576. </ul>
  5577. <divclass="card_name">AncientBeetlemon</div>
  5578. <divclass="cardinfo_top">
  5579. <divclass="card_img">
  5580. <imgsrc="../images/cardlist/card/BT7-054.png"alt="BT7-054AncientBeetlemon"></div>
  5581. <divclass="cardinfo_top_body">
  5582. <dl>
  5583. <dt>Form</dt>
  5584. <dd>Mega</dd>
  5585. </dl>
  5586. <dl>
  5587. <dt>Attribute</dt>
  5588. <dd>Vaccine</dd>
  5589. </dl>
  5590. <dl>
  5591. <dt>Type</dt>
  5592. <dd>AncientInsect/TenWarriors</dd>
  5593. </dl>
  5594. <dl>
  5595. <dt>DP</dt>
  5596. <dd>13000</dl>
  5597. <dl>
  5598. <dt>PlayCost</dt>
  5599. <dd>13</dd>
  5600. </dl>
  5601. <dl>
  5602. <dt>DigivolveCost1</dt>
  5603. <dd>5fromLv.5</dd>
  5604. </dl>
  5605. <dl>
  5606. <dt>DigivolveCost2</dt>
  5607. <dd>-</dd>
  5608. </dl>
  5609. </div>
  5610. </div>
  5611. <divclass="cardinfo_bottom">
  5612. <dl>
  5613. <dt>Effect</dt>
  5614. <dd>[Your Turn][Once Per Turn] When one of your Digimon with [Ten Warriors] or [Hybrid] in its traits deletes an opponent's Digimon in battle and survives, trash the top card of your opponent's security stack. [On Deletion] You may play 1 green level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  5615. </dl>
  5616. <dl>
  5617. <dt>Digivolveeffect</dt>
  5618. <dd>-</dd>
  5619. </dl>
  5620. <dl>
  5621. <dt>Securityeffect</dt>
  5622. <dd>-</dd>
  5623. </dl>
  5624. <dl>
  5625. <dt>Notes</dt>
  5626. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5627. </div>
  5628. </div>
  5629. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5630. </div>
  5631. </div>
  5632. </li>
  5633. <liclass="image_lists_itemdatapage-3">
  5634. <aclass="card_img">
  5635. <imgsrc="../images/cardlist/card/BT7-054_P1.png"alt="BT7-054AncientBeetlemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5636. </a>
  5637. <divclass="popup">
  5638. <divclass="card_detailcard_detail_green">
  5639. <divclass="card_detail_inner">
  5640. <ulclass="cardinfo_head">
  5641. <liclass="cardno">BT7-054</li>
  5642. <li>R</li>
  5643. <liclass="cardtype">Digimon</li>
  5644. <liclass="cardlv">Lv.6</li>
  5645. <liclass="cardtypecardParallel">AlternativeArt</li>
  5646. </ul>
  5647. <divclass="card_name">AncientBeetlemon</div>
  5648. <divclass="cardinfo_top">
  5649. <divclass="card_img">
  5650. <imgsrc="../images/cardlist/card/BT7-054_P1.png"alt="BT7-054AncientBeetlemon"></div>
  5651. <divclass="cardinfo_top_body">
  5652. <dl>
  5653. <dt>Form</dt>
  5654. <dd>Mega</dd>
  5655. </dl>
  5656. <dl>
  5657. <dt>Attribute</dt>
  5658. <dd>Vaccine</dd>
  5659. </dl>
  5660. <dl>
  5661. <dt>Type</dt>
  5662. <dd>AncientInsect/TenWarriors</dd>
  5663. </dl>
  5664. <dl>
  5665. <dt>DP</dt>
  5666. <dd>13000</dl>
  5667. <dl>
  5668. <dt>PlayCost</dt>
  5669. <dd>13</dd>
  5670. </dl>
  5671. <dl>
  5672. <dt>DigivolveCost1</dt>
  5673. <dd>5fromLv.5</dd>
  5674. </dl>
  5675. <dl>
  5676. <dt>DigivolveCost2</dt>
  5677. <dd>-</dd>
  5678. </dl>
  5679. </div>
  5680. </div>
  5681. <divclass="cardinfo_bottom">
  5682. <dl>
  5683. <dt>Effect</dt>
  5684. <dd>[Your Turn][Once Per Turn] When one of your Digimon with [Ten Warriors] or [Hybrid] in its traits deletes an opponent's Digimon in battle and survives, trash the top card of your opponent's security stack. [On Deletion] You may play 1 green level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  5685. </dl>
  5686. <dl>
  5687. <dt>Digivolveeffect</dt>
  5688. <dd>-</dd>
  5689. </dl>
  5690. <dl>
  5691. <dt>Securityeffect</dt>
  5692. <dd>-</dd>
  5693. </dl>
  5694. <dl>
  5695. <dt>Notes</dt>
  5696. <dd>EventPack3</dd></dl>
  5697. </div>
  5698. </div>
  5699. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5700. </div>
  5701. </div>
  5702. </li>
  5703. <liclass="image_lists_itemdatapage-3">
  5704. <aclass="card_img">
  5705. <imgsrc="../images/cardlist/card/BT7-055.png"alt="BT7-055Ebonwumon"></a>
  5706. <divclass="popup">
  5707. <divclass="card_detailcard_detail_green">
  5708. <divclass="card_detail_inner">
  5709. <ulclass="cardinfo_head">
  5710. <liclass="cardno">BT7-055</li>
  5711. <li>SR</li>
  5712. <liclass="cardtype">Digimon</li>
  5713. <liclass="cardlv">Lv.6</li>
  5714. </ul>
  5715. <divclass="card_name">Ebonwumon</div>
  5716. <divclass="cardinfo_top">
  5717. <divclass="card_img">
  5718. <imgsrc="../images/cardlist/card/BT7-055.png"alt="BT7-055Ebonwumon"></div>
  5719. <divclass="cardinfo_top_body">
  5720. <dl>
  5721. <dt>Form</dt>
  5722. <dd>Mega</dd>
  5723. </dl>
  5724. <dl>
  5725. <dt>Attribute</dt>
  5726. <dd>Vaccine</dd>
  5727. </dl>
  5728. <dl>
  5729. <dt>Type</dt>
  5730. <dd>HolyBeast/FourSovereigns</dd>
  5731. </dl>
  5732. <dl>
  5733. <dt>DP</dt>
  5734. <dd>13000</dl>
  5735. <dl>
  5736. <dt>PlayCost</dt>
  5737. <dd>13</dd>
  5738. </dl>
  5739. <dl>
  5740. <dt>DigivolveCost1</dt>
  5741. <dd>5fromLv.5</dd>
  5742. </dl>
  5743. <dl>
  5744. <dt>DigivolveCost2</dt>
  5745. <dd>-</dd>
  5746. </dl>
  5747. </div>
  5748. </div>
  5749. <divclass="cardinfo_bottom">
  5750. <dl>
  5751. <dt>Effect</dt>
  5752. <dd>[When Digivolving] Suspend 1 of your opponent's Digimon. Then, gain 1 memory for each of your opponent's suspended Digimon. [Opponent's Turn] All of your opponent's Digimon gain “[Your Turn] You must trash 1 card in your hand to unsuspend this Digimon.”</dd>
  5753. </dl>
  5754. <dl>
  5755. <dt>Digivolveeffect</dt>
  5756. <dd>-</dd>
  5757. </dl>
  5758. <dl>
  5759. <dt>Securityeffect</dt>
  5760. <dd>-</dd>
  5761. </dl>
  5762. <dl>
  5763. <dt>Notes</dt>
  5764. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5765. </div>
  5766. </div>
  5767. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5768. </div>
  5769. </div>
  5770. </li>
  5771. <liclass="image_lists_itemdatapage-3">
  5772. <aclass="card_img">
  5773. <imgsrc="../images/cardlist/card/BT7-056.png"alt="BT7-056Dorumon"></a>
  5774. <divclass="popup">
  5775. <divclass="card_detailcard_detail_black">
  5776. <divclass="card_detail_inner">
  5777. <ulclass="cardinfo_head">
  5778. <liclass="cardno">BT7-056</li>
  5779. <li>R</li>
  5780. <liclass="cardtype">Digimon</li>
  5781. <liclass="cardlv">Lv.3</li>
  5782. </ul>
  5783. <divclass="card_name">Dorumon</div>
  5784. <divclass="cardinfo_top">
  5785. <divclass="card_img">
  5786. <imgsrc="../images/cardlist/card/BT7-056.png"alt="BT7-056Dorumon"></div>
  5787. <divclass="cardinfo_top_body">
  5788. <dl>
  5789. <dt>Form</dt>
  5790. <dd>Rookie</dd>
  5791. </dl>
  5792. <dl>
  5793. <dt>Attribute</dt>
  5794. <dd>Data</dd>
  5795. </dl>
  5796. <dl>
  5797. <dt>Type</dt>
  5798. <dd>Beast/X-Antibody</dd>
  5799. </dl>
  5800. <dl>
  5801. <dt>DP</dt>
  5802. <dd>1000</dl>
  5803. <dl>
  5804. <dt>PlayCost</dt>
  5805. <dd>3</dd>
  5806. </dl>
  5807. <dl>
  5808. <dt>DigivolveCost1</dt>
  5809. <dd>0fromLv.2</dd>
  5810. </dl>
  5811. <dl>
  5812. <dt>DigivolveCost2</dt>
  5813. <dd>-</dd>
  5814. </dl>
  5815. </div>
  5816. </div>
  5817. <divclass="cardinfo_bottom">
  5818. <dl>
  5819. <dt>Effect</dt>
  5820. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [X-Antibody] in its traits and 1 [Kota Domoto] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5821. </dl>
  5822. <dl>
  5823. <dt>Digivolveeffect</dt>
  5824. <dd>[Your Turn][Once Per Turn] When one of your effects places a digivolution card under this Digimon, gain 1 memory.</dd>
  5825. </dl>
  5826. <dl>
  5827. <dt>Securityeffect</dt>
  5828. <dd>-</dd>
  5829. </dl>
  5830. <dl>
  5831. <dt>Notes</dt>
  5832. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5833. </div>
  5834. </div>
  5835. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5836. </div>
  5837. </div>
  5838. </li>
  5839. <liclass="image_lists_itemdatapage-3">
  5840. <aclass="card_img">
  5841. <imgsrc="../images/cardlist/card/BT7-056_P1.png"alt="BT7-056Dorumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  5842. </a>
  5843. <divclass="popup">
  5844. <divclass="card_detailcard_detail_black">
  5845. <divclass="card_detail_inner">
  5846. <ulclass="cardinfo_head">
  5847. <liclass="cardno">BT7-056</li>
  5848. <li>R</li>
  5849. <liclass="cardtype">Digimon</li>
  5850. <liclass="cardlv">Lv.3</li>
  5851. <liclass="cardtypecardParallel">AlternativeArt</li>
  5852. </ul>
  5853. <divclass="card_name">Dorumon</div>
  5854. <divclass="cardinfo_top">
  5855. <divclass="card_img">
  5856. <imgsrc="../images/cardlist/card/BT7-056_P1.png"alt="BT7-056Dorumon"></div>
  5857. <divclass="cardinfo_top_body">
  5858. <dl>
  5859. <dt>Form</dt>
  5860. <dd>Rookie</dd>
  5861. </dl>
  5862. <dl>
  5863. <dt>Attribute</dt>
  5864. <dd>Data</dd>
  5865. </dl>
  5866. <dl>
  5867. <dt>Type</dt>
  5868. <dd>Beast/X-Antibody</dd>
  5869. </dl>
  5870. <dl>
  5871. <dt>DP</dt>
  5872. <dd>1000</dl>
  5873. <dl>
  5874. <dt>PlayCost</dt>
  5875. <dd>3</dd>
  5876. </dl>
  5877. <dl>
  5878. <dt>DigivolveCost1</dt>
  5879. <dd>0fromLv.2</dd>
  5880. </dl>
  5881. <dl>
  5882. <dt>DigivolveCost2</dt>
  5883. <dd>-</dd>
  5884. </dl>
  5885. </div>
  5886. </div>
  5887. <divclass="cardinfo_bottom">
  5888. <dl>
  5889. <dt>Effect</dt>
  5890. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [X-Antibody] in its traits and 1 [Kota Domoto] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5891. </dl>
  5892. <dl>
  5893. <dt>Digivolveeffect</dt>
  5894. <dd>[Your Turn][Once Per Turn] When one of your effects places a digivolution card under this Digimon, gain 1 memory.</dd>
  5895. </dl>
  5896. <dl>
  5897. <dt>Securityeffect</dt>
  5898. <dd>-</dd>
  5899. </dl>
  5900. <dl>
  5901. <dt>Notes</dt>
  5902. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5903. </div>
  5904. </div>
  5905. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5906. </div>
  5907. </div>
  5908. </li>
  5909. <liclass="image_lists_itemdatapage-3">
  5910. <aclass="card_img">
  5911. <imgsrc="../images/cardlist/card/BT7-057.png"alt="BT7-057Monitamon"></a>
  5912. <divclass="popup">
  5913. <divclass="card_detailcard_detail_black">
  5914. <divclass="card_detail_inner">
  5915. <ulclass="cardinfo_head">
  5916. <liclass="cardno">BT7-057</li>
  5917. <li>C</li>
  5918. <liclass="cardtype">Digimon</li>
  5919. <liclass="cardlv">Lv.3</li>
  5920. </ul>
  5921. <divclass="card_name">Monitamon</div>
  5922. <divclass="cardinfo_top">
  5923. <divclass="card_img">
  5924. <imgsrc="../images/cardlist/card/BT7-057.png"alt="BT7-057Monitamon"></div>
  5925. <divclass="cardinfo_top_body">
  5926. <dl>
  5927. <dt>Form</dt>
  5928. <dd>Rookie</dd>
  5929. </dl>
  5930. <dl>
  5931. <dt>Attribute</dt>
  5932. <dd>Data</dd>
  5933. </dl>
  5934. <dl>
  5935. <dt>Type</dt>
  5936. <dd>CRT</dd>
  5937. </dl>
  5938. <dl>
  5939. <dt>DP</dt>
  5940. <dd>2000</dl>
  5941. <dl>
  5942. <dt>PlayCost</dt>
  5943. <dd>3</dd>
  5944. </dl>
  5945. <dl>
  5946. <dt>DigivolveCost1</dt>
  5947. <dd>0fromLv.2</dd>
  5948. </dl>
  5949. <dl>
  5950. <dt>DigivolveCost2</dt>
  5951. <dd>-</dd>
  5952. </dl>
  5953. </div>
  5954. </div>
  5955. <divclass="cardinfo_bottom">
  5956. <dl>
  5957. <dt>Effect</dt>
  5958. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 card with [Knightmon] in its name or 1 [DeadlyAxemon] among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  5959. </dl>
  5960. <dl>
  5961. <dt>Digivolveeffect</dt>
  5962. <dd>-</dd>
  5963. </dl>
  5964. <dl>
  5965. <dt>Securityeffect</dt>
  5966. <dd>-</dd>
  5967. </dl>
  5968. <dl>
  5969. <dt>Notes</dt>
  5970. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  5971. </div>
  5972. </div>
  5973. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5974. </div>
  5975. </div>
  5976. </li>
  5977. <liclass="image_lists_itemdatapage-3">
  5978. <aclass="card_img">
  5979. <imgsrc="../images/cardlist/card/BT7-058.png"alt="BT7-058SkullKnightmon"></a>
  5980. <divclass="popup">
  5981. <divclass="card_detailcard_detail_black">
  5982. <divclass="card_detail_inner">
  5983. <ulclass="cardinfo_head">
  5984. <liclass="cardno">BT7-058</li>
  5985. <li>R</li>
  5986. <liclass="cardtype">Digimon</li>
  5987. <liclass="cardlv">Lv.4</li>
  5988. </ul>
  5989. <divclass="card_name">SkullKnightmon</div>
  5990. <divclass="cardinfo_top">
  5991. <divclass="card_img">
  5992. <imgsrc="../images/cardlist/card/BT7-058.png"alt="BT7-058SkullKnightmon"></div>
  5993. <divclass="cardinfo_top_body">
  5994. <dl>
  5995. <dt>Form</dt>
  5996. <dd>Champion</dd>
  5997. </dl>
  5998. <dl>
  5999. <dt>Attribute</dt>
  6000. <dd>Virus</dd>
  6001. </dl>
  6002. <dl>
  6003. <dt>Type</dt>
  6004. <dd>Undead</dd>
  6005. </dl>
  6006. <dl>
  6007. <dt>DP</dt>
  6008. <dd>3000</dl>
  6009. <dl>
  6010. <dt>PlayCost</dt>
  6011. <dd>4</dd>
  6012. </dl>
  6013. <dl>
  6014. <dt>DigivolveCost1</dt>
  6015. <dd>2fromLv.3</dd>
  6016. </dl>
  6017. <dl>
  6018. <dt>DigivolveCost2</dt>
  6019. <dd>-</dd>
  6020. </dl>
  6021. </div>
  6022. </div>
  6023. <divclass="cardinfo_bottom">
  6024. <dl>
  6025. <dt>Effect</dt>
  6026. <dd>[When Attacking] You may trash all of the digivolution cards of 1 of your [DeadlyAxemon] and place it at the bottom of this Digimon's digivolution cards to digivolve this Digimon into a [DarkKnightmon] in your hand without paying its memory cost.</dd>
  6027. </dl>
  6028. <dl>
  6029. <dt>Digivolveeffect</dt>
  6030. <dd>[Your Turn] While this Digimon has [Knightmon] or [Bagramon] in its name, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  6031. </dl>
  6032. <dl>
  6033. <dt>Securityeffect</dt>
  6034. <dd>-</dd>
  6035. </dl>
  6036. <dl>
  6037. <dt>Notes</dt>
  6038. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6039. </div>
  6040. </div>
  6041. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6042. </div>
  6043. </div>
  6044. </li>
  6045. <liclass="image_lists_itemdatapage-3">
  6046. <aclass="card_img">
  6047. <imgsrc="../images/cardlist/card/BT7-059.png"alt="BT7-059DeadlyAxemon"></a>
  6048. <divclass="popup">
  6049. <divclass="card_detailcard_detail_black">
  6050. <divclass="card_detail_inner">
  6051. <ulclass="cardinfo_head">
  6052. <liclass="cardno">BT7-059</li>
  6053. <li>C</li>
  6054. <liclass="cardtype">Digimon</li>
  6055. <liclass="cardlv">Lv.4</li>
  6056. </ul>
  6057. <divclass="card_name">DeadlyAxemon</div>
  6058. <divclass="cardinfo_top">
  6059. <divclass="card_img">
  6060. <imgsrc="../images/cardlist/card/BT7-059.png"alt="BT7-059DeadlyAxemon"></div>
  6061. <divclass="cardinfo_top_body">
  6062. <dl>
  6063. <dt>Form</dt>
  6064. <dd>Champion</dd>
  6065. </dl>
  6066. <dl>
  6067. <dt>Attribute</dt>
  6068. <dd>Virus</dd>
  6069. </dl>
  6070. <dl>
  6071. <dt>Type</dt>
  6072. <dd>DarkAnimal</dd>
  6073. </dl>
  6074. <dl>
  6075. <dt>DP</dt>
  6076. <dd>3000</dl>
  6077. <dl>
  6078. <dt>PlayCost</dt>
  6079. <dd>4</dd>
  6080. </dl>
  6081. <dl>
  6082. <dt>DigivolveCost1</dt>
  6083. <dd>2fromLv.3</dd>
  6084. </dl>
  6085. <dl>
  6086. <dt>DigivolveCost2</dt>
  6087. <dd>-</dd>
  6088. </dl>
  6089. </div>
  6090. </div>
  6091. <divclass="cardinfo_bottom">
  6092. <dl>
  6093. <dt>Effect</dt>
  6094. <dd>[On Play] Reveal the top 5 cards of your deck. Add up to 2 cards with [Knightmon] in their names among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  6095. </dl>
  6096. <dl>
  6097. <dt>Digivolveeffect</dt>
  6098. <dd>[Your Turn] While this Digimon has [Knightmon] or [Bagramon] in its name, it gets +2000 DP.</dd>
  6099. </dl>
  6100. <dl>
  6101. <dt>Securityeffect</dt>
  6102. <dd>-</dd>
  6103. </dl>
  6104. <dl>
  6105. <dt>Notes</dt>
  6106. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6107. </div>
  6108. </div>
  6109. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6110. </div>
  6111. </div>
  6112. </li>
  6113. <liclass="image_lists_itemdatapage-3">
  6114. <aclass="card_img">
  6115. <imgsrc="../images/cardlist/card/BT7-060.png"alt="BT7-060Grumblemon"></a>
  6116. <divclass="popup">
  6117. <divclass="card_detailcard_detail_black">
  6118. <divclass="card_detail_inner">
  6119. <ulclass="cardinfo_head">
  6120. <liclass="cardno">BT7-060</li>
  6121. <li>C</li>
  6122. <liclass="cardtype">Digimon</li>
  6123. <liclass="cardlv">Lv.4</li>
  6124. </ul>
  6125. <divclass="card_name">Grumblemon</div>
  6126. <divclass="cardinfo_top">
  6127. <divclass="card_img">
  6128. <imgsrc="../images/cardlist/card/BT7-060.png"alt="BT7-060Grumblemon"></div>
  6129. <divclass="cardinfo_top_body">
  6130. <dl>
  6131. <dt>Form</dt>
  6132. <dd>Hybrid</dd>
  6133. </dl>
  6134. <dl>
  6135. <dt>Attribute</dt>
  6136. <dd>Variable</dd>
  6137. </dl>
  6138. <dl>
  6139. <dt>Type</dt>
  6140. <dd>Demon</dd>
  6141. </dl>
  6142. <dl>
  6143. <dt>DP</dt>
  6144. <dd>5000</dl>
  6145. <dl>
  6146. <dt>PlayCost</dt>
  6147. <dd>5</dd>
  6148. </dl>
  6149. <dl>
  6150. <dt>DigivolveCost1</dt>
  6151. <dd>2fromLv.3</dd>
  6152. </dl>
  6153. <dl>
  6154. <dt>DigivolveCost2</dt>
  6155. <dd>-</dd>
  6156. </dl>
  6157. </div>
  6158. </div>
  6159. <divclass="cardinfo_bottom">
  6160. <dl>
  6161. <dt>Effect</dt>
  6162. <dd>You may digivolve this card from your hand onto one of your black Tamers as if the Tamer is a level 3 black Digimon.</dd>
  6163. </dl>
  6164. <dl>
  6165. <dt>Digivolveeffect</dt>
  6166. <dd>-</dd>
  6167. </dl>
  6168. <dl>
  6169. <dt>Securityeffect</dt>
  6170. <dd>-</dd>
  6171. </dl>
  6172. <dl>
  6173. <dt>Notes</dt>
  6174. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6175. </div>
  6176. </div>
  6177. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6178. </div>
  6179. </div>
  6180. </li>
  6181. <liclass="image_lists_itemdatapage-3">
  6182. <aclass="card_img">
  6183. <imgsrc="../images/cardlist/card/BT7-061.png"alt="BT7-061Gigasmon"></a>
  6184. <divclass="popup">
  6185. <divclass="card_detailcard_detail_black">
  6186. <divclass="card_detail_inner">
  6187. <ulclass="cardinfo_head">
  6188. <liclass="cardno">BT7-061</li>
  6189. <li>C</li>
  6190. <liclass="cardtype">Digimon</li>
  6191. <liclass="cardlv">Lv.4</li>
  6192. </ul>
  6193. <divclass="card_name">Gigasmon</div>
  6194. <divclass="cardinfo_top">
  6195. <divclass="card_img">
  6196. <imgsrc="../images/cardlist/card/BT7-061.png"alt="BT7-061Gigasmon"></div>
  6197. <divclass="cardinfo_top_body">
  6198. <dl>
  6199. <dt>Form</dt>
  6200. <dd>Hybrid</dd>
  6201. </dl>
  6202. <dl>
  6203. <dt>Attribute</dt>
  6204. <dd>Variable</dd>
  6205. </dl>
  6206. <dl>
  6207. <dt>Type</dt>
  6208. <dd>Mineral</dd>
  6209. </dl>
  6210. <dl>
  6211. <dt>DP</dt>
  6212. <dd>6000</dl>
  6213. <dl>
  6214. <dt>PlayCost</dt>
  6215. <dd>6</dd>
  6216. </dl>
  6217. <dl>
  6218. <dt>DigivolveCost1</dt>
  6219. <dd>3fromLv.3</dd>
  6220. </dl>
  6221. <dl>
  6222. <dt>DigivolveCost2</dt>
  6223. <dd>-</dd>
  6224. </dl>
  6225. </div>
  6226. </div>
  6227. <divclass="cardinfo_bottom">
  6228. <dl>
  6229. <dt>Effect</dt>
  6230. <dd>You may digivolve this card from your hand onto one of your black Tamers as if the Tamer is a level 3 black Digimon. <Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6231. </dl>
  6232. <dl>
  6233. <dt>Digivolveeffect</dt>
  6234. <dd>-</dd>
  6235. </dl>
  6236. <dl>
  6237. <dt>Securityeffect</dt>
  6238. <dd>-</dd>
  6239. </dl>
  6240. <dl>
  6241. <dt>Notes</dt>
  6242. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6243. </div>
  6244. </div>
  6245. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6246. </div>
  6247. </div>
  6248. </li>
  6249. <liclass="image_lists_itemdatapage-3">
  6250. <aclass="card_img">
  6251. <imgsrc="../images/cardlist/card/BT7-062.png"alt="BT7-062Dorugamon"></a>
  6252. <divclass="popup">
  6253. <divclass="card_detailcard_detail_black">
  6254. <divclass="card_detail_inner">
  6255. <ulclass="cardinfo_head">
  6256. <liclass="cardno">BT7-062</li>
  6257. <li>C</li>
  6258. <liclass="cardtype">Digimon</li>
  6259. <liclass="cardlv">Lv.4</li>
  6260. </ul>
  6261. <divclass="card_name">Dorugamon</div>
  6262. <divclass="cardinfo_top">
  6263. <divclass="card_img">
  6264. <imgsrc="../images/cardlist/card/BT7-062.png"alt="BT7-062Dorugamon"></div>
  6265. <divclass="cardinfo_top_body">
  6266. <dl>
  6267. <dt>Form</dt>
  6268. <dd>Champion</dd>
  6269. </dl>
  6270. <dl>
  6271. <dt>Attribute</dt>
  6272. <dd>Data</dd>
  6273. </dl>
  6274. <dl>
  6275. <dt>Type</dt>
  6276. <dd>BeastDragon/X-Antibody</dd>
  6277. </dl>
  6278. <dl>
  6279. <dt>DP</dt>
  6280. <dd>5000</dl>
  6281. <dl>
  6282. <dt>PlayCost</dt>
  6283. <dd>6</dd>
  6284. </dl>
  6285. <dl>
  6286. <dt>DigivolveCost1</dt>
  6287. <dd>2fromLv.3</dd>
  6288. </dl>
  6289. <dl>
  6290. <dt>DigivolveCost2</dt>
  6291. <dd>-</dd>
  6292. </dl>
  6293. </div>
  6294. </div>
  6295. <divclass="cardinfo_bottom">
  6296. <dl>
  6297. <dt>Effect</dt>
  6298. <dd>[Opponent's Turn] While you have another Digimon in play with [X-Antibody] in its traits, or a card with [X-Antibody] in its traits is in this Digimon's digivolution cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6299. </dl>
  6300. <dl>
  6301. <dt>Digivolveeffect</dt>
  6302. <dd>[All Turns] While this Digimon has [X-Antibody] in its traits, it gets +1000 DP.</dd>
  6303. </dl>
  6304. <dl>
  6305. <dt>Securityeffect</dt>
  6306. <dd>-</dd>
  6307. </dl>
  6308. <dl>
  6309. <dt>Notes</dt>
  6310. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6311. </div>
  6312. </div>
  6313. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6314. </div>
  6315. </div>
  6316. </li>
  6317. <liclass="image_lists_itemdatapage-3">
  6318. <aclass="card_img">
  6319. <imgsrc="../images/cardlist/card/BT7-062_P1.png"alt="BT7-062Dorugamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6320. </a>
  6321. <divclass="popup">
  6322. <divclass="card_detailcard_detail_black">
  6323. <divclass="card_detail_inner">
  6324. <ulclass="cardinfo_head">
  6325. <liclass="cardno">BT7-062</li>
  6326. <li>C</li>
  6327. <liclass="cardtype">Digimon</li>
  6328. <liclass="cardlv">Lv.4</li>
  6329. <liclass="cardtypecardParallel">AlternativeArt</li>
  6330. </ul>
  6331. <divclass="card_name">Dorugamon</div>
  6332. <divclass="cardinfo_top">
  6333. <divclass="card_img">
  6334. <imgsrc="../images/cardlist/card/BT7-062_P1.png"alt="BT7-062Dorugamon"></div>
  6335. <divclass="cardinfo_top_body">
  6336. <dl>
  6337. <dt>Form</dt>
  6338. <dd>Champion</dd>
  6339. </dl>
  6340. <dl>
  6341. <dt>Attribute</dt>
  6342. <dd>Data</dd>
  6343. </dl>
  6344. <dl>
  6345. <dt>Type</dt>
  6346. <dd>BeastDragon/X-Antibody</dd>
  6347. </dl>
  6348. <dl>
  6349. <dt>DP</dt>
  6350. <dd>5000</dl>
  6351. <dl>
  6352. <dt>PlayCost</dt>
  6353. <dd>6</dd>
  6354. </dl>
  6355. <dl>
  6356. <dt>DigivolveCost1</dt>
  6357. <dd>2fromLv.3</dd>
  6358. </dl>
  6359. <dl>
  6360. <dt>DigivolveCost2</dt>
  6361. <dd>-</dd>
  6362. </dl>
  6363. </div>
  6364. </div>
  6365. <divclass="cardinfo_bottom">
  6366. <dl>
  6367. <dt>Effect</dt>
  6368. <dd>[Opponent's Turn] While you have another Digimon in play with [X-Antibody] in its traits, or a card with [X-Antibody] in its traits is in this Digimon's digivolution cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6369. </dl>
  6370. <dl>
  6371. <dt>Digivolveeffect</dt>
  6372. <dd>[All Turns] While this Digimon has [X-Antibody] in its traits, it gets +1000 DP.</dd>
  6373. </dl>
  6374. <dl>
  6375. <dt>Securityeffect</dt>
  6376. <dd>-</dd>
  6377. </dl>
  6378. <dl>
  6379. <dt>Notes</dt>
  6380. <dd>2022RegionalsParticipationCardSet2</dd></dl>
  6381. </div>
  6382. </div>
  6383. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6384. </div>
  6385. </div>
  6386. </li>
  6387. <liclass="image_lists_itemdatapage-3">
  6388. <aclass="card_img">
  6389. <imgsrc="../images/cardlist/card/BT7-062_P2.png"alt="BT7-062Dorugamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6390. </a>
  6391. <divclass="popup">
  6392. <divclass="card_detailcard_detail_black">
  6393. <divclass="card_detail_inner">
  6394. <ulclass="cardinfo_head">
  6395. <liclass="cardno">BT7-062</li>
  6396. <li>C</li>
  6397. <liclass="cardtype">Digimon</li>
  6398. <liclass="cardlv">Lv.4</li>
  6399. <liclass="cardtypecardParallel">AlternativeArt</li>
  6400. </ul>
  6401. <divclass="card_name">Dorugamon</div>
  6402. <divclass="cardinfo_top">
  6403. <divclass="card_img">
  6404. <imgsrc="../images/cardlist/card/BT7-062_P2.png"alt="BT7-062Dorugamon"></div>
  6405. <divclass="cardinfo_top_body">
  6406. <dl>
  6407. <dt>Form</dt>
  6408. <dd>Champion</dd>
  6409. </dl>
  6410. <dl>
  6411. <dt>Attribute</dt>
  6412. <dd>Data</dd>
  6413. </dl>
  6414. <dl>
  6415. <dt>Type</dt>
  6416. <dd>BeastDragon/X-Antibody</dd>
  6417. </dl>
  6418. <dl>
  6419. <dt>DP</dt>
  6420. <dd>5000</dl>
  6421. <dl>
  6422. <dt>PlayCost</dt>
  6423. <dd>6</dd>
  6424. </dl>
  6425. <dl>
  6426. <dt>DigivolveCost1</dt>
  6427. <dd>2fromLv.3</dd>
  6428. </dl>
  6429. <dl>
  6430. <dt>DigivolveCost2</dt>
  6431. <dd>-</dd>
  6432. </dl>
  6433. </div>
  6434. </div>
  6435. <divclass="cardinfo_bottom">
  6436. <dl>
  6437. <dt>Effect</dt>
  6438. <dd>[Opponent's Turn] While you have another Digimon in play with [X-Antibody] in its traits, or a card with [X-Antibody] in its traits is in this Digimon's digivolution cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6439. </dl>
  6440. <dl>
  6441. <dt>Digivolveeffect</dt>
  6442. <dd>[All Turns] While this Digimon has [X-Antibody] in its traits, it gets +1000 DP.</dd>
  6443. </dl>
  6444. <dl>
  6445. <dt>Securityeffect</dt>
  6446. <dd>-</dd>
  6447. </dl>
  6448. <dl>
  6449. <dt>Notes</dt>
  6450. <dd>2022RegionalsFinalistSet2</dd></dl>
  6451. </div>
  6452. </div>
  6453. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6454. </div>
  6455. </div>
  6456. </li>
  6457. <liclass="image_lists_itemdatapage-3">
  6458. <aclass="card_img">
  6459. <imgsrc="../images/cardlist/card/BT7-062_P3.png"alt="BT7-062Dorugamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6460. </a>
  6461. <divclass="popup">
  6462. <divclass="card_detailcard_detail_black">
  6463. <divclass="card_detail_inner">
  6464. <ulclass="cardinfo_head">
  6465. <liclass="cardno">BT7-062</li>
  6466. <li>C</li>
  6467. <liclass="cardtype">Digimon</li>
  6468. <liclass="cardlv">Lv.4</li>
  6469. <liclass="cardtypecardParallel">AlternativeArt</li>
  6470. </ul>
  6471. <divclass="card_name">Dorugamon</div>
  6472. <divclass="cardinfo_top">
  6473. <divclass="card_img">
  6474. <imgsrc="../images/cardlist/card/BT7-062_P3.png"alt="BT7-062Dorugamon"></div>
  6475. <divclass="cardinfo_top_body">
  6476. <dl>
  6477. <dt>Form</dt>
  6478. <dd>Champion</dd>
  6479. </dl>
  6480. <dl>
  6481. <dt>Attribute</dt>
  6482. <dd>Data</dd>
  6483. </dl>
  6484. <dl>
  6485. <dt>Type</dt>
  6486. <dd>BeastDragon/X-Antibody</dd>
  6487. </dl>
  6488. <dl>
  6489. <dt>DP</dt>
  6490. <dd>5000</dl>
  6491. <dl>
  6492. <dt>PlayCost</dt>
  6493. <dd>6</dd>
  6494. </dl>
  6495. <dl>
  6496. <dt>DigivolveCost1</dt>
  6497. <dd>2fromLv.3</dd>
  6498. </dl>
  6499. <dl>
  6500. <dt>DigivolveCost2</dt>
  6501. <dd>-</dd>
  6502. </dl>
  6503. </div>
  6504. </div>
  6505. <divclass="cardinfo_bottom">
  6506. <dl>
  6507. <dt>Effect</dt>
  6508. <dd>[Opponent's Turn] While you have another Digimon in play with [X-Antibody] in its traits, or a card with [X-Antibody] in its traits is in this Digimon's digivolution cards, this Digimon gains <Blocker>. (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6509. </dl>
  6510. <dl>
  6511. <dt>Digivolveeffect</dt>
  6512. <dd>[All Turns] While this Digimon has [X-Antibody] in its traits, it gets +1000 DP.</dd>
  6513. </dl>
  6514. <dl>
  6515. <dt>Securityeffect</dt>
  6516. <dd>-</dd>
  6517. </dl>
  6518. <dl>
  6519. <dt>Notes</dt>
  6520. <dd>2022RegionalsChampionCardSet2</dd></dl>
  6521. </div>
  6522. </div>
  6523. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6524. </div>
  6525. </div>
  6526. </li>
  6527. <liclass="image_lists_itemdatapage-3">
  6528. <aclass="card_img">
  6529. <imgsrc="../images/cardlist/card/BT7-063.png"alt="BT7-063DarkKnightmon"></a>
  6530. <divclass="popup">
  6531. <divclass="card_detailcard_detail_black">
  6532. <divclass="card_detail_inner">
  6533. <ulclass="cardinfo_head">
  6534. <liclass="cardno">BT7-063</li>
  6535. <li>SR</li>
  6536. <liclass="cardtype">Digimon</li>
  6537. <liclass="cardlv">Lv.5</li>
  6538. </ul>
  6539. <divclass="card_name">DarkKnightmon</div>
  6540. <divclass="cardinfo_top">
  6541. <divclass="card_img">
  6542. <imgsrc="../images/cardlist/card/BT7-063.png"alt="BT7-063DarkKnightmon"></div>
  6543. <divclass="cardinfo_top_body">
  6544. <dl>
  6545. <dt>Form</dt>
  6546. <dd>Ultimate</dd>
  6547. </dl>
  6548. <dl>
  6549. <dt>Attribute</dt>
  6550. <dd>Virus</dd>
  6551. </dl>
  6552. <dl>
  6553. <dt>Type</dt>
  6554. <dd>DarkKnight</dd>
  6555. </dl>
  6556. <dl>
  6557. <dt>DP</dt>
  6558. <dd>7000</dl>
  6559. <dl>
  6560. <dt>PlayCost</dt>
  6561. <dd>7</dd>
  6562. </dl>
  6563. <dl>
  6564. <dt>DigivolveCost1</dt>
  6565. <dd>3fromLv.4</dd>
  6566. </dl>
  6567. <dl>
  6568. <dt>DigivolveCost2</dt>
  6569. <dd>-</dd>
  6570. </dl>
  6571. </div>
  6572. </div>
  6573. <divclass="cardinfo_bottom">
  6574. <dl>
  6575. <dt>Effect</dt>
  6576. <dd>[On Play] You may place 1 [SkullKnightmon] and/or 1 [DeadlyAxemon] from your hand and/or trash in this Digimon's digivolution cards in any order. [All Turns] When this Digimon is deleted, you may play 1 [SkullKnightmon] and/or 1 [DeadlyAxemon] from this Digimon's digivolution cards suspended without paying their memory costs.</dd>
  6577. </dl>
  6578. <dl>
  6579. <dt>Digivolveeffect</dt>
  6580. <dd>-</dd>
  6581. </dl>
  6582. <dl>
  6583. <dt>Securityeffect</dt>
  6584. <dd>-</dd>
  6585. </dl>
  6586. <dl>
  6587. <dt>Notes</dt>
  6588. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6589. </div>
  6590. </div>
  6591. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6592. </div>
  6593. </div>
  6594. </li>
  6595. <liclass="image_lists_itemdatapage-3">
  6596. <aclass="card_img">
  6597. <imgsrc="../images/cardlist/card/BT7-063_P1.png"alt="BT7-063DarkKnightmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6598. </a>
  6599. <divclass="popup">
  6600. <divclass="card_detailcard_detail_black">
  6601. <divclass="card_detail_inner">
  6602. <ulclass="cardinfo_head">
  6603. <liclass="cardno">BT7-063</li>
  6604. <li>SR</li>
  6605. <liclass="cardtype">Digimon</li>
  6606. <liclass="cardlv">Lv.5</li>
  6607. <liclass="cardtypecardParallel">AlternativeArt</li>
  6608. </ul>
  6609. <divclass="card_name">DarkKnightmon</div>
  6610. <divclass="cardinfo_top">
  6611. <divclass="card_img">
  6612. <imgsrc="../images/cardlist/card/BT7-063_P1.png"alt="BT7-063DarkKnightmon"></div>
  6613. <divclass="cardinfo_top_body">
  6614. <dl>
  6615. <dt>Form</dt>
  6616. <dd>Ultimate</dd>
  6617. </dl>
  6618. <dl>
  6619. <dt>Attribute</dt>
  6620. <dd>Virus</dd>
  6621. </dl>
  6622. <dl>
  6623. <dt>Type</dt>
  6624. <dd>DarkKnight</dd>
  6625. </dl>
  6626. <dl>
  6627. <dt>DP</dt>
  6628. <dd>7000</dl>
  6629. <dl>
  6630. <dt>PlayCost</dt>
  6631. <dd>7</dd>
  6632. </dl>
  6633. <dl>
  6634. <dt>DigivolveCost1</dt>
  6635. <dd>3fromLv.4</dd>
  6636. </dl>
  6637. <dl>
  6638. <dt>DigivolveCost2</dt>
  6639. <dd>-</dd>
  6640. </dl>
  6641. </div>
  6642. </div>
  6643. <divclass="cardinfo_bottom">
  6644. <dl>
  6645. <dt>Effect</dt>
  6646. <dd>[On Play] You may place 1 [SkullKnightmon] and/or 1 [DeadlyAxemon] from your hand or trash under this Digimon in its digivolution cards in any order. [All Turns] When this Digimon is deleted, you may play 1 [SkullKnightmon] and/or [DeadlyAxemon] from this Digimon's digivolution cards suspended without paying their memory costs.</dd>
  6647. </dl>
  6648. <dl>
  6649. <dt>Digivolveeffect</dt>
  6650. <dd>-</dd>
  6651. </dl>
  6652. <dl>
  6653. <dt>Securityeffect</dt>
  6654. <dd>-</dd>
  6655. </dl>
  6656. <dl>
  6657. <dt>Notes</dt>
  6658. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6659. </div>
  6660. </div>
  6661. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6662. </div>
  6663. </div>
  6664. </li>
  6665. <liclass="image_lists_itemdatapage-3">
  6666. <aclass="card_img">
  6667. <imgsrc="../images/cardlist/card/BT7-064.png"alt="BT7-064DoruGreymon"></a>
  6668. <divclass="popup">
  6669. <divclass="card_detailcard_detail_black">
  6670. <divclass="card_detail_inner">
  6671. <ulclass="cardinfo_head">
  6672. <liclass="cardno">BT7-064</li>
  6673. <li>U</li>
  6674. <liclass="cardtype">Digimon</li>
  6675. <liclass="cardlv">Lv.5</li>
  6676. </ul>
  6677. <divclass="card_name">DoruGreymon</div>
  6678. <divclass="cardinfo_top">
  6679. <divclass="card_img">
  6680. <imgsrc="../images/cardlist/card/BT7-064.png"alt="BT7-064DoruGreymon"></div>
  6681. <divclass="cardinfo_top_body">
  6682. <dl>
  6683. <dt>Form</dt>
  6684. <dd>Ultimate</dd>
  6685. </dl>
  6686. <dl>
  6687. <dt>Attribute</dt>
  6688. <dd>Data</dd>
  6689. </dl>
  6690. <dl>
  6691. <dt>Type</dt>
  6692. <dd>BeastDragon/X-Antibody</dd>
  6693. </dl>
  6694. <dl>
  6695. <dt>DP</dt>
  6696. <dd>7000</dl>
  6697. <dl>
  6698. <dt>PlayCost</dt>
  6699. <dd>8</dd>
  6700. </dl>
  6701. <dl>
  6702. <dt>DigivolveCost1</dt>
  6703. <dd>3fromLv.4</dd>
  6704. </dl>
  6705. <dl>
  6706. <dt>DigivolveCost2</dt>
  6707. <dd>-</dd>
  6708. </dl>
  6709. </div>
  6710. </div>
  6711. <divclass="cardinfo_bottom">
  6712. <dl>
  6713. <dt>Effect</dt>
  6714. <dd>[When Digivolving] You may place 1 black card with [X-Antibody] in its traits from your hand at the bottom of this Digimon's digivolution cards to prevent effects from deleting it or reducing its DP until the end of your opponent's next turn.</dd>
  6715. </dl>
  6716. <dl>
  6717. <dt>Digivolveeffect</dt>
  6718. <dd>[Your Turn] While this Digimon has [X-Antibody] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  6719. </dl>
  6720. <dl>
  6721. <dt>Securityeffect</dt>
  6722. <dd>-</dd>
  6723. </dl>
  6724. <dl>
  6725. <dt>Notes</dt>
  6726. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6727. </div>
  6728. </div>
  6729. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6730. </div>
  6731. </div>
  6732. </li>
  6733. <liclass="image_lists_itemdatapage-3">
  6734. <aclass="card_img">
  6735. <imgsrc="../images/cardlist/card/BT7-064_P1.png"alt="BT7-064DoruGreymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6736. </a>
  6737. <divclass="popup">
  6738. <divclass="card_detailcard_detail_black">
  6739. <divclass="card_detail_inner">
  6740. <ulclass="cardinfo_head">
  6741. <liclass="cardno">BT7-064</li>
  6742. <li>U</li>
  6743. <liclass="cardtype">Digimon</li>
  6744. <liclass="cardlv">Lv.5</li>
  6745. <liclass="cardtypecardParallel">AlternativeArt</li>
  6746. </ul>
  6747. <divclass="card_name">DoruGreymon</div>
  6748. <divclass="cardinfo_top">
  6749. <divclass="card_img">
  6750. <imgsrc="../images/cardlist/card/BT7-064_P1.png"alt="BT7-064DoruGreymon"></div>
  6751. <divclass="cardinfo_top_body">
  6752. <dl>
  6753. <dt>Form</dt>
  6754. <dd>Ultimate</dd>
  6755. </dl>
  6756. <dl>
  6757. <dt>Attribute</dt>
  6758. <dd>Data</dd>
  6759. </dl>
  6760. <dl>
  6761. <dt>Type</dt>
  6762. <dd>BeastDragon/X-Antibody</dd>
  6763. </dl>
  6764. <dl>
  6765. <dt>DP</dt>
  6766. <dd>7000</dl>
  6767. <dl>
  6768. <dt>PlayCost</dt>
  6769. <dd>8</dd>
  6770. </dl>
  6771. <dl>
  6772. <dt>DigivolveCost1</dt>
  6773. <dd>3fromLv.4</dd>
  6774. </dl>
  6775. <dl>
  6776. <dt>DigivolveCost2</dt>
  6777. <dd>-</dd>
  6778. </dl>
  6779. </div>
  6780. </div>
  6781. <divclass="cardinfo_bottom">
  6782. <dl>
  6783. <dt>Effect</dt>
  6784. <dd>[When Digivolving] You may place 1 black card with [X-Antibody] in its traits from your hand at the bottom of this Digimon's digivolution cards to prevent effects from deleting it or reducing its DP until the end of your opponent's next turn.</dd>
  6785. </dl>
  6786. <dl>
  6787. <dt>Digivolveeffect</dt>
  6788. <dd>[Your Turn] While this Digimon has [X-Antibody] in its traits, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  6789. </dl>
  6790. <dl>
  6791. <dt>Securityeffect</dt>
  6792. <dd>-</dd>
  6793. </dl>
  6794. <dl>
  6795. <dt>Notes</dt>
  6796. <dd>WinnerPack-XrosEncounter-</dd></dl>
  6797. </div>
  6798. </div>
  6799. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6800. </div>
  6801. </div>
  6802. </li>
  6803. <liclass="image_lists_itemdatapage-3">
  6804. <aclass="card_img">
  6805. <imgsrc="../images/cardlist/card/BT7-065.png"alt="BT7-065Dorugoramon"></a>
  6806. <divclass="popup">
  6807. <divclass="card_detailcard_detail_black">
  6808. <divclass="card_detail_inner">
  6809. <ulclass="cardinfo_head">
  6810. <liclass="cardno">BT7-065</li>
  6811. <li>SR</li>
  6812. <liclass="cardtype">Digimon</li>
  6813. <liclass="cardlv">Lv.6</li>
  6814. </ul>
  6815. <divclass="card_name">Dorugoramon</div>
  6816. <divclass="cardinfo_top">
  6817. <divclass="card_img">
  6818. <imgsrc="../images/cardlist/card/BT7-065.png"alt="BT7-065Dorugoramon"></div>
  6819. <divclass="cardinfo_top_body">
  6820. <dl>
  6821. <dt>Form</dt>
  6822. <dd>Mega</dd>
  6823. </dl>
  6824. <dl>
  6825. <dt>Attribute</dt>
  6826. <dd>Data</dd>
  6827. </dl>
  6828. <dl>
  6829. <dt>Type</dt>
  6830. <dd>BeastDragon/X-Antibody</dd>
  6831. </dl>
  6832. <dl>
  6833. <dt>DP</dt>
  6834. <dd>11000</dl>
  6835. <dl>
  6836. <dt>PlayCost</dt>
  6837. <dd>11</dd>
  6838. </dl>
  6839. <dl>
  6840. <dt>DigivolveCost1</dt>
  6841. <dd>3fromLv.5</dd>
  6842. </dl>
  6843. <dl>
  6844. <dt>DigivolveCost2</dt>
  6845. <dd>-</dd>
  6846. </dl>
  6847. </div>
  6848. </div>
  6849. <divclass="cardinfo_bottom">
  6850. <dl>
  6851. <dt>Effect</dt>
  6852. <dd>[Your Turn] For each card with [X-Antibody] in its traits in this Digimon's digivolution cards, this Digimon gets +1000 DP. [When Attacking][Once Per Turn] You may place 1 card with [X-Antibody] in its traits from your hand at the bottom of this Digimon's digivolution cards to delete up to 2 of your opponent's Digimon with play costs less than or equal to this Digimon's digivolution cards.</dd>
  6853. </dl>
  6854. <dl>
  6855. <dt>Digivolveeffect</dt>
  6856. <dd>-</dd>
  6857. </dl>
  6858. <dl>
  6859. <dt>Securityeffect</dt>
  6860. <dd>-</dd>
  6861. </dl>
  6862. <dl>
  6863. <dt>Notes</dt>
  6864. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6865. </div>
  6866. </div>
  6867. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6868. </div>
  6869. </div>
  6870. </li>
  6871. <liclass="image_lists_itemdatapage-3">
  6872. <aclass="card_img">
  6873. <imgsrc="../images/cardlist/card/BT7-065_P1.png"alt="BT7-065Dorugoramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6874. </a>
  6875. <divclass="popup">
  6876. <divclass="card_detailcard_detail_black">
  6877. <divclass="card_detail_inner">
  6878. <ulclass="cardinfo_head">
  6879. <liclass="cardno">BT7-065</li>
  6880. <li>SR</li>
  6881. <liclass="cardtype">Digimon</li>
  6882. <liclass="cardlv">Lv.6</li>
  6883. <liclass="cardtypecardParallel">AlternativeArt</li>
  6884. </ul>
  6885. <divclass="card_name">Dorugoramon</div>
  6886. <divclass="cardinfo_top">
  6887. <divclass="card_img">
  6888. <imgsrc="../images/cardlist/card/BT7-065_P1.png"alt="BT7-065Dorugoramon"></div>
  6889. <divclass="cardinfo_top_body">
  6890. <dl>
  6891. <dt>Form</dt>
  6892. <dd>Mega</dd>
  6893. </dl>
  6894. <dl>
  6895. <dt>Attribute</dt>
  6896. <dd>Data</dd>
  6897. </dl>
  6898. <dl>
  6899. <dt>Type</dt>
  6900. <dd>BeastDragon/X-Antibody</dd>
  6901. </dl>
  6902. <dl>
  6903. <dt>DP</dt>
  6904. <dd>11000</dl>
  6905. <dl>
  6906. <dt>PlayCost</dt>
  6907. <dd>11</dd>
  6908. </dl>
  6909. <dl>
  6910. <dt>DigivolveCost1</dt>
  6911. <dd>3fromLv.5</dd>
  6912. </dl>
  6913. <dl>
  6914. <dt>DigivolveCost2</dt>
  6915. <dd>-</dd>
  6916. </dl>
  6917. </div>
  6918. </div>
  6919. <divclass="cardinfo_bottom">
  6920. <dl>
  6921. <dt>Effect</dt>
  6922. <dd>[Your Turn] For each card with [X-Antibody] in its traits in this Digimon's digivolution cards, this Digimon gets +1000 DP. [When Attacking][Once Per Turn] You may place 1 card with [X-Antibody] in its traits from your hand at the bottom of this Digimon's digivolution cards to delete up to 2 of your opponent's Digimon with play costs less than or equal to this Digimon's digivolution cards.</dd>
  6923. </dl>
  6924. <dl>
  6925. <dt>Digivolveeffect</dt>
  6926. <dd>-</dd>
  6927. </dl>
  6928. <dl>
  6929. <dt>Securityeffect</dt>
  6930. <dd>-</dd>
  6931. </dl>
  6932. <dl>
  6933. <dt>Notes</dt>
  6934. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  6935. </div>
  6936. </div>
  6937. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6938. </div>
  6939. </div>
  6940. </li>
  6941. <liclass="image_lists_itemdatapage-3">
  6942. <aclass="card_img">
  6943. <imgsrc="../images/cardlist/card/BT7-066.png"alt="BT7-066AncientVolcanomon"></a>
  6944. <divclass="popup">
  6945. <divclass="card_detailcard_detail_black">
  6946. <divclass="card_detail_inner">
  6947. <ulclass="cardinfo_head">
  6948. <liclass="cardno">BT7-066</li>
  6949. <li>U</li>
  6950. <liclass="cardtype">Digimon</li>
  6951. <liclass="cardlv">Lv.6</li>
  6952. </ul>
  6953. <divclass="card_name">AncientVolcanomon</div>
  6954. <divclass="cardinfo_top">
  6955. <divclass="card_img">
  6956. <imgsrc="../images/cardlist/card/BT7-066.png"alt="BT7-066AncientVolcanomon"></div>
  6957. <divclass="cardinfo_top_body">
  6958. <dl>
  6959. <dt>Form</dt>
  6960. <dd>Mega</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>Attribute</dt>
  6964. <dd>Virus</dd>
  6965. </dl>
  6966. <dl>
  6967. <dt>Type</dt>
  6968. <dd>AncientMineral/TenWarriors</dd>
  6969. </dl>
  6970. <dl>
  6971. <dt>DP</dt>
  6972. <dd>13000</dl>
  6973. <dl>
  6974. <dt>PlayCost</dt>
  6975. <dd>13</dd>
  6976. </dl>
  6977. <dl>
  6978. <dt>DigivolveCost1</dt>
  6979. <dd>5fromLv.5</dd>
  6980. </dl>
  6981. <dl>
  6982. <dt>DigivolveCost2</dt>
  6983. <dd>-</dd>
  6984. </dl>
  6985. </div>
  6986. </div>
  6987. <divclass="cardinfo_bottom">
  6988. <dl>
  6989. <dt>Effect</dt>
  6990. <dd>[When Digivolving] <De-Digivolve 3> 1 of your opponent's Digimon. (Trash up to 3 cards from the top of one of your opponent's Digimon. If it has no digivolution cards, or becomes a level 3 Digimon, you can't trash any more cards.) [On Deletion] You may play 1 black level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  6991. </dl>
  6992. <dl>
  6993. <dt>Digivolveeffect</dt>
  6994. <dd>-</dd>
  6995. </dl>
  6996. <dl>
  6997. <dt>Securityeffect</dt>
  6998. <dd>-</dd>
  6999. </dl>
  7000. <dl>
  7001. <dt>Notes</dt>
  7002. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7003. </div>
  7004. </div>
  7005. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7006. </div>
  7007. </div>
  7008. </li>
  7009. <liclass="image_lists_itemdatapage-3">
  7010. <aclass="card_img">
  7011. <imgsrc="../images/cardlist/card/BT7-067.png"alt="BT7-067Ghostmon"></a>
  7012. <divclass="popup">
  7013. <divclass="card_detailcard_detail_purple">
  7014. <divclass="card_detail_inner">
  7015. <ulclass="cardinfo_head">
  7016. <liclass="cardno">BT7-067</li>
  7017. <li>C</li>
  7018. <liclass="cardtype">Digimon</li>
  7019. <liclass="cardlv">Lv.3</li>
  7020. </ul>
  7021. <divclass="card_name">Ghostmon</div>
  7022. <divclass="cardinfo_top">
  7023. <divclass="card_img">
  7024. <imgsrc="../images/cardlist/card/BT7-067.png"alt="BT7-067Ghostmon"></div>
  7025. <divclass="cardinfo_top_body">
  7026. <dl>
  7027. <dt>Form</dt>
  7028. <dd>Rookie</dd>
  7029. </dl>
  7030. <dl>
  7031. <dt>Attribute</dt>
  7032. <dd>Data</dd>
  7033. </dl>
  7034. <dl>
  7035. <dt>Type</dt>
  7036. <dd>Ghost</dd>
  7037. </dl>
  7038. <dl>
  7039. <dt>DP</dt>
  7040. <dd>5000</dl>
  7041. <dl>
  7042. <dt>PlayCost</dt>
  7043. <dd>3</dd>
  7044. </dl>
  7045. <dl>
  7046. <dt>DigivolveCost1</dt>
  7047. <dd>1fromLv.2</dd>
  7048. </dl>
  7049. <dl>
  7050. <dt>DigivolveCost2</dt>
  7051. <dd>-</dd>
  7052. </dl>
  7053. </div>
  7054. </div>
  7055. <divclass="cardinfo_bottom">
  7056. <dl>
  7057. <dt>Effect</dt>
  7058. <dd>-</dd>
  7059. </dl>
  7060. <dl>
  7061. <dt>Digivolveeffect</dt>
  7062. <dd>-</dd>
  7063. </dl>
  7064. <dl>
  7065. <dt>Securityeffect</dt>
  7066. <dd>-</dd>
  7067. </dl>
  7068. <dl>
  7069. <dt>Notes</dt>
  7070. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7071. </div>
  7072. </div>
  7073. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7074. </div>
  7075. </div>
  7076. </li>
  7077. <liclass="image_lists_itemdatapage-3">
  7078. <aclass="card_img">
  7079. <imgsrc="../images/cardlist/card/BT7-068.png"alt="BT7-068Lopmon"></a>
  7080. <divclass="popup">
  7081. <divclass="card_detailcard_detail_purple">
  7082. <divclass="card_detail_inner">
  7083. <ulclass="cardinfo_head">
  7084. <liclass="cardno">BT7-068</li>
  7085. <li>R</li>
  7086. <liclass="cardtype">Digimon</li>
  7087. <liclass="cardlv">Lv.3</li>
  7088. </ul>
  7089. <divclass="card_name">Lopmon</div>
  7090. <divclass="cardinfo_top">
  7091. <divclass="card_img">
  7092. <imgsrc="../images/cardlist/card/BT7-068.png"alt="BT7-068Lopmon"></div>
  7093. <divclass="cardinfo_top_body">
  7094. <dl>
  7095. <dt>Form</dt>
  7096. <dd>Rookie</dd>
  7097. </dl>
  7098. <dl>
  7099. <dt>Attribute</dt>
  7100. <dd>Data</dd>
  7101. </dl>
  7102. <dl>
  7103. <dt>Type</dt>
  7104. <dd>Beast</dd>
  7105. </dl>
  7106. <dl>
  7107. <dt>DP</dt>
  7108. <dd>2000</dl>
  7109. <dl>
  7110. <dt>PlayCost</dt>
  7111. <dd>3</dd>
  7112. </dl>
  7113. <dl>
  7114. <dt>DigivolveCost1</dt>
  7115. <dd>0fromLv.2</dd>
  7116. </dl>
  7117. <dl>
  7118. <dt>DigivolveCost2</dt>
  7119. <dd>-</dd>
  7120. </dl>
  7121. </div>
  7122. </div>
  7123. <divclass="cardinfo_bottom">
  7124. <dl>
  7125. <dt>Effect</dt>
  7126. <dd>-</dd>
  7127. </dl>
  7128. <dl>
  7129. <dt>Digivolveeffect</dt>
  7130. <dd>[Your Turn][Once Per Turn] When you play a Tamer, gain 1 memory.</dd>
  7131. </dl>
  7132. <dl>
  7133. <dt>Securityeffect</dt>
  7134. <dd>-</dd>
  7135. </dl>
  7136. <dl>
  7137. <dt>Notes</dt>
  7138. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7139. </div>
  7140. </div>
  7141. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7142. </div>
  7143. </div>
  7144. </li>
  7145. <liclass="image_lists_itemdatapage-3">
  7146. <aclass="card_img">
  7147. <imgsrc="../images/cardlist/card/BT7-068_P1.png"alt="BT7-068Lopmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7148. </a>
  7149. <divclass="popup">
  7150. <divclass="card_detailcard_detail_purple">
  7151. <divclass="card_detail_inner">
  7152. <ulclass="cardinfo_head">
  7153. <liclass="cardno">BT7-068</li>
  7154. <li>R</li>
  7155. <liclass="cardtype">Digimon</li>
  7156. <liclass="cardlv">Lv.3</li>
  7157. <liclass="cardtypecardParallel">AlternativeArt</li>
  7158. </ul>
  7159. <divclass="card_name">Lopmon</div>
  7160. <divclass="cardinfo_top">
  7161. <divclass="card_img">
  7162. <imgsrc="../images/cardlist/card/BT7-068_P1.png"alt="BT7-068Lopmon"></div>
  7163. <divclass="cardinfo_top_body">
  7164. <dl>
  7165. <dt>Form</dt>
  7166. <dd>Rookie</dd>
  7167. </dl>
  7168. <dl>
  7169. <dt>Attribute</dt>
  7170. <dd>Data</dd>
  7171. </dl>
  7172. <dl>
  7173. <dt>Type</dt>
  7174. <dd>Beast</dd>
  7175. </dl>
  7176. <dl>
  7177. <dt>DP</dt>
  7178. <dd>2000</dl>
  7179. <dl>
  7180. <dt>PlayCost</dt>
  7181. <dd>3</dd>
  7182. </dl>
  7183. <dl>
  7184. <dt>DigivolveCost1</dt>
  7185. <dd>0fromLv.2</dd>
  7186. </dl>
  7187. <dl>
  7188. <dt>DigivolveCost2</dt>
  7189. <dd>-</dd>
  7190. </dl>
  7191. </div>
  7192. </div>
  7193. <divclass="cardinfo_bottom">
  7194. <dl>
  7195. <dt>Effect</dt>
  7196. <dd>-</dd>
  7197. </dl>
  7198. <dl>
  7199. <dt>Digivolveeffect</dt>
  7200. <dd>[Your Turn][Once Per Turn] When you play a Tamer, gain 1 memory.</dd>
  7201. </dl>
  7202. <dl>
  7203. <dt>Securityeffect</dt>
  7204. <dd>-</dd>
  7205. </dl>
  7206. <dl>
  7207. <dt>Notes</dt>
  7208. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7209. </div>
  7210. </div>
  7211. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7212. </div>
  7213. </div>
  7214. </li>
  7215. <liclass="image_lists_itemdatapage-3">
  7216. <aclass="card_img">
  7217. <imgsrc="../images/cardlist/card/BT7-069.png"alt="BT7-069Eyesmon:ScatterMode"></a>
  7218. <divclass="popup">
  7219. <divclass="card_detailcard_detail_purple">
  7220. <divclass="card_detail_inner">
  7221. <ulclass="cardinfo_head">
  7222. <liclass="cardno">BT7-069</li>
  7223. <li>C</li>
  7224. <liclass="cardtype">Digimon</li>
  7225. <liclass="cardlv">Lv.4</li>
  7226. </ul>
  7227. <divclass="card_name">Eyesmon:ScatterMode</div>
  7228. <divclass="cardinfo_top">
  7229. <divclass="card_img">
  7230. <imgsrc="../images/cardlist/card/BT7-069.png"alt="BT7-069Eyesmon:ScatterMode"></div>
  7231. <divclass="cardinfo_top_body">
  7232. <dl>
  7233. <dt>Form</dt>
  7234. <dd>Champion</dd>
  7235. </dl>
  7236. <dl>
  7237. <dt>Attribute</dt>
  7238. <dd>Virus</dd>
  7239. </dl>
  7240. <dl>
  7241. <dt>Type</dt>
  7242. <dd>DarkDragon</dd>
  7243. </dl>
  7244. <dl>
  7245. <dt>DP</dt>
  7246. <dd>4000</dl>
  7247. <dl>
  7248. <dt>PlayCost</dt>
  7249. <dd>4</dd>
  7250. </dl>
  7251. <dl>
  7252. <dt>DigivolveCost1</dt>
  7253. <dd>2fromLv.3</dd>
  7254. </dl>
  7255. <dl>
  7256. <dt>DigivolveCost2</dt>
  7257. <dd>-</dd>
  7258. </dl>
  7259. </div>
  7260. </div>
  7261. <divclass="cardinfo_bottom">
  7262. <dl>
  7263. <dt>Effect</dt>
  7264. <dd>[On Deletion] <Draw 3>. (Draw 3 cards from your deck.) Then, trash 2 cards in your hand.</dd>
  7265. </dl>
  7266. <dl>
  7267. <dt>Digivolveeffect</dt>
  7268. <dd>-</dd>
  7269. </dl>
  7270. <dl>
  7271. <dt>Securityeffect</dt>
  7272. <dd>-</dd>
  7273. </dl>
  7274. <dl>
  7275. <dt>Notes</dt>
  7276. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7277. </div>
  7278. </div>
  7279. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7280. </div>
  7281. </div>
  7282. </li>
  7283. <liclass="image_lists_itemdatapage-3">
  7284. <aclass="card_img">
  7285. <imgsrc="../images/cardlist/card/BT7-069_P1.png"alt="BT7-069Eyesmon:ScatterMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7286. </a>
  7287. <divclass="popup">
  7288. <divclass="card_detailcard_detail_purple">
  7289. <divclass="card_detail_inner">
  7290. <ulclass="cardinfo_head">
  7291. <liclass="cardno">BT7-069</li>
  7292. <li>C</li>
  7293. <liclass="cardtype">Digimon</li>
  7294. <liclass="cardlv">Lv.4</li>
  7295. <liclass="cardtypecardParallel">AlternativeArt</li>
  7296. </ul>
  7297. <divclass="card_name">Eyesmon:ScatterMode</div>
  7298. <divclass="cardinfo_top">
  7299. <divclass="card_img">
  7300. <imgsrc="../images/cardlist/card/BT7-069_P1.png"alt="BT7-069Eyesmon:ScatterMode"></div>
  7301. <divclass="cardinfo_top_body">
  7302. <dl>
  7303. <dt>Form</dt>
  7304. <dd>Champion</dd>
  7305. </dl>
  7306. <dl>
  7307. <dt>Attribute</dt>
  7308. <dd>Virus</dd>
  7309. </dl>
  7310. <dl>
  7311. <dt>Type</dt>
  7312. <dd>DarkDragon</dd>
  7313. </dl>
  7314. <dl>
  7315. <dt>DP</dt>
  7316. <dd>4000</dl>
  7317. <dl>
  7318. <dt>PlayCost</dt>
  7319. <dd>4</dd>
  7320. </dl>
  7321. <dl>
  7322. <dt>DigivolveCost1</dt>
  7323. <dd>2fromLv.3</dd>
  7324. </dl>
  7325. <dl>
  7326. <dt>DigivolveCost2</dt>
  7327. <dd>-</dd>
  7328. </dl>
  7329. </div>
  7330. </div>
  7331. <divclass="cardinfo_bottom">
  7332. <dl>
  7333. <dt>Effect</dt>
  7334. <dd>[On Deletion] <Draw 3>. (Draw 3 cards from your deck.) Then, trash 2 cards in your hand.</dd>
  7335. </dl>
  7336. <dl>
  7337. <dt>Digivolveeffect</dt>
  7338. <dd>-</dd>
  7339. </dl>
  7340. <dl>
  7341. <dt>Securityeffect</dt>
  7342. <dd>-</dd>
  7343. </dl>
  7344. <dl>
  7345. <dt>Notes</dt>
  7346. <dd>StoreChampionship2022ParticipantPack</dd></dl>
  7347. </div>
  7348. </div>
  7349. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7350. </div>
  7351. </div>
  7352. </li>
  7353. <liclass="image_lists_itemdatapage-3">
  7354. <aclass="card_img">
  7355. <imgsrc="../images/cardlist/card/BT7-069_P2.png"alt="BT7-069Eyesmon:ScatterMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7356. </a>
  7357. <divclass="popup">
  7358. <divclass="card_detailcard_detail_purple">
  7359. <divclass="card_detail_inner">
  7360. <ulclass="cardinfo_head">
  7361. <liclass="cardno">BT7-069</li>
  7362. <li>C</li>
  7363. <liclass="cardtype">Digimon</li>
  7364. <liclass="cardlv">Lv.4</li>
  7365. <liclass="cardtypecardParallel">AlternativeArt</li>
  7366. </ul>
  7367. <divclass="card_name">Eyesmon:ScatterMode</div>
  7368. <divclass="cardinfo_top">
  7369. <divclass="card_img">
  7370. <imgsrc="../images/cardlist/card/BT7-069_P2.png"alt="BT7-069Eyesmon:ScatterMode"></div>
  7371. <divclass="cardinfo_top_body">
  7372. <dl>
  7373. <dt>Form</dt>
  7374. <dd>Champion</dd>
  7375. </dl>
  7376. <dl>
  7377. <dt>Attribute</dt>
  7378. <dd>Virus</dd>
  7379. </dl>
  7380. <dl>
  7381. <dt>Type</dt>
  7382. <dd>DarkDragon</dd>
  7383. </dl>
  7384. <dl>
  7385. <dt>DP</dt>
  7386. <dd>4000</dl>
  7387. <dl>
  7388. <dt>PlayCost</dt>
  7389. <dd>4</dd>
  7390. </dl>
  7391. <dl>
  7392. <dt>DigivolveCost1</dt>
  7393. <dd>2fromLv.3</dd>
  7394. </dl>
  7395. <dl>
  7396. <dt>DigivolveCost2</dt>
  7397. <dd>-</dd>
  7398. </dl>
  7399. </div>
  7400. </div>
  7401. <divclass="cardinfo_bottom">
  7402. <dl>
  7403. <dt>Effect</dt>
  7404. <dd>[On Deletion] <Draw 3>. (Draw 3 cards from your deck.) Then, trash 2 cards in your hand.</dd>
  7405. </dl>
  7406. <dl>
  7407. <dt>Digivolveeffect</dt>
  7408. <dd>-</dd>
  7409. </dl>
  7410. <dl>
  7411. <dt>Securityeffect</dt>
  7412. <dd>-</dd>
  7413. </dl>
  7414. <dl>
  7415. <dt>Notes</dt>
  7416. <dd>StoreChampionship2022ChampionCardSet</dd></dl>
  7417. </div>
  7418. </div>
  7419. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7420. </div>
  7421. </div>
  7422. </li>
  7423. <liclass="image_lists_itemdatapage-3">
  7424. <aclass="card_img">
  7425. <imgsrc="../images/cardlist/card/BT7-070.png"alt="BT7-070Wendigomon"></a>
  7426. <divclass="popup">
  7427. <divclass="card_detailcard_detail_purple">
  7428. <divclass="card_detail_inner">
  7429. <ulclass="cardinfo_head">
  7430. <liclass="cardno">BT7-070</li>
  7431. <li>C</li>
  7432. <liclass="cardtype">Digimon</li>
  7433. <liclass="cardlv">Lv.4</li>
  7434. </ul>
  7435. <divclass="card_name">Wendigomon</div>
  7436. <divclass="cardinfo_top">
  7437. <divclass="card_img">
  7438. <imgsrc="../images/cardlist/card/BT7-070.png"alt="BT7-070Wendigomon"></div>
  7439. <divclass="cardinfo_top_body">
  7440. <dl>
  7441. <dt>Form</dt>
  7442. <dd>Champion</dd>
  7443. </dl>
  7444. <dl>
  7445. <dt>Attribute</dt>
  7446. <dd>Virus</dd>
  7447. </dl>
  7448. <dl>
  7449. <dt>Type</dt>
  7450. <dd>Beastkin</dd>
  7451. </dl>
  7452. <dl>
  7453. <dt>DP</dt>
  7454. <dd>5000</dl>
  7455. <dl>
  7456. <dt>PlayCost</dt>
  7457. <dd>5</dd>
  7458. </dl>
  7459. <dl>
  7460. <dt>DigivolveCost1</dt>
  7461. <dd>2fromLv.3</dd>
  7462. </dl>
  7463. <dl>
  7464. <dt>DigivolveCost2</dt>
  7465. <dd>-</dd>
  7466. </dl>
  7467. </div>
  7468. </div>
  7469. <divclass="cardinfo_bottom">
  7470. <dl>
  7471. <dt>Effect</dt>
  7472. <dd>[When Digivolving] You may reveal the top 5 cards of your deck. Trash all Tamer cards among them. Place the remaining cards at the bottom of your deck in any order.</dd>
  7473. </dl>
  7474. <dl>
  7475. <dt>Digivolveeffect</dt>
  7476. <dd>[Your Turn][Once Per Turn] When you play a Tamer, <Draw 1>. (Draw 1 card from your deck.)</dd>
  7477. </dl>
  7478. <dl>
  7479. <dt>Securityeffect</dt>
  7480. <dd>-</dd>
  7481. </dl>
  7482. <dl>
  7483. <dt>Notes</dt>
  7484. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7485. </div>
  7486. </div>
  7487. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7488. </div>
  7489. </div>
  7490. </li>
  7491. <liclass="image_lists_itemdatapage-3">
  7492. <aclass="card_img">
  7493. <imgsrc="../images/cardlist/card/BT7-071.png"alt="BT7-071Loweemon"></a>
  7494. <divclass="popup">
  7495. <divclass="card_detailcard_detail_purple">
  7496. <divclass="card_detail_inner">
  7497. <ulclass="cardinfo_head">
  7498. <liclass="cardno">BT7-071</li>
  7499. <li>C</li>
  7500. <liclass="cardtype">Digimon</li>
  7501. <liclass="cardlv">Lv.4</li>
  7502. </ul>
  7503. <divclass="card_name">Loweemon</div>
  7504. <divclass="cardinfo_top">
  7505. <divclass="card_img">
  7506. <imgsrc="../images/cardlist/card/BT7-071.png"alt="BT7-071Loweemon"></div>
  7507. <divclass="cardinfo_top_body">
  7508. <dl>
  7509. <dt>Form</dt>
  7510. <dd>Hybrid</dd>
  7511. </dl>
  7512. <dl>
  7513. <dt>Attribute</dt>
  7514. <dd>Variable</dd>
  7515. </dl>
  7516. <dl>
  7517. <dt>Type</dt>
  7518. <dd>Warrior</dd>
  7519. </dl>
  7520. <dl>
  7521. <dt>DP</dt>
  7522. <dd>5000</dl>
  7523. <dl>
  7524. <dt>PlayCost</dt>
  7525. <dd>5</dd>
  7526. </dl>
  7527. <dl>
  7528. <dt>DigivolveCost1</dt>
  7529. <dd>2fromLv.3</dd>
  7530. </dl>
  7531. <dl>
  7532. <dt>DigivolveCost2</dt>
  7533. <dd>-</dd>
  7534. </dl>
  7535. </div>
  7536. </div>
  7537. <divclass="cardinfo_bottom">
  7538. <dl>
  7539. <dt>Effect</dt>
  7540. <dd>You may digivolve this card from your hand onto one of your purple Tamers as if the Tamer is a level 3 purple Digimon.</dd>
  7541. </dl>
  7542. <dl>
  7543. <dt>Digivolveeffect</dt>
  7544. <dd>-</dd>
  7545. </dl>
  7546. <dl>
  7547. <dt>Securityeffect</dt>
  7548. <dd>-</dd>
  7549. </dl>
  7550. <dl>
  7551. <dt>Notes</dt>
  7552. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7553. </div>
  7554. </div>
  7555. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7556. </div>
  7557. </div>
  7558. </li>
  7559. <liclass="image_lists_itemdatapage-3">
  7560. <aclass="card_img">
  7561. <imgsrc="../images/cardlist/card/BT7-071_P1.png"alt="BT7-071Loweemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7562. </a>
  7563. <divclass="popup">
  7564. <divclass="card_detailcard_detail_purple">
  7565. <divclass="card_detail_inner">
  7566. <ulclass="cardinfo_head">
  7567. <liclass="cardno">BT7-071</li>
  7568. <li>C</li>
  7569. <liclass="cardtype">Digimon</li>
  7570. <liclass="cardlv">Lv.4</li>
  7571. <liclass="cardtypecardParallel">AlternativeArt</li>
  7572. </ul>
  7573. <divclass="card_name">Loweemon</div>
  7574. <divclass="cardinfo_top">
  7575. <divclass="card_img">
  7576. <imgsrc="../images/cardlist/card/BT7-071_P1.png"alt="BT7-071Loweemon"></div>
  7577. <divclass="cardinfo_top_body">
  7578. <dl>
  7579. <dt>Form</dt>
  7580. <dd>Hybrid</dd>
  7581. </dl>
  7582. <dl>
  7583. <dt>Attribute</dt>
  7584. <dd>Variable</dd>
  7585. </dl>
  7586. <dl>
  7587. <dt>Type</dt>
  7588. <dd>Warrior</dd>
  7589. </dl>
  7590. <dl>
  7591. <dt>DP</dt>
  7592. <dd>5000</dl>
  7593. <dl>
  7594. <dt>PlayCost</dt>
  7595. <dd>5</dd>
  7596. </dl>
  7597. <dl>
  7598. <dt>DigivolveCost1</dt>
  7599. <dd>2fromLv.3</dd>
  7600. </dl>
  7601. <dl>
  7602. <dt>DigivolveCost2</dt>
  7603. <dd>-</dd>
  7604. </dl>
  7605. </div>
  7606. </div>
  7607. <divclass="cardinfo_bottom">
  7608. <dl>
  7609. <dt>Effect</dt>
  7610. <dd>You may digivolve this card from your hand onto one of your purple Tamers as if the Tamer is a level 3 purple Digimon.</dd>
  7611. </dl>
  7612. <dl>
  7613. <dt>Digivolveeffect</dt>
  7614. <dd>-</dd>
  7615. </dl>
  7616. <dl>
  7617. <dt>Securityeffect</dt>
  7618. <dd>-</dd>
  7619. </dl>
  7620. <dl>
  7621. <dt>Notes</dt>
  7622. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  7623. </div>
  7624. </div>
  7625. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7626. </div>
  7627. </div>
  7628. </li>
  7629. <liclass="image_lists_itemdatapage-3">
  7630. <aclass="card_img">
  7631. <imgsrc="../images/cardlist/card/BT7-071_P2.png"alt="BT7-071Loweemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7632. </a>
  7633. <divclass="popup">
  7634. <divclass="card_detailcard_detail_purple">
  7635. <divclass="card_detail_inner">
  7636. <ulclass="cardinfo_head">
  7637. <liclass="cardno">BT7-071</li>
  7638. <li>C</li>
  7639. <liclass="cardtype">Digimon</li>
  7640. <liclass="cardlv">Lv.4</li>
  7641. <liclass="cardtypecardParallel">AlternativeArt</li>
  7642. </ul>
  7643. <divclass="card_name">Loweemon</div>
  7644. <divclass="cardinfo_top">
  7645. <divclass="card_img">
  7646. <imgsrc="../images/cardlist/card/BT7-071_P2.png"alt="BT7-071Loweemon"></div>
  7647. <divclass="cardinfo_top_body">
  7648. <dl>
  7649. <dt>Form</dt>
  7650. <dd>Hybrid</dd>
  7651. </dl>
  7652. <dl>
  7653. <dt>Attribute</dt>
  7654. <dd>Variable</dd>
  7655. </dl>
  7656. <dl>
  7657. <dt>Type</dt>
  7658. <dd>Warrior</dd>
  7659. </dl>
  7660. <dl>
  7661. <dt>DP</dt>
  7662. <dd>5000</dl>
  7663. <dl>
  7664. <dt>PlayCost</dt>
  7665. <dd>5</dd>
  7666. </dl>
  7667. <dl>
  7668. <dt>DigivolveCost1</dt>
  7669. <dd>2fromLv.3</dd>
  7670. </dl>
  7671. <dl>
  7672. <dt>DigivolveCost2</dt>
  7673. <dd>-</dd>
  7674. </dl>
  7675. </div>
  7676. </div>
  7677. <divclass="cardinfo_bottom">
  7678. <dl>
  7679. <dt>Effect</dt>
  7680. <dd>You may digivolve this card from your hand onto one of your purple Tamers as if the Tamer is a level 3 purple Digimon.</dd>
  7681. </dl>
  7682. <dl>
  7683. <dt>Digivolveeffect</dt>
  7684. <dd>-</dd>
  7685. </dl>
  7686. <dl>
  7687. <dt>Securityeffect</dt>
  7688. <dd>-</dd>
  7689. </dl>
  7690. <dl>
  7691. <dt>Notes</dt>
  7692. <dd>EventPack3</dd></dl>
  7693. </div>
  7694. </div>
  7695. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7696. </div>
  7697. </div>
  7698. </li>
  7699. <liclass="image_lists_itemdatapage-3">
  7700. <aclass="card_img">
  7701. <imgsrc="../images/cardlist/card/BT7-072.png"alt="BT7-072Eyesmon"></a>
  7702. <divclass="popup">
  7703. <divclass="card_detailcard_detail_purple">
  7704. <divclass="card_detail_inner">
  7705. <ulclass="cardinfo_head">
  7706. <liclass="cardno">BT7-072</li>
  7707. <li>C</li>
  7708. <liclass="cardtype">Digimon</li>
  7709. <liclass="cardlv">Lv.4</li>
  7710. </ul>
  7711. <divclass="card_name">Eyesmon</div>
  7712. <divclass="cardinfo_top">
  7713. <divclass="card_img">
  7714. <imgsrc="../images/cardlist/card/BT7-072.png"alt="BT7-072Eyesmon"></div>
  7715. <divclass="cardinfo_top_body">
  7716. <dl>
  7717. <dt>Form</dt>
  7718. <dd>Champion</dd>
  7719. </dl>
  7720. <dl>
  7721. <dt>Attribute</dt>
  7722. <dd>Virus</dd>
  7723. </dl>
  7724. <dl>
  7725. <dt>Type</dt>
  7726. <dd>DarkDragon</dd>
  7727. </dl>
  7728. <dl>
  7729. <dt>DP</dt>
  7730. <dd>5000</dl>
  7731. <dl>
  7732. <dt>PlayCost</dt>
  7733. <dd>6</dd>
  7734. </dl>
  7735. <dl>
  7736. <dt>DigivolveCost1</dt>
  7737. <dd>2fromLv.3</dd>
  7738. </dl>
  7739. <dl>
  7740. <dt>DigivolveCost2</dt>
  7741. <dd>-</dd>
  7742. </dl>
  7743. </div>
  7744. </div>
  7745. <divclass="cardinfo_bottom">
  7746. <dl>
  7747. <dt>Effect</dt>
  7748. <dd>When you trash this card in your hand using one of your effects, if [Eyesmon: Scatter Mode] is in your trash, you may play this card without paying its memory cost. [Your Turn] For each [Eyesmon: Scatter Mode] in your trash, this Digimon gets +2000 DP.</dd>
  7749. </dl>
  7750. <dl>
  7751. <dt>Digivolveeffect</dt>
  7752. <dd>-</dd>
  7753. </dl>
  7754. <dl>
  7755. <dt>Securityeffect</dt>
  7756. <dd>-</dd>
  7757. </dl>
  7758. <dl>
  7759. <dt>Notes</dt>
  7760. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7761. </div>
  7762. </div>
  7763. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7764. </div>
  7765. </div>
  7766. </li>
  7767. <liclass="image_lists_itemdatapage-3">
  7768. <aclass="card_img">
  7769. <imgsrc="../images/cardlist/card/BT7-073.png"alt="BT7-073KaiserLeomon"></a>
  7770. <divclass="popup">
  7771. <divclass="card_detailcard_detail_purple">
  7772. <divclass="card_detail_inner">
  7773. <ulclass="cardinfo_head">
  7774. <liclass="cardno">BT7-073</li>
  7775. <li>U</li>
  7776. <liclass="cardtype">Digimon</li>
  7777. <liclass="cardlv">Lv.4</li>
  7778. </ul>
  7779. <divclass="card_name">KaiserLeomon</div>
  7780. <divclass="cardinfo_top">
  7781. <divclass="card_img">
  7782. <imgsrc="../images/cardlist/card/BT7-073.png"alt="BT7-073KaiserLeomon"></div>
  7783. <divclass="cardinfo_top_body">
  7784. <dl>
  7785. <dt>Form</dt>
  7786. <dd>Hybrid</dd>
  7787. </dl>
  7788. <dl>
  7789. <dt>Attribute</dt>
  7790. <dd>Variable</dd>
  7791. </dl>
  7792. <dl>
  7793. <dt>Type</dt>
  7794. <dd>Cyborg</dd>
  7795. </dl>
  7796. <dl>
  7797. <dt>DP</dt>
  7798. <dd>6000</dl>
  7799. <dl>
  7800. <dt>PlayCost</dt>
  7801. <dd>6</dd>
  7802. </dl>
  7803. <dl>
  7804. <dt>DigivolveCost1</dt>
  7805. <dd>3fromLv.3</dd>
  7806. </dl>
  7807. <dl>
  7808. <dt>DigivolveCost2</dt>
  7809. <dd>1fromLv.4</dd>
  7810. </dl>
  7811. </div>
  7812. </div>
  7813. <divclass="cardinfo_bottom">
  7814. <dl>
  7815. <dt>Effect</dt>
  7816. <dd>You may digivolve this card from your hand onto one of your purple Tamers as if the Tamer is a level 3 purple Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Koichi Kimura] is in this Digimon's digivolution cards, this Digimon gains <Retaliation> until the end of your opponent's next turn. (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  7817. </dl>
  7818. <dl>
  7819. <dt>Digivolveeffect</dt>
  7820. <dd>-</dd>
  7821. </dl>
  7822. <dl>
  7823. <dt>Securityeffect</dt>
  7824. <dd>-</dd>
  7825. </dl>
  7826. <dl>
  7827. <dt>Notes</dt>
  7828. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7829. </div>
  7830. </div>
  7831. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7832. </div>
  7833. </div>
  7834. </li>
  7835. <liclass="image_lists_itemdatapage-3">
  7836. <aclass="card_img">
  7837. <imgsrc="../images/cardlist/card/BT7-073_P1.png"alt="BT7-073KaiserLeomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7838. </a>
  7839. <divclass="popup">
  7840. <divclass="card_detailcard_detail_purple">
  7841. <divclass="card_detail_inner">
  7842. <ulclass="cardinfo_head">
  7843. <liclass="cardno">BT7-073</li>
  7844. <li>U</li>
  7845. <liclass="cardtype">Digimon</li>
  7846. <liclass="cardlv">Lv.4</li>
  7847. <liclass="cardtypecardParallel">AlternativeArt</li>
  7848. </ul>
  7849. <divclass="card_name">KaiserLeomon</div>
  7850. <divclass="cardinfo_top">
  7851. <divclass="card_img">
  7852. <imgsrc="../images/cardlist/card/BT7-073_P1.png"alt="BT7-073KaiserLeomon"></div>
  7853. <divclass="cardinfo_top_body">
  7854. <dl>
  7855. <dt>Form</dt>
  7856. <dd>Hybrid</dd>
  7857. </dl>
  7858. <dl>
  7859. <dt>Attribute</dt>
  7860. <dd>Variable</dd>
  7861. </dl>
  7862. <dl>
  7863. <dt>Type</dt>
  7864. <dd>Cyborg</dd>
  7865. </dl>
  7866. <dl>
  7867. <dt>DP</dt>
  7868. <dd>6000</dl>
  7869. <dl>
  7870. <dt>PlayCost</dt>
  7871. <dd>6</dd>
  7872. </dl>
  7873. <dl>
  7874. <dt>DigivolveCost1</dt>
  7875. <dd>3fromLv.3</dd>
  7876. </dl>
  7877. <dl>
  7878. <dt>DigivolveCost2</dt>
  7879. <dd>1fromLv.4</dd>
  7880. </dl>
  7881. </div>
  7882. </div>
  7883. <divclass="cardinfo_bottom">
  7884. <dl>
  7885. <dt>Effect</dt>
  7886. <dd>You may digivolve this card from your hand onto one of your purple Tamers as if the Tamer is a level 3 purple Digimon for a memory cost of 2. [When Digivolving] If a card with [Hybrid] in its traits or [Koichi Kimura] is in this Digimon's digivolution cards, this Digimon gains <Retaliation> until the end of your opponent's next turn. (When this Digimon is deleted after losing a battle, delete the Digimon it was battling.)</dd>
  7887. </dl>
  7888. <dl>
  7889. <dt>Digivolveeffect</dt>
  7890. <dd>-</dd>
  7891. </dl>
  7892. <dl>
  7893. <dt>Securityeffect</dt>
  7894. <dd>-</dd>
  7895. </dl>
  7896. <dl>
  7897. <dt>Notes</dt>
  7898. <dd>EventPack3</dd></dl>
  7899. </div>
  7900. </div>
  7901. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7902. </div>
  7903. </div>
  7904. </li>
  7905. <liclass="image_lists_itemdatapage-3">
  7906. <aclass="card_img">
  7907. <imgsrc="../images/cardlist/card/BT7-074.png"alt="BT7-074Antylamon"></a>
  7908. <divclass="popup">
  7909. <divclass="card_detailcard_detail_purple">
  7910. <divclass="card_detail_inner">
  7911. <ulclass="cardinfo_head">
  7912. <liclass="cardno">BT7-074</li>
  7913. <li>C</li>
  7914. <liclass="cardtype">Digimon</li>
  7915. <liclass="cardlv">Lv.5</li>
  7916. </ul>
  7917. <divclass="card_name">Antylamon</div>
  7918. <divclass="cardinfo_top">
  7919. <divclass="card_img">
  7920. <imgsrc="../images/cardlist/card/BT7-074.png"alt="BT7-074Antylamon"></div>
  7921. <divclass="cardinfo_top_body">
  7922. <dl>
  7923. <dt>Form</dt>
  7924. <dd>Ultimate</dd>
  7925. </dl>
  7926. <dl>
  7927. <dt>Attribute</dt>
  7928. <dd>Virus</dd>
  7929. </dl>
  7930. <dl>
  7931. <dt>Type</dt>
  7932. <dd>HolyBeast</dd>
  7933. </dl>
  7934. <dl>
  7935. <dt>DP</dt>
  7936. <dd>7000</dl>
  7937. <dl>
  7938. <dt>PlayCost</dt>
  7939. <dd>6</dd>
  7940. </dl>
  7941. <dl>
  7942. <dt>DigivolveCost1</dt>
  7943. <dd>3fromLv.4</dd>
  7944. </dl>
  7945. <dl>
  7946. <dt>DigivolveCost2</dt>
  7947. <dd>-</dd>
  7948. </dl>
  7949. </div>
  7950. </div>
  7951. <divclass="cardinfo_bottom">
  7952. <dl>
  7953. <dt>Effect</dt>
  7954. <dd>[When Digivolving] You may play 1 purple Tamer card with a play cost of 3 or less from your trash without paying its memory cost.</dd>
  7955. </dl>
  7956. <dl>
  7957. <dt>Digivolveeffect</dt>
  7958. <dd>-</dd>
  7959. </dl>
  7960. <dl>
  7961. <dt>Securityeffect</dt>
  7962. <dd>-</dd>
  7963. </dl>
  7964. <dl>
  7965. <dt>Notes</dt>
  7966. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  7967. </div>
  7968. </div>
  7969. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7970. </div>
  7971. </div>
  7972. </li>
  7973. <liclass="image_lists_itemdatapage-3">
  7974. <aclass="card_img">
  7975. <imgsrc="../images/cardlist/card/BT7-075.png"alt="BT7-075Rhihimon"></a>
  7976. <divclass="popup">
  7977. <divclass="card_detailcard_detail_purple">
  7978. <divclass="card_detail_inner">
  7979. <ulclass="cardinfo_head">
  7980. <liclass="cardno">BT7-075</li>
  7981. <li>U</li>
  7982. <liclass="cardtype">Digimon</li>
  7983. <liclass="cardlv">Lv.5</li>
  7984. </ul>
  7985. <divclass="card_name">Rhihimon</div>
  7986. <divclass="cardinfo_top">
  7987. <divclass="card_img">
  7988. <imgsrc="../images/cardlist/card/BT7-075.png"alt="BT7-075Rhihimon"></div>
  7989. <divclass="cardinfo_top_body">
  7990. <dl>
  7991. <dt>Form</dt>
  7992. <dd>Hybrid</dd>
  7993. </dl>
  7994. <dl>
  7995. <dt>Attribute</dt>
  7996. <dd>Variable</dd>
  7997. </dl>
  7998. <dl>
  7999. <dt>Type</dt>
  8000. <dd>Warrior</dd>
  8001. </dl>
  8002. <dl>
  8003. <dt>DP</dt>
  8004. <dd>7000</dl>
  8005. <dl>
  8006. <dt>PlayCost</dt>
  8007. <dd>7</dd>
  8008. </dl>
  8009. <dl>
  8010. <dt>DigivolveCost1</dt>
  8011. <dd>3fromLv.4</dd>
  8012. </dl>
  8013. <dl>
  8014. <dt>DigivolveCost2</dt>
  8015. <dd>-</dd>
  8016. </dl>
  8017. </div>
  8018. </div>
  8019. <divclass="cardinfo_bottom">
  8020. <dl>
  8021. <dt>Effect</dt>
  8022. <dd>When one of your Digimon with a Tamer card in its digivolution cards digivolves into this card in your hand, reduce the memory cost of the digivolution by 2. [On Deletion] If a card with [Hybrid] in its traits is in this Digimon's digivolution cards, you may play 1 purple Tamer card from your trash without paying its memory cost.</dd>
  8023. </dl>
  8024. <dl>
  8025. <dt>Digivolveeffect</dt>
  8026. <dd>-</dd>
  8027. </dl>
  8028. <dl>
  8029. <dt>Securityeffect</dt>
  8030. <dd>-</dd>
  8031. </dl>
  8032. <dl>
  8033. <dt>Notes</dt>
  8034. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8035. </div>
  8036. </div>
  8037. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8038. </div>
  8039. </div>
  8040. </li>
  8041. <liclass="image_lists_itemdatapage-3">
  8042. <aclass="card_img">
  8043. <imgsrc="../images/cardlist/card/BT7-076.png"alt="BT7-076Orochimon"></a>
  8044. <divclass="popup">
  8045. <divclass="card_detailcard_detail_purple">
  8046. <divclass="card_detail_inner">
  8047. <ulclass="cardinfo_head">
  8048. <liclass="cardno">BT7-076</li>
  8049. <li>C</li>
  8050. <liclass="cardtype">Digimon</li>
  8051. <liclass="cardlv">Lv.5</li>
  8052. </ul>
  8053. <divclass="card_name">Orochimon</div>
  8054. <divclass="cardinfo_top">
  8055. <divclass="card_img">
  8056. <imgsrc="../images/cardlist/card/BT7-076.png"alt="BT7-076Orochimon"></div>
  8057. <divclass="cardinfo_top_body">
  8058. <dl>
  8059. <dt>Form</dt>
  8060. <dd>Ultimate</dd>
  8061. </dl>
  8062. <dl>
  8063. <dt>Attribute</dt>
  8064. <dd>Virus</dd>
  8065. </dl>
  8066. <dl>
  8067. <dt>Type</dt>
  8068. <dd>DarkDragon</dd>
  8069. </dl>
  8070. <dl>
  8071. <dt>DP</dt>
  8072. <dd>8000</dl>
  8073. <dl>
  8074. <dt>PlayCost</dt>
  8075. <dd>8</dd>
  8076. </dl>
  8077. <dl>
  8078. <dt>DigivolveCost1</dt>
  8079. <dd>3fromLv.4</dd>
  8080. </dl>
  8081. <dl>
  8082. <dt>DigivolveCost2</dt>
  8083. <dd>-</dd>
  8084. </dl>
  8085. </div>
  8086. </div>
  8087. <divclass="cardinfo_bottom">
  8088. <dl>
  8089. <dt>Effect</dt>
  8090. <dd>When you trash this card in your hand using one of your effects, <Draw 1>. (Draw 1 card from your deck.)</dd>
  8091. </dl>
  8092. <dl>
  8093. <dt>Digivolveeffect</dt>
  8094. <dd>[When Attacking][Once Per Turn] You may trash 1 card in your hand to gain 1 memory.</dd>
  8095. </dl>
  8096. <dl>
  8097. <dt>Securityeffect</dt>
  8098. <dd>-</dd>
  8099. </dl>
  8100. <dl>
  8101. <dt>Notes</dt>
  8102. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8103. </div>
  8104. </div>
  8105. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8106. </div>
  8107. </div>
  8108. </li>
  8109. <liclass="image_lists_itemdatapage-3">
  8110. <aclass="card_img">
  8111. <imgsrc="../images/cardlist/card/BT7-077.png"alt="BT7-077Nidhoggmon"></a>
  8112. <divclass="popup">
  8113. <divclass="card_detailcard_detail_purple">
  8114. <divclass="card_detail_inner">
  8115. <ulclass="cardinfo_head">
  8116. <liclass="cardno">BT7-077</li>
  8117. <li>U</li>
  8118. <liclass="cardtype">Digimon</li>
  8119. <liclass="cardlv">Lv.6</li>
  8120. </ul>
  8121. <divclass="card_name">Nidhoggmon</div>
  8122. <divclass="cardinfo_top">
  8123. <divclass="card_img">
  8124. <imgsrc="../images/cardlist/card/BT7-077.png"alt="BT7-077Nidhoggmon"></div>
  8125. <divclass="cardinfo_top_body">
  8126. <dl>
  8127. <dt>Form</dt>
  8128. <dd>Mega</dd>
  8129. </dl>
  8130. <dl>
  8131. <dt>Attribute</dt>
  8132. <dd>Virus</dd>
  8133. </dl>
  8134. <dl>
  8135. <dt>Type</dt>
  8136. <dd>DarkDragon</dd>
  8137. </dl>
  8138. <dl>
  8139. <dt>DP</dt>
  8140. <dd>11000</dl>
  8141. <dl>
  8142. <dt>PlayCost</dt>
  8143. <dd>12</dd>
  8144. </dl>
  8145. <dl>
  8146. <dt>DigivolveCost1</dt>
  8147. <dd>3fromLv.5</dd>
  8148. </dl>
  8149. <dl>
  8150. <dt>DigivolveCost2</dt>
  8151. <dd>-</dd>
  8152. </dl>
  8153. </div>
  8154. </div>
  8155. <divclass="cardinfo_bottom">
  8156. <dl>
  8157. <dt>Effect</dt>
  8158. <dd>When you trash this card in your hand using one of your effects, gain 1 memory. [When Digivolving] You may trash 1 card in your hand to delete 1 of your opponent's level 4 or lower Digimon.</dd>
  8159. </dl>
  8160. <dl>
  8161. <dt>Digivolveeffect</dt>
  8162. <dd>-</dd>
  8163. </dl>
  8164. <dl>
  8165. <dt>Securityeffect</dt>
  8166. <dd>-</dd>
  8167. </dl>
  8168. <dl>
  8169. <dt>Notes</dt>
  8170. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8171. </div>
  8172. </div>
  8173. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8174. </div>
  8175. </div>
  8176. </li>
  8177. <liclass="image_lists_itemdatapage-3">
  8178. <aclass="card_img">
  8179. <imgsrc="../images/cardlist/card/BT7-078.png"alt="BT7-078AncientSphinxmon"></a>
  8180. <divclass="popup">
  8181. <divclass="card_detailcard_detail_purple">
  8182. <divclass="card_detail_inner">
  8183. <ulclass="cardinfo_head">
  8184. <liclass="cardno">BT7-078</li>
  8185. <li>R</li>
  8186. <liclass="cardtype">Digimon</li>
  8187. <liclass="cardlv">Lv.6</li>
  8188. </ul>
  8189. <divclass="card_name">AncientSphinxmon</div>
  8190. <divclass="cardinfo_top">
  8191. <divclass="card_img">
  8192. <imgsrc="../images/cardlist/card/BT7-078.png"alt="BT7-078AncientSphinxmon"></div>
  8193. <divclass="cardinfo_top_body">
  8194. <dl>
  8195. <dt>Form</dt>
  8196. <dd>Mega</dd>
  8197. </dl>
  8198. <dl>
  8199. <dt>Attribute</dt>
  8200. <dd>Virus</dd>
  8201. </dl>
  8202. <dl>
  8203. <dt>Type</dt>
  8204. <dd>AncientMythicalBeast/TenWarriors</dd>
  8205. </dl>
  8206. <dl>
  8207. <dt>DP</dt>
  8208. <dd>13000</dl>
  8209. <dl>
  8210. <dt>PlayCost</dt>
  8211. <dd>13</dd>
  8212. </dl>
  8213. <dl>
  8214. <dt>DigivolveCost1</dt>
  8215. <dd>5fromLv.5</dd>
  8216. </dl>
  8217. <dl>
  8218. <dt>DigivolveCost2</dt>
  8219. <dd>-</dd>
  8220. </dl>
  8221. </div>
  8222. </div>
  8223. <divclass="cardinfo_bottom">
  8224. <dl>
  8225. <dt>Effect</dt>
  8226. <dd>[When Digivolving] You may delete 1 of your Digimon with [Ten Warriors] or [Hybrid] in its traits to delete 1 of your opponent's Digimon whose level is less than or equal to the deleted Digimon's level.[On Deletion] You may play 1 purple level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  8227. </dl>
  8228. <dl>
  8229. <dt>Digivolveeffect</dt>
  8230. <dd>-</dd>
  8231. </dl>
  8232. <dl>
  8233. <dt>Securityeffect</dt>
  8234. <dd>-</dd>
  8235. </dl>
  8236. <dl>
  8237. <dt>Notes</dt>
  8238. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8239. </div>
  8240. </div>
  8241. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8242. </div>
  8243. </div>
  8244. </li>
  8245. <liclass="image_lists_itemdatapage-4">
  8246. <aclass="card_img">
  8247. <imgsrc="../images/cardlist/card/BT7-078_P1.png"alt="BT7-078AncientSphinxmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8248. </a>
  8249. <divclass="popup">
  8250. <divclass="card_detailcard_detail_purple">
  8251. <divclass="card_detail_inner">
  8252. <ulclass="cardinfo_head">
  8253. <liclass="cardno">BT7-078</li>
  8254. <li>R</li>
  8255. <liclass="cardtype">Digimon</li>
  8256. <liclass="cardlv">Lv.6</li>
  8257. <liclass="cardtypecardParallel">AlternativeArt</li>
  8258. </ul>
  8259. <divclass="card_name">AncientSphinxmon</div>
  8260. <divclass="cardinfo_top">
  8261. <divclass="card_img">
  8262. <imgsrc="../images/cardlist/card/BT7-078_P1.png"alt="BT7-078AncientSphinxmon"></div>
  8263. <divclass="cardinfo_top_body">
  8264. <dl>
  8265. <dt>Form</dt>
  8266. <dd>Mega</dd>
  8267. </dl>
  8268. <dl>
  8269. <dt>Attribute</dt>
  8270. <dd>Virus</dd>
  8271. </dl>
  8272. <dl>
  8273. <dt>Type</dt>
  8274. <dd>AncientMythicalBeast/TenWarriors</dd>
  8275. </dl>
  8276. <dl>
  8277. <dt>DP</dt>
  8278. <dd>13000</dl>
  8279. <dl>
  8280. <dt>PlayCost</dt>
  8281. <dd>13</dd>
  8282. </dl>
  8283. <dl>
  8284. <dt>DigivolveCost1</dt>
  8285. <dd>5fromLv.5</dd>
  8286. </dl>
  8287. <dl>
  8288. <dt>DigivolveCost2</dt>
  8289. <dd>-</dd>
  8290. </dl>
  8291. </div>
  8292. </div>
  8293. <divclass="cardinfo_bottom">
  8294. <dl>
  8295. <dt>Effect</dt>
  8296. <dd>[When Digivolving] You may delete 1 of your Digimon with [Ten Warriors] or [Hybrid] in its traits to delete 1 of your opponent's Digimon whose level is less than or equal to the deleted Digimon's level.[On Deletion] You may play 1 purple level 4 or lower card with [Hybrid] in its traits from your hand without paying its memory cost.</dd>
  8297. </dl>
  8298. <dl>
  8299. <dt>Digivolveeffect</dt>
  8300. <dd>-</dd>
  8301. </dl>
  8302. <dl>
  8303. <dt>Securityeffect</dt>
  8304. <dd>-</dd>
  8305. </dl>
  8306. <dl>
  8307. <dt>Notes</dt>
  8308. <dd>EventPack3</dd></dl>
  8309. </div>
  8310. </div>
  8311. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8312. </div>
  8313. </div>
  8314. </li>
  8315. <liclass="image_lists_itemdatapage-4">
  8316. <aclass="card_img">
  8317. <imgsrc="../images/cardlist/card/BT7-079.png"alt="BT7-079Cherubimon"></a>
  8318. <divclass="popup">
  8319. <divclass="card_detailcard_detail_purple">
  8320. <divclass="card_detail_inner">
  8321. <ulclass="cardinfo_head">
  8322. <liclass="cardno">BT7-079</li>
  8323. <li>SR</li>
  8324. <liclass="cardtype">Digimon</li>
  8325. <liclass="cardlv">Lv.6</li>
  8326. </ul>
  8327. <divclass="card_name">Cherubimon</div>
  8328. <divclass="cardinfo_top">
  8329. <divclass="card_img">
  8330. <imgsrc="../images/cardlist/card/BT7-079.png"alt="BT7-079Cherubimon"></div>
  8331. <divclass="cardinfo_top_body">
  8332. <dl>
  8333. <dt>Form</dt>
  8334. <dd>Mega</dd>
  8335. </dl>
  8336. <dl>
  8337. <dt>Attribute</dt>
  8338. <dd>Vaccine</dd>
  8339. </dl>
  8340. <dl>
  8341. <dt>Type</dt>
  8342. <dd>Cherub</dd>
  8343. </dl>
  8344. <dl>
  8345. <dt>DP</dt>
  8346. <dd>12000</dl>
  8347. <dl>
  8348. <dt>PlayCost</dt>
  8349. <dd>13</dd>
  8350. </dl>
  8351. <dl>
  8352. <dt>DigivolveCost1</dt>
  8353. <dd>4fromLv.5</dd>
  8354. </dl>
  8355. <dl>
  8356. <dt>DigivolveCost2</dt>
  8357. <dd>-</dd>
  8358. </dl>
  8359. </div>
  8360. </div>
  8361. <divclass="cardinfo_bottom">
  8362. <dl>
  8363. <dt>Effect</dt>
  8364. <dd>[When Digivolving] You may play 1 purple Tamer card from your trash without paying its memory cost. Then, for each Tamer you have in play, delete 1 of your opponent's level 4 or lower Digimon. [On Deletion] For each Tamer you have in play, you may play 1 level 3 Digimon card from your trash without paying its memory cost.</dd>
  8365. </dl>
  8366. <dl>
  8367. <dt>Digivolveeffect</dt>
  8368. <dd>-</dd>
  8369. </dl>
  8370. <dl>
  8371. <dt>Securityeffect</dt>
  8372. <dd>-</dd>
  8373. </dl>
  8374. <dl>
  8375. <dt>Notes</dt>
  8376. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8377. </div>
  8378. </div>
  8379. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8380. </div>
  8381. </div>
  8382. </li>
  8383. <liclass="image_lists_itemdatapage-4">
  8384. <aclass="card_img">
  8385. <imgsrc="../images/cardlist/card/BT7-079_P1.png"alt="BT7-079Cherubimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  8386. </a>
  8387. <divclass="popup">
  8388. <divclass="card_detailcard_detail_purple">
  8389. <divclass="card_detail_inner">
  8390. <ulclass="cardinfo_head">
  8391. <liclass="cardno">BT7-079</li>
  8392. <li>SR</li>
  8393. <liclass="cardtype">Digimon</li>
  8394. <liclass="cardlv">Lv.6</li>
  8395. <liclass="cardtypecardParallel">AlternativeArt</li>
  8396. </ul>
  8397. <divclass="card_name">Cherubimon</div>
  8398. <divclass="cardinfo_top">
  8399. <divclass="card_img">
  8400. <imgsrc="../images/cardlist/card/BT7-079_P1.png"alt="BT7-079Cherubimon"></div>
  8401. <divclass="cardinfo_top_body">
  8402. <dl>
  8403. <dt>Form</dt>
  8404. <dd>Mega</dd>
  8405. </dl>
  8406. <dl>
  8407. <dt>Attribute</dt>
  8408. <dd>Vaccine</dd>
  8409. </dl>
  8410. <dl>
  8411. <dt>Type</dt>
  8412. <dd>Cherub</dd>
  8413. </dl>
  8414. <dl>
  8415. <dt>DP</dt>
  8416. <dd>12000</dl>
  8417. <dl>
  8418. <dt>PlayCost</dt>
  8419. <dd>13</dd>
  8420. </dl>
  8421. <dl>
  8422. <dt>DigivolveCost1</dt>
  8423. <dd>4fromLv.5</dd>
  8424. </dl>
  8425. <dl>
  8426. <dt>DigivolveCost2</dt>
  8427. <dd>-</dd>
  8428. </dl>
  8429. </div>
  8430. </div>
  8431. <divclass="cardinfo_bottom">
  8432. <dl>
  8433. <dt>Effect</dt>
  8434. <dd>[When Digivolving] You may play 1 purple Tamer card from your trash without paying its memory cost. Then, for each Tamer you have in play, delete 1 of your opponent's level 4 or lower Digimon. [On Deletion] For each Tamer you have in play, you may play 1 level 3 Digimon card from your trash without paying its memory cost.</dd>
  8435. </dl>
  8436. <dl>
  8437. <dt>Digivolveeffect</dt>
  8438. <dd>-</dd>
  8439. </dl>
  8440. <dl>
  8441. <dt>Securityeffect</dt>
  8442. <dd>-</dd>
  8443. </dl>
  8444. <dl>
  8445. <dt>Notes</dt>
  8446. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8447. </div>
  8448. </div>
  8449. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8450. </div>
  8451. </div>
  8452. </li>
  8453. <liclass="image_lists_itemdatapage-4">
  8454. <aclass="card_img">
  8455. <imgsrc="../images/cardlist/card/BT7-080.png"alt="BT7-080Neemon"></a>
  8456. <divclass="popup">
  8457. <divclass="card_detailcard_detail_white">
  8458. <divclass="card_detail_inner">
  8459. <ulclass="cardinfo_head">
  8460. <liclass="cardno">BT7-080</li>
  8461. <li>C</li>
  8462. <liclass="cardtype">Digimon</li>
  8463. <liclass="cardlv">Lv.3</li>
  8464. </ul>
  8465. <divclass="card_name">Neemon</div>
  8466. <divclass="cardinfo_top">
  8467. <divclass="card_img">
  8468. <imgsrc="../images/cardlist/card/BT7-080.png"alt="BT7-080Neemon"></div>
  8469. <divclass="cardinfo_top_body">
  8470. <dl>
  8471. <dt>Form</dt>
  8472. <dd>Rookie</dd>
  8473. </dl>
  8474. <dl>
  8475. <dt>Attribute</dt>
  8476. <dd>Data</dd>
  8477. </dl>
  8478. <dl>
  8479. <dt>Type</dt>
  8480. <dd>Beast</dd>
  8481. </dl>
  8482. <dl>
  8483. <dt>DP</dt>
  8484. <dd>2000</dl>
  8485. <dl>
  8486. <dt>PlayCost</dt>
  8487. <dd>3</dd>
  8488. </dl>
  8489. <dl>
  8490. <dt>DigivolveCost1</dt>
  8491. <dd>-</dd>
  8492. </dl>
  8493. <dl>
  8494. <dt>DigivolveCost2</dt>
  8495. <dd>-</dd>
  8496. </dl>
  8497. </div>
  8498. </div>
  8499. <divclass="cardinfo_bottom">
  8500. <dl>
  8501. <dt>Effect</dt>
  8502. <dd>[On Play] You may play 1 Tamer card with an inherited effect from your hand without paying its memory cost. [All Turns][Once Per Turn] When one of your Digimon with a Tamer card in its digivolution cards is deleted, you may play 1 Tamer card from your trash without paying its memory cost.</dd>
  8503. </dl>
  8504. <dl>
  8505. <dt>Digivolveeffect</dt>
  8506. <dd>-</dd>
  8507. </dl>
  8508. <dl>
  8509. <dt>Securityeffect</dt>
  8510. <dd>-</dd>
  8511. </dl>
  8512. <dl>
  8513. <dt>Notes</dt>
  8514. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8515. </div>
  8516. </div>
  8517. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8518. </div>
  8519. </div>
  8520. </li>
  8521. <liclass="image_lists_itemdatapage-4">
  8522. <aclass="card_img">
  8523. <imgsrc="../images/cardlist/card/BT7-080_P1.png"alt="BT7-080Neemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8524. </a>
  8525. <divclass="popup">
  8526. <divclass="card_detailcard_detail_white">
  8527. <divclass="card_detail_inner">
  8528. <ulclass="cardinfo_head">
  8529. <liclass="cardno">BT7-080</li>
  8530. <li>C</li>
  8531. <liclass="cardtype">Digimon</li>
  8532. <liclass="cardlv">Lv.3</li>
  8533. <liclass="cardtypecardParallel">AlternativeArt</li>
  8534. </ul>
  8535. <divclass="card_name">Neemon</div>
  8536. <divclass="cardinfo_top">
  8537. <divclass="card_img">
  8538. <imgsrc="../images/cardlist/card/BT7-080_P1.png"alt="BT7-080Neemon"></div>
  8539. <divclass="cardinfo_top_body">
  8540. <dl>
  8541. <dt>Form</dt>
  8542. <dd>Rookie</dd>
  8543. </dl>
  8544. <dl>
  8545. <dt>Attribute</dt>
  8546. <dd>Data</dd>
  8547. </dl>
  8548. <dl>
  8549. <dt>Type</dt>
  8550. <dd>Beast</dd>
  8551. </dl>
  8552. <dl>
  8553. <dt>DP</dt>
  8554. <dd>2000</dl>
  8555. <dl>
  8556. <dt>PlayCost</dt>
  8557. <dd>3</dd>
  8558. </dl>
  8559. <dl>
  8560. <dt>DigivolveCost1</dt>
  8561. <dd>-</dd>
  8562. </dl>
  8563. <dl>
  8564. <dt>DigivolveCost2</dt>
  8565. <dd>-</dd>
  8566. </dl>
  8567. </div>
  8568. </div>
  8569. <divclass="cardinfo_bottom">
  8570. <dl>
  8571. <dt>Effect</dt>
  8572. <dd>[On Play] You may play 1 Tamer card with an inherited effect from your hand without paying its memory cost. [All Turns][Once Per Turn] When one of your Digimon with a Tamer card in its digivolution cards is deleted, you may play 1 Tamer card from your trash without paying its memory cost.</dd>
  8573. </dl>
  8574. <dl>
  8575. <dt>Digivolveeffect</dt>
  8576. <dd>-</dd>
  8577. </dl>
  8578. <dl>
  8579. <dt>Securityeffect</dt>
  8580. <dd>-</dd>
  8581. </dl>
  8582. <dl>
  8583. <dt>Notes</dt>
  8584. <dd>StoreChampionship2022ParticipantPack</dd></dl>
  8585. </div>
  8586. </div>
  8587. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8588. </div>
  8589. </div>
  8590. </li>
  8591. <liclass="image_lists_itemdatapage-4">
  8592. <aclass="card_img">
  8593. <imgsrc="../images/cardlist/card/BT7-080_P2.png"alt="BT7-080Neemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8594. </a>
  8595. <divclass="popup">
  8596. <divclass="card_detailcard_detail_white">
  8597. <divclass="card_detail_inner">
  8598. <ulclass="cardinfo_head">
  8599. <liclass="cardno">BT7-080</li>
  8600. <li>C</li>
  8601. <liclass="cardtype">Digimon</li>
  8602. <liclass="cardlv">Lv.3</li>
  8603. <liclass="cardtypecardParallel">AlternativeArt</li>
  8604. </ul>
  8605. <divclass="card_name">Neemon</div>
  8606. <divclass="cardinfo_top">
  8607. <divclass="card_img">
  8608. <imgsrc="../images/cardlist/card/BT7-080_P2.png"alt="BT7-080Neemon"></div>
  8609. <divclass="cardinfo_top_body">
  8610. <dl>
  8611. <dt>Form</dt>
  8612. <dd>Rookie</dd>
  8613. </dl>
  8614. <dl>
  8615. <dt>Attribute</dt>
  8616. <dd>Data</dd>
  8617. </dl>
  8618. <dl>
  8619. <dt>Type</dt>
  8620. <dd>Beast</dd>
  8621. </dl>
  8622. <dl>
  8623. <dt>DP</dt>
  8624. <dd>2000</dl>
  8625. <dl>
  8626. <dt>PlayCost</dt>
  8627. <dd>3</dd>
  8628. </dl>
  8629. <dl>
  8630. <dt>DigivolveCost1</dt>
  8631. <dd>-</dd>
  8632. </dl>
  8633. <dl>
  8634. <dt>DigivolveCost2</dt>
  8635. <dd>-</dd>
  8636. </dl>
  8637. </div>
  8638. </div>
  8639. <divclass="cardinfo_bottom">
  8640. <dl>
  8641. <dt>Effect</dt>
  8642. <dd>[On Play] You may play 1 Tamer card with an inherited effect from your hand without paying its memory cost. [All Turns][Once Per Turn] When one of your Digimon with a Tamer card in its digivolution cards is deleted, you may play 1 Tamer card from your trash without paying its memory cost.</dd>
  8643. </dl>
  8644. <dl>
  8645. <dt>Digivolveeffect</dt>
  8646. <dd>-</dd>
  8647. </dl>
  8648. <dl>
  8649. <dt>Securityeffect</dt>
  8650. <dd>-</dd>
  8651. </dl>
  8652. <dl>
  8653. <dt>Notes</dt>
  8654. <dd>StoreChampionship2022ChampionCardSet</dd></dl>
  8655. </div>
  8656. </div>
  8657. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8658. </div>
  8659. </div>
  8660. </li>
  8661. <liclass="image_lists_itemdatapage-4">
  8662. <aclass="card_img">
  8663. <imgsrc="../images/cardlist/card/BT7-080_P3.png"alt="BT7-080Neemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8664. </a>
  8665. <divclass="popup">
  8666. <divclass="card_detailcard_detail_white">
  8667. <divclass="card_detail_inner">
  8668. <ulclass="cardinfo_head">
  8669. <liclass="cardno">BT7-080</li>
  8670. <li>C</li>
  8671. <liclass="cardtype">Digimon</li>
  8672. <liclass="cardlv">Lv.3</li>
  8673. <liclass="cardtypecardParallel">AlternativeArt</li>
  8674. </ul>
  8675. <divclass="card_name">Neemon</div>
  8676. <divclass="cardinfo_top">
  8677. <divclass="card_img">
  8678. <imgsrc="../images/cardlist/card/BT7-080_P3.png"alt="BT7-080Neemon"></div>
  8679. <divclass="cardinfo_top_body">
  8680. <dl>
  8681. <dt>Form</dt>
  8682. <dd>Rookie</dd>
  8683. </dl>
  8684. <dl>
  8685. <dt>Attribute</dt>
  8686. <dd>Data</dd>
  8687. </dl>
  8688. <dl>
  8689. <dt>Type</dt>
  8690. <dd>Beast</dd>
  8691. </dl>
  8692. <dl>
  8693. <dt>DP</dt>
  8694. <dd>2000</dl>
  8695. <dl>
  8696. <dt>PlayCost</dt>
  8697. <dd>3</dd>
  8698. </dl>
  8699. <dl>
  8700. <dt>DigivolveCost1</dt>
  8701. <dd>-</dd>
  8702. </dl>
  8703. <dl>
  8704. <dt>DigivolveCost2</dt>
  8705. <dd>-</dd>
  8706. </dl>
  8707. </div>
  8708. </div>
  8709. <divclass="cardinfo_bottom">
  8710. <dl>
  8711. <dt>Effect</dt>
  8712. <dd>[On Play] You may play 1 Tamer card with an inherited effect from your hand without paying its memory cost. [All Turns][Once Per Turn] When one of your Digimon with a Tamer card in its digivolution cards is deleted, you may play 1 Tamer card from your trash without paying its memory cost.</dd>
  8713. </dl>
  8714. <dl>
  8715. <dt>Digivolveeffect</dt>
  8716. <dd>-</dd>
  8717. </dl>
  8718. <dl>
  8719. <dt>Securityeffect</dt>
  8720. <dd>-</dd>
  8721. </dl>
  8722. <dl>
  8723. <dt>Notes</dt>
  8724. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  8725. </div>
  8726. </div>
  8727. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8728. </div>
  8729. </div>
  8730. </li>
  8731. <liclass="image_lists_itemdatapage-4">
  8732. <aclass="card_img">
  8733. <imgsrc="../images/cardlist/card/BT7-081.png"alt="BT7-081Bokomon"></a>
  8734. <divclass="popup">
  8735. <divclass="card_detailcard_detail_white">
  8736. <divclass="card_detail_inner">
  8737. <ulclass="cardinfo_head">
  8738. <liclass="cardno">BT7-081</li>
  8739. <li>C</li>
  8740. <liclass="cardtype">Digimon</li>
  8741. <liclass="cardlv">Lv.3</li>
  8742. </ul>
  8743. <divclass="card_name">Bokomon</div>
  8744. <divclass="cardinfo_top">
  8745. <divclass="card_img">
  8746. <imgsrc="../images/cardlist/card/BT7-081.png"alt="BT7-081Bokomon"></div>
  8747. <divclass="cardinfo_top_body">
  8748. <dl>
  8749. <dt>Form</dt>
  8750. <dd>Rookie</dd>
  8751. </dl>
  8752. <dl>
  8753. <dt>Attribute</dt>
  8754. <dd>Vaccine</dd>
  8755. </dl>
  8756. <dl>
  8757. <dt>Type</dt>
  8758. <dd>Mutant</dd>
  8759. </dl>
  8760. <dl>
  8761. <dt>DP</dt>
  8762. <dd>2000</dl>
  8763. <dl>
  8764. <dt>PlayCost</dt>
  8765. <dd>3</dd>
  8766. </dl>
  8767. <dl>
  8768. <dt>DigivolveCost1</dt>
  8769. <dd>-</dd>
  8770. </dl>
  8771. <dl>
  8772. <dt>DigivolveCost2</dt>
  8773. <dd>-</dd>
  8774. </dl>
  8775. </div>
  8776. </div>
  8777. <divclass="cardinfo_bottom">
  8778. <dl>
  8779. <dt>Effect</dt>
  8780. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] or [Ten Warriors] in its traits and 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order. [Your Turn][Once Per Turn] When one of your Tamers digivolves, gain 2 memory.</dd>
  8781. </dl>
  8782. <dl>
  8783. <dt>Digivolveeffect</dt>
  8784. <dd>-</dd>
  8785. </dl>
  8786. <dl>
  8787. <dt>Securityeffect</dt>
  8788. <dd>-</dd>
  8789. </dl>
  8790. <dl>
  8791. <dt>Notes</dt>
  8792. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  8793. </div>
  8794. </div>
  8795. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8796. </div>
  8797. </div>
  8798. </li>
  8799. <liclass="image_lists_itemdatapage-4">
  8800. <aclass="card_img">
  8801. <imgsrc="../images/cardlist/card/BT7-081_P1.png"alt="BT7-081Bokomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8802. </a>
  8803. <divclass="popup">
  8804. <divclass="card_detailcard_detail_white">
  8805. <divclass="card_detail_inner">
  8806. <ulclass="cardinfo_head">
  8807. <liclass="cardno">BT7-081</li>
  8808. <li>C</li>
  8809. <liclass="cardtype">Digimon</li>
  8810. <liclass="cardlv">Lv.3</li>
  8811. <liclass="cardtypecardParallel">AlternativeArt</li>
  8812. </ul>
  8813. <divclass="card_name">Bokomon</div>
  8814. <divclass="cardinfo_top">
  8815. <divclass="card_img">
  8816. <imgsrc="../images/cardlist/card/BT7-081_P1.png"alt="BT7-081Bokomon"></div>
  8817. <divclass="cardinfo_top_body">
  8818. <dl>
  8819. <dt>Form</dt>
  8820. <dd>Rookie</dd>
  8821. </dl>
  8822. <dl>
  8823. <dt>Attribute</dt>
  8824. <dd>Vaccine</dd>
  8825. </dl>
  8826. <dl>
  8827. <dt>Type</dt>
  8828. <dd>Mutant</dd>
  8829. </dl>
  8830. <dl>
  8831. <dt>DP</dt>
  8832. <dd>2000</dl>
  8833. <dl>
  8834. <dt>PlayCost</dt>
  8835. <dd>3</dd>
  8836. </dl>
  8837. <dl>
  8838. <dt>DigivolveCost1</dt>
  8839. <dd>-</dd>
  8840. </dl>
  8841. <dl>
  8842. <dt>DigivolveCost2</dt>
  8843. <dd>-</dd>
  8844. </dl>
  8845. </div>
  8846. </div>
  8847. <divclass="cardinfo_bottom">
  8848. <dl>
  8849. <dt>Effect</dt>
  8850. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] or [Ten Warriors] in its traits and 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order. [Your Turn][Once Per Turn] When one of your Tamers digivolves, gain 2 memory.</dd>
  8851. </dl>
  8852. <dl>
  8853. <dt>Digivolveeffect</dt>
  8854. <dd>-</dd>
  8855. </dl>
  8856. <dl>
  8857. <dt>Securityeffect</dt>
  8858. <dd>-</dd>
  8859. </dl>
  8860. <dl>
  8861. <dt>Notes</dt>
  8862. <dd>2022RegionalsParticipationCardSet</dd></dl>
  8863. </div>
  8864. </div>
  8865. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8866. </div>
  8867. </div>
  8868. </li>
  8869. <liclass="image_lists_itemdatapage-4">
  8870. <aclass="card_img">
  8871. <imgsrc="../images/cardlist/card/BT7-081_P2.png"alt="BT7-081Bokomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8872. </a>
  8873. <divclass="popup">
  8874. <divclass="card_detailcard_detail_white">
  8875. <divclass="card_detail_inner">
  8876. <ulclass="cardinfo_head">
  8877. <liclass="cardno">BT7-081</li>
  8878. <li>C</li>
  8879. <liclass="cardtype">Digimon</li>
  8880. <liclass="cardlv">Lv.3</li>
  8881. <liclass="cardtypecardParallel">AlternativeArt</li>
  8882. </ul>
  8883. <divclass="card_name">Bokomon</div>
  8884. <divclass="cardinfo_top">
  8885. <divclass="card_img">
  8886. <imgsrc="../images/cardlist/card/BT7-081_P2.png"alt="BT7-081Bokomon"></div>
  8887. <divclass="cardinfo_top_body">
  8888. <dl>
  8889. <dt>Form</dt>
  8890. <dd>Rookie</dd>
  8891. </dl>
  8892. <dl>
  8893. <dt>Attribute</dt>
  8894. <dd>Vaccine</dd>
  8895. </dl>
  8896. <dl>
  8897. <dt>Type</dt>
  8898. <dd>Mutant</dd>
  8899. </dl>
  8900. <dl>
  8901. <dt>DP</dt>
  8902. <dd>2000</dl>
  8903. <dl>
  8904. <dt>PlayCost</dt>
  8905. <dd>3</dd>
  8906. </dl>
  8907. <dl>
  8908. <dt>DigivolveCost1</dt>
  8909. <dd>-</dd>
  8910. </dl>
  8911. <dl>
  8912. <dt>DigivolveCost2</dt>
  8913. <dd>-</dd>
  8914. </dl>
  8915. </div>
  8916. </div>
  8917. <divclass="cardinfo_bottom">
  8918. <dl>
  8919. <dt>Effect</dt>
  8920. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] or [Ten Warriors] in its traits and 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order. [Your Turn][Once Per Turn] When one of your Tamers digivolves, gain 2 memory.</dd>
  8921. </dl>
  8922. <dl>
  8923. <dt>Digivolveeffect</dt>
  8924. <dd>-</dd>
  8925. </dl>
  8926. <dl>
  8927. <dt>Securityeffect</dt>
  8928. <dd>-</dd>
  8929. </dl>
  8930. <dl>
  8931. <dt>Notes</dt>
  8932. <dd>2022RegionalsFinalistSet</dd></dl>
  8933. </div>
  8934. </div>
  8935. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8936. </div>
  8937. </div>
  8938. </li>
  8939. <liclass="image_lists_itemdatapage-4">
  8940. <aclass="card_img">
  8941. <imgsrc="../images/cardlist/card/BT7-081_P3.png"alt="BT7-081Bokomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8942. </a>
  8943. <divclass="popup">
  8944. <divclass="card_detailcard_detail_white">
  8945. <divclass="card_detail_inner">
  8946. <ulclass="cardinfo_head">
  8947. <liclass="cardno">BT7-081</li>
  8948. <li>C</li>
  8949. <liclass="cardtype">Digimon</li>
  8950. <liclass="cardlv">Lv.3</li>
  8951. <liclass="cardtypecardParallel">AlternativeArt</li>
  8952. </ul>
  8953. <divclass="card_name">Bokomon</div>
  8954. <divclass="cardinfo_top">
  8955. <divclass="card_img">
  8956. <imgsrc="../images/cardlist/card/BT7-081_P3.png"alt="BT7-081Bokomon"></div>
  8957. <divclass="cardinfo_top_body">
  8958. <dl>
  8959. <dt>Form</dt>
  8960. <dd>Rookie</dd>
  8961. </dl>
  8962. <dl>
  8963. <dt>Attribute</dt>
  8964. <dd>Vaccine</dd>
  8965. </dl>
  8966. <dl>
  8967. <dt>Type</dt>
  8968. <dd>Mutant</dd>
  8969. </dl>
  8970. <dl>
  8971. <dt>DP</dt>
  8972. <dd>2000</dl>
  8973. <dl>
  8974. <dt>PlayCost</dt>
  8975. <dd>3</dd>
  8976. </dl>
  8977. <dl>
  8978. <dt>DigivolveCost1</dt>
  8979. <dd>-</dd>
  8980. </dl>
  8981. <dl>
  8982. <dt>DigivolveCost2</dt>
  8983. <dd>-</dd>
  8984. </dl>
  8985. </div>
  8986. </div>
  8987. <divclass="cardinfo_bottom">
  8988. <dl>
  8989. <dt>Effect</dt>
  8990. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] or [Ten Warriors] in its traits and 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order. [Your Turn][Once Per Turn] When one of your Tamers digivolves, gain 2 memory.</dd>
  8991. </dl>
  8992. <dl>
  8993. <dt>Digivolveeffect</dt>
  8994. <dd>-</dd>
  8995. </dl>
  8996. <dl>
  8997. <dt>Securityeffect</dt>
  8998. <dd>-</dd>
  8999. </dl>
  9000. <dl>
  9001. <dt>Notes</dt>
  9002. <dd>2022RegionalsChampionCardSet</dd></dl>
  9003. </div>
  9004. </div>
  9005. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9006. </div>
  9007. </div>
  9008. </li>
  9009. <liclass="image_lists_itemdatapage-4">
  9010. <aclass="card_img">
  9011. <imgsrc="../images/cardlist/card/BT7-081_P4.png"alt="BT7-081Bokomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  9012. </a>
  9013. <divclass="popup">
  9014. <divclass="card_detailcard_detail_white">
  9015. <divclass="card_detail_inner">
  9016. <ulclass="cardinfo_head">
  9017. <liclass="cardno">BT7-081</li>
  9018. <li>C</li>
  9019. <liclass="cardtype">Digimon</li>
  9020. <liclass="cardlv">Lv.3</li>
  9021. <liclass="cardtypecardParallel">AlternativeArt</li>
  9022. </ul>
  9023. <divclass="card_name">Bokomon</div>
  9024. <divclass="cardinfo_top">
  9025. <divclass="card_img">
  9026. <imgsrc="../images/cardlist/card/BT7-081_P4.png"alt="BT7-081Bokomon"></div>
  9027. <divclass="cardinfo_top_body">
  9028. <dl>
  9029. <dt>Form</dt>
  9030. <dd>Rookie</dd>
  9031. </dl>
  9032. <dl>
  9033. <dt>Attribute</dt>
  9034. <dd>Vaccine</dd>
  9035. </dl>
  9036. <dl>
  9037. <dt>Type</dt>
  9038. <dd>Mutant</dd>
  9039. </dl>
  9040. <dl>
  9041. <dt>DP</dt>
  9042. <dd>2000</dl>
  9043. <dl>
  9044. <dt>PlayCost</dt>
  9045. <dd>3</dd>
  9046. </dl>
  9047. <dl>
  9048. <dt>DigivolveCost1</dt>
  9049. <dd>-</dd>
  9050. </dl>
  9051. <dl>
  9052. <dt>DigivolveCost2</dt>
  9053. <dd>-</dd>
  9054. </dl>
  9055. </div>
  9056. </div>
  9057. <divclass="cardinfo_bottom">
  9058. <dl>
  9059. <dt>Effect</dt>
  9060. <dd>[On Play] Reveal the top 5 cards of your deck. Add 1 card with [Hybrid] or [Ten Warriors] in its traits and 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order. [Your Turn][Once Per Turn] When one of your Tamers digivolves, gain 2 memory.</dd>
  9061. </dl>
  9062. <dl>
  9063. <dt>Digivolveeffect</dt>
  9064. <dd>-</dd>
  9065. </dl>
  9066. <dl>
  9067. <dt>Securityeffect</dt>
  9068. <dd>-</dd>
  9069. </dl>
  9070. <dl>
  9071. <dt>Notes</dt>
  9072. <dd>2ndAnniversarySet[PB-12E]</dd></dl>
  9073. </div>
  9074. </div>
  9075. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9076. </div>
  9077. </div>
  9078. </li>
  9079. <liclass="image_lists_itemdatapage-4">
  9080. <aclass="card_img">
  9081. <imgsrc="../images/cardlist/card/BT7-082.png"alt="BT7-082SistermonBlanc(Awakened)"></a>
  9082. <divclass="popup">
  9083. <divclass="card_detailcard_detail_white">
  9084. <divclass="card_detail_inner">
  9085. <ulclass="cardinfo_head">
  9086. <liclass="cardno">BT7-082</li>
  9087. <li>R</li>
  9088. <liclass="cardtype">Digimon</li>
  9089. <liclass="cardlv">Lv.3</li>
  9090. </ul>
  9091. <divclass="card_name">SistermonBlanc(Awakened)</div>
  9092. <divclass="cardinfo_top">
  9093. <divclass="card_img">
  9094. <imgsrc="../images/cardlist/card/BT7-082.png"alt="BT7-082SistermonBlanc(Awakened)"></div>
  9095. <divclass="cardinfo_top_body">
  9096. <dl>
  9097. <dt>Form</dt>
  9098. <dd>Rookie</dd>
  9099. </dl>
  9100. <dl>
  9101. <dt>Attribute</dt>
  9102. <dd>Vaccine</dd>
  9103. </dl>
  9104. <dl>
  9105. <dt>Type</dt>
  9106. <dd>Puppet</dd>
  9107. </dl>
  9108. <dl>
  9109. <dt>DP</dt>
  9110. <dd>5000</dl>
  9111. <dl>
  9112. <dt>PlayCost</dt>
  9113. <dd>5</dd>
  9114. </dl>
  9115. <dl>
  9116. <dt>DigivolveCost1</dt>
  9117. <dd>2fromLv.3</dd>
  9118. </dl>
  9119. <dl>
  9120. <dt>DigivolveCost2</dt>
  9121. <dd>-</dd>
  9122. </dl>
  9123. </div>
  9124. </div>
  9125. <divclass="cardinfo_bottom">
  9126. <dl>
  9127. <dt>Effect</dt>
  9128. <dd>[On Play] You may place 1 [Sistermon Blanc] from your hand or trash at the bottom of this Digimon's digivolution cards to <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) [On Deletion] Return 1 card with [Jesmon], [Huckmon], or [Sistermon] in its name other than [Sistermon Blanc (Awakened)] from your trash to your hand.</dd>
  9129. </dl>
  9130. <dl>
  9131. <dt>Digivolveeffect</dt>
  9132. <dd>-</dd>
  9133. </dl>
  9134. <dl>
  9135. <dt>Securityeffect</dt>
  9136. <dd>-</dd>
  9137. </dl>
  9138. <dl>
  9139. <dt>Notes</dt>
  9140. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9141. </div>
  9142. </div>
  9143. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9144. </div>
  9145. </div>
  9146. </li>
  9147. <liclass="image_lists_itemdatapage-4">
  9148. <aclass="card_img">
  9149. <imgsrc="../images/cardlist/card/BT7-083.png"alt="BT7-083SistermonCiel(Awakened)"></a>
  9150. <divclass="popup">
  9151. <divclass="card_detailcard_detail_white">
  9152. <divclass="card_detail_inner">
  9153. <ulclass="cardinfo_head">
  9154. <liclass="cardno">BT7-083</li>
  9155. <li>R</li>
  9156. <liclass="cardtype">Digimon</li>
  9157. <liclass="cardlv">Lv.4</li>
  9158. </ul>
  9159. <divclass="card_name">SistermonCiel(Awakened)</div>
  9160. <divclass="cardinfo_top">
  9161. <divclass="card_img">
  9162. <imgsrc="../images/cardlist/card/BT7-083.png"alt="BT7-083SistermonCiel(Awakened)"></div>
  9163. <divclass="cardinfo_top_body">
  9164. <dl>
  9165. <dt>Form</dt>
  9166. <dd>Champion</dd>
  9167. </dl>
  9168. <dl>
  9169. <dt>Attribute</dt>
  9170. <dd>Data</dd>
  9171. </dl>
  9172. <dl>
  9173. <dt>Type</dt>
  9174. <dd>Puppet</dd>
  9175. </dl>
  9176. <dl>
  9177. <dt>DP</dt>
  9178. <dd>6000</dl>
  9179. <dl>
  9180. <dt>PlayCost</dt>
  9181. <dd>6</dd>
  9182. </dl>
  9183. <dl>
  9184. <dt>DigivolveCost1</dt>
  9185. <dd>2fromLv.4</dd>
  9186. </dl>
  9187. <dl>
  9188. <dt>DigivolveCost2</dt>
  9189. <dd>-</dd>
  9190. </dl>
  9191. </div>
  9192. </div>
  9193. <divclass="cardinfo_bottom">
  9194. <dl>
  9195. <dt>Effect</dt>
  9196. <dd>[On Play] You may place 1 [Sistermon Ciel] from your hand or trash at the bottom of this Digimon's digivolution cards to delete 1 of your opponent's Digimon with a play cost of 5 or less. [On Deletion] Return 1 card with [Jesmon], [Huckmon], or [Sistermon] in its name other than [Sistermon Ciel (Awakened)] from your trash to your hand.</dd>
  9197. </dl>
  9198. <dl>
  9199. <dt>Digivolveeffect</dt>
  9200. <dd>-</dd>
  9201. </dl>
  9202. <dl>
  9203. <dt>Securityeffect</dt>
  9204. <dd>-</dd>
  9205. </dl>
  9206. <dl>
  9207. <dt>Notes</dt>
  9208. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9209. </div>
  9210. </div>
  9211. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9212. </div>
  9213. </div>
  9214. </li>
  9215. <liclass="image_lists_itemdatapage-4">
  9216. <aclass="card_img">
  9217. <imgsrc="../images/cardlist/card/BT7-084.png"alt="BT7-084Eosmon"></a>
  9218. <divclass="popup">
  9219. <divclass="card_detailcard_detail_white">
  9220. <divclass="card_detail_inner">
  9221. <ulclass="cardinfo_head">
  9222. <liclass="cardno">BT7-084</li>
  9223. <li>U</li>
  9224. <liclass="cardtype">Digimon</li>
  9225. <liclass="cardlv">Lv.6</li>
  9226. </ul>
  9227. <divclass="card_name">Eosmon</div>
  9228. <divclass="cardinfo_top">
  9229. <divclass="card_img">
  9230. <imgsrc="../images/cardlist/card/BT7-084.png"alt="BT7-084Eosmon"></div>
  9231. <divclass="cardinfo_top_body">
  9232. <dl>
  9233. <dt>Form</dt>
  9234. <dd>Mega</dd>
  9235. </dl>
  9236. <dl>
  9237. <dt>Attribute</dt>
  9238. <dd>Unknown</dd>
  9239. </dl>
  9240. <dl>
  9241. <dt>Type</dt>
  9242. <dd>Unknown</dd>
  9243. </dl>
  9244. <dl>
  9245. <dt>DP</dt>
  9246. <dd>11000</dl>
  9247. <dl>
  9248. <dt>PlayCost</dt>
  9249. <dd>12</dd>
  9250. </dl>
  9251. <dl>
  9252. <dt>DigivolveCost1</dt>
  9253. <dd>3fromLv.5</dd>
  9254. </dl>
  9255. <dl>
  9256. <dt>DigivolveCost2</dt>
  9257. <dd>3fromLv.5</dd>
  9258. </dl>
  9259. </div>
  9260. </div>
  9261. <divclass="cardinfo_bottom">
  9262. <dl>
  9263. <dt>Effect</dt>
  9264. <dd>[Your Turn] All of your other [Eosmon] get +1000 DP. [On Deletion] You may play 1 level 5 or lower [Eosmon] from your hand without paying its memory cost.</dd>
  9265. </dl>
  9266. <dl>
  9267. <dt>Digivolveeffect</dt>
  9268. <dd>-</dd>
  9269. </dl>
  9270. <dl>
  9271. <dt>Securityeffect</dt>
  9272. <dd>-</dd>
  9273. </dl>
  9274. <dl>
  9275. <dt>Notes</dt>
  9276. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9277. </div>
  9278. </div>
  9279. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9280. </div>
  9281. </div>
  9282. </li>
  9283. <liclass="image_lists_itemdatapage-4">
  9284. <aclass="card_img">
  9285. <imgsrc="../images/cardlist/card/BT7-111.png"alt="BT7-111Lucemon:ChaosMode"></a>
  9286. <divclass="popup">
  9287. <divclass="card_detailcard_detail_purple">
  9288. <divclass="card_detail_inner">
  9289. <ulclass="cardinfo_head">
  9290. <liclass="cardno">BT7-111</li>
  9291. <li>SEC</li>
  9292. <liclass="cardtype">Digimon</li>
  9293. <liclass="cardlv">Lv.5</li>
  9294. </ul>
  9295. <divclass="card_name">Lucemon:ChaosMode</div>
  9296. <divclass="cardinfo_top">
  9297. <divclass="card_img">
  9298. <imgsrc="../images/cardlist/card/BT7-111.png"alt="BT7-111Lucemon:ChaosMode"></div>
  9299. <divclass="cardinfo_top_body">
  9300. <dl>
  9301. <dt>Form</dt>
  9302. <dd>Ultimate</dd>
  9303. </dl>
  9304. <dl>
  9305. <dt>Attribute</dt>
  9306. <dd>Virus</dd>
  9307. </dl>
  9308. <dl>
  9309. <dt>Type</dt>
  9310. <dd>DemonLord/SevenGreatDemonLords</dd>
  9311. </dl>
  9312. <dl>
  9313. <dt>DP</dt>
  9314. <dd>12000</dl>
  9315. <dl>
  9316. <dt>PlayCost</dt>
  9317. <dd>14</dd>
  9318. </dl>
  9319. <dl>
  9320. <dt>DigivolveCost1</dt>
  9321. <dd>-</dd>
  9322. </dl>
  9323. <dl>
  9324. <dt>DigivolveCost2</dt>
  9325. <dd>-</dd>
  9326. </dl>
  9327. </div>
  9328. </div>
  9329. <divclass="cardinfo_bottom">
  9330. <dl>
  9331. <dt>Effect</dt>
  9332. <dd>Your [Lucemon] can digivolve into this card in your hand for a memory cost of 7, ignoring this card's digivolution requirements. For every 10 cards in your trash, reduce the memory cost when playing this card from your hand by 3. [On Play][When Digivolving] Delete 1 of your opponent's Tamers or level 6 or lower Digimon.</dd>
  9333. </dl>
  9334. <dl>
  9335. <dt>Digivolveeffect</dt>
  9336. <dd>-</dd>
  9337. </dl>
  9338. <dl>
  9339. <dt>Securityeffect</dt>
  9340. <dd>-</dd>
  9341. </dl>
  9342. <dl>
  9343. <dt>Notes</dt>
  9344. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9345. </div>
  9346. </div>
  9347. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9348. </div>
  9349. </div>
  9350. </li>
  9351. <liclass="image_lists_itemdatapage-4">
  9352. <aclass="card_img">
  9353. <imgsrc="../images/cardlist/card/BT7-111_P1.png"alt="BT7-111Lucemon:ChaosMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  9354. </a>
  9355. <divclass="popup">
  9356. <divclass="card_detailcard_detail_purple">
  9357. <divclass="card_detail_inner">
  9358. <ulclass="cardinfo_head">
  9359. <liclass="cardno">BT7-111</li>
  9360. <li>SEC</li>
  9361. <liclass="cardtype">Digimon</li>
  9362. <liclass="cardlv">Lv.5</li>
  9363. <liclass="cardtypecardParallel">AlternativeArt</li>
  9364. </ul>
  9365. <divclass="card_name">Lucemon:ChaosMode</div>
  9366. <divclass="cardinfo_top">
  9367. <divclass="card_img">
  9368. <imgsrc="../images/cardlist/card/BT7-111_P1.png"alt="BT7-111Lucemon:ChaosMode"></div>
  9369. <divclass="cardinfo_top_body">
  9370. <dl>
  9371. <dt>Form</dt>
  9372. <dd>Ultimate</dd>
  9373. </dl>
  9374. <dl>
  9375. <dt>Attribute</dt>
  9376. <dd>Virus</dd>
  9377. </dl>
  9378. <dl>
  9379. <dt>Type</dt>
  9380. <dd>DemonLord/SevenGreatDemonLords</dd>
  9381. </dl>
  9382. <dl>
  9383. <dt>DP</dt>
  9384. <dd>12000</dl>
  9385. <dl>
  9386. <dt>PlayCost</dt>
  9387. <dd>14</dd>
  9388. </dl>
  9389. <dl>
  9390. <dt>DigivolveCost1</dt>
  9391. <dd>-</dd>
  9392. </dl>
  9393. <dl>
  9394. <dt>DigivolveCost2</dt>
  9395. <dd>-</dd>
  9396. </dl>
  9397. </div>
  9398. </div>
  9399. <divclass="cardinfo_bottom">
  9400. <dl>
  9401. <dt>Effect</dt>
  9402. <dd>Your [Lucemon] can digivolve into this card in your hand for a memory cost of 7, ignoring this card's digivolution requirements. For every 10 cards in your trash, reduce the memory cost when playing this card from your hand by 3. [On Play][When Digivolving] Delete 1 of your opponent's Tamers or level 6 or lower Digimon.</dd>
  9403. </dl>
  9404. <dl>
  9405. <dt>Digivolveeffect</dt>
  9406. <dd>-</dd>
  9407. </dl>
  9408. <dl>
  9409. <dt>Securityeffect</dt>
  9410. <dd>-</dd>
  9411. </dl>
  9412. <dl>
  9413. <dt>Notes</dt>
  9414. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9415. </div>
  9416. </div>
  9417. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9418. </div>
  9419. </div>
  9420. </li>
  9421. <liclass="image_lists_itemdatapage-4">
  9422. <aclass="card_img">
  9423. <imgsrc="../images/cardlist/card/BT7-112.png"alt="BT7-112Susanoomon"></a>
  9424. <divclass="popup">
  9425. <divclass="card_detailcard_detail_white">
  9426. <divclass="card_detail_inner">
  9427. <ulclass="cardinfo_head">
  9428. <liclass="cardno">BT7-112</li>
  9429. <li>SEC</li>
  9430. <liclass="cardtype">Digimon</li>
  9431. <liclass="cardlv">Lv.7</li>
  9432. </ul>
  9433. <divclass="card_name">Susanoomon</div>
  9434. <divclass="cardinfo_top">
  9435. <divclass="card_img">
  9436. <imgsrc="../images/cardlist/card/BT7-112.png"alt="BT7-112Susanoomon"></div>
  9437. <divclass="cardinfo_top_body">
  9438. <dl>
  9439. <dt>Form</dt>
  9440. <dd>Mega</dd>
  9441. </dl>
  9442. <dl>
  9443. <dt>Attribute</dt>
  9444. <dd>Vaccine</dd>
  9445. </dl>
  9446. <dl>
  9447. <dt>Type</dt>
  9448. <dd>Shaman</dd>
  9449. </dl>
  9450. <dl>
  9451. <dt>DP</dt>
  9452. <dd>15000</dl>
  9453. <dl>
  9454. <dt>PlayCost</dt>
  9455. <dd>15</dd>
  9456. </dl>
  9457. <dl>
  9458. <dt>DigivolveCost1</dt>
  9459. <dd>7fromLv.6</dd>
  9460. </dl>
  9461. <dl>
  9462. <dt>DigivolveCost2</dt>
  9463. <dd>-</dd>
  9464. </dl>
  9465. </div>
  9466. </div>
  9467. <divclass="cardinfo_bottom">
  9468. <dl>
  9469. <dt>Effect</dt>
  9470. <dd>You may digivolve this card from your hand onto one of your Tamers as if the Tamer is a level 6 Digimon by placing 10 Tamer cards and/or cards with [Hybrid] in their traits from your hand and/or trash at the bottom of your deck in any order. <Security Attack +2> (This Digimon checks 2 additional security cards.)[When Digivolving] Delete 1 of your opponent's Digimon.</dd>
  9471. </dl>
  9472. <dl>
  9473. <dt>Digivolveeffect</dt>
  9474. <dd>-</dd>
  9475. </dl>
  9476. <dl>
  9477. <dt>Securityeffect</dt>
  9478. <dd>-</dd>
  9479. </dl>
  9480. <dl>
  9481. <dt>Notes</dt>
  9482. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9483. </div>
  9484. </div>
  9485. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9486. </div>
  9487. </div>
  9488. </li>
  9489. <liclass="image_lists_itemdatapage-4">
  9490. <aclass="card_img">
  9491. <imgsrc="../images/cardlist/card/BT7-112_P1.png"alt="BT7-112Susanoomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  9492. </a>
  9493. <divclass="popup">
  9494. <divclass="card_detailcard_detail_white">
  9495. <divclass="card_detail_inner">
  9496. <ulclass="cardinfo_head">
  9497. <liclass="cardno">BT7-112</li>
  9498. <li>SEC</li>
  9499. <liclass="cardtype">Digimon</li>
  9500. <liclass="cardlv">Lv.7</li>
  9501. <liclass="cardtypecardParallel">AlternativeArt</li>
  9502. </ul>
  9503. <divclass="card_name">Susanoomon</div>
  9504. <divclass="cardinfo_top">
  9505. <divclass="card_img">
  9506. <imgsrc="../images/cardlist/card/BT7-112_P1.png"alt="BT7-112Susanoomon"></div>
  9507. <divclass="cardinfo_top_body">
  9508. <dl>
  9509. <dt>Form</dt>
  9510. <dd>Mega</dd>
  9511. </dl>
  9512. <dl>
  9513. <dt>Attribute</dt>
  9514. <dd>Vaccine</dd>
  9515. </dl>
  9516. <dl>
  9517. <dt>Type</dt>
  9518. <dd>Shaman</dd>
  9519. </dl>
  9520. <dl>
  9521. <dt>DP</dt>
  9522. <dd>15000</dl>
  9523. <dl>
  9524. <dt>PlayCost</dt>
  9525. <dd>15</dd>
  9526. </dl>
  9527. <dl>
  9528. <dt>DigivolveCost1</dt>
  9529. <dd>7fromLv.6</dd>
  9530. </dl>
  9531. <dl>
  9532. <dt>DigivolveCost2</dt>
  9533. <dd>-</dd>
  9534. </dl>
  9535. </div>
  9536. </div>
  9537. <divclass="cardinfo_bottom">
  9538. <dl>
  9539. <dt>Effect</dt>
  9540. <dd>You may digivolve this card from your hand onto one of your Tamers as if the Tamer is a level 6 Digimon by placing 10 Tamer cards and/or cards with [Hybrid] in their traits from your hand and/or trash at the bottom of your deck in any order. <Security Attack +2> (This Digimon checks 2 additional security cards.)[When Digivolving] Delete 1 of your opponent's Digimon.</dd>
  9541. </dl>
  9542. <dl>
  9543. <dt>Digivolveeffect</dt>
  9544. <dd>-</dd>
  9545. </dl>
  9546. <dl>
  9547. <dt>Securityeffect</dt>
  9548. <dd>-</dd>
  9549. </dl>
  9550. <dl>
  9551. <dt>Notes</dt>
  9552. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9553. </div>
  9554. </div>
  9555. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9556. </div>
  9557. </div>
  9558. </li>
  9559. <liclass="image_lists_itemdatapage-4">
  9560. <aclass="card_img">
  9561. <imgsrc="../images/cardlist/card/P-049.png"alt="P-049Phoenixmon"></a>
  9562. <divclass="popup">
  9563. <divclass="card_detailcard_detail_red">
  9564. <divclass="card_detail_inner">
  9565. <ulclass="cardinfo_head">
  9566. <liclass="cardno">P-049</li>
  9567. <li>P</li>
  9568. <liclass="cardtype">Digimon</li>
  9569. <liclass="cardlv">Lv.6</li>
  9570. </ul>
  9571. <divclass="card_name">Phoenixmon</div>
  9572. <divclass="cardinfo_top">
  9573. <divclass="card_img">
  9574. <imgsrc="../images/cardlist/card/P-049.png"alt="P-049Phoenixmon"></div>
  9575. <divclass="cardinfo_top_body">
  9576. <dl>
  9577. <dt>Form</dt>
  9578. <dd>Mega</dd>
  9579. </dl>
  9580. <dl>
  9581. <dt>Attribute</dt>
  9582. <dd>Vaccine</dd>
  9583. </dl>
  9584. <dl>
  9585. <dt>Type</dt>
  9586. <dd>HolyBeast</dd>
  9587. </dl>
  9588. <dl>
  9589. <dt>DP</dt>
  9590. <dd>11000</dl>
  9591. <dl>
  9592. <dt>PlayCost</dt>
  9593. <dd>11</dd>
  9594. </dl>
  9595. <dl>
  9596. <dt>DigivolveCost1</dt>
  9597. <dd>3fromLv.5</dd>
  9598. </dl>
  9599. <dl>
  9600. <dt>DigivolveCost2</dt>
  9601. <dd>-</dd>
  9602. </dl>
  9603. </div>
  9604. </div>
  9605. <divclass="cardinfo_bottom">
  9606. <dl>
  9607. <dt>Effect</dt>
  9608. <dd>[When Digivolving] If you have a Tamer in play, this Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.) [Your Turn][Once Per Turn] When this Digimon is blocked, trash the top card of your opponent's security stack.</dd>
  9609. </dl>
  9610. <dl>
  9611. <dt>Digivolveeffect</dt>
  9612. <dd>-</dd>
  9613. </dl>
  9614. <dl>
  9615. <dt>Securityeffect</dt>
  9616. <dd>-</dd>
  9617. </dl>
  9618. <dl>
  9619. <dt>Notes</dt>
  9620. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9621. </div>
  9622. </div>
  9623. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9624. </div>
  9625. </div>
  9626. </li>
  9627. <liclass="image_lists_itemdatapage-4">
  9628. <aclass="card_img">
  9629. <imgsrc="../images/cardlist/card/P-050.png"alt="P-050WarGreymon"></a>
  9630. <divclass="popup">
  9631. <divclass="card_detailcard_detail_red">
  9632. <divclass="card_detail_inner">
  9633. <ulclass="cardinfo_head">
  9634. <liclass="cardno">P-050</li>
  9635. <li>P</li>
  9636. <liclass="cardtype">Digimon</li>
  9637. <liclass="cardlv">Lv.6</li>
  9638. </ul>
  9639. <divclass="card_name">WarGreymon</div>
  9640. <divclass="cardinfo_top">
  9641. <divclass="card_img">
  9642. <imgsrc="../images/cardlist/card/P-050.png"alt="P-050WarGreymon"></div>
  9643. <divclass="cardinfo_top_body">
  9644. <dl>
  9645. <dt>Form</dt>
  9646. <dd>Mega</dd>
  9647. </dl>
  9648. <dl>
  9649. <dt>Attribute</dt>
  9650. <dd>Vaccine</dd>
  9651. </dl>
  9652. <dl>
  9653. <dt>Type</dt>
  9654. <dd>Dragonkin</dd>
  9655. </dl>
  9656. <dl>
  9657. <dt>DP</dt>
  9658. <dd>12000</dl>
  9659. <dl>
  9660. <dt>PlayCost</dt>
  9661. <dd>12</dd>
  9662. </dl>
  9663. <dl>
  9664. <dt>DigivolveCost1</dt>
  9665. <dd>4fromLv.5</dd>
  9666. </dl>
  9667. <dl>
  9668. <dt>DigivolveCost2</dt>
  9669. <dd>-</dd>
  9670. </dl>
  9671. </div>
  9672. </div>
  9673. <divclass="cardinfo_bottom">
  9674. <dl>
  9675. <dt>Effect</dt>
  9676. <dd>[When Digivolving] If you have a Tamer in play, delete 1 of your opponent's Digimon with 13000 DP or more. [When Attacking] Delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  9677. </dl>
  9678. <dl>
  9679. <dt>Digivolveeffect</dt>
  9680. <dd>-</dd>
  9681. </dl>
  9682. <dl>
  9683. <dt>Securityeffect</dt>
  9684. <dd>-</dd>
  9685. </dl>
  9686. <dl>
  9687. <dt>Notes</dt>
  9688. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9689. </div>
  9690. </div>
  9691. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9692. </div>
  9693. </div>
  9694. </li>
  9695. <liclass="image_lists_itemdatapage-4">
  9696. <aclass="card_img">
  9697. <imgsrc="../images/cardlist/card/P-051.png"alt="P-051MetalGarurumon"></a>
  9698. <divclass="popup">
  9699. <divclass="card_detailcard_detail_blue">
  9700. <divclass="card_detail_inner">
  9701. <ulclass="cardinfo_head">
  9702. <liclass="cardno">P-051</li>
  9703. <li>P</li>
  9704. <liclass="cardtype">Digimon</li>
  9705. <liclass="cardlv">Lv.6</li>
  9706. </ul>
  9707. <divclass="card_name">MetalGarurumon</div>
  9708. <divclass="cardinfo_top">
  9709. <divclass="card_img">
  9710. <imgsrc="../images/cardlist/card/P-051.png"alt="P-051MetalGarurumon"></div>
  9711. <divclass="cardinfo_top_body">
  9712. <dl>
  9713. <dt>Form</dt>
  9714. <dd>Mega</dd>
  9715. </dl>
  9716. <dl>
  9717. <dt>Attribute</dt>
  9718. <dd>Data</dd>
  9719. </dl>
  9720. <dl>
  9721. <dt>Type</dt>
  9722. <dd>Cyborg</dd>
  9723. </dl>
  9724. <dl>
  9725. <dt>DP</dt>
  9726. <dd>11000</dl>
  9727. <dl>
  9728. <dt>PlayCost</dt>
  9729. <dd>11</dd>
  9730. </dl>
  9731. <dl>
  9732. <dt>DigivolveCost1</dt>
  9733. <dd>3fromLv.5</dd>
  9734. </dl>
  9735. <dl>
  9736. <dt>DigivolveCost2</dt>
  9737. <dd>-</dd>
  9738. </dl>
  9739. </div>
  9740. </div>
  9741. <divclass="cardinfo_bottom">
  9742. <dl>
  9743. <dt>Effect</dt>
  9744. <dd>[When Digivolving] If you have a Tamer in play, <Draw 2>. (Draw 2 cards from your deck.) [Opponent's Turn] This Digimon can't be attacked.</dd>
  9745. </dl>
  9746. <dl>
  9747. <dt>Digivolveeffect</dt>
  9748. <dd>-</dd>
  9749. </dl>
  9750. <dl>
  9751. <dt>Securityeffect</dt>
  9752. <dd>-</dd>
  9753. </dl>
  9754. <dl>
  9755. <dt>Notes</dt>
  9756. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9757. </div>
  9758. </div>
  9759. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9760. </div>
  9761. </div>
  9762. </li>
  9763. <liclass="image_lists_itemdatapage-4">
  9764. <aclass="card_img">
  9765. <imgsrc="../images/cardlist/card/P-052.png"alt="P-052Vikemon"></a>
  9766. <divclass="popup">
  9767. <divclass="card_detailcard_detail_blue">
  9768. <divclass="card_detail_inner">
  9769. <ulclass="cardinfo_head">
  9770. <liclass="cardno">P-052</li>
  9771. <li>P</li>
  9772. <liclass="cardtype">Digimon</li>
  9773. <liclass="cardlv">Lv.6</li>
  9774. </ul>
  9775. <divclass="card_name">Vikemon</div>
  9776. <divclass="cardinfo_top">
  9777. <divclass="card_img">
  9778. <imgsrc="../images/cardlist/card/P-052.png"alt="P-052Vikemon"></div>
  9779. <divclass="cardinfo_top_body">
  9780. <dl>
  9781. <dt>Form</dt>
  9782. <dd>Mega</dd>
  9783. </dl>
  9784. <dl>
  9785. <dt>Attribute</dt>
  9786. <dd>Free</dd>
  9787. </dl>
  9788. <dl>
  9789. <dt>Type</dt>
  9790. <dd>Beastkin</dd>
  9791. </dl>
  9792. <dl>
  9793. <dt>DP</dt>
  9794. <dd>11000</dl>
  9795. <dl>
  9796. <dt>PlayCost</dt>
  9797. <dd>12</dd>
  9798. </dl>
  9799. <dl>
  9800. <dt>DigivolveCost1</dt>
  9801. <dd>4fromLv.5</dd>
  9802. </dl>
  9803. <dl>
  9804. <dt>DigivolveCost2</dt>
  9805. <dd>-</dd>
  9806. </dl>
  9807. </div>
  9808. </div>
  9809. <divclass="cardinfo_bottom">
  9810. <dl>
  9811. <dt>Effect</dt>
  9812. <dd>[When Digivolving] If you have a Tamer in play, up to 3 of your opponent's Digimon with no digivolution cards can't attack until the end of your opponent's next turn. [When Attacking][Once Per Turn] Return 1 of your opponent's Digimon with no digivolution cards to its owner's hand.</dd>
  9813. </dl>
  9814. <dl>
  9815. <dt>Digivolveeffect</dt>
  9816. <dd>-</dd>
  9817. </dl>
  9818. <dl>
  9819. <dt>Securityeffect</dt>
  9820. <dd>-</dd>
  9821. </dl>
  9822. <dl>
  9823. <dt>Notes</dt>
  9824. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9825. </div>
  9826. </div>
  9827. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9828. </div>
  9829. </div>
  9830. </li>
  9831. <liclass="image_lists_itemdatapage-4">
  9832. <aclass="card_img">
  9833. <imgsrc="../images/cardlist/card/P-053.png"alt="P-053Ophanimon"></a>
  9834. <divclass="popup">
  9835. <divclass="card_detailcard_detail_yellow">
  9836. <divclass="card_detail_inner">
  9837. <ulclass="cardinfo_head">
  9838. <liclass="cardno">P-053</li>
  9839. <li>P</li>
  9840. <liclass="cardtype">Digimon</li>
  9841. <liclass="cardlv">Lv.6</li>
  9842. </ul>
  9843. <divclass="card_name">Ophanimon</div>
  9844. <divclass="cardinfo_top">
  9845. <divclass="card_img">
  9846. <imgsrc="../images/cardlist/card/P-053.png"alt="P-053Ophanimon"></div>
  9847. <divclass="cardinfo_top_body">
  9848. <dl>
  9849. <dt>Form</dt>
  9850. <dd>Mega</dd>
  9851. </dl>
  9852. <dl>
  9853. <dt>Attribute</dt>
  9854. <dd>Vaccine</dd>
  9855. </dl>
  9856. <dl>
  9857. <dt>Type</dt>
  9858. <dd>Throne/ThreeGreatAngels</dd>
  9859. </dl>
  9860. <dl>
  9861. <dt>DP</dt>
  9862. <dd>11000</dl>
  9863. <dl>
  9864. <dt>PlayCost</dt>
  9865. <dd>11</dd>
  9866. </dl>
  9867. <dl>
  9868. <dt>DigivolveCost1</dt>
  9869. <dd>3fromLv.5</dd>
  9870. </dl>
  9871. <dl>
  9872. <dt>DigivolveCost2</dt>
  9873. <dd>-</dd>
  9874. </dl>
  9875. </div>
  9876. </div>
  9877. <divclass="cardinfo_bottom">
  9878. <dl>
  9879. <dt>Effect</dt>
  9880. <dd>[When Digivolving] If you have a Tamer in play, 1 of your opponent's Digimon gets -5000 DP for the turn. [When Attacking] 1 of your opponent's Digimon and all of your opponent's Security Digimon get -2000 DP for the turn.</dd>
  9881. </dl>
  9882. <dl>
  9883. <dt>Digivolveeffect</dt>
  9884. <dd>-</dd>
  9885. </dl>
  9886. <dl>
  9887. <dt>Securityeffect</dt>
  9888. <dd>-</dd>
  9889. </dl>
  9890. <dl>
  9891. <dt>Notes</dt>
  9892. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9893. </div>
  9894. </div>
  9895. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9896. </div>
  9897. </div>
  9898. </li>
  9899. <liclass="image_lists_itemdatapage-4">
  9900. <aclass="card_img">
  9901. <imgsrc="../images/cardlist/card/P-054.png"alt="P-054Seraphimon"></a>
  9902. <divclass="popup">
  9903. <divclass="card_detailcard_detail_yellow">
  9904. <divclass="card_detail_inner">
  9905. <ulclass="cardinfo_head">
  9906. <liclass="cardno">P-054</li>
  9907. <li>P</li>
  9908. <liclass="cardtype">Digimon</li>
  9909. <liclass="cardlv">Lv.6</li>
  9910. </ul>
  9911. <divclass="card_name">Seraphimon</div>
  9912. <divclass="cardinfo_top">
  9913. <divclass="card_img">
  9914. <imgsrc="../images/cardlist/card/P-054.png"alt="P-054Seraphimon"></div>
  9915. <divclass="cardinfo_top_body">
  9916. <dl>
  9917. <dt>Form</dt>
  9918. <dd>Mega</dd>
  9919. </dl>
  9920. <dl>
  9921. <dt>Attribute</dt>
  9922. <dd>Vaccine</dd>
  9923. </dl>
  9924. <dl>
  9925. <dt>Type</dt>
  9926. <dd>Seraph/ThreeGreatAngels</dd>
  9927. </dl>
  9928. <dl>
  9929. <dt>DP</dt>
  9930. <dd>11000</dl>
  9931. <dl>
  9932. <dt>PlayCost</dt>
  9933. <dd>12</dd>
  9934. </dl>
  9935. <dl>
  9936. <dt>DigivolveCost1</dt>
  9937. <dd>4fromLv.5</dd>
  9938. </dl>
  9939. <dl>
  9940. <dt>DigivolveCost2</dt>
  9941. <dd>-</dd>
  9942. </dl>
  9943. </div>
  9944. </div>
  9945. <divclass="cardinfo_bottom">
  9946. <dl>
  9947. <dt>Effect</dt>
  9948. <dd>[When Digivolving] If you have a Tamer in play, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)[On Deletion] <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.)</dd>
  9949. </dl>
  9950. <dl>
  9951. <dt>Digivolveeffect</dt>
  9952. <dd>-</dd>
  9953. </dl>
  9954. <dl>
  9955. <dt>Securityeffect</dt>
  9956. <dd>-</dd>
  9957. </dl>
  9958. <dl>
  9959. <dt>Notes</dt>
  9960. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  9961. </div>
  9962. </div>
  9963. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9964. </div>
  9965. </div>
  9966. </li>
  9967. <liclass="image_lists_itemdatapage-4">
  9968. <aclass="card_img">
  9969. <imgsrc="../images/cardlist/card/P-055.png"alt="P-055HerculesKabuterimon"></a>
  9970. <divclass="popup">
  9971. <divclass="card_detailcard_detail_green">
  9972. <divclass="card_detail_inner">
  9973. <ulclass="cardinfo_head">
  9974. <liclass="cardno">P-055</li>
  9975. <li>P</li>
  9976. <liclass="cardtype">Digimon</li>
  9977. <liclass="cardlv">Lv.6</li>
  9978. </ul>
  9979. <divclass="card_name">HerculesKabuterimon</div>
  9980. <divclass="cardinfo_top">
  9981. <divclass="card_img">
  9982. <imgsrc="../images/cardlist/card/P-055.png"alt="P-055HerculesKabuterimon"></div>
  9983. <divclass="cardinfo_top_body">
  9984. <dl>
  9985. <dt>Form</dt>
  9986. <dd>Mega</dd>
  9987. </dl>
  9988. <dl>
  9989. <dt>Attribute</dt>
  9990. <dd>Vaccine</dd>
  9991. </dl>
  9992. <dl>
  9993. <dt>Type</dt>
  9994. <dd>Insectoid</dd>
  9995. </dl>
  9996. <dl>
  9997. <dt>DP</dt>
  9998. <dd>11000</dl>
  9999. <dl>
  10000. <dt>PlayCost</dt>
  10001. <dd>12</dd>
  10002. </dl>
  10003. <dl>
  10004. <dt>DigivolveCost1</dt>
  10005. <dd>3fromLv.5</dd>
  10006. </dl>
  10007. <dl>
  10008. <dt>DigivolveCost2</dt>
  10009. <dd>-</dd>
  10010. </dl>
  10011. </div>
  10012. </div>
  10013. <divclass="cardinfo_bottom">
  10014. <dl>
  10015. <dt>Effect</dt>
  10016. <dd>[When Digivolving] If you have a Tamer in play, suspend 1 of your opponent's Digimon. [Your Turn] When this Digimon deletes an opponent's Digimon in battle and survives, gain 1 memory.</dd>
  10017. </dl>
  10018. <dl>
  10019. <dt>Digivolveeffect</dt>
  10020. <dd>-</dd>
  10021. </dl>
  10022. <dl>
  10023. <dt>Securityeffect</dt>
  10024. <dd>-</dd>
  10025. </dl>
  10026. <dl>
  10027. <dt>Notes</dt>
  10028. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10029. </div>
  10030. </div>
  10031. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10032. </div>
  10033. </div>
  10034. </li>
  10035. <liclass="image_lists_itemdatapage-4">
  10036. <aclass="card_img">
  10037. <imgsrc="../images/cardlist/card/P-056.png"alt="P-056Rosemon"></a>
  10038. <divclass="popup">
  10039. <divclass="card_detailcard_detail_green">
  10040. <divclass="card_detail_inner">
  10041. <ulclass="cardinfo_head">
  10042. <liclass="cardno">P-056</li>
  10043. <li>P</li>
  10044. <liclass="cardtype">Digimon</li>
  10045. <liclass="cardlv">Lv.6</li>
  10046. </ul>
  10047. <divclass="card_name">Rosemon</div>
  10048. <divclass="cardinfo_top">
  10049. <divclass="card_img">
  10050. <imgsrc="../images/cardlist/card/P-056.png"alt="P-056Rosemon"></div>
  10051. <divclass="cardinfo_top_body">
  10052. <dl>
  10053. <dt>Form</dt>
  10054. <dd>Mega</dd>
  10055. </dl>
  10056. <dl>
  10057. <dt>Attribute</dt>
  10058. <dd>Data</dd>
  10059. </dl>
  10060. <dl>
  10061. <dt>Type</dt>
  10062. <dd>Fairy</dd>
  10063. </dl>
  10064. <dl>
  10065. <dt>DP</dt>
  10066. <dd>12000</dl>
  10067. <dl>
  10068. <dt>PlayCost</dt>
  10069. <dd>12</dd>
  10070. </dl>
  10071. <dl>
  10072. <dt>DigivolveCost1</dt>
  10073. <dd>4fromLv.5</dd>
  10074. </dl>
  10075. <dl>
  10076. <dt>DigivolveCost2</dt>
  10077. <dd>-</dd>
  10078. </dl>
  10079. </div>
  10080. </div>
  10081. <divclass="cardinfo_bottom">
  10082. <dl>
  10083. <dt>Effect</dt>
  10084. <dd><Digisorption -2> (When one of your Digimon digivolves into this card from your hand, you may suspend 1 of your Digimon to reduce the memory cost of the digivolution by 2.)[When Digivolving] If you have a Tamer in play, 1 of your opponent's Digimon can't attack or block until the end of their next turn.</dd>
  10085. </dl>
  10086. <dl>
  10087. <dt>Digivolveeffect</dt>
  10088. <dd>-</dd>
  10089. </dl>
  10090. <dl>
  10091. <dt>Securityeffect</dt>
  10092. <dd>-</dd>
  10093. </dl>
  10094. <dl>
  10095. <dt>Notes</dt>
  10096. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10097. </div>
  10098. </div>
  10099. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10100. </div>
  10101. </div>
  10102. </li>
  10103. <liclass="image_lists_itemdatapage-4">
  10104. <aclass="card_img">
  10105. <imgsrc="../images/cardlist/card/BT7-092.png"alt="BT7-092FlameMemoryBoost!"></a>
  10106. <divclass="popup">
  10107. <divclass="card_detailcard_detail_red">
  10108. <divclass="card_detail_inner">
  10109. <ulclass="cardinfo_head">
  10110. <liclass="cardno">BT7-092</li>
  10111. <li>C</li>
  10112. <liclass="cardtype">Option</li>
  10113. </ul>
  10114. <divclass="card_name">FlameMemoryBoost!</div>
  10115. <divclass="cardinfo_top">
  10116. <divclass="card_img">
  10117. <imgsrc="../images/cardlist/card/BT7-092.png"alt="BT7-092FlameMemoryBoost!"></div>
  10118. <divclass="cardinfo_top_body">
  10119. <dl>
  10120. <dt>Form</dt>
  10121. <dd>-</dd>
  10122. </dl>
  10123. <dl>
  10124. <dt>Attribute</dt>
  10125. <dd>-</dd>
  10126. </dl>
  10127. <dl>
  10128. <dt>Type</dt>
  10129. <dd>-</dd>
  10130. </dl>
  10131. <dl>
  10132. <dt>DP</dt>
  10133. <dd>-</dl>
  10134. <dl>
  10135. <dt>PlayCost</dt>
  10136. <dd>3</dd>
  10137. </dl>
  10138. <dl>
  10139. <dt>DigivolveCost1</dt>
  10140. <dd>-</dd>
  10141. </dl>
  10142. <dl>
  10143. <dt>DigivolveCost2</dt>
  10144. <dd>-</dd>
  10145. </dl>
  10146. </div>
  10147. </div>
  10148. <divclass="cardinfo_bottom">
  10149. <dl>
  10150. <dt>Effect</dt>
  10151. <dd>[Main] 1 of your Digimon gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.) Then, place this card in your battle area. [Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.) ・Gain 2 memory.</dd>
  10152. </dl>
  10153. <dl>
  10154. <dt>Digivolveeffect</dt>
  10155. <dd>-</dd>
  10156. </dl>
  10157. <dl>
  10158. <dt>Securityeffect</dt>
  10159. <dd>[Security] Place this card in its owner's battle area.</dd>
  10160. </dl>
  10161. <dl>
  10162. <dt>Notes</dt>
  10163. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10164. </div>
  10165. </div>
  10166. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10167. </div>
  10168. </div>
  10169. </li>
  10170. <liclass="image_lists_itemdatapage-4">
  10171. <aclass="card_img">
  10172. <imgsrc="../images/cardlist/card/BT7-093.png"alt="BT7-093FiredrakeStrike"></a>
  10173. <divclass="popup">
  10174. <divclass="card_detailcard_detail_red">
  10175. <divclass="card_detail_inner">
  10176. <ulclass="cardinfo_head">
  10177. <liclass="cardno">BT7-093</li>
  10178. <li>U</li>
  10179. <liclass="cardtype">Option</li>
  10180. </ul>
  10181. <divclass="card_name">FiredrakeStrike</div>
  10182. <divclass="cardinfo_top">
  10183. <divclass="card_img">
  10184. <imgsrc="../images/cardlist/card/BT7-093.png"alt="BT7-093FiredrakeStrike"></div>
  10185. <divclass="cardinfo_top_body">
  10186. <dl>
  10187. <dt>Form</dt>
  10188. <dd>-</dd>
  10189. </dl>
  10190. <dl>
  10191. <dt>Attribute</dt>
  10192. <dd>-</dd>
  10193. </dl>
  10194. <dl>
  10195. <dt>Type</dt>
  10196. <dd>-</dd>
  10197. </dl>
  10198. <dl>
  10199. <dt>DP</dt>
  10200. <dd>-</dl>
  10201. <dl>
  10202. <dt>PlayCost</dt>
  10203. <dd>4</dd>
  10204. </dl>
  10205. <dl>
  10206. <dt>DigivolveCost1</dt>
  10207. <dd>-</dd>
  10208. </dl>
  10209. <dl>
  10210. <dt>DigivolveCost2</dt>
  10211. <dd>-</dd>
  10212. </dl>
  10213. </div>
  10214. </div>
  10215. <divclass="cardinfo_bottom">
  10216. <dl>
  10217. <dt>Effect</dt>
  10218. <dd>[Main] Choose 1 of your Digimon with [Hybrid] in its traits. Delete 1 of your opponent's Digimon with DP less than or equal to the chosen Digimon's DP.</dd>
  10219. </dl>
  10220. <dl>
  10221. <dt>Digivolveeffect</dt>
  10222. <dd>-</dd>
  10223. </dl>
  10224. <dl>
  10225. <dt>Securityeffect</dt>
  10226. <dd>[Security] You may play 1 [Takuya Kanbara] from your hand or trash without paying its memory cost.</dd>
  10227. </dl>
  10228. <dl>
  10229. <dt>Notes</dt>
  10230. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10231. </div>
  10232. </div>
  10233. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10234. </div>
  10235. </div>
  10236. </li>
  10237. <liclass="image_lists_itemdatapage-4">
  10238. <aclass="card_img">
  10239. <imgsrc="../images/cardlist/card/BT7-094.png"alt="BT7-094GigaStorm"></a>
  10240. <divclass="popup">
  10241. <divclass="card_detailcard_detail_red">
  10242. <divclass="card_detail_inner">
  10243. <ulclass="cardinfo_head">
  10244. <liclass="cardno">BT7-094</li>
  10245. <li>C</li>
  10246. <liclass="cardtype">Option</li>
  10247. </ul>
  10248. <divclass="card_name">GigaStorm</div>
  10249. <divclass="cardinfo_top">
  10250. <divclass="card_img">
  10251. <imgsrc="../images/cardlist/card/BT7-094.png"alt="BT7-094GigaStorm"></div>
  10252. <divclass="cardinfo_top_body">
  10253. <dl>
  10254. <dt>Form</dt>
  10255. <dd>-</dd>
  10256. </dl>
  10257. <dl>
  10258. <dt>Attribute</dt>
  10259. <dd>-</dd>
  10260. </dl>
  10261. <dl>
  10262. <dt>Type</dt>
  10263. <dd>-</dd>
  10264. </dl>
  10265. <dl>
  10266. <dt>DP</dt>
  10267. <dd>-</dl>
  10268. <dl>
  10269. <dt>PlayCost</dt>
  10270. <dd>7</dd>
  10271. </dl>
  10272. <dl>
  10273. <dt>DigivolveCost1</dt>
  10274. <dd>-</dd>
  10275. </dl>
  10276. <dl>
  10277. <dt>DigivolveCost2</dt>
  10278. <dd>-</dd>
  10279. </dl>
  10280. </div>
  10281. </div>
  10282. <divclass="cardinfo_bottom">
  10283. <dl>
  10284. <dt>Effect</dt>
  10285. <dd>[Main] Delete up to 2 of your opponent's Digimon with 8000 DP or less.</dd>
  10286. </dl>
  10287. <dl>
  10288. <dt>Digivolveeffect</dt>
  10289. <dd>-</dd>
  10290. </dl>
  10291. <dl>
  10292. <dt>Securityeffect</dt>
  10293. <dd>[Security] Activate this card's [Main] effect.</dd>
  10294. </dl>
  10295. <dl>
  10296. <dt>Notes</dt>
  10297. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10298. </div>
  10299. </div>
  10300. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10301. </div>
  10302. </div>
  10303. </li>
  10304. <liclass="image_lists_itemdatapage-4">
  10305. <aclass="card_img">
  10306. <imgsrc="../images/cardlist/card/BT7-095.png"alt="BT7-095BlueHawaiiDeath"></a>
  10307. <divclass="popup">
  10308. <divclass="card_detailcard_detail_blue">
  10309. <divclass="card_detail_inner">
  10310. <ulclass="cardinfo_head">
  10311. <liclass="cardno">BT7-095</li>
  10312. <li>C</li>
  10313. <liclass="cardtype">Option</li>
  10314. </ul>
  10315. <divclass="card_name">BlueHawaiiDeath</div>
  10316. <divclass="cardinfo_top">
  10317. <divclass="card_img">
  10318. <imgsrc="../images/cardlist/card/BT7-095.png"alt="BT7-095BlueHawaiiDeath"></div>
  10319. <divclass="cardinfo_top_body">
  10320. <dl>
  10321. <dt>Form</dt>
  10322. <dd>-</dd>
  10323. </dl>
  10324. <dl>
  10325. <dt>Attribute</dt>
  10326. <dd>-</dd>
  10327. </dl>
  10328. <dl>
  10329. <dt>Type</dt>
  10330. <dd>-</dd>
  10331. </dl>
  10332. <dl>
  10333. <dt>DP</dt>
  10334. <dd>-</dl>
  10335. <dl>
  10336. <dt>PlayCost</dt>
  10337. <dd>2</dd>
  10338. </dl>
  10339. <dl>
  10340. <dt>DigivolveCost1</dt>
  10341. <dd>-</dd>
  10342. </dl>
  10343. <dl>
  10344. <dt>DigivolveCost2</dt>
  10345. <dd>-</dd>
  10346. </dl>
  10347. </div>
  10348. </div>
  10349. <divclass="cardinfo_bottom">
  10350. <dl>
  10351. <dt>Effect</dt>
  10352. <dd>[Main] For the turn, 1 of your Digimon gets +3000 DP and can also attack your opponent's unsuspended Digimon with no digivolution cards.</dd>
  10353. </dl>
  10354. <dl>
  10355. <dt>Digivolveeffect</dt>
  10356. <dd>-</dd>
  10357. </dl>
  10358. <dl>
  10359. <dt>Securityeffect</dt>
  10360. <dd>[Security] Add this card to its owner's hand.</dd>
  10361. </dl>
  10362. <dl>
  10363. <dt>Notes</dt>
  10364. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10365. </div>
  10366. </div>
  10367. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10368. </div>
  10369. </div>
  10370. </li>
  10371. <liclass="image_lists_itemdatapage-4">
  10372. <aclass="card_img">
  10373. <imgsrc="../images/cardlist/card/BT7-096.png"alt="BT7-096StarlightVelocity"></a>
  10374. <divclass="popup">
  10375. <divclass="card_detailcard_detail_blue">
  10376. <divclass="card_detail_inner">
  10377. <ulclass="cardinfo_head">
  10378. <liclass="cardno">BT7-096</li>
  10379. <li>U</li>
  10380. <liclass="cardtype">Option</li>
  10381. </ul>
  10382. <divclass="card_name">StarlightVelocity</div>
  10383. <divclass="cardinfo_top">
  10384. <divclass="card_img">
  10385. <imgsrc="../images/cardlist/card/BT7-096.png"alt="BT7-096StarlightVelocity"></div>
  10386. <divclass="cardinfo_top_body">
  10387. <dl>
  10388. <dt>Form</dt>
  10389. <dd>-</dd>
  10390. </dl>
  10391. <dl>
  10392. <dt>Attribute</dt>
  10393. <dd>-</dd>
  10394. </dl>
  10395. <dl>
  10396. <dt>Type</dt>
  10397. <dd>-</dd>
  10398. </dl>
  10399. <dl>
  10400. <dt>DP</dt>
  10401. <dd>-</dl>
  10402. <dl>
  10403. <dt>PlayCost</dt>
  10404. <dd>3</dd>
  10405. </dl>
  10406. <dl>
  10407. <dt>DigivolveCost1</dt>
  10408. <dd>-</dd>
  10409. </dl>
  10410. <dl>
  10411. <dt>DigivolveCost2</dt>
  10412. <dd>-</dd>
  10413. </dl>
  10414. </div>
  10415. </div>
  10416. <divclass="cardinfo_bottom">
  10417. <dl>
  10418. <dt>Effect</dt>
  10419. <dd>[Main] You may play 1 Tamer card or 1 Digimon card with [Hybrid] in its traits from one of your Digimon's digivolution cards as a Tamer or another Digimon without paying its memory cost.</dd>
  10420. </dl>
  10421. <dl>
  10422. <dt>Digivolveeffect</dt>
  10423. <dd>-</dd>
  10424. </dl>
  10425. <dl>
  10426. <dt>Securityeffect</dt>
  10427. <dd>[Security] You may play 1 [Koji Minamoto] from your hand or trash without paying its memory cost.</dd>
  10428. </dl>
  10429. <dl>
  10430. <dt>Notes</dt>
  10431. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10432. </div>
  10433. </div>
  10434. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10435. </div>
  10436. </div>
  10437. </li>
  10438. <liclass="image_lists_itemdatapage-4">
  10439. <aclass="card_img">
  10440. <imgsrc="../images/cardlist/card/BT7-097.png"alt="BT7-097TidalWave"></a>
  10441. <divclass="popup">
  10442. <divclass="card_detailcard_detail_blue">
  10443. <divclass="card_detail_inner">
  10444. <ulclass="cardinfo_head">
  10445. <liclass="cardno">BT7-097</li>
  10446. <li>C</li>
  10447. <liclass="cardtype">Option</li>
  10448. </ul>
  10449. <divclass="card_name">TidalWave</div>
  10450. <divclass="cardinfo_top">
  10451. <divclass="card_img">
  10452. <imgsrc="../images/cardlist/card/BT7-097.png"alt="BT7-097TidalWave"></div>
  10453. <divclass="cardinfo_top_body">
  10454. <dl>
  10455. <dt>Form</dt>
  10456. <dd>-</dd>
  10457. </dl>
  10458. <dl>
  10459. <dt>Attribute</dt>
  10460. <dd>-</dd>
  10461. </dl>
  10462. <dl>
  10463. <dt>Type</dt>
  10464. <dd>-</dd>
  10465. </dl>
  10466. <dl>
  10467. <dt>DP</dt>
  10468. <dd>-</dl>
  10469. <dl>
  10470. <dt>PlayCost</dt>
  10471. <dd>7</dd>
  10472. </dl>
  10473. <dl>
  10474. <dt>DigivolveCost1</dt>
  10475. <dd>-</dd>
  10476. </dl>
  10477. <dl>
  10478. <dt>DigivolveCost2</dt>
  10479. <dd>-</dd>
  10480. </dl>
  10481. </div>
  10482. </div>
  10483. <divclass="cardinfo_bottom">
  10484. <dl>
  10485. <dt>Effect</dt>
  10486. <dd>[Main] Choose up to 2 Digimon cards in the digivolution cards of one of your Digimon and play them as other Digimon without paying their memory costs.</dd>
  10487. </dl>
  10488. <dl>
  10489. <dt>Digivolveeffect</dt>
  10490. <dd>-</dd>
  10491. </dl>
  10492. <dl>
  10493. <dt>Securityeffect</dt>
  10494. <dd>[Security] Activate this card's [Main] effect.</dd>
  10495. </dl>
  10496. <dl>
  10497. <dt>Notes</dt>
  10498. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10499. </div>
  10500. </div>
  10501. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10502. </div>
  10503. </div>
  10504. </li>
  10505. <liclass="image_lists_itemdatapage-4">
  10506. <aclass="card_img">
  10507. <imgsrc="../images/cardlist/card/BT7-098.png"alt="BT7-098UltraTurbulence"></a>
  10508. <divclass="popup">
  10509. <divclass="card_detailcard_detail_yellow">
  10510. <divclass="card_detail_inner">
  10511. <ulclass="cardinfo_head">
  10512. <liclass="cardno">BT7-098</li>
  10513. <li>C</li>
  10514. <liclass="cardtype">Option</li>
  10515. </ul>
  10516. <divclass="card_name">UltraTurbulence</div>
  10517. <divclass="cardinfo_top">
  10518. <divclass="card_img">
  10519. <imgsrc="../images/cardlist/card/BT7-098.png"alt="BT7-098UltraTurbulence"></div>
  10520. <divclass="cardinfo_top_body">
  10521. <dl>
  10522. <dt>Form</dt>
  10523. <dd>-</dd>
  10524. </dl>
  10525. <dl>
  10526. <dt>Attribute</dt>
  10527. <dd>-</dd>
  10528. </dl>
  10529. <dl>
  10530. <dt>Type</dt>
  10531. <dd>-</dd>
  10532. </dl>
  10533. <dl>
  10534. <dt>DP</dt>
  10535. <dd>-</dl>
  10536. <dl>
  10537. <dt>PlayCost</dt>
  10538. <dd>2</dd>
  10539. </dl>
  10540. <dl>
  10541. <dt>DigivolveCost1</dt>
  10542. <dd>-</dd>
  10543. </dl>
  10544. <dl>
  10545. <dt>DigivolveCost2</dt>
  10546. <dd>-</dd>
  10547. </dl>
  10548. </div>
  10549. </div>
  10550. <divclass="cardinfo_bottom">
  10551. <dl>
  10552. <dt>Effect</dt>
  10553. <dd>[Main] 1 of your opponent's Digimon and all of your opponent's Security Digimon get -3000 DP for the turn.</dd>
  10554. </dl>
  10555. <dl>
  10556. <dt>Digivolveeffect</dt>
  10557. <dd>-</dd>
  10558. </dl>
  10559. <dl>
  10560. <dt>Securityeffect</dt>
  10561. <dd>[Security] Add this card to its owner's hand.</dd>
  10562. </dl>
  10563. <dl>
  10564. <dt>Notes</dt>
  10565. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10566. </div>
  10567. </div>
  10568. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10569. </div>
  10570. </div>
  10571. </li>
  10572. <liclass="image_lists_itemdatapage-4">
  10573. <aclass="card_img">
  10574. <imgsrc="../images/cardlist/card/BT7-099.png"alt="BT7-099ElectricRush"></a>
  10575. <divclass="popup">
  10576. <divclass="card_detailcard_detail_yellow">
  10577. <divclass="card_detail_inner">
  10578. <ulclass="cardinfo_head">
  10579. <liclass="cardno">BT7-099</li>
  10580. <li>U</li>
  10581. <liclass="cardtype">Option</li>
  10582. </ul>
  10583. <divclass="card_name">ElectricRush</div>
  10584. <divclass="cardinfo_top">
  10585. <divclass="card_img">
  10586. <imgsrc="../images/cardlist/card/BT7-099.png"alt="BT7-099ElectricRush"></div>
  10587. <divclass="cardinfo_top_body">
  10588. <dl>
  10589. <dt>Form</dt>
  10590. <dd>-</dd>
  10591. </dl>
  10592. <dl>
  10593. <dt>Attribute</dt>
  10594. <dd>-</dd>
  10595. </dl>
  10596. <dl>
  10597. <dt>Type</dt>
  10598. <dd>-</dd>
  10599. </dl>
  10600. <dl>
  10601. <dt>DP</dt>
  10602. <dd>-</dl>
  10603. <dl>
  10604. <dt>PlayCost</dt>
  10605. <dd>2</dd>
  10606. </dl>
  10607. <dl>
  10608. <dt>DigivolveCost1</dt>
  10609. <dd>-</dd>
  10610. </dl>
  10611. <dl>
  10612. <dt>DigivolveCost2</dt>
  10613. <dd>-</dd>
  10614. </dl>
  10615. </div>
  10616. </div>
  10617. <divclass="cardinfo_bottom">
  10618. <dl>
  10619. <dt>Effect</dt>
  10620. <dd>[Main] 1 of your Digimon gets +3000 DP for the turn. Then, if you have 3 security cards, unsuspend 1 of your Digimon.</dd>
  10621. </dl>
  10622. <dl>
  10623. <dt>Digivolveeffect</dt>
  10624. <dd>-</dd>
  10625. </dl>
  10626. <dl>
  10627. <dt>Securityeffect</dt>
  10628. <dd>[Security] Add this card to its owner's hand.</dd>
  10629. </dl>
  10630. <dl>
  10631. <dt>Notes</dt>
  10632. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10633. </div>
  10634. </div>
  10635. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10636. </div>
  10637. </div>
  10638. </li>
  10639. <liclass="image_lists_itemdatapage-4">
  10640. <aclass="card_img">
  10641. <imgsrc="../images/cardlist/card/BT7-100.png"alt="BT7-100QualialiseBlast"></a>
  10642. <divclass="popup">
  10643. <divclass="card_detailcard_detail_yellow">
  10644. <divclass="card_detail_inner">
  10645. <ulclass="cardinfo_head">
  10646. <liclass="cardno">BT7-100</li>
  10647. <li>R</li>
  10648. <liclass="cardtype">Option</li>
  10649. </ul>
  10650. <divclass="card_name">QualialiseBlast</div>
  10651. <divclass="cardinfo_top">
  10652. <divclass="card_img">
  10653. <imgsrc="../images/cardlist/card/BT7-100.png"alt="BT7-100QualialiseBlast"></div>
  10654. <divclass="cardinfo_top_body">
  10655. <dl>
  10656. <dt>Form</dt>
  10657. <dd>-</dd>
  10658. </dl>
  10659. <dl>
  10660. <dt>Attribute</dt>
  10661. <dd>-</dd>
  10662. </dl>
  10663. <dl>
  10664. <dt>Type</dt>
  10665. <dd>-</dd>
  10666. </dl>
  10667. <dl>
  10668. <dt>DP</dt>
  10669. <dd>-</dl>
  10670. <dl>
  10671. <dt>PlayCost</dt>
  10672. <dd>5</dd>
  10673. </dl>
  10674. <dl>
  10675. <dt>DigivolveCost1</dt>
  10676. <dd>-</dd>
  10677. </dl>
  10678. <dl>
  10679. <dt>DigivolveCost2</dt>
  10680. <dd>-</dd>
  10681. </dl>
  10682. </div>
  10683. </div>
  10684. <divclass="cardinfo_bottom">
  10685. <dl>
  10686. <dt>Effect</dt>
  10687. <dd>When using this card from your hand, its memory cost is equal to the number of cards in your security stack. [Main] 1 of your opponent's Digimon gets -3000 DP for the turn. Then, 1 of your [Rasenmon] gains <Security Attack +1> for the turn. (This Digimon checks 1 additional security card.)</dd>
  10688. </dl>
  10689. <dl>
  10690. <dt>Digivolveeffect</dt>
  10691. <dd>-</dd>
  10692. </dl>
  10693. <dl>
  10694. <dt>Securityeffect</dt>
  10695. <dd>[Security] Add this card to its owner's hand.</dd>
  10696. </dl>
  10697. <dl>
  10698. <dt>Notes</dt>
  10699. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10700. </div>
  10701. </div>
  10702. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10703. </div>
  10704. </div>
  10705. </li>
  10706. <liclass="image_lists_itemdatapage-4">
  10707. <aclass="card_img">
  10708. <imgsrc="../images/cardlist/card/BT7-101.png"alt="BT7-101ThunderLaser"></a>
  10709. <divclass="popup">
  10710. <divclass="card_detailcard_detail_green">
  10711. <divclass="card_detail_inner">
  10712. <ulclass="cardinfo_head">
  10713. <liclass="cardno">BT7-101</li>
  10714. <li>C</li>
  10715. <liclass="cardtype">Option</li>
  10716. </ul>
  10717. <divclass="card_name">ThunderLaser</div>
  10718. <divclass="cardinfo_top">
  10719. <divclass="card_img">
  10720. <imgsrc="../images/cardlist/card/BT7-101.png"alt="BT7-101ThunderLaser"></div>
  10721. <divclass="cardinfo_top_body">
  10722. <dl>
  10723. <dt>Form</dt>
  10724. <dd>-</dd>
  10725. </dl>
  10726. <dl>
  10727. <dt>Attribute</dt>
  10728. <dd>-</dd>
  10729. </dl>
  10730. <dl>
  10731. <dt>Type</dt>
  10732. <dd>-</dd>
  10733. </dl>
  10734. <dl>
  10735. <dt>DP</dt>
  10736. <dd>-</dl>
  10737. <dl>
  10738. <dt>PlayCost</dt>
  10739. <dd>1</dd>
  10740. </dl>
  10741. <dl>
  10742. <dt>DigivolveCost1</dt>
  10743. <dd>-</dd>
  10744. </dl>
  10745. <dl>
  10746. <dt>DigivolveCost2</dt>
  10747. <dd>-</dd>
  10748. </dl>
  10749. </div>
  10750. </div>
  10751. <divclass="cardinfo_bottom">
  10752. <dl>
  10753. <dt>Effect</dt>
  10754. <dd>[Main] If you have a Digimon with [Hybrid] or [Ten Warriors] in its traits in play, suspend 1 of your opponent's Digimon.</dd>
  10755. </dl>
  10756. <dl>
  10757. <dt>Digivolveeffect</dt>
  10758. <dd>-</dd>
  10759. </dl>
  10760. <dl>
  10761. <dt>Securityeffect</dt>
  10762. <dd>[Security] Add this card to its owner's hand.</dd>
  10763. </dl>
  10764. <dl>
  10765. <dt>Notes</dt>
  10766. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10767. </div>
  10768. </div>
  10769. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10770. </div>
  10771. </div>
  10772. </li>
  10773. <liclass="image_lists_itemdatapage-4">
  10774. <aclass="card_img">
  10775. <imgsrc="../images/cardlist/card/BT7-102.png"alt="BT7-102DinoMemoryBoost!"></a>
  10776. <divclass="popup">
  10777. <divclass="card_detailcard_detail_green">
  10778. <divclass="card_detail_inner">
  10779. <ulclass="cardinfo_head">
  10780. <liclass="cardno">BT7-102</li>
  10781. <li>C</li>
  10782. <liclass="cardtype">Option</li>
  10783. </ul>
  10784. <divclass="card_name">DinoMemoryBoost!</div>
  10785. <divclass="cardinfo_top">
  10786. <divclass="card_img">
  10787. <imgsrc="../images/cardlist/card/BT7-102.png"alt="BT7-102DinoMemoryBoost!"></div>
  10788. <divclass="cardinfo_top_body">
  10789. <dl>
  10790. <dt>Form</dt>
  10791. <dd>-</dd>
  10792. </dl>
  10793. <dl>
  10794. <dt>Attribute</dt>
  10795. <dd>-</dd>
  10796. </dl>
  10797. <dl>
  10798. <dt>Type</dt>
  10799. <dd>-</dd>
  10800. </dl>
  10801. <dl>
  10802. <dt>DP</dt>
  10803. <dd>-</dl>
  10804. <dl>
  10805. <dt>PlayCost</dt>
  10806. <dd>3</dd>
  10807. </dl>
  10808. <dl>
  10809. <dt>DigivolveCost1</dt>
  10810. <dd>-</dd>
  10811. </dl>
  10812. <dl>
  10813. <dt>DigivolveCost2</dt>
  10814. <dd>-</dd>
  10815. </dl>
  10816. </div>
  10817. </div>
  10818. <divclass="cardinfo_bottom">
  10819. <dl>
  10820. <dt>Effect</dt>
  10821. <dd>[Main] Suspend 1 of your opponent's Digimon. Then, place this card in your battle area. [Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.) ・Gain 2 memory.</dd>
  10822. </dl>
  10823. <dl>
  10824. <dt>Digivolveeffect</dt>
  10825. <dd>-</dd>
  10826. </dl>
  10827. <dl>
  10828. <dt>Securityeffect</dt>
  10829. <dd>[Security] Place this card in its owner's battle area.</dd>
  10830. </dl>
  10831. <dl>
  10832. <dt>Notes</dt>
  10833. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10834. </div>
  10835. </div>
  10836. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10837. </div>
  10838. </div>
  10839. </li>
  10840. <liclass="image_lists_itemdatapage-4">
  10841. <aclass="card_img">
  10842. <imgsrc="../images/cardlist/card/BT7-103.png"alt="BT7-103Mugen"></a>
  10843. <divclass="popup">
  10844. <divclass="card_detailcard_detail_green">
  10845. <divclass="card_detail_inner">
  10846. <ulclass="cardinfo_head">
  10847. <liclass="cardno">BT7-103</li>
  10848. <li>U</li>
  10849. <liclass="cardtype">Option</li>
  10850. </ul>
  10851. <divclass="card_name">Mugen</div>
  10852. <divclass="cardinfo_top">
  10853. <divclass="card_img">
  10854. <imgsrc="../images/cardlist/card/BT7-103.png"alt="BT7-103Mugen"></div>
  10855. <divclass="cardinfo_top_body">
  10856. <dl>
  10857. <dt>Form</dt>
  10858. <dd>-</dd>
  10859. </dl>
  10860. <dl>
  10861. <dt>Attribute</dt>
  10862. <dd>-</dd>
  10863. </dl>
  10864. <dl>
  10865. <dt>Type</dt>
  10866. <dd>-</dd>
  10867. </dl>
  10868. <dl>
  10869. <dt>DP</dt>
  10870. <dd>-</dl>
  10871. <dl>
  10872. <dt>PlayCost</dt>
  10873. <dd>4</dd>
  10874. </dl>
  10875. <dl>
  10876. <dt>DigivolveCost1</dt>
  10877. <dd>-</dd>
  10878. </dl>
  10879. <dl>
  10880. <dt>DigivolveCost2</dt>
  10881. <dd>-</dd>
  10882. </dl>
  10883. </div>
  10884. </div>
  10885. <divclass="cardinfo_bottom">
  10886. <dl>
  10887. <dt>Effect</dt>
  10888. <dd>[Main] Suspend 1 of your opponent's Digimon. That Digimon doesn't unsuspend during your opponent's next unsuspend phase.</dd>
  10889. </dl>
  10890. <dl>
  10891. <dt>Digivolveeffect</dt>
  10892. <dd>-</dd>
  10893. </dl>
  10894. <dl>
  10895. <dt>Securityeffect</dt>
  10896. <dd>[Security] Suspend 1 of your opponent's Digimon.</dd>
  10897. </dl>
  10898. <dl>
  10899. <dt>Notes</dt>
  10900. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10901. </div>
  10902. </div>
  10903. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10904. </div>
  10905. </div>
  10906. </li>
  10907. <liclass="image_lists_itemdatapage-4">
  10908. <aclass="card_img">
  10909. <imgsrc="../images/cardlist/card/BT7-104.png"alt="BT7-104MetalCannon"></a>
  10910. <divclass="popup">
  10911. <divclass="card_detailcard_detail_black">
  10912. <divclass="card_detail_inner">
  10913. <ulclass="cardinfo_head">
  10914. <liclass="cardno">BT7-104</li>
  10915. <li>R</li>
  10916. <liclass="cardtype">Option</li>
  10917. </ul>
  10918. <divclass="card_name">MetalCannon</div>
  10919. <divclass="cardinfo_top">
  10920. <divclass="card_img">
  10921. <imgsrc="../images/cardlist/card/BT7-104.png"alt="BT7-104MetalCannon"></div>
  10922. <divclass="cardinfo_top_body">
  10923. <dl>
  10924. <dt>Form</dt>
  10925. <dd>-</dd>
  10926. </dl>
  10927. <dl>
  10928. <dt>Attribute</dt>
  10929. <dd>-</dd>
  10930. </dl>
  10931. <dl>
  10932. <dt>Type</dt>
  10933. <dd>-</dd>
  10934. </dl>
  10935. <dl>
  10936. <dt>DP</dt>
  10937. <dd>-</dl>
  10938. <dl>
  10939. <dt>PlayCost</dt>
  10940. <dd>2</dd>
  10941. </dl>
  10942. <dl>
  10943. <dt>DigivolveCost1</dt>
  10944. <dd>-</dd>
  10945. </dl>
  10946. <dl>
  10947. <dt>DigivolveCost2</dt>
  10948. <dd>-</dd>
  10949. </dl>
  10950. </div>
  10951. </div>
  10952. <divclass="cardinfo_bottom">
  10953. <dl>
  10954. <dt>Effect</dt>
  10955. <dd>[Main] Choose 1 of your Digimon with [X-Antibody] in its traits. Then, <Draw 1> for each of that Digimon's digivolution cards. (Draw 1 card from your deck.)</dd>
  10956. </dl>
  10957. <dl>
  10958. <dt>Digivolveeffect</dt>
  10959. <dd>-</dd>
  10960. </dl>
  10961. <dl>
  10962. <dt>Securityeffect</dt>
  10963. <dd>[Security] Add this card to its owner's hand.</dd>
  10964. </dl>
  10965. <dl>
  10966. <dt>Notes</dt>
  10967. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  10968. </div>
  10969. </div>
  10970. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10971. </div>
  10972. </div>
  10973. </li>
  10974. <liclass="image_lists_itemdatapage-5">
  10975. <aclass="card_img">
  10976. <imgsrc="../images/cardlist/card/BT7-105.png"alt="BT7-105PrideMemoryBoost!"></a>
  10977. <divclass="popup">
  10978. <divclass="card_detailcard_detail_black">
  10979. <divclass="card_detail_inner">
  10980. <ulclass="cardinfo_head">
  10981. <liclass="cardno">BT7-105</li>
  10982. <li>U</li>
  10983. <liclass="cardtype">Option</li>
  10984. </ul>
  10985. <divclass="card_name">PrideMemoryBoost!</div>
  10986. <divclass="cardinfo_top">
  10987. <divclass="card_img">
  10988. <imgsrc="../images/cardlist/card/BT7-105.png"alt="BT7-105PrideMemoryBoost!"></div>
  10989. <divclass="cardinfo_top_body">
  10990. <dl>
  10991. <dt>Form</dt>
  10992. <dd>-</dd>
  10993. </dl>
  10994. <dl>
  10995. <dt>Attribute</dt>
  10996. <dd>-</dd>
  10997. </dl>
  10998. <dl>
  10999. <dt>Type</dt>
  11000. <dd>-</dd>
  11001. </dl>
  11002. <dl>
  11003. <dt>DP</dt>
  11004. <dd>-</dl>
  11005. <dl>
  11006. <dt>PlayCost</dt>
  11007. <dd>4</dd>
  11008. </dl>
  11009. <dl>
  11010. <dt>DigivolveCost1</dt>
  11011. <dd>-</dd>
  11012. </dl>
  11013. <dl>
  11014. <dt>DigivolveCost2</dt>
  11015. <dd>-</dd>
  11016. </dl>
  11017. </div>
  11018. </div>
  11019. <divclass="cardinfo_bottom">
  11020. <dl>
  11021. <dt>Effect</dt>
  11022. <dd>[Main] Reveal the top 3 cards of your deck. You may play 1 black Digimon card with a play cost of 4 or less among them without paying its memory cost. Trash the remaining cards. Then, place this card in your battle area. [Main] <Delay> (Trash this card in your battle area to activate the effect below. You can't activate this effect the turn this card enters play.) ・Gain 2 memory.</dd>
  11023. </dl>
  11024. <dl>
  11025. <dt>Digivolveeffect</dt>
  11026. <dd>-</dd>
  11027. </dl>
  11028. <dl>
  11029. <dt>Securityeffect</dt>
  11030. <dd>[Security] Place this card in its owner's battle area.</dd>
  11031. </dl>
  11032. <dl>
  11033. <dt>Notes</dt>
  11034. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11035. </div>
  11036. </div>
  11037. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11038. </div>
  11039. </div>
  11040. </li>
  11041. <liclass="image_lists_itemdatapage-5">
  11042. <aclass="card_img">
  11043. <imgsrc="../images/cardlist/card/BT7-106.png"alt="BT7-106BraveMetal"></a>
  11044. <divclass="popup">
  11045. <divclass="card_detailcard_detail_black">
  11046. <divclass="card_detail_inner">
  11047. <ulclass="cardinfo_head">
  11048. <liclass="cardno">BT7-106</li>
  11049. <li>C</li>
  11050. <liclass="cardtype">Option</li>
  11051. </ul>
  11052. <divclass="card_name">BraveMetal</div>
  11053. <divclass="cardinfo_top">
  11054. <divclass="card_img">
  11055. <imgsrc="../images/cardlist/card/BT7-106.png"alt="BT7-106BraveMetal"></div>
  11056. <divclass="cardinfo_top_body">
  11057. <dl>
  11058. <dt>Form</dt>
  11059. <dd>-</dd>
  11060. </dl>
  11061. <dl>
  11062. <dt>Attribute</dt>
  11063. <dd>-</dd>
  11064. </dl>
  11065. <dl>
  11066. <dt>Type</dt>
  11067. <dd>-</dd>
  11068. </dl>
  11069. <dl>
  11070. <dt>DP</dt>
  11071. <dd>-</dl>
  11072. <dl>
  11073. <dt>PlayCost</dt>
  11074. <dd>5</dd>
  11075. </dl>
  11076. <dl>
  11077. <dt>DigivolveCost1</dt>
  11078. <dd>-</dd>
  11079. </dl>
  11080. <dl>
  11081. <dt>DigivolveCost2</dt>
  11082. <dd>-</dd>
  11083. </dl>
  11084. </div>
  11085. </div>
  11086. <divclass="cardinfo_bottom">
  11087. <dl>
  11088. <dt>Effect</dt>
  11089. <dd>[Main] Delete 1 of your opponent's Digimon with a play cost of 6 or less. If you have a Digimon with 5 or more digivolution cards and [X-Antibody] in its traits in play, you may delete 1 of your opponent's Digimon without [X-Antibody] in its traits instead.</dd>
  11090. </dl>
  11091. <dl>
  11092. <dt>Digivolveeffect</dt>
  11093. <dd>-</dd>
  11094. </dl>
  11095. <dl>
  11096. <dt>Securityeffect</dt>
  11097. <dd>[Security] Activate this card's [Main] effect.</dd>
  11098. </dl>
  11099. <dl>
  11100. <dt>Notes</dt>
  11101. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11102. </div>
  11103. </div>
  11104. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11105. </div>
  11106. </div>
  11107. </li>
  11108. <liclass="image_lists_itemdatapage-5">
  11109. <aclass="card_img">
  11110. <imgsrc="../images/cardlist/card/BT7-106_P1.png"alt="BT7-106BraveMetal"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  11111. </a>
  11112. <divclass="popup">
  11113. <divclass="card_detailcard_detail_black">
  11114. <divclass="card_detail_inner">
  11115. <ulclass="cardinfo_head">
  11116. <liclass="cardno">BT7-106</li>
  11117. <li>C</li>
  11118. <liclass="cardtype">Option</li>
  11119. <liclass="cardtypecardParallel">AlternativeArt</li>
  11120. </ul>
  11121. <divclass="card_name">BraveMetal</div>
  11122. <divclass="cardinfo_top">
  11123. <divclass="card_img">
  11124. <imgsrc="../images/cardlist/card/BT7-106_P1.png"alt="BT7-106BraveMetal"></div>
  11125. <divclass="cardinfo_top_body">
  11126. <dl>
  11127. <dt>Form</dt>
  11128. <dd>-</dd>
  11129. </dl>
  11130. <dl>
  11131. <dt>Attribute</dt>
  11132. <dd>-</dd>
  11133. </dl>
  11134. <dl>
  11135. <dt>Type</dt>
  11136. <dd>-</dd>
  11137. </dl>
  11138. <dl>
  11139. <dt>DP</dt>
  11140. <dd>-</dl>
  11141. <dl>
  11142. <dt>PlayCost</dt>
  11143. <dd>5</dd>
  11144. </dl>
  11145. <dl>
  11146. <dt>DigivolveCost1</dt>
  11147. <dd>-</dd>
  11148. </dl>
  11149. <dl>
  11150. <dt>DigivolveCost2</dt>
  11151. <dd>-</dd>
  11152. </dl>
  11153. </div>
  11154. </div>
  11155. <divclass="cardinfo_bottom">
  11156. <dl>
  11157. <dt>Effect</dt>
  11158. <dd>[Main] Delete 1 of your opponent's Digimon with a play cost of 6 or less. If you have a Digimon with 5 or more digivolution cards and [X-Antibody] in its traits in play, you may delete 1 of your opponent's Digimon without [X-Antibody] in its traits instead.</dd>
  11159. </dl>
  11160. <dl>
  11161. <dt>Digivolveeffect</dt>
  11162. <dd>-</dd>
  11163. </dl>
  11164. <dl>
  11165. <dt>Securityeffect</dt>
  11166. <dd>[Security] Activate this card's [Main] effect.</dd>
  11167. </dl>
  11168. <dl>
  11169. <dt>Notes</dt>
  11170. <dd>PREMIUMDECKSET[PD-01]</dd></dl>
  11171. </div>
  11172. </div>
  11173. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11174. </div>
  11175. </div>
  11176. </li>
  11177. <liclass="image_lists_itemdatapage-5">
  11178. <aclass="card_img">
  11179. <imgsrc="../images/cardlist/card/BT7-107.png"alt="BT7-107CallingFromtheDarkness"></a>
  11180. <divclass="popup">
  11181. <divclass="card_detailcard_detail_purple">
  11182. <divclass="card_detail_inner">
  11183. <ulclass="cardinfo_head">
  11184. <liclass="cardno">BT7-107</li>
  11185. <li>U</li>
  11186. <liclass="cardtype">Option</li>
  11187. </ul>
  11188. <divclass="card_name">CallingFromtheDarkness</div>
  11189. <divclass="cardinfo_top">
  11190. <divclass="card_img">
  11191. <imgsrc="../images/cardlist/card/BT7-107.png"alt="BT7-107CallingFromtheDarkness"></div>
  11192. <divclass="cardinfo_top_body">
  11193. <dl>
  11194. <dt>Form</dt>
  11195. <dd>-</dd>
  11196. </dl>
  11197. <dl>
  11198. <dt>Attribute</dt>
  11199. <dd>-</dd>
  11200. </dl>
  11201. <dl>
  11202. <dt>Type</dt>
  11203. <dd>-</dd>
  11204. </dl>
  11205. <dl>
  11206. <dt>DP</dt>
  11207. <dd>-</dl>
  11208. <dl>
  11209. <dt>PlayCost</dt>
  11210. <dd>1</dd>
  11211. </dl>
  11212. <dl>
  11213. <dt>DigivolveCost1</dt>
  11214. <dd>-</dd>
  11215. </dl>
  11216. <dl>
  11217. <dt>DigivolveCost2</dt>
  11218. <dd>-</dd>
  11219. </dl>
  11220. </div>
  11221. </div>
  11222. <divclass="cardinfo_bottom">
  11223. <dl>
  11224. <dt>Effect</dt>
  11225. <dd>[Main] Delete 1 of your Digimon. Then, return up to 2 purple Digimon cards from your trash to your hand.</dd>
  11226. </dl>
  11227. <dl>
  11228. <dt>Digivolveeffect</dt>
  11229. <dd>-</dd>
  11230. </dl>
  11231. <dl>
  11232. <dt>Securityeffect</dt>
  11233. <dd>[Security] Add this card to its owner's hand.</dd>
  11234. </dl>
  11235. <dl>
  11236. <dt>Notes</dt>
  11237. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11238. </div>
  11239. </div>
  11240. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11241. </div>
  11242. </div>
  11243. </li>
  11244. <liclass="image_lists_itemdatapage-5">
  11245. <aclass="card_img">
  11246. <imgsrc="../images/cardlist/card/BT7-108.png"alt="BT7-108SchwarzLehrsatz"></a>
  11247. <divclass="popup">
  11248. <divclass="card_detailcard_detail_purple">
  11249. <divclass="card_detail_inner">
  11250. <ulclass="cardinfo_head">
  11251. <liclass="cardno">BT7-108</li>
  11252. <li>C</li>
  11253. <liclass="cardtype">Option</li>
  11254. </ul>
  11255. <divclass="card_name">SchwarzLehrsatz</div>
  11256. <divclass="cardinfo_top">
  11257. <divclass="card_img">
  11258. <imgsrc="../images/cardlist/card/BT7-108.png"alt="BT7-108SchwarzLehrsatz"></div>
  11259. <divclass="cardinfo_top_body">
  11260. <dl>
  11261. <dt>Form</dt>
  11262. <dd>-</dd>
  11263. </dl>
  11264. <dl>
  11265. <dt>Attribute</dt>
  11266. <dd>-</dd>
  11267. </dl>
  11268. <dl>
  11269. <dt>Type</dt>
  11270. <dd>-</dd>
  11271. </dl>
  11272. <dl>
  11273. <dt>DP</dt>
  11274. <dd>-</dl>
  11275. <dl>
  11276. <dt>PlayCost</dt>
  11277. <dd>6</dd>
  11278. </dl>
  11279. <dl>
  11280. <dt>DigivolveCost1</dt>
  11281. <dd>-</dd>
  11282. </dl>
  11283. <dl>
  11284. <dt>DigivolveCost2</dt>
  11285. <dd>-</dd>
  11286. </dl>
  11287. </div>
  11288. </div>
  11289. <divclass="cardinfo_bottom">
  11290. <dl>
  11291. <dt>Effect</dt>
  11292. <dd>[Main] For each Digimon with [Hybrid] in its traits and each Tamer you have in play, delete 1 of your opponent's level 5 or lower Digimon.</dd>
  11293. </dl>
  11294. <dl>
  11295. <dt>Digivolveeffect</dt>
  11296. <dd>-</dd>
  11297. </dl>
  11298. <dl>
  11299. <dt>Securityeffect</dt>
  11300. <dd>[Security] Activate this card's [Main] effect.</dd>
  11301. </dl>
  11302. <dl>
  11303. <dt>Notes</dt>
  11304. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11305. </div>
  11306. </div>
  11307. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11308. </div>
  11309. </div>
  11310. </li>
  11311. <liclass="image_lists_itemdatapage-5">
  11312. <aclass="card_img">
  11313. <imgsrc="../images/cardlist/card/BT7-109.png"alt="BT7-109DeadorAlive"></a>
  11314. <divclass="popup">
  11315. <divclass="card_detailcard_detail_purple">
  11316. <divclass="card_detail_inner">
  11317. <ulclass="cardinfo_head">
  11318. <liclass="cardno">BT7-109</li>
  11319. <li>R</li>
  11320. <liclass="cardtype">Option</li>
  11321. </ul>
  11322. <divclass="card_name">DeadorAlive</div>
  11323. <divclass="cardinfo_top">
  11324. <divclass="card_img">
  11325. <imgsrc="../images/cardlist/card/BT7-109.png"alt="BT7-109DeadorAlive"></div>
  11326. <divclass="cardinfo_top_body">
  11327. <dl>
  11328. <dt>Form</dt>
  11329. <dd>-</dd>
  11330. </dl>
  11331. <dl>
  11332. <dt>Attribute</dt>
  11333. <dd>-</dd>
  11334. </dl>
  11335. <dl>
  11336. <dt>Type</dt>
  11337. <dd>-</dd>
  11338. </dl>
  11339. <dl>
  11340. <dt>DP</dt>
  11341. <dd>-</dl>
  11342. <dl>
  11343. <dt>PlayCost</dt>
  11344. <dd>8</dd>
  11345. </dl>
  11346. <dl>
  11347. <dt>DigivolveCost1</dt>
  11348. <dd>-</dd>
  11349. </dl>
  11350. <dl>
  11351. <dt>DigivolveCost2</dt>
  11352. <dd>-</dd>
  11353. </dl>
  11354. </div>
  11355. </div>
  11356. <divclass="cardinfo_bottom">
  11357. <dl>
  11358. <dt>Effect</dt>
  11359. <dd>[Main] Play 1 purple level 5 Digimon card from your trash without paying its memory cost. If there are 10 or more cards in your trash, you may play 1 Digimon card with [Lucemon] in its name without paying its memory cost instead.</dd>
  11360. </dl>
  11361. <dl>
  11362. <dt>Digivolveeffect</dt>
  11363. <dd>-</dd>
  11364. </dl>
  11365. <dl>
  11366. <dt>Securityeffect</dt>
  11367. <dd>[Security] Activate this card's [Main] effect.</dd>
  11368. </dl>
  11369. <dl>
  11370. <dt>Notes</dt>
  11371. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11372. </div>
  11373. </div>
  11374. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11375. </div>
  11376. </div>
  11377. </li>
  11378. <liclass="image_lists_itemdatapage-5">
  11379. <aclass="card_img">
  11380. <imgsrc="../images/cardlist/card/BT7-110.png"alt="BT7-110EvolutionAncient"></a>
  11381. <divclass="popup">
  11382. <divclass="card_detailcard_detail_white">
  11383. <divclass="card_detail_inner">
  11384. <ulclass="cardinfo_head">
  11385. <liclass="cardno">BT7-110</li>
  11386. <li>R</li>
  11387. <liclass="cardtype">Option</li>
  11388. </ul>
  11389. <divclass="card_name">EvolutionAncient</div>
  11390. <divclass="cardinfo_top">
  11391. <divclass="card_img">
  11392. <imgsrc="../images/cardlist/card/BT7-110.png"alt="BT7-110EvolutionAncient"></div>
  11393. <divclass="cardinfo_top_body">
  11394. <dl>
  11395. <dt>Form</dt>
  11396. <dd>-</dd>
  11397. </dl>
  11398. <dl>
  11399. <dt>Attribute</dt>
  11400. <dd>-</dd>
  11401. </dl>
  11402. <dl>
  11403. <dt>Type</dt>
  11404. <dd>-</dd>
  11405. </dl>
  11406. <dl>
  11407. <dt>DP</dt>
  11408. <dd>-</dl>
  11409. <dl>
  11410. <dt>PlayCost</dt>
  11411. <dd>-</dd>
  11412. </dl>
  11413. <dl>
  11414. <dt>DigivolveCost1</dt>
  11415. <dd>-</dd>
  11416. </dl>
  11417. <dl>
  11418. <dt>DigivolveCost2</dt>
  11419. <dd>-</dd>
  11420. </dl>
  11421. </div>
  11422. </div>
  11423. <divclass="cardinfo_bottom">
  11424. <dl>
  11425. <dt>Effect</dt>
  11426. <dd>If you have a Digimon with [Hybrid] in its traits in play, you may use this Option card without meeting its color requirements. [Main] Your level 4 Digimon can digivolve into 1 Digimon card in your hand with matching colors and [Ten Warriors] in its traits for its digivolution cost, ignoring its level.</dd>
  11427. </dl>
  11428. <dl>
  11429. <dt>Digivolveeffect</dt>
  11430. <dd>-</dd>
  11431. </dl>
  11432. <dl>
  11433. <dt>Securityeffect</dt>
  11434. <dd>[Security] Add this card to its owner's hand.</dd>
  11435. </dl>
  11436. <dl>
  11437. <dt>Notes</dt>
  11438. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11439. </div>
  11440. </div>
  11441. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11442. </div>
  11443. </div>
  11444. </li>
  11445. <liclass="image_lists_itemdatapage-5">
  11446. <aclass="card_img">
  11447. <imgsrc="../images/cardlist/card/BT7-110_P1.png"alt="BT7-110EvolutionAncient"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  11448. </a>
  11449. <divclass="popup">
  11450. <divclass="card_detailcard_detail_white">
  11451. <divclass="card_detail_inner">
  11452. <ulclass="cardinfo_head">
  11453. <liclass="cardno">BT7-110</li>
  11454. <li>R</li>
  11455. <liclass="cardtype">Option</li>
  11456. <liclass="cardtypecardParallel">AlternativeArt</li>
  11457. </ul>
  11458. <divclass="card_name">EvolutionAncient</div>
  11459. <divclass="cardinfo_top">
  11460. <divclass="card_img">
  11461. <imgsrc="../images/cardlist/card/BT7-110_P1.png"alt="BT7-110EvolutionAncient"></div>
  11462. <divclass="cardinfo_top_body">
  11463. <dl>
  11464. <dt>Form</dt>
  11465. <dd>-</dd>
  11466. </dl>
  11467. <dl>
  11468. <dt>Attribute</dt>
  11469. <dd>-</dd>
  11470. </dl>
  11471. <dl>
  11472. <dt>Type</dt>
  11473. <dd>-</dd>
  11474. </dl>
  11475. <dl>
  11476. <dt>DP</dt>
  11477. <dd>-</dl>
  11478. <dl>
  11479. <dt>PlayCost</dt>
  11480. <dd>-</dd>
  11481. </dl>
  11482. <dl>
  11483. <dt>DigivolveCost1</dt>
  11484. <dd>-</dd>
  11485. </dl>
  11486. <dl>
  11487. <dt>DigivolveCost2</dt>
  11488. <dd>-</dd>
  11489. </dl>
  11490. </div>
  11491. </div>
  11492. <divclass="cardinfo_bottom">
  11493. <dl>
  11494. <dt>Effect</dt>
  11495. <dd>If you have a Digimon with [Hybrid] in its traits in play, you may use this Option card without meeting its color requirements. [Main] Your level 4 Digimon can digivolve into 1 Digimon card in your hand with matching colors and [Ten Warriors] in its traits for its digivolution cost, ignoring its level.</dd>
  11496. </dl>
  11497. <dl>
  11498. <dt>Digivolveeffect</dt>
  11499. <dd>-</dd>
  11500. </dl>
  11501. <dl>
  11502. <dt>Securityeffect</dt>
  11503. <dd>[Security] Add this card to its owner's hand.</dd>
  11504. </dl>
  11505. <dl>
  11506. <dt>Notes</dt>
  11507. <dd>FestSet</dd></dl>
  11508. </div>
  11509. </div>
  11510. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11511. </div>
  11512. </div>
  11513. </li>
  11514. <liclass="image_lists_itemdatapage-5">
  11515. <aclass="card_img">
  11516. <imgsrc="../images/cardlist/card/BT7-110_P2.png"alt="BT7-110EvolutionAncient"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  11517. </a>
  11518. <divclass="popup">
  11519. <divclass="card_detailcard_detail_white">
  11520. <divclass="card_detail_inner">
  11521. <ulclass="cardinfo_head">
  11522. <liclass="cardno">BT7-110</li>
  11523. <li>R</li>
  11524. <liclass="cardtype">Option</li>
  11525. <liclass="cardtypecardParallel">AlternativeArt</li>
  11526. </ul>
  11527. <divclass="card_name">EvolutionAncient</div>
  11528. <divclass="cardinfo_top">
  11529. <divclass="card_img">
  11530. <imgsrc="../images/cardlist/card/BT7-110_P2.png"alt="BT7-110EvolutionAncient"></div>
  11531. <divclass="cardinfo_top_body">
  11532. <dl>
  11533. <dt>Form</dt>
  11534. <dd>-</dd>
  11535. </dl>
  11536. <dl>
  11537. <dt>Attribute</dt>
  11538. <dd>-</dd>
  11539. </dl>
  11540. <dl>
  11541. <dt>Type</dt>
  11542. <dd>-</dd>
  11543. </dl>
  11544. <dl>
  11545. <dt>DP</dt>
  11546. <dd>-</dl>
  11547. <dl>
  11548. <dt>PlayCost</dt>
  11549. <dd>-</dd>
  11550. </dl>
  11551. <dl>
  11552. <dt>DigivolveCost1</dt>
  11553. <dd>-</dd>
  11554. </dl>
  11555. <dl>
  11556. <dt>DigivolveCost2</dt>
  11557. <dd>-</dd>
  11558. </dl>
  11559. </div>
  11560. </div>
  11561. <divclass="cardinfo_bottom">
  11562. <dl>
  11563. <dt>Effect</dt>
  11564. <dd>If you have a Digimon with [Hybrid] in its traits in play, you may use this Option card without meeting its color requirements. [Main] Your level 4 Digimon can digivolve into 1 Digimon card in your hand with matching colors and [Ten Warriors] in its traits for its digivolution cost, ignoring its level.</dd>
  11565. </dl>
  11566. <dl>
  11567. <dt>Digivolveeffect</dt>
  11568. <dd>-</dd>
  11569. </dl>
  11570. <dl>
  11571. <dt>Securityeffect</dt>
  11572. <dd>[Security] Add this card to its owner's hand.</dd>
  11573. </dl>
  11574. <dl>
  11575. <dt>Notes</dt>
  11576. <dd>2022RegionalsParticipationCardSet2</dd></dl>
  11577. </div>
  11578. </div>
  11579. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11580. </div>
  11581. </div>
  11582. </li>
  11583. <liclass="image_lists_itemdatapage-5">
  11584. <aclass="card_img">
  11585. <imgsrc="../images/cardlist/card/BT7-110_P3.png"alt="BT7-110EvolutionAncient"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  11586. </a>
  11587. <divclass="popup">
  11588. <divclass="card_detailcard_detail_white">
  11589. <divclass="card_detail_inner">
  11590. <ulclass="cardinfo_head">
  11591. <liclass="cardno">BT7-110</li>
  11592. <li>R</li>
  11593. <liclass="cardtype">Option</li>
  11594. <liclass="cardtypecardParallel">AlternativeArt</li>
  11595. </ul>
  11596. <divclass="card_name">EvolutionAncient</div>
  11597. <divclass="cardinfo_top">
  11598. <divclass="card_img">
  11599. <imgsrc="../images/cardlist/card/BT7-110_P3.png"alt="BT7-110EvolutionAncient"></div>
  11600. <divclass="cardinfo_top_body">
  11601. <dl>
  11602. <dt>Form</dt>
  11603. <dd>-</dd>
  11604. </dl>
  11605. <dl>
  11606. <dt>Attribute</dt>
  11607. <dd>-</dd>
  11608. </dl>
  11609. <dl>
  11610. <dt>Type</dt>
  11611. <dd>-</dd>
  11612. </dl>
  11613. <dl>
  11614. <dt>DP</dt>
  11615. <dd>-</dl>
  11616. <dl>
  11617. <dt>PlayCost</dt>
  11618. <dd>-</dd>
  11619. </dl>
  11620. <dl>
  11621. <dt>DigivolveCost1</dt>
  11622. <dd>-</dd>
  11623. </dl>
  11624. <dl>
  11625. <dt>DigivolveCost2</dt>
  11626. <dd>-</dd>
  11627. </dl>
  11628. </div>
  11629. </div>
  11630. <divclass="cardinfo_bottom">
  11631. <dl>
  11632. <dt>Effect</dt>
  11633. <dd>If you have a Digimon with [Hybrid] in its traits in play, you may use this Option card without meeting its color requirements. [Main] Your level 4 Digimon can digivolve into 1 Digimon card in your hand with matching colors and [Ten Warriors] in its traits for its digivolution cost, ignoring its level.</dd>
  11634. </dl>
  11635. <dl>
  11636. <dt>Digivolveeffect</dt>
  11637. <dd>-</dd>
  11638. </dl>
  11639. <dl>
  11640. <dt>Securityeffect</dt>
  11641. <dd>[Security] Add this card to its owner's hand.</dd>
  11642. </dl>
  11643. <dl>
  11644. <dt>Notes</dt>
  11645. <dd>2022RegionalsFinalistSet2</dd></dl>
  11646. </div>
  11647. </div>
  11648. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11649. </div>
  11650. </div>
  11651. </li>
  11652. <liclass="image_lists_itemdatapage-5">
  11653. <aclass="card_img">
  11654. <imgsrc="../images/cardlist/card/BT7-110_P4.png"alt="BT7-110EvolutionAncient"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  11655. </a>
  11656. <divclass="popup">
  11657. <divclass="card_detailcard_detail_white">
  11658. <divclass="card_detail_inner">
  11659. <ulclass="cardinfo_head">
  11660. <liclass="cardno">BT7-110</li>
  11661. <li>R</li>
  11662. <liclass="cardtype">Option</li>
  11663. <liclass="cardtypecardParallel">AlternativeArt</li>
  11664. </ul>
  11665. <divclass="card_name">EvolutionAncient</div>
  11666. <divclass="cardinfo_top">
  11667. <divclass="card_img">
  11668. <imgsrc="../images/cardlist/card/BT7-110_P4.png"alt="BT7-110EvolutionAncient"></div>
  11669. <divclass="cardinfo_top_body">
  11670. <dl>
  11671. <dt>Form</dt>
  11672. <dd>-</dd>
  11673. </dl>
  11674. <dl>
  11675. <dt>Attribute</dt>
  11676. <dd>-</dd>
  11677. </dl>
  11678. <dl>
  11679. <dt>Type</dt>
  11680. <dd>-</dd>
  11681. </dl>
  11682. <dl>
  11683. <dt>DP</dt>
  11684. <dd>-</dl>
  11685. <dl>
  11686. <dt>PlayCost</dt>
  11687. <dd>-</dd>
  11688. </dl>
  11689. <dl>
  11690. <dt>DigivolveCost1</dt>
  11691. <dd>-</dd>
  11692. </dl>
  11693. <dl>
  11694. <dt>DigivolveCost2</dt>
  11695. <dd>-</dd>
  11696. </dl>
  11697. </div>
  11698. </div>
  11699. <divclass="cardinfo_bottom">
  11700. <dl>
  11701. <dt>Effect</dt>
  11702. <dd>If you have a Digimon with [Hybrid] in its traits in play, you may use this Option card without meeting its color requirements. [Main] Your level 4 Digimon can digivolve into 1 Digimon card in your hand with matching colors and [Ten Warriors] in its traits for its digivolution cost, ignoring its level.</dd>
  11703. </dl>
  11704. <dl>
  11705. <dt>Digivolveeffect</dt>
  11706. <dd>-</dd>
  11707. </dl>
  11708. <dl>
  11709. <dt>Securityeffect</dt>
  11710. <dd>[Security] Add this card to its owner's hand.</dd>
  11711. </dl>
  11712. <dl>
  11713. <dt>Notes</dt>
  11714. <dd>2022RegionalsChampionCardSet2</dd></dl>
  11715. </div>
  11716. </div>
  11717. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11718. </div>
  11719. </div>
  11720. </li>
  11721. <liclass="image_lists_itemdatapage-5">
  11722. <aclass="card_img">
  11723. <imgsrc="../images/cardlist/card/BT7-085.png"alt="BT7-085TakuyaKanbara"></a>
  11724. <divclass="popup">
  11725. <divclass="card_detailcard_detail_red">
  11726. <divclass="card_detail_inner">
  11727. <ulclass="cardinfo_head">
  11728. <liclass="cardno">BT7-085</li>
  11729. <li>R</li>
  11730. <liclass="cardtype">Tamer</li>
  11731. </ul>
  11732. <divclass="card_name">TakuyaKanbara</div>
  11733. <divclass="cardinfo_top">
  11734. <divclass="card_img">
  11735. <imgsrc="../images/cardlist/card/BT7-085.png"alt="BT7-085TakuyaKanbara"></div>
  11736. <divclass="cardinfo_top_body">
  11737. <dl>
  11738. <dt>Form</dt>
  11739. <dd>-</dd>
  11740. </dl>
  11741. <dl>
  11742. <dt>Attribute</dt>
  11743. <dd>-</dd>
  11744. </dl>
  11745. <dl>
  11746. <dt>Type</dt>
  11747. <dd>-</dd>
  11748. </dl>
  11749. <dl>
  11750. <dt>DP</dt>
  11751. <dd>-</dl>
  11752. <dl>
  11753. <dt>PlayCost</dt>
  11754. <dd>3</dd>
  11755. </dl>
  11756. <dl>
  11757. <dt>DigivolveCost1</dt>
  11758. <dd>-</dd>
  11759. </dl>
  11760. <dl>
  11761. <dt>DigivolveCost2</dt>
  11762. <dd>-</dd>
  11763. </dl>
  11764. </div>
  11765. </div>
  11766. <divclass="cardinfo_bottom">
  11767. <dl>
  11768. <dt>Effect</dt>
  11769. <dd>[Security] Play this card without paying its memory cost. [Main][Once Per Turn] You may place 5 cards with [Hybrid] in their traits from your trash under this Tamer in any order to digivolve it into an [EmperorGreymon] in your hand for its digivolution cost as if this Tamer is a level 5 red Digimon.</dd>
  11770. </dl>
  11771. <dl>
  11772. <dt>Digivolveeffect</dt>
  11773. <dd>[Your Turn] This Digimon gets +2000 DP. While this Digimon has 10000 DP or more, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  11774. </dl>
  11775. <dl>
  11776. <dt>Securityeffect</dt>
  11777. <dd>-</dd>
  11778. </dl>
  11779. <dl>
  11780. <dt>Notes</dt>
  11781. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11782. </div>
  11783. </div>
  11784. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11785. </div>
  11786. </div>
  11787. </li>
  11788. <liclass="image_lists_itemdatapage-5">
  11789. <aclass="card_img">
  11790. <imgsrc="../images/cardlist/card/BT7-085_P1.png"alt="BT7-085TakuyaKanbara"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  11791. </a>
  11792. <divclass="popup">
  11793. <divclass="card_detailcard_detail_red">
  11794. <divclass="card_detail_inner">
  11795. <ulclass="cardinfo_head">
  11796. <liclass="cardno">BT7-085</li>
  11797. <li>R</li>
  11798. <liclass="cardtype">Tamer</li>
  11799. <liclass="cardtypecardParallel">AlternativeArt</li>
  11800. </ul>
  11801. <divclass="card_name">TakuyaKanbara</div>
  11802. <divclass="cardinfo_top">
  11803. <divclass="card_img">
  11804. <imgsrc="../images/cardlist/card/BT7-085_P1.png"alt="BT7-085TakuyaKanbara"></div>
  11805. <divclass="cardinfo_top_body">
  11806. <dl>
  11807. <dt>Form</dt>
  11808. <dd>-</dd>
  11809. </dl>
  11810. <dl>
  11811. <dt>Attribute</dt>
  11812. <dd>-</dd>
  11813. </dl>
  11814. <dl>
  11815. <dt>Type</dt>
  11816. <dd>-</dd>
  11817. </dl>
  11818. <dl>
  11819. <dt>DP</dt>
  11820. <dd>-</dl>
  11821. <dl>
  11822. <dt>PlayCost</dt>
  11823. <dd>3</dd>
  11824. </dl>
  11825. <dl>
  11826. <dt>DigivolveCost1</dt>
  11827. <dd>-</dd>
  11828. </dl>
  11829. <dl>
  11830. <dt>DigivolveCost2</dt>
  11831. <dd>-</dd>
  11832. </dl>
  11833. </div>
  11834. </div>
  11835. <divclass="cardinfo_bottom">
  11836. <dl>
  11837. <dt>Effect</dt>
  11838. <dd>[Security] Play this card without paying its memory cost. [Main][Once Per Turn] You may place 5 cards with [Hybrid] in their traits from your trash under this Tamer in any order to digivolve it into an [EmperorGreymon] in your hand for its digivolution cost as if this Tamer is a level 5 red Digimon.</dd>
  11839. </dl>
  11840. <dl>
  11841. <dt>Digivolveeffect</dt>
  11842. <dd>[Your Turn] This Digimon gets +2000 DP. While this Digimon has 10000 DP or more, it gains <Security Attack +1>. (This Digimon checks 1 additional security card.)</dd>
  11843. </dl>
  11844. <dl>
  11845. <dt>Securityeffect</dt>
  11846. <dd>-</dd>
  11847. </dl>
  11848. <dl>
  11849. <dt>Notes</dt>
  11850. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  11851. </div>
  11852. </div>
  11853. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11854. </div>
  11855. </div>
  11856. </li>
  11857. <liclass="image_lists_itemdatapage-5">
  11858. <aclass="card_img">
  11859. <imgsrc="../images/cardlist/card/BT7-086.png"alt="BT7-086TommyHimi"></a>
  11860. <divclass="popup">
  11861. <divclass="card_detailcard_detail_blue">
  11862. <divclass="card_detail_inner">
  11863. <ulclass="cardinfo_head">
  11864. <liclass="cardno">BT7-086</li>
  11865. <li>R</li>
  11866. <liclass="cardtype">Tamer</li>
  11867. </ul>
  11868. <divclass="card_name">TommyHimi</div>
  11869. <divclass="cardinfo_top">
  11870. <divclass="card_img">
  11871. <imgsrc="../images/cardlist/card/BT7-086.png"alt="BT7-086TommyHimi"></div>
  11872. <divclass="cardinfo_top_body">
  11873. <dl>
  11874. <dt>Form</dt>
  11875. <dd>-</dd>
  11876. </dl>
  11877. <dl>
  11878. <dt>Attribute</dt>
  11879. <dd>-</dd>
  11880. </dl>
  11881. <dl>
  11882. <dt>Type</dt>
  11883. <dd>-</dd>
  11884. </dl>
  11885. <dl>
  11886. <dt>DP</dt>
  11887. <dd>-</dl>
  11888. <dl>
  11889. <dt>PlayCost</dt>
  11890. <dd>3</dd>
  11891. </dl>
  11892. <dl>
  11893. <dt>DigivolveCost1</dt>
  11894. <dd>-</dd>
  11895. </dl>
  11896. <dl>
  11897. <dt>DigivolveCost2</dt>
  11898. <dd>-</dd>
  11899. </dl>
  11900. </div>
  11901. </div>
  11902. <divclass="cardinfo_bottom">
  11903. <dl>
  11904. <dt>Effect</dt>
  11905. <dd>[Security] Play this card without paying its memory cost. [On Play] Trash 3 digivolution cards from the bottom of 1 of your opponent's Digimon.</dd>
  11906. </dl>
  11907. <dl>
  11908. <dt>Digivolveeffect</dt>
  11909. <dd>[When Attacking][Once Per Turn] Until the end of your opponent's next turn, 1 of your opponent's Digimon with no digivolution cards can't attack or block.</dd>
  11910. </dl>
  11911. <dl>
  11912. <dt>Securityeffect</dt>
  11913. <dd>-</dd>
  11914. </dl>
  11915. <dl>
  11916. <dt>Notes</dt>
  11917. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  11918. </div>
  11919. </div>
  11920. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11921. </div>
  11922. </div>
  11923. </li>
  11924. <liclass="image_lists_itemdatapage-5">
  11925. <aclass="card_img">
  11926. <imgsrc="../images/cardlist/card/BT7-086_P1.png"alt="BT7-086TommyHimi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  11927. </a>
  11928. <divclass="popup">
  11929. <divclass="card_detailcard_detail_blue">
  11930. <divclass="card_detail_inner">
  11931. <ulclass="cardinfo_head">
  11932. <liclass="cardno">BT7-086</li>
  11933. <li>R</li>
  11934. <liclass="cardtype">Tamer</li>
  11935. <liclass="cardtypecardParallel">AlternativeArt</li>
  11936. </ul>
  11937. <divclass="card_name">TommyHimi</div>
  11938. <divclass="cardinfo_top">
  11939. <divclass="card_img">
  11940. <imgsrc="../images/cardlist/card/BT7-086_P1.png"alt="BT7-086TommyHimi"></div>
  11941. <divclass="cardinfo_top_body">
  11942. <dl>
  11943. <dt>Form</dt>
  11944. <dd>-</dd>
  11945. </dl>
  11946. <dl>
  11947. <dt>Attribute</dt>
  11948. <dd>-</dd>
  11949. </dl>
  11950. <dl>
  11951. <dt>Type</dt>
  11952. <dd>-</dd>
  11953. </dl>
  11954. <dl>
  11955. <dt>DP</dt>
  11956. <dd>-</dl>
  11957. <dl>
  11958. <dt>PlayCost</dt>
  11959. <dd>3</dd>
  11960. </dl>
  11961. <dl>
  11962. <dt>DigivolveCost1</dt>
  11963. <dd>-</dd>
  11964. </dl>
  11965. <dl>
  11966. <dt>DigivolveCost2</dt>
  11967. <dd>-</dd>
  11968. </dl>
  11969. </div>
  11970. </div>
  11971. <divclass="cardinfo_bottom">
  11972. <dl>
  11973. <dt>Effect</dt>
  11974. <dd>[Security] Play this card without paying its memory cost. [On Play] Trash 3 digivolution cards from the bottom of 1 of your opponent's Digimon.</dd>
  11975. </dl>
  11976. <dl>
  11977. <dt>Digivolveeffect</dt>
  11978. <dd>[When Attacking][Once Per Turn] Until the end of your opponent's next turn, 1 of your opponent's Digimon with no digivolution cards can't attack or block.</dd>
  11979. </dl>
  11980. <dl>
  11981. <dt>Securityeffect</dt>
  11982. <dd>-</dd>
  11983. </dl>
  11984. <dl>
  11985. <dt>Notes</dt>
  11986. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  11987. </div>
  11988. </div>
  11989. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  11990. </div>
  11991. </div>
  11992. </li>
  11993. <liclass="image_lists_itemdatapage-5">
  11994. <aclass="card_img">
  11995. <imgsrc="../images/cardlist/card/BT7-087.png"alt="BT7-087KojiMinamoto"></a>
  11996. <divclass="popup">
  11997. <divclass="card_detailcard_detail_blue">
  11998. <divclass="card_detail_inner">
  11999. <ulclass="cardinfo_head">
  12000. <liclass="cardno">BT7-087</li>
  12001. <li>R</li>
  12002. <liclass="cardtype">Tamer</li>
  12003. </ul>
  12004. <divclass="card_name">KojiMinamoto</div>
  12005. <divclass="cardinfo_top">
  12006. <divclass="card_img">
  12007. <imgsrc="../images/cardlist/card/BT7-087.png"alt="BT7-087KojiMinamoto"></div>
  12008. <divclass="cardinfo_top_body">
  12009. <dl>
  12010. <dt>Form</dt>
  12011. <dd>-</dd>
  12012. </dl>
  12013. <dl>
  12014. <dt>Attribute</dt>
  12015. <dd>-</dd>
  12016. </dl>
  12017. <dl>
  12018. <dt>Type</dt>
  12019. <dd>-</dd>
  12020. </dl>
  12021. <dl>
  12022. <dt>DP</dt>
  12023. <dd>-</dl>
  12024. <dl>
  12025. <dt>PlayCost</dt>
  12026. <dd>3</dd>
  12027. </dl>
  12028. <dl>
  12029. <dt>DigivolveCost1</dt>
  12030. <dd>-</dd>
  12031. </dl>
  12032. <dl>
  12033. <dt>DigivolveCost2</dt>
  12034. <dd>-</dd>
  12035. </dl>
  12036. </div>
  12037. </div>
  12038. <divclass="cardinfo_bottom">
  12039. <dl>
  12040. <dt>Effect</dt>
  12041. <dd>[Security] Play this card without paying its memory cost. [Main][Once Per Turn] You may place 5 cards with [Hybrid] in their traits from your hand under this Tamer in any order to digivolve it into a [MagnaGarurumon] in your hand for its digivolution cost as if this Tamer is a level 5 blue Digimon.</dd>
  12042. </dl>
  12043. <dl>
  12044. <dt>Digivolveeffect</dt>
  12045. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, gain 1 memory. Then, this Digimon can't be blocked for the turn.</dd>
  12046. </dl>
  12047. <dl>
  12048. <dt>Securityeffect</dt>
  12049. <dd>-</dd>
  12050. </dl>
  12051. <dl>
  12052. <dt>Notes</dt>
  12053. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  12054. </div>
  12055. </div>
  12056. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12057. </div>
  12058. </div>
  12059. </li>
  12060. <liclass="image_lists_itemdatapage-5">
  12061. <aclass="card_img">
  12062. <imgsrc="../images/cardlist/card/BT7-087_P1.png"alt="BT7-087KojiMinamoto"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  12063. </a>
  12064. <divclass="popup">
  12065. <divclass="card_detailcard_detail_blue">
  12066. <divclass="card_detail_inner">
  12067. <ulclass="cardinfo_head">
  12068. <liclass="cardno">BT7-087</li>
  12069. <li>R</li>
  12070. <liclass="cardtype">Tamer</li>
  12071. <liclass="cardtypecardParallel">AlternativeArt</li>
  12072. </ul>
  12073. <divclass="card_name">KojiMinamoto</div>
  12074. <divclass="cardinfo_top">
  12075. <divclass="card_img">
  12076. <imgsrc="../images/cardlist/card/BT7-087_P1.png"alt="BT7-087KojiMinamoto"></div>
  12077. <divclass="cardinfo_top_body">
  12078. <dl>
  12079. <dt>Form</dt>
  12080. <dd>-</dd>
  12081. </dl>
  12082. <dl>
  12083. <dt>Attribute</dt>
  12084. <dd>-</dd>
  12085. </dl>
  12086. <dl>
  12087. <dt>Type</dt>
  12088. <dd>-</dd>
  12089. </dl>
  12090. <dl>
  12091. <dt>DP</dt>
  12092. <dd>-</dl>
  12093. <dl>
  12094. <dt>PlayCost</dt>
  12095. <dd>3</dd>
  12096. </dl>
  12097. <dl>
  12098. <dt>DigivolveCost1</dt>
  12099. <dd>-</dd>
  12100. </dl>
  12101. <dl>
  12102. <dt>DigivolveCost2</dt>
  12103. <dd>-</dd>
  12104. </dl>
  12105. </div>
  12106. </div>
  12107. <divclass="cardinfo_bottom">
  12108. <dl>
  12109. <dt>Effect</dt>
  12110. <dd>[Security] Play this card without paying its memory cost. [Main][Once Per Turn] You may place 5 cards with [Hybrid] in their traits from your hand under this Tamer in any order to digivolve it into a [MagnaGarurumon] in your hand for its digivolution cost as if this Tamer is a level 5 blue Digimon.</dd>
  12111. </dl>
  12112. <dl>
  12113. <dt>Digivolveeffect</dt>
  12114. <dd>[Your Turn][Once Per Turn] When an effect adds a card to your hand, gain 1 memory. Then, this Digimon can't be blocked for the turn.</dd>
  12115. </dl>
  12116. <dl>
  12117. <dt>Securityeffect</dt>
  12118. <dd>-</dd>
  12119. </dl>
  12120. <dl>
  12121. <dt>Notes</dt>
  12122. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  12123. </div>
  12124. </div>
  12125. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12126. </div>
  12127. </div>
  12128. </li>
  12129. <liclass="image_lists_itemdatapage-5">
  12130. <aclass="card_img">
  12131. <imgsrc="../images/cardlist/card/BT7-088.png"alt="BT7-088ZoeOrimoto"></a>
  12132. <divclass="popup">
  12133. <divclass="card_detailcard_detail_yellow">
  12134. <divclass="card_detail_inner">
  12135. <ulclass="cardinfo_head">
  12136. <liclass="cardno">BT7-088</li>
  12137. <li>R</li>
  12138. <liclass="cardtype">Tamer</li>
  12139. </ul>
  12140. <divclass="card_name">ZoeOrimoto</div>
  12141. <divclass="cardinfo_top">
  12142. <divclass="card_img">
  12143. <imgsrc="../images/cardlist/card/BT7-088.png"alt="BT7-088ZoeOrimoto"></div>
  12144. <divclass="cardinfo_top_body">
  12145. <dl>
  12146. <dt>Form</dt>
  12147. <dd>-</dd>
  12148. </dl>
  12149. <dl>
  12150. <dt>Attribute</dt>
  12151. <dd>-</dd>
  12152. </dl>
  12153. <dl>
  12154. <dt>Type</dt>
  12155. <dd>-</dd>
  12156. </dl>
  12157. <dl>
  12158. <dt>DP</dt>
  12159. <dd>-</dl>
  12160. <dl>
  12161. <dt>PlayCost</dt>
  12162. <dd>3</dd>
  12163. </dl>
  12164. <dl>
  12165. <dt>DigivolveCost1</dt>
  12166. <dd>-</dd>
  12167. </dl>
  12168. <dl>
  12169. <dt>DigivolveCost2</dt>
  12170. <dd>-</dd>
  12171. </dl>
  12172. </div>
  12173. </div>
  12174. <divclass="cardinfo_bottom">
  12175. <dl>
  12176. <dt>Effect</dt>
  12177. <dd>[Security] Play this card without paying its memory cost. [On Play] You may search your security stack for 1 card with [Hybrid] or [Ten Warriors] in its traits, reveal it, and add it to your hand. If you added a card to your hand, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) Then, shuffle your security stack.</dd>
  12178. </dl>
  12179. <dl>
  12180. <dt>Digivolveeffect</dt>
  12181. <dd>[Opponent's Turn] All of your Security Digimon get +3000 DP.</dd>
  12182. </dl>
  12183. <dl>
  12184. <dt>Securityeffect</dt>
  12185. <dd>-</dd>
  12186. </dl>
  12187. <dl>
  12188. <dt>Notes</dt>
  12189. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  12190. </div>
  12191. </div>
  12192. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12193. </div>
  12194. </div>
  12195. </li>
  12196. <liclass="image_lists_itemdatapage-5">
  12197. <aclass="card_img">
  12198. <imgsrc="../images/cardlist/card/BT7-088_P1.png"alt="BT7-088ZoeOrimoto"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  12199. </a>
  12200. <divclass="popup">
  12201. <divclass="card_detailcard_detail_yellow">
  12202. <divclass="card_detail_inner">
  12203. <ulclass="cardinfo_head">
  12204. <liclass="cardno">BT7-088</li>
  12205. <li>R</li>
  12206. <liclass="cardtype">Tamer</li>
  12207. <liclass="cardtypecardParallel">AlternativeArt</li>
  12208. </ul>
  12209. <divclass="card_name">ZoeOrimoto</div>
  12210. <divclass="cardinfo_top">
  12211. <divclass="card_img">
  12212. <imgsrc="../images/cardlist/card/BT7-088_P1.png"alt="BT7-088ZoeOrimoto"></div>
  12213. <divclass="cardinfo_top_body">
  12214. <dl>
  12215. <dt>Form</dt>
  12216. <dd>-</dd>
  12217. </dl>
  12218. <dl>
  12219. <dt>Attribute</dt>
  12220. <dd>-</dd>
  12221. </dl>
  12222. <dl>
  12223. <dt>Type</dt>
  12224. <dd>-</dd>
  12225. </dl>
  12226. <dl>
  12227. <dt>DP</dt>
  12228. <dd>-</dl>
  12229. <dl>
  12230. <dt>PlayCost</dt>
  12231. <dd>3</dd>
  12232. </dl>
  12233. <dl>
  12234. <dt>DigivolveCost1</dt>
  12235. <dd>-</dd>
  12236. </dl>
  12237. <dl>
  12238. <dt>DigivolveCost2</dt>
  12239. <dd>-</dd>
  12240. </dl>
  12241. </div>
  12242. </div>
  12243. <divclass="cardinfo_bottom">
  12244. <dl>
  12245. <dt>Effect</dt>
  12246. <dd>[Security] Play this card without paying its memory cost. [On Play] You may search your security stack for 1 card with [Hybrid] or [Ten Warriors] in its traits, reveal it, and add it to your hand. If you added a card to your hand, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) Then, shuffle your security stack.</dd>
  12247. </dl>
  12248. <dl>
  12249. <dt>Digivolveeffect</dt>
  12250. <dd>[Opponent's Turn] All of your Security Digimon get +3000 DP.</dd>
  12251. </dl>
  12252. <dl>
  12253. <dt>Securityeffect</dt>
  12254. <dd>-</dd>
  12255. </dl>
  12256. <dl>
  12257. <dt>Notes</dt>
  12258. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  12259. </div>
  12260. </div>
  12261. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12262. </div>
  12263. </div>
  12264. </li>
  12265. <liclass="image_lists_itemdatapage-5">
  12266. <aclass="card_img">
  12267. <imgsrc="../images/cardlist/card/BT7-089.png"alt="BT7-089J.P.Shibayama"></a>
  12268. <divclass="popup">
  12269. <divclass="card_detailcard_detail_green">
  12270. <divclass="card_detail_inner">
  12271. <ulclass="cardinfo_head">
  12272. <liclass="cardno">BT7-089</li>
  12273. <li>R</li>
  12274. <liclass="cardtype">Tamer</li>
  12275. </ul>
  12276. <divclass="card_name">J.P.Shibayama</div>
  12277. <divclass="cardinfo_top">
  12278. <divclass="card_img">
  12279. <imgsrc="../images/cardlist/card/BT7-089.png"alt="BT7-089J.P.Shibayama"></div>
  12280. <divclass="cardinfo_top_body">
  12281. <dl>
  12282. <dt>Form</dt>
  12283. <dd>-</dd>
  12284. </dl>
  12285. <dl>
  12286. <dt>Attribute</dt>
  12287. <dd>-</dd>
  12288. </dl>
  12289. <dl>
  12290. <dt>Type</dt>
  12291. <dd>-</dd>
  12292. </dl>
  12293. <dl>
  12294. <dt>DP</dt>
  12295. <dd>-</dl>
  12296. <dl>
  12297. <dt>PlayCost</dt>
  12298. <dd>3</dd>
  12299. </dl>
  12300. <dl>
  12301. <dt>DigivolveCost1</dt>
  12302. <dd>-</dd>
  12303. </dl>
  12304. <dl>
  12305. <dt>DigivolveCost2</dt>
  12306. <dd>-</dd>
  12307. </dl>
  12308. </div>
  12309. </div>
  12310. <divclass="cardinfo_bottom">
  12311. <dl>
  12312. <dt>Effect</dt>
  12313. <dd>[Security] Play this card without paying its memory cost. [Your Turn] When this Tamer digivolves into a green Digimon, reduce the memory cost of the digivolution by 1.</dd>
  12314. </dl>
  12315. <dl>
  12316. <dt>Digivolveeffect</dt>
  12317. <dd><Piercing> (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  12318. </dl>
  12319. <dl>
  12320. <dt>Securityeffect</dt>
  12321. <dd>-</dd>
  12322. </dl>
  12323. <dl>
  12324. <dt>Notes</dt>
  12325. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  12326. </div>
  12327. </div>
  12328. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12329. </div>
  12330. </div>
  12331. </li>
  12332. <liclass="image_lists_itemdatapage-5">
  12333. <aclass="card_img">
  12334. <imgsrc="../images/cardlist/card/BT7-089_P1.png"alt="BT7-089J.P.Shibayama"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  12335. </a>
  12336. <divclass="popup">
  12337. <divclass="card_detailcard_detail_green">
  12338. <divclass="card_detail_inner">
  12339. <ulclass="cardinfo_head">
  12340. <liclass="cardno">BT7-089</li>
  12341. <li>R</li>
  12342. <liclass="cardtype">Tamer</li>
  12343. <liclass="cardtypecardParallel">AlternativeArt</li>
  12344. </ul>
  12345. <divclass="card_name">J.P.Shibayama</div>
  12346. <divclass="cardinfo_top">
  12347. <divclass="card_img">
  12348. <imgsrc="../images/cardlist/card/BT7-089_P1.png"alt="BT7-089J.P.Shibayama"></div>
  12349. <divclass="cardinfo_top_body">
  12350. <dl>
  12351. <dt>Form</dt>
  12352. <dd>-</dd>
  12353. </dl>
  12354. <dl>
  12355. <dt>Attribute</dt>
  12356. <dd>-</dd>
  12357. </dl>
  12358. <dl>
  12359. <dt>Type</dt>
  12360. <dd>-</dd>
  12361. </dl>
  12362. <dl>
  12363. <dt>DP</dt>
  12364. <dd>-</dl>
  12365. <dl>
  12366. <dt>PlayCost</dt>
  12367. <dd>3</dd>
  12368. </dl>
  12369. <dl>
  12370. <dt>DigivolveCost1</dt>
  12371. <dd>-</dd>
  12372. </dl>
  12373. <dl>
  12374. <dt>DigivolveCost2</dt>
  12375. <dd>-</dd>
  12376. </dl>
  12377. </div>
  12378. </div>
  12379. <divclass="cardinfo_bottom">
  12380. <dl>
  12381. <dt>Effect</dt>
  12382. <dd>[Security] Play this card without paying its memory cost. [Your Turn] When this Tamer digivolves into a green Digimon, reduce the memory cost of the digivolution by 1.</dd>
  12383. </dl>
  12384. <dl>
  12385. <dt>Digivolveeffect</dt>
  12386. <dd><Piercing> (When this Digimon attacks and deletes an opponent's Digimon and survives the battle, it performs any security checks it normally would.)</dd>
  12387. </dl>
  12388. <dl>
  12389. <dt>Securityeffect</dt>
  12390. <dd>-</dd>
  12391. </dl>
  12392. <dl>
  12393. <dt>Notes</dt>
  12394. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  12395. </div>
  12396. </div>
  12397. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12398. </div>
  12399. </div>
  12400. </li>
  12401. <liclass="image_lists_itemdatapage-5">
  12402. <aclass="card_img">
  12403. <imgsrc="../images/cardlist/card/BT7-090.png"alt="BT7-090KotaDomoto"></a>
  12404. <divclass="popup">
  12405. <divclass="card_detailcard_detail_black">
  12406. <divclass="card_detail_inner">
  12407. <ulclass="cardinfo_head">
  12408. <liclass="cardno">BT7-090</li>
  12409. <li>R</li>
  12410. <liclass="cardtype">Tamer</li>
  12411. </ul>
  12412. <divclass="card_name">KotaDomoto</div>
  12413. <divclass="cardinfo_top">
  12414. <divclass="card_img">
  12415. <imgsrc="../images/cardlist/card/BT7-090.png"alt="BT7-090KotaDomoto"></div>
  12416. <divclass="cardinfo_top_body">
  12417. <dl>
  12418. <dt>Form</dt>
  12419. <dd>-</dd>
  12420. </dl>
  12421. <dl>
  12422. <dt>Attribute</dt>
  12423. <dd>-</dd>
  12424. </dl>
  12425. <dl>
  12426. <dt>Type</dt>
  12427. <dd>-</dd>
  12428. </dl>
  12429. <dl>
  12430. <dt>DP</dt>
  12431. <dd>-</dl>
  12432. <dl>
  12433. <dt>PlayCost</dt>
  12434. <dd>4</dd>
  12435. </dl>
  12436. <dl>
  12437. <dt>DigivolveCost1</dt>
  12438. <dd>-</dd>
  12439. </dl>
  12440. <dl>
  12441. <dt>DigivolveCost2</dt>
  12442. <dd>-</dd>
  12443. </dl>
  12444. </div>
  12445. </div>
  12446. <divclass="cardinfo_bottom">
  12447. <dl>
  12448. <dt>Effect</dt>
  12449. <dd>[Start of Your Turn] If you have 2 memory or less, set your memory to 3. [On Play] Reveal the top 4 cards of your deck. Add 1 card with [X-Antibody] in its traits among them to your hand. Place the remaining cards at the bottom of your deck in any order.</dd>
  12450. </dl>
  12451. <dl>
  12452. <dt>Digivolveeffect</dt>
  12453. <dd>-</dd>
  12454. </dl>
  12455. <dl>
  12456. <dt>Securityeffect</dt>
  12457. <dd>-</dd>
  12458. </dl>
  12459. <dl>
  12460. <dt>Notes</dt>
  12461. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  12462. </div>
  12463. </div>
  12464. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12465. </div>
  12466. </div>
  12467. </li>
  12468. <liclass="image_lists_itemdatapage-5">
  12469. <aclass="card_img">
  12470. <imgsrc="../images/cardlist/card/BT7-091.png"alt="BT7-091KoichiKimura"></a>
  12471. <divclass="popup">
  12472. <divclass="card_detailcard_detail_purple">
  12473. <divclass="card_detail_inner">
  12474. <ulclass="cardinfo_head">
  12475. <liclass="cardno">BT7-091</li>
  12476. <li>R</li>
  12477. <liclass="cardtype">Tamer</li>
  12478. </ul>
  12479. <divclass="card_name">KoichiKimura</div>
  12480. <divclass="cardinfo_top">
  12481. <divclass="card_img">
  12482. <imgsrc="../images/cardlist/card/BT7-091.png"alt="BT7-091KoichiKimura"></div>
  12483. <divclass="cardinfo_top_body">
  12484. <dl>
  12485. <dt>Form</dt>
  12486. <dd>-</dd>
  12487. </dl>
  12488. <dl>
  12489. <dt>Attribute</dt>
  12490. <dd>-</dd>
  12491. </dl>
  12492. <dl>
  12493. <dt>Type</dt>
  12494. <dd>-</dd>
  12495. </dl>
  12496. <dl>
  12497. <dt>DP</dt>
  12498. <dd>-</dl>
  12499. <dl>
  12500. <dt>PlayCost</dt>
  12501. <dd>3</dd>
  12502. </dl>
  12503. <dl>
  12504. <dt>DigivolveCost1</dt>
  12505. <dd>-</dd>
  12506. </dl>
  12507. <dl>
  12508. <dt>DigivolveCost2</dt>
  12509. <dd>-</dd>
  12510. </dl>
  12511. </div>
  12512. </div>
  12513. <divclass="cardinfo_bottom">
  12514. <dl>
  12515. <dt>Effect</dt>
  12516. <dd>[Security] Play this card without paying its memory cost. [On Play] <Draw 1>. (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  12517. </dl>
  12518. <dl>
  12519. <dt>Digivolveeffect</dt>
  12520. <dd>[On Deletion] Gain 1 memory.</dd>
  12521. </dl>
  12522. <dl>
  12523. <dt>Securityeffect</dt>
  12524. <dd>-</dd>
  12525. </dl>
  12526. <dl>
  12527. <dt>Notes</dt>
  12528. <dd><ahref="/products/pack/ver7.php">&rtri;BOOSTER-NEXTADVENTURE-[BT-07]</a></dd></dl>
  12529. </div>
  12530. </div>
  12531. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12532. </div>
  12533. </div>
  12534. </li>
  12535. <liclass="image_lists_itemdatapage-5">
  12536. <aclass="card_img">
  12537. <imgsrc="../images/cardlist/card/BT7-091_P1.png"alt="BT7-091KoichiKimura"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  12538. </a>
  12539. <divclass="popup">
  12540. <divclass="card_detailcard_detail_purple">
  12541. <divclass="card_detail_inner">
  12542. <ulclass="cardinfo_head">
  12543. <liclass="cardno">BT7-091</li>
  12544. <li>R</li>
  12545. <liclass="cardtype">Tamer</li>
  12546. <liclass="cardtypecardParallel">AlternativeArt</li>
  12547. </ul>
  12548. <divclass="card_name">KoichiKimura</div>
  12549. <divclass="cardinfo_top">
  12550. <divclass="card_img">
  12551. <imgsrc="../images/cardlist/card/BT7-091_P1.png"alt="BT7-091KoichiKimura"></div>
  12552. <divclass="cardinfo_top_body">
  12553. <dl>
  12554. <dt>Form</dt>
  12555. <dd>-</dd>
  12556. </dl>
  12557. <dl>
  12558. <dt>Attribute</dt>
  12559. <dd>-</dd>
  12560. </dl>
  12561. <dl>
  12562. <dt>Type</dt>
  12563. <dd>-</dd>
  12564. </dl>
  12565. <dl>
  12566. <dt>DP</dt>
  12567. <dd>-</dl>
  12568. <dl>
  12569. <dt>PlayCost</dt>
  12570. <dd>3</dd>
  12571. </dl>
  12572. <dl>
  12573. <dt>DigivolveCost1</dt>
  12574. <dd>-</dd>
  12575. </dl>
  12576. <dl>
  12577. <dt>DigivolveCost2</dt>
  12578. <dd>-</dd>
  12579. </dl>
  12580. </div>
  12581. </div>
  12582. <divclass="cardinfo_bottom">
  12583. <dl>
  12584. <dt>Effect</dt>
  12585. <dd>[Security] Play this card without paying its memory cost. [On Play] <Draw 1>. (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  12586. </dl>
  12587. <dl>
  12588. <dt>Digivolveeffect</dt>
  12589. <dd>[On Deletion] Gain 1 memory.</dd>
  12590. </dl>
  12591. <dl>
  12592. <dt>Securityeffect</dt>
  12593. <dd>-</dd>
  12594. </dl>
  12595. <dl>
  12596. <dt>Notes</dt>
  12597. <dd>BOOSTER-NEXTADVENTURE-[BT-07]BoxToppers</dd></dl>
  12598. </div>
  12599. </div>
  12600. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  12601. </div>
  12602. </div>
  12603. </li>