522016.txt 224 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT13-001.png"alt="BT13-001Pinamon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT13-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Pinamon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT13-001.png"alt="BT13-001Pinamon"></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>Bird</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>[On Deletion] Delete 1 of your opponent's Digimon with 2000 DP or less.</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/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</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/BT13-002.png"alt="BT13-002Chapmon"></a>
  72. <divclass="popup">
  73. <divclass="card_detailcard_detail_blue">
  74. <divclass="card_detail_inner">
  75. <ulclass="cardinfo_head">
  76. <liclass="cardno">BT13-002</li>
  77. <li>U</li>
  78. <liclass="cardtype">Digi-Egg</li>
  79. <liclass="cardlv">Lv.2</li>
  80. </ul>
  81. <divclass="card_name">Chapmon</div>
  82. <divclass="cardinfo_top">
  83. <divclass="card_img">
  84. <imgsrc="../images/cardlist/card/BT13-002.png"alt="BT13-002Chapmon"></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>[Opponent's Turn] While you have another Digimon, this Digimon gets +1000 DP.</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/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</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/BT13-003.png"alt="BT13-003Kyaromon"></a>
  140. <divclass="popup">
  141. <divclass="card_detailcard_detail_yellow">
  142. <divclass="card_detail_inner">
  143. <ulclass="cardinfo_head">
  144. <liclass="cardno">BT13-003</li>
  145. <li>U</li>
  146. <liclass="cardtype">Digi-Egg</li>
  147. <liclass="cardlv">Lv.2</li>
  148. </ul>
  149. <divclass="card_name">Kyaromon</div>
  150. <divclass="cardinfo_top">
  151. <divclass="card_img">
  152. <imgsrc="../images/cardlist/card/BT13-003.png"alt="BT13-003Kyaromon"></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][Once Per Turn] When a card is removed from your security stack, 1 of your Digimon gains <Jamming> 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/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</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/BT13-004.png"alt="BT13-004Budmon"></a>
  208. <divclass="popup">
  209. <divclass="card_detailcard_detail_green">
  210. <divclass="card_detail_inner">
  211. <ulclass="cardinfo_head">
  212. <liclass="cardno">BT13-004</li>
  213. <li>U</li>
  214. <liclass="cardtype">Digi-Egg</li>
  215. <liclass="cardlv">Lv.2</li>
  216. </ul>
  217. <divclass="card_name">Budmon</div>
  218. <divclass="cardinfo_top">
  219. <divclass="card_img">
  220. <imgsrc="../images/cardlist/card/BT13-004.png"alt="BT13-004Budmon"></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>Vegetation</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>[Your Turn] While your opponent has a suspended Digimon, this Digimon gets +1000 DP.</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/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</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/BT13-005.png"alt="BT13-005Dorimon"></a>
  276. <divclass="popup">
  277. <divclass="card_detailcard_detail_black">
  278. <divclass="card_detail_inner">
  279. <ulclass="cardinfo_head">
  280. <liclass="cardno">BT13-005</li>
  281. <li>U</li>
  282. <liclass="cardtype">Digi-Egg</li>
  283. <liclass="cardlv">Lv.2</li>
  284. </ul>
  285. <divclass="card_name">Dorimon</div>
  286. <divclass="cardinfo_top">
  287. <divclass="card_img">
  288. <imgsrc="../images/cardlist/card/BT13-005.png"alt="BT13-005Dorimon"></div>
  289. <divclass="cardinfo_top_body">
  290. <dl>
  291. <dt>Form</dt>
  292. <dd>In-Training</dd>
  293. </dl>
  294. <dl>
  295. <dt>Attribute</dt>
  296. <dd>-</dd>
  297. </dl>
  298. <dl>
  299. <dt>Type</dt>
  300. <dd>Lesser/XAntibody</dd>
  301. </dl>
  302. <dl>
  303. <dt>DP</dt>
  304. <dd>-</dl>
  305. <dl>
  306. <dt>PlayCost</dt>
  307. <dd>-</dd>
  308. </dl>
  309. <dl>
  310. <dt>DigivolveCost1</dt>
  311. <dd>-</dd>
  312. </dl>
  313. <dl>
  314. <dt>DigivolveCost2</dt>
  315. <dd>-</dd>
  316. </dl>
  317. </div>
  318. </div>
  319. <divclass="cardinfo_bottom">
  320. <dl>
  321. <dt>Effect</dt>
  322. <dd>-</dd>
  323. </dl>
  324. <dl>
  325. <dt>Digivolveeffect</dt>
  326. <dd>[When Attacking] If this Digimon has 4 or more digivolution cards, <Draw 1>. (Draw 1 card from your deck.)</dd>
  327. </dl>
  328. <dl>
  329. <dt>Securityeffect</dt>
  330. <dd>-</dd>
  331. </dl>
  332. <dl>
  333. <dt>Notes</dt>
  334. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  335. </div>
  336. </div>
  337. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  338. </div>
  339. </div>
  340. </li>
  341. <liclass="image_lists_itemdatapage-1">
  342. <aclass="card_img">
  343. <imgsrc="../images/cardlist/card/BT13-006.png"alt="BT13-006Kapurimon"></a>
  344. <divclass="popup">
  345. <divclass="card_detailcard_detail_purple">
  346. <divclass="card_detail_inner">
  347. <ulclass="cardinfo_head">
  348. <liclass="cardno">BT13-006</li>
  349. <li>U</li>
  350. <liclass="cardtype">Digi-Egg</li>
  351. <liclass="cardlv">Lv.2</li>
  352. </ul>
  353. <divclass="card_name">Kapurimon</div>
  354. <divclass="cardinfo_top">
  355. <divclass="card_img">
  356. <imgsrc="../images/cardlist/card/BT13-006.png"alt="BT13-006Kapurimon"></div>
  357. <divclass="cardinfo_top_body">
  358. <dl>
  359. <dt>Form</dt>
  360. <dd>In-Training</dd>
  361. </dl>
  362. <dl>
  363. <dt>Attribute</dt>
  364. <dd>-</dd>
  365. </dl>
  366. <dl>
  367. <dt>Type</dt>
  368. <dd>Lesser</dd>
  369. </dl>
  370. <dl>
  371. <dt>DP</dt>
  372. <dd>-</dl>
  373. <dl>
  374. <dt>PlayCost</dt>
  375. <dd>-</dd>
  376. </dl>
  377. <dl>
  378. <dt>DigivolveCost1</dt>
  379. <dd>-</dd>
  380. </dl>
  381. <dl>
  382. <dt>DigivolveCost2</dt>
  383. <dd>-</dd>
  384. </dl>
  385. </div>
  386. </div>
  387. <divclass="cardinfo_bottom">
  388. <dl>
  389. <dt>Effect</dt>
  390. <dd>-</dd>
  391. </dl>
  392. <dl>
  393. <dt>Digivolveeffect</dt>
  394. <dd>[On Deletion] By trashing 1 card in your hand, delete 1 of your opponent's level 3 Digimon.</dd>
  395. </dl>
  396. <dl>
  397. <dt>Securityeffect</dt>
  398. <dd>-</dd>
  399. </dl>
  400. <dl>
  401. <dt>Notes</dt>
  402. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  403. </div>
  404. </div>
  405. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  406. </div>
  407. </div>
  408. </li>
  409. <liclass="image_lists_itemdatapage-1">
  410. <aclass="card_img">
  411. <imgsrc="../images/cardlist/card/BT13-007.png"alt="BT13-007KingDrasil_7D6"></a>
  412. <divclass="popup">
  413. <divclass="card_detailcard_detail_white">
  414. <divclass="card_detail_inner">
  415. <ulclass="cardinfo_head">
  416. <liclass="cardno">BT13-007</li>
  417. <li>SR</li>
  418. <liclass="cardtype">Digi-Egg</li>
  419. <liclass="cardlv">Lv.-</li>
  420. </ul>
  421. <divclass="card_name">KingDrasil_7D6</div>
  422. <divclass="cardinfo_top">
  423. <divclass="card_img">
  424. <imgsrc="../images/cardlist/card/BT13-007.png"alt="BT13-007KingDrasil_7D6"></div>
  425. <divclass="cardinfo_top_body">
  426. <dl>
  427. <dt>Form</dt>
  428. <dd>Mega</dd>
  429. </dl>
  430. <dl>
  431. <dt>Attribute</dt>
  432. <dd>Unknown</dd>
  433. </dl>
  434. <dl>
  435. <dt>Type</dt>
  436. <dd>9000</dd>
  437. </dl>
  438. <dl>
  439. <dt>DP</dt>
  440. <dd>-</dl>
  441. <dl>
  442. <dt>PlayCost</dt>
  443. <dd>-</dd>
  444. </dl>
  445. <dl>
  446. <dt>DigivolveCost1</dt>
  447. <dd>-</dd>
  448. </dl>
  449. <dl>
  450. <dt>DigivolveCost2</dt>
  451. <dd>-</dd>
  452. </dl>
  453. </div>
  454. </div>
  455. <divclass="cardinfo_bottom">
  456. <dl>
  457. <dt>Effect</dt>
  458. <dd>-</dd>
  459. </dl>
  460. <dl>
  461. <dt>Digivolveeffect</dt>
  462. <dd>[Breeding][Your Turn][Once Per Turn] When an Option card with the [Royal Knight] trait is placed in the battle area, gain 1 memory.</dd>
  463. </dl>
  464. <dl>
  465. <dt>Securityeffect</dt>
  466. <dd>-</dd>
  467. </dl>
  468. <dl>
  469. <dt>Notes</dt>
  470. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  471. </div>
  472. </div>
  473. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  474. </div>
  475. </div>
  476. </li>
  477. <liclass="image_lists_itemdatapage-1">
  478. <aclass="card_img">
  479. <imgsrc="../images/cardlist/card/BT13-007_P1.png"alt="BT13-007KingDrasil_7D6"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  480. </a>
  481. <divclass="popup">
  482. <divclass="card_detailcard_detail_white">
  483. <divclass="card_detail_inner">
  484. <ulclass="cardinfo_head">
  485. <liclass="cardno">BT13-007</li>
  486. <li>SR</li>
  487. <liclass="cardtype">Digi-Egg</li>
  488. <liclass="cardlv">Lv.-</li>
  489. <liclass="cardtypecardParallel">AlternativeArt</li>
  490. </ul>
  491. <divclass="card_name">KingDrasil_7D6</div>
  492. <divclass="cardinfo_top">
  493. <divclass="card_img">
  494. <imgsrc="../images/cardlist/card/BT13-007_P1.png"alt="BT13-007KingDrasil_7D6"></div>
  495. <divclass="cardinfo_top_body">
  496. <dl>
  497. <dt>Form</dt>
  498. <dd>Mega</dd>
  499. </dl>
  500. <dl>
  501. <dt>Attribute</dt>
  502. <dd>Unknown</dd>
  503. </dl>
  504. <dl>
  505. <dt>Type</dt>
  506. <dd>9000</dd>
  507. </dl>
  508. <dl>
  509. <dt>DP</dt>
  510. <dd>-</dl>
  511. <dl>
  512. <dt>PlayCost</dt>
  513. <dd>-</dd>
  514. </dl>
  515. <dl>
  516. <dt>DigivolveCost1</dt>
  517. <dd>-</dd>
  518. </dl>
  519. <dl>
  520. <dt>DigivolveCost2</dt>
  521. <dd>-</dd>
  522. </dl>
  523. </div>
  524. </div>
  525. <divclass="cardinfo_bottom">
  526. <dl>
  527. <dt>Effect</dt>
  528. <dd>-</dd>
  529. </dl>
  530. <dl>
  531. <dt>Digivolveeffect</dt>
  532. <dd>[Breeding][Your Turn][Once Per Turn] When an Option card with the [Royal Knight] trait is placed in the battle area, gain 1 memory.</dd>
  533. </dl>
  534. <dl>
  535. <dt>Securityeffect</dt>
  536. <dd>-</dd>
  537. </dl>
  538. <dl>
  539. <dt>Notes</dt>
  540. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  541. </div>
  542. </div>
  543. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  544. </div>
  545. </div>
  546. </li>
  547. <liclass="image_lists_itemdatapage-1">
  548. <aclass="card_img">
  549. <imgsrc="../images/cardlist/card/BT13-008.png"alt="BT13-008Agumon"></a>
  550. <divclass="popup">
  551. <divclass="card_detailcard_detail_red_yellowmulticolor">
  552. <divclass="card_detail_inner">
  553. <ulclass="cardinfo_head">
  554. <liclass="cardno">BT13-008</li>
  555. <li>C</li>
  556. <liclass="cardtype">Digimon</li>
  557. <liclass="cardlv">Lv.3</li>
  558. </ul>
  559. <divclass="card_name">Agumon</div>
  560. <divclass="cardinfo_top">
  561. <divclass="card_img">
  562. <imgsrc="../images/cardlist/card/BT13-008.png"alt="BT13-008Agumon"></div>
  563. <divclass="cardinfo_top_body">
  564. <dl>
  565. <dt>Form</dt>
  566. <dd>Rookie</dd>
  567. </dl>
  568. <dl>
  569. <dt>Attribute</dt>
  570. <dd>Vaccine</dd>
  571. </dl>
  572. <dl>
  573. <dt>Type</dt>
  574. <dd>Dinosaur</dd>
  575. </dl>
  576. <dl>
  577. <dt>DP</dt>
  578. <dd>2000</dl>
  579. <dl>
  580. <dt>PlayCost</dt>
  581. <dd>3</dd>
  582. </dl>
  583. <dl>
  584. <dt>DigivolveCost1</dt>
  585. <dd>1fromLv.2</dd>
  586. </dl>
  587. <dl>
  588. <dt>DigivolveCost2</dt>
  589. <dd>1fromLv.2</dd>
  590. </dl>
  591. </div>
  592. </div>
  593. <divclass="cardinfo_bottom">
  594. <dl>
  595. <dt>Effect</dt>
  596. <dd>Digivolve: 0 from [Koromon]<br>[Main][Once Per Turn] For the turn, 1 of your [Marcus Damon]s is also treated as a 3000 DP Digimon and can't digivolve.</dd>
  597. </dl>
  598. <dl>
  599. <dt>Digivolveeffect</dt>
  600. <dd>[Your Turn][Once Per Turn] When one of your red or yellow Tamers becomes suspended, you may delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  601. </dl>
  602. <dl>
  603. <dt>Securityeffect</dt>
  604. <dd>-</dd>
  605. </dl>
  606. <dl>
  607. <dt>Notes</dt>
  608. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  609. </div>
  610. </div>
  611. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  612. </div>
  613. </div>
  614. </li>
  615. <liclass="image_lists_itemdatapage-1">
  616. <aclass="card_img">
  617. <imgsrc="../images/cardlist/card/BT13-009.png"alt="BT13-009Huckmon"></a>
  618. <divclass="popup">
  619. <divclass="card_detailcard_detail_red">
  620. <divclass="card_detail_inner">
  621. <ulclass="cardinfo_head">
  622. <liclass="cardno">BT13-009</li>
  623. <li>C</li>
  624. <liclass="cardtype">Digimon</li>
  625. <liclass="cardlv">Lv.3</li>
  626. </ul>
  627. <divclass="card_name">Huckmon</div>
  628. <divclass="cardinfo_top">
  629. <divclass="card_img">
  630. <imgsrc="../images/cardlist/card/BT13-009.png"alt="BT13-009Huckmon"></div>
  631. <divclass="cardinfo_top_body">
  632. <dl>
  633. <dt>Form</dt>
  634. <dd>Rookie</dd>
  635. </dl>
  636. <dl>
  637. <dt>Attribute</dt>
  638. <dd>Data</dd>
  639. </dl>
  640. <dl>
  641. <dt>Type</dt>
  642. <dd>MiniDragon</dd>
  643. </dl>
  644. <dl>
  645. <dt>DP</dt>
  646. <dd>2000</dl>
  647. <dl>
  648. <dt>PlayCost</dt>
  649. <dd>3</dd>
  650. </dl>
  651. <dl>
  652. <dt>DigivolveCost1</dt>
  653. <dd>0fromLv.2</dd>
  654. </dl>
  655. <dl>
  656. <dt>DigivolveCost2</dt>
  657. <dd>-</dd>
  658. </dl>
  659. </div>
  660. </div>
  661. <divclass="cardinfo_bottom">
  662. <dl>
  663. <dt>Effect</dt>
  664. <dd>[Your Turn] When you play a Digimon with [Sistermon] in its name, this Digimon may digivolve into [BaoHuckmon] in the hand without paying the cost.</dd>
  665. </dl>
  666. <dl>
  667. <dt>Digivolveeffect</dt>
  668. <dd>[Your Turn][Once Per Turn] When you play a Digimon with [Sistermon] in its name, gain 1 memory.</dd>
  669. </dl>
  670. <dl>
  671. <dt>Securityeffect</dt>
  672. <dd>-</dd>
  673. </dl>
  674. <dl>
  675. <dt>Notes</dt>
  676. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  677. </div>
  678. </div>
  679. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  680. </div>
  681. </div>
  682. </li>
  683. <liclass="image_lists_itemdatapage-1">
  684. <aclass="card_img">
  685. <imgsrc="../images/cardlist/card/BT13-010.png"alt="BT13-010Biyomon"></a>
  686. <divclass="popup">
  687. <divclass="card_detailcard_detail_red">
  688. <divclass="card_detail_inner">
  689. <ulclass="cardinfo_head">
  690. <liclass="cardno">BT13-010</li>
  691. <li>R</li>
  692. <liclass="cardtype">Digimon</li>
  693. <liclass="cardlv">Lv.3</li>
  694. </ul>
  695. <divclass="card_name">Biyomon</div>
  696. <divclass="cardinfo_top">
  697. <divclass="card_img">
  698. <imgsrc="../images/cardlist/card/BT13-010.png"alt="BT13-010Biyomon"></div>
  699. <divclass="cardinfo_top_body">
  700. <dl>
  701. <dt>Form</dt>
  702. <dd>Rookie</dd>
  703. </dl>
  704. <dl>
  705. <dt>Attribute</dt>
  706. <dd>Vaccine</dd>
  707. </dl>
  708. <dl>
  709. <dt>Type</dt>
  710. <dd>Bird</dd>
  711. </dl>
  712. <dl>
  713. <dt>DP</dt>
  714. <dd>1000</dl>
  715. <dl>
  716. <dt>PlayCost</dt>
  717. <dd>3</dd>
  718. </dl>
  719. <dl>
  720. <dt>DigivolveCost1</dt>
  721. <dd>0fromLv.2</dd>
  722. </dl>
  723. <dl>
  724. <dt>DigivolveCost2</dt>
  725. <dd>-</dd>
  726. </dl>
  727. </div>
  728. </div>
  729. <divclass="cardinfo_bottom">
  730. <dl>
  731. <dt>Effect</dt>
  732. <dd>[On Play] If played by an effect, by returning 1 of your [Kristy Damon]s to the hand, this Digimon may digivolve into [Garudamon] in the hand, ignoring its digivolution requirements and without paying the cost.</dd>
  733. </dl>
  734. <dl>
  735. <dt>Digivolveeffect</dt>
  736. <dd>[On Deletion] <Draw 1> (Draw 1 card from your deck.)</dd>
  737. </dl>
  738. <dl>
  739. <dt>Securityeffect</dt>
  740. <dd>-</dd>
  741. </dl>
  742. <dl>
  743. <dt>Notes</dt>
  744. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  745. </div>
  746. </div>
  747. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  748. </div>
  749. </div>
  750. </li>
  751. <liclass="image_lists_itemdatapage-1">
  752. <aclass="card_img">
  753. <imgsrc="../images/cardlist/card/BT13-011.png"alt="BT13-011Aquilamon"></a>
  754. <divclass="popup">
  755. <divclass="card_detailcard_detail_red">
  756. <divclass="card_detail_inner">
  757. <ulclass="cardinfo_head">
  758. <liclass="cardno">BT13-011</li>
  759. <li>C</li>
  760. <liclass="cardtype">Digimon</li>
  761. <liclass="cardlv">Lv.4</li>
  762. </ul>
  763. <divclass="card_name">Aquilamon</div>
  764. <divclass="cardinfo_top">
  765. <divclass="card_img">
  766. <imgsrc="../images/cardlist/card/BT13-011.png"alt="BT13-011Aquilamon"></div>
  767. <divclass="cardinfo_top_body">
  768. <dl>
  769. <dt>Form</dt>
  770. <dd>Champion</dd>
  771. </dl>
  772. <dl>
  773. <dt>Attribute</dt>
  774. <dd>Free</dd>
  775. </dl>
  776. <dl>
  777. <dt>Type</dt>
  778. <dd>GiantBird</dd>
  779. </dl>
  780. <dl>
  781. <dt>DP</dt>
  782. <dd>5000</dl>
  783. <dl>
  784. <dt>PlayCost</dt>
  785. <dd>5</dd>
  786. </dl>
  787. <dl>
  788. <dt>DigivolveCost1</dt>
  789. <dd>2fromLv.3</dd>
  790. </dl>
  791. <dl>
  792. <dt>DigivolveCost2</dt>
  793. <dd>-</dd>
  794. </dl>
  795. </div>
  796. </div>
  797. <divclass="cardinfo_bottom">
  798. <dl>
  799. <dt>Effect</dt>
  800. <dd>[On Play][When Digivolving] Delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  801. </dl>
  802. <dl>
  803. <dt>Digivolveeffect</dt>
  804. <dd>[On Deletion] <Draw 1> (Draw 1 card from your deck.)</dd>
  805. </dl>
  806. <dl>
  807. <dt>Securityeffect</dt>
  808. <dd>-</dd>
  809. </dl>
  810. <dl>
  811. <dt>Notes</dt>
  812. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  813. </div>
  814. </div>
  815. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  816. </div>
  817. </div>
  818. </li>
  819. <liclass="image_lists_itemdatapage-1">
  820. <aclass="card_img">
  821. <imgsrc="../images/cardlist/card/BT13-012.png"alt="BT13-012GeoGreymon"></a>
  822. <divclass="popup">
  823. <divclass="card_detailcard_detail_red_yellowmulticolor">
  824. <divclass="card_detail_inner">
  825. <ulclass="cardinfo_head">
  826. <liclass="cardno">BT13-012</li>
  827. <li>C</li>
  828. <liclass="cardtype">Digimon</li>
  829. <liclass="cardlv">Lv.4</li>
  830. </ul>
  831. <divclass="card_name">GeoGreymon</div>
  832. <divclass="cardinfo_top">
  833. <divclass="card_img">
  834. <imgsrc="../images/cardlist/card/BT13-012.png"alt="BT13-012GeoGreymon"></div>
  835. <divclass="cardinfo_top_body">
  836. <dl>
  837. <dt>Form</dt>
  838. <dd>Champion</dd>
  839. </dl>
  840. <dl>
  841. <dt>Attribute</dt>
  842. <dd>Vaccine</dd>
  843. </dl>
  844. <dl>
  845. <dt>Type</dt>
  846. <dd>Dinosaur</dd>
  847. </dl>
  848. <dl>
  849. <dt>DP</dt>
  850. <dd>5000</dl>
  851. <dl>
  852. <dt>PlayCost</dt>
  853. <dd>5</dd>
  854. </dl>
  855. <dl>
  856. <dt>DigivolveCost1</dt>
  857. <dd>3fromLv.3</dd>
  858. </dl>
  859. <dl>
  860. <dt>DigivolveCost2</dt>
  861. <dd>3fromLv.3</dd>
  862. </dl>
  863. </div>
  864. </div>
  865. <divclass="cardinfo_bottom">
  866. <dl>
  867. <dt>Effect</dt>
  868. <dd>Digivolve: 2 from Lv.3 w/[Agumon] in name and [Dinosaur] trait<bt>[When Digivolving] Search your security stack, and you may play 1 red or yellow Tamer card among it without paying the cost. If you did, <Recovery +1 (Deck)>. (Place the top card of your deck on top of your security stack.) Then, shuffle your security stack.</dd>
  869. </dl>
  870. <dl>
  871. <dt>Digivolveeffect</dt>
  872. <dd>[Your Turn][Once Per Turn] When one of your red or yellow Tamers becomes suspended, you may delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  873. </dl>
  874. <dl>
  875. <dt>Securityeffect</dt>
  876. <dd>-</dd>
  877. </dl>
  878. <dl>
  879. <dt>Notes</dt>
  880. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  881. </div>
  882. </div>
  883. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  884. </div>
  885. </div>
  886. </li>
  887. <liclass="image_lists_itemdatapage-1">
  888. <aclass="card_img">
  889. <imgsrc="../images/cardlist/card/BT13-013.png"alt="BT13-013BaoHuckmon"></a>
  890. <divclass="popup">
  891. <divclass="card_detailcard_detail_red">
  892. <divclass="card_detail_inner">
  893. <ulclass="cardinfo_head">
  894. <liclass="cardno">BT13-013</li>
  895. <li>C</li>
  896. <liclass="cardtype">Digimon</li>
  897. <liclass="cardlv">Lv.4</li>
  898. </ul>
  899. <divclass="card_name">BaoHuckmon</div>
  900. <divclass="cardinfo_top">
  901. <divclass="card_img">
  902. <imgsrc="../images/cardlist/card/BT13-013.png"alt="BT13-013BaoHuckmon"></div>
  903. <divclass="cardinfo_top_body">
  904. <dl>
  905. <dt>Form</dt>
  906. <dd>Champion</dd>
  907. </dl>
  908. <dl>
  909. <dt>Attribute</dt>
  910. <dd>Data</dd>
  911. </dl>
  912. <dl>
  913. <dt>Type</dt>
  914. <dd>Dinosaur</dd>
  915. </dl>
  916. <dl>
  917. <dt>DP</dt>
  918. <dd>5000</dl>
  919. <dl>
  920. <dt>PlayCost</dt>
  921. <dd>5</dd>
  922. </dl>
  923. <dl>
  924. <dt>DigivolveCost1</dt>
  925. <dd>2fromLv.3</dd>
  926. </dl>
  927. <dl>
  928. <dt>DigivolveCost2</dt>
  929. <dd>-</dd>
  930. </dl>
  931. </div>
  932. </div>
  933. <divclass="cardinfo_bottom">
  934. <dl>
  935. <dt>Effect</dt>
  936. <dd>[Your Turn] When you play a Digimon with [Sistermon] in its name, this Digimon may digivolve into [SaviorHuckmon] in the hand for the digivolution cost. When this Digimon would digivolve by this effect, reduce the digivolution cost by 2.</dd>
  937. </dl>
  938. <dl>
  939. <dt>Digivolveeffect</dt>
  940. <dd>[Your Turn][Once Per Turn] When you play a Digimon with [Sistermon] in its name, gain 1 memory.</dd>
  941. </dl>
  942. <dl>
  943. <dt>Securityeffect</dt>
  944. <dd>-</dd>
  945. </dl>
  946. <dl>
  947. <dt>Notes</dt>
  948. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  949. </div>
  950. </div>
  951. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  952. </div>
  953. </div>
  954. </li>
  955. <liclass="image_lists_itemdatapage-1">
  956. <aclass="card_img">
  957. <imgsrc="../images/cardlist/card/BT13-014.png"alt="BT13-014Garudamon"></a>
  958. <divclass="popup">
  959. <divclass="card_detailcard_detail_red">
  960. <divclass="card_detail_inner">
  961. <ulclass="cardinfo_head">
  962. <liclass="cardno">BT13-014</li>
  963. <li>U</li>
  964. <liclass="cardtype">Digimon</li>
  965. <liclass="cardlv">Lv.5</li>
  966. </ul>
  967. <divclass="card_name">Garudamon</div>
  968. <divclass="cardinfo_top">
  969. <divclass="card_img">
  970. <imgsrc="../images/cardlist/card/BT13-014.png"alt="BT13-014Garudamon"></div>
  971. <divclass="cardinfo_top_body">
  972. <dl>
  973. <dt>Form</dt>
  974. <dd>Ultimate</dd>
  975. </dl>
  976. <dl>
  977. <dt>Attribute</dt>
  978. <dd>Vaccine</dd>
  979. </dl>
  980. <dl>
  981. <dt>Type</dt>
  982. <dd>Birdkin</dd>
  983. </dl>
  984. <dl>
  985. <dt>DP</dt>
  986. <dd>7000</dl>
  987. <dl>
  988. <dt>PlayCost</dt>
  989. <dd>7</dd>
  990. </dl>
  991. <dl>
  992. <dt>DigivolveCost1</dt>
  993. <dd>3fromLv.4</dd>
  994. </dl>
  995. <dl>
  996. <dt>DigivolveCost2</dt>
  997. <dd>-</dd>
  998. </dl>
  999. </div>
  1000. </div>
  1001. <divclass="cardinfo_bottom">
  1002. <dl>
  1003. <dt>Effect</dt>
  1004. <dd>[On Play][When Digivolving] You may play 1 red Tamer card with a play cost of 3 or less from your hand without paying the cost.</dd>
  1005. </dl>
  1006. <dl>
  1007. <dt>Digivolveeffect</dt>
  1008. <dd>[On Deletion] Delete 1 of your opponent's Digimon with 6000 DP or less.</dd>
  1009. </dl>
  1010. <dl>
  1011. <dt>Securityeffect</dt>
  1012. <dd>-</dd>
  1013. </dl>
  1014. <dl>
  1015. <dt>Notes</dt>
  1016. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1017. </div>
  1018. </div>
  1019. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1020. </div>
  1021. </div>
  1022. </li>
  1023. <liclass="image_lists_itemdatapage-1">
  1024. <aclass="card_img">
  1025. <imgsrc="../images/cardlist/card/BT13-015.png"alt="BT13-015RizeGreymon"></a>
  1026. <divclass="popup">
  1027. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1028. <divclass="card_detail_inner">
  1029. <ulclass="cardinfo_head">
  1030. <liclass="cardno">BT13-015</li>
  1031. <li>C</li>
  1032. <liclass="cardtype">Digimon</li>
  1033. <liclass="cardlv">Lv.5</li>
  1034. </ul>
  1035. <divclass="card_name">RizeGreymon</div>
  1036. <divclass="cardinfo_top">
  1037. <divclass="card_img">
  1038. <imgsrc="../images/cardlist/card/BT13-015.png"alt="BT13-015RizeGreymon"></div>
  1039. <divclass="cardinfo_top_body">
  1040. <dl>
  1041. <dt>Form</dt>
  1042. <dd>Ultimate</dd>
  1043. </dl>
  1044. <dl>
  1045. <dt>Attribute</dt>
  1046. <dd>Vaccine</dd>
  1047. </dl>
  1048. <dl>
  1049. <dt>Type</dt>
  1050. <dd>Cyborg</dd>
  1051. </dl>
  1052. <dl>
  1053. <dt>DP</dt>
  1054. <dd>7000</dl>
  1055. <dl>
  1056. <dt>PlayCost</dt>
  1057. <dd>7</dd>
  1058. </dl>
  1059. <dl>
  1060. <dt>DigivolveCost1</dt>
  1061. <dd>4fromLv.4</dd>
  1062. </dl>
  1063. <dl>
  1064. <dt>DigivolveCost2</dt>
  1065. <dd>4fromLv.4</dd>
  1066. </dl>
  1067. </div>
  1068. </div>
  1069. <divclass="cardinfo_bottom">
  1070. <dl>
  1071. <dt>Effect</dt>
  1072. <dd>Digivolve: 3 from [GeoGreymon]<br>[When Digivolving] You may play 1 [Marcus Damon] from your hand without paying the cost.<br> [All Turns][Once Per Turn] When one of your red or yellow Tamers is deleted, place 1 [Marcus Damon] from your trash on top of your security stack face down.</dd>
  1073. </dl>
  1074. <dl>
  1075. <dt>Digivolveeffect</dt>
  1076. <dd>[All Turns][Once Per Turn] When one of your red or yellow Tamers is deleted, place 1 [Marcus Damon] from your trash on top of your security stack face down.</dd>
  1077. </dl>
  1078. <dl>
  1079. <dt>Securityeffect</dt>
  1080. <dd>-</dd>
  1081. </dl>
  1082. <dl>
  1083. <dt>Notes</dt>
  1084. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1085. </div>
  1086. </div>
  1087. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1088. </div>
  1089. </div>
  1090. </li>
  1091. <liclass="image_lists_itemdatapage-1">
  1092. <aclass="card_img">
  1093. <imgsrc="../images/cardlist/card/BT13-016.png"alt="BT13-016SaviorHuckmon"></a>
  1094. <divclass="popup">
  1095. <divclass="card_detailcard_detail_red">
  1096. <divclass="card_detail_inner">
  1097. <ulclass="cardinfo_head">
  1098. <liclass="cardno">BT13-016</li>
  1099. <li>U</li>
  1100. <liclass="cardtype">Digimon</li>
  1101. <liclass="cardlv">Lv.5</li>
  1102. </ul>
  1103. <divclass="card_name">SaviorHuckmon</div>
  1104. <divclass="cardinfo_top">
  1105. <divclass="card_img">
  1106. <imgsrc="../images/cardlist/card/BT13-016.png"alt="BT13-016SaviorHuckmon"></div>
  1107. <divclass="cardinfo_top_body">
  1108. <dl>
  1109. <dt>Form</dt>
  1110. <dd>Ultimate</dd>
  1111. </dl>
  1112. <dl>
  1113. <dt>Attribute</dt>
  1114. <dd>Data</dd>
  1115. </dl>
  1116. <dl>
  1117. <dt>Type</dt>
  1118. <dd>Dragonkin</dd>
  1119. </dl>
  1120. <dl>
  1121. <dt>DP</dt>
  1122. <dd>8000</dl>
  1123. <dl>
  1124. <dt>PlayCost</dt>
  1125. <dd>8</dd>
  1126. </dl>
  1127. <dl>
  1128. <dt>DigivolveCost1</dt>
  1129. <dd>3fromLv.4</dd>
  1130. </dl>
  1131. <dl>
  1132. <dt>DigivolveCost2</dt>
  1133. <dd>-</dd>
  1134. </dl>
  1135. </div>
  1136. </div>
  1137. <divclass="cardinfo_bottom">
  1138. <dl>
  1139. <dt>Effect</dt>
  1140. <dd>[Your Turn] When you play a Digimon with [Sistermon] in its name, this Digimon may digivolve into a Digimon card with [Jesmon] in its name in the hand for the digivolution cost. When this Digimon would digivolve by this effect, reduce the digivolution cost by 2.</dd>
  1141. </dl>
  1142. <dl>
  1143. <dt>Digivolveeffect</dt>
  1144. <dd>[When Attacking][Once Per Turn] If this Digimon has the [Royal Knight] trait, you may play 1 Digimon card with [Sistermon] in its name from your hand or trash without paying the cost.</dd>
  1145. </dl>
  1146. <dl>
  1147. <dt>Securityeffect</dt>
  1148. <dd>-</dd>
  1149. </dl>
  1150. <dl>
  1151. <dt>Notes</dt>
  1152. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1153. </div>
  1154. </div>
  1155. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1156. </div>
  1157. </div>
  1158. </li>
  1159. <liclass="image_lists_itemdatapage-1">
  1160. <aclass="card_img">
  1161. <imgsrc="../images/cardlist/card/BT13-017.png"alt="BT13-017Jesmon"></a>
  1162. <divclass="popup">
  1163. <divclass="card_detailcard_detail_red">
  1164. <divclass="card_detail_inner">
  1165. <ulclass="cardinfo_head">
  1166. <liclass="cardno">BT13-017</li>
  1167. <li>R</li>
  1168. <liclass="cardtype">Digimon</li>
  1169. <liclass="cardlv">Lv.6</li>
  1170. </ul>
  1171. <divclass="card_name">Jesmon</div>
  1172. <divclass="cardinfo_top">
  1173. <divclass="card_img">
  1174. <imgsrc="../images/cardlist/card/BT13-017.png"alt="BT13-017Jesmon"></div>
  1175. <divclass="cardinfo_top_body">
  1176. <dl>
  1177. <dt>Form</dt>
  1178. <dd>Mega</dd>
  1179. </dl>
  1180. <dl>
  1181. <dt>Attribute</dt>
  1182. <dd>Data</dd>
  1183. </dl>
  1184. <dl>
  1185. <dt>Type</dt>
  1186. <dd>HolyWarrior/RoyalKnight</dd>
  1187. </dl>
  1188. <dl>
  1189. <dt>DP</dt>
  1190. <dd>11000</dl>
  1191. <dl>
  1192. <dt>PlayCost</dt>
  1193. <dd>11</dd>
  1194. </dl>
  1195. <dl>
  1196. <dt>DigivolveCost1</dt>
  1197. <dd>3fromLv.5</dd>
  1198. </dl>
  1199. <dl>
  1200. <dt>DigivolveCost2</dt>
  1201. <dd>-</dd>
  1202. </dl>
  1203. </div>
  1204. </div>
  1205. <divclass="cardinfo_bottom">
  1206. <dl>
  1207. <dt>Effect</dt>
  1208. <dd>[On Play][When Digivolving] Choose any number of your opponent's Digimon so that their DP total is up to 6000 and delete them. For each of your other Digimon, add 2000 to the maximum this DP-based deletion effect can delete.<br> [All Turns] For each of your other Digimon with [Sistermon] in its name or the [Royal Knight] trait, all of your Digimon get +1000 DP.</dd>
  1209. </dl>
  1210. <dl>
  1211. <dt>Digivolveeffect</dt>
  1212. <dd>-</dd>
  1213. </dl>
  1214. <dl>
  1215. <dt>Securityeffect</dt>
  1216. <dd>-</dd>
  1217. </dl>
  1218. <dl>
  1219. <dt>Notes</dt>
  1220. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1221. </div>
  1222. </div>
  1223. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1224. </div>
  1225. </div>
  1226. </li>
  1227. <liclass="image_lists_itemdatapage-1">
  1228. <aclass="card_img">
  1229. <imgsrc="../images/cardlist/card/BT13-017_P1.png"alt="BT13-017Jesmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  1230. </a>
  1231. <divclass="popup">
  1232. <divclass="card_detailcard_detail_red">
  1233. <divclass="card_detail_inner">
  1234. <ulclass="cardinfo_head">
  1235. <liclass="cardno">BT13-017</li>
  1236. <li>R</li>
  1237. <liclass="cardtype">Digimon</li>
  1238. <liclass="cardlv">Lv.6</li>
  1239. <liclass="cardtypecardParallel">AlternativeArt</li>
  1240. </ul>
  1241. <divclass="card_name">Jesmon</div>
  1242. <divclass="cardinfo_top">
  1243. <divclass="card_img">
  1244. <imgsrc="../images/cardlist/card/BT13-017_P1.png"alt="BT13-017Jesmon"></div>
  1245. <divclass="cardinfo_top_body">
  1246. <dl>
  1247. <dt>Form</dt>
  1248. <dd>Mega</dd>
  1249. </dl>
  1250. <dl>
  1251. <dt>Attribute</dt>
  1252. <dd>Data</dd>
  1253. </dl>
  1254. <dl>
  1255. <dt>Type</dt>
  1256. <dd>HolyWarrior/RoyalKnight</dd>
  1257. </dl>
  1258. <dl>
  1259. <dt>DP</dt>
  1260. <dd>11000</dl>
  1261. <dl>
  1262. <dt>PlayCost</dt>
  1263. <dd>11</dd>
  1264. </dl>
  1265. <dl>
  1266. <dt>DigivolveCost1</dt>
  1267. <dd>3fromLv.5</dd>
  1268. </dl>
  1269. <dl>
  1270. <dt>DigivolveCost2</dt>
  1271. <dd>-</dd>
  1272. </dl>
  1273. </div>
  1274. </div>
  1275. <divclass="cardinfo_bottom">
  1276. <dl>
  1277. <dt>Effect</dt>
  1278. <dd>[On Play][When Digivolving] Choose any number of your opponent's Digimon so that their DP total is up to 6000 and delete them. For each of your other Digimon, add 2000 to the maximum this DP-based deletion effect can delete.<br> [All Turns] For each of your other Digimon with [Sistermon] in its name or the [Royal Knight] trait, all of your Digimon get +1000 DP.</dd>
  1279. </dl>
  1280. <dl>
  1281. <dt>Digivolveeffect</dt>
  1282. <dd>-</dd>
  1283. </dl>
  1284. <dl>
  1285. <dt>Securityeffect</dt>
  1286. <dd>-</dd>
  1287. </dl>
  1288. <dl>
  1289. <dt>Notes</dt>
  1290. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1291. </div>
  1292. </div>
  1293. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1294. </div>
  1295. </div>
  1296. </li>
  1297. <liclass="image_lists_itemdatapage-1">
  1298. <aclass="card_img">
  1299. <imgsrc="../images/cardlist/card/BT13-018.png"alt="BT13-018ShineGreymon"></a>
  1300. <divclass="popup">
  1301. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1302. <divclass="card_detail_inner">
  1303. <ulclass="cardinfo_head">
  1304. <liclass="cardno">BT13-018</li>
  1305. <li>R</li>
  1306. <liclass="cardtype">Digimon</li>
  1307. <liclass="cardlv">Lv.6</li>
  1308. </ul>
  1309. <divclass="card_name">ShineGreymon</div>
  1310. <divclass="cardinfo_top">
  1311. <divclass="card_img">
  1312. <imgsrc="../images/cardlist/card/BT13-018.png"alt="BT13-018ShineGreymon"></div>
  1313. <divclass="cardinfo_top_body">
  1314. <dl>
  1315. <dt>Form</dt>
  1316. <dd>Mega</dd>
  1317. </dl>
  1318. <dl>
  1319. <dt>Attribute</dt>
  1320. <dd>Vaccine</dd>
  1321. </dl>
  1322. <dl>
  1323. <dt>Type</dt>
  1324. <dd>LightDragon</dd>
  1325. </dl>
  1326. <dl>
  1327. <dt>DP</dt>
  1328. <dd>12000</dl>
  1329. <dl>
  1330. <dt>PlayCost</dt>
  1331. <dd>12</dd>
  1332. </dl>
  1333. <dl>
  1334. <dt>DigivolveCost1</dt>
  1335. <dd>4fromLv.5</dd>
  1336. </dl>
  1337. <dl>
  1338. <dt>DigivolveCost2</dt>
  1339. <dd>4fromLv.5</dd>
  1340. </dl>
  1341. </div>
  1342. </div>
  1343. <divclass="cardinfo_bottom">
  1344. <dl>
  1345. <dt>Effect</dt>
  1346. <dd>Digivolve: 3 from Lv.5 w/[RizeGreymon] in name<br>[Start of Your Main Phase][When Digivolving] Until the end of your opponent's turn, 1 of your [Marcus Damon]s is also treated as a 3000 DP Digimon, can't digivolve, and gains <Blocker>.<br> [All Turns][Once Per Turn] When one of your red or yellow Tamers becomes suspended, 1 of your opponent's Digimon gets -6000 DP for the turn.</dd>
  1347. </dl>
  1348. <dl>
  1349. <dt>Digivolveeffect</dt>
  1350. <dd>-</dd>
  1351. </dl>
  1352. <dl>
  1353. <dt>Securityeffect</dt>
  1354. <dd>-</dd>
  1355. </dl>
  1356. <dl>
  1357. <dt>Notes</dt>
  1358. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1359. </div>
  1360. </div>
  1361. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1362. </div>
  1363. </div>
  1364. </li>
  1365. <liclass="image_lists_itemdatapage-1">
  1366. <aclass="card_img">
  1367. <imgsrc="../images/cardlist/card/BT13-019.png"alt="BT13-019Gankoomon"></a>
  1368. <divclass="popup">
  1369. <divclass="card_detailcard_detail_red_blackmulticolor">
  1370. <divclass="card_detail_inner">
  1371. <ulclass="cardinfo_head">
  1372. <liclass="cardno">BT13-019</li>
  1373. <li>R</li>
  1374. <liclass="cardtype">Digimon</li>
  1375. <liclass="cardlv">Lv.6</li>
  1376. </ul>
  1377. <divclass="card_name">Gankoomon</div>
  1378. <divclass="cardinfo_top">
  1379. <divclass="card_img">
  1380. <imgsrc="../images/cardlist/card/BT13-019.png"alt="BT13-019Gankoomon"></div>
  1381. <divclass="cardinfo_top_body">
  1382. <dl>
  1383. <dt>Form</dt>
  1384. <dd>Mega</dd>
  1385. </dl>
  1386. <dl>
  1387. <dt>Attribute</dt>
  1388. <dd>Data</dd>
  1389. </dl>
  1390. <dl>
  1391. <dt>Type</dt>
  1392. <dd>HolyWarrior/RoyalKnight</dd>
  1393. </dl>
  1394. <dl>
  1395. <dt>DP</dt>
  1396. <dd>13000</dl>
  1397. <dl>
  1398. <dt>PlayCost</dt>
  1399. <dd>13</dd>
  1400. </dl>
  1401. <dl>
  1402. <dt>DigivolveCost1</dt>
  1403. <dd>5fromLv.5</dd>
  1404. </dl>
  1405. <dl>
  1406. <dt>DigivolveCost2</dt>
  1407. <dd>5fromLv.5</dd>
  1408. </dl>
  1409. </div>
  1410. </div>
  1411. <divclass="cardinfo_bottom">
  1412. <dl>
  1413. <dt>Effect</dt>
  1414. <dd><Blocker><br> [On Play][When Digivolving] Without paying the cost, you may play 1 Digimon card with [Sistermon] in its name from your trash or 1 Digimon card with the [Royal Knight] trait from the digivolution cards of your Digimon in the breeding area. This effect can't play [Omnimon] or [Gankoomon].</dd>
  1415. </dl>
  1416. <dl>
  1417. <dt>Digivolveeffect</dt>
  1418. <dd>-</dd>
  1419. </dl>
  1420. <dl>
  1421. <dt>Securityeffect</dt>
  1422. <dd>-</dd>
  1423. </dl>
  1424. <dl>
  1425. <dt>Notes</dt>
  1426. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1427. </div>
  1428. </div>
  1429. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1430. </div>
  1431. </div>
  1432. </li>
  1433. <liclass="image_lists_itemdatapage-1">
  1434. <aclass="card_img">
  1435. <imgsrc="../images/cardlist/card/BT13-019_P1.png"alt="BT13-019Gankoomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1436. </a>
  1437. <divclass="popup">
  1438. <divclass="card_detailcard_detail_red_blackmulticolor">
  1439. <divclass="card_detail_inner">
  1440. <ulclass="cardinfo_head">
  1441. <liclass="cardno">BT13-019</li>
  1442. <li>R</li>
  1443. <liclass="cardtype">Digimon</li>
  1444. <liclass="cardlv">Lv.6</li>
  1445. <liclass="cardtypecardParallel">AlternativeArt</li>
  1446. </ul>
  1447. <divclass="card_name">Gankoomon</div>
  1448. <divclass="cardinfo_top">
  1449. <divclass="card_img">
  1450. <imgsrc="../images/cardlist/card/BT13-019_P1.png"alt="BT13-019Gankoomon"></div>
  1451. <divclass="cardinfo_top_body">
  1452. <dl>
  1453. <dt>Form</dt>
  1454. <dd>Mega</dd>
  1455. </dl>
  1456. <dl>
  1457. <dt>Attribute</dt>
  1458. <dd>Data</dd>
  1459. </dl>
  1460. <dl>
  1461. <dt>Type</dt>
  1462. <dd>HolyWarrior/RoyalKnight</dd>
  1463. </dl>
  1464. <dl>
  1465. <dt>DP</dt>
  1466. <dd>13000</dl>
  1467. <dl>
  1468. <dt>PlayCost</dt>
  1469. <dd>13</dd>
  1470. </dl>
  1471. <dl>
  1472. <dt>DigivolveCost1</dt>
  1473. <dd>5fromLv.5</dd>
  1474. </dl>
  1475. <dl>
  1476. <dt>DigivolveCost2</dt>
  1477. <dd>5fromLv.5</dd>
  1478. </dl>
  1479. </div>
  1480. </div>
  1481. <divclass="cardinfo_bottom">
  1482. <dl>
  1483. <dt>Effect</dt>
  1484. <dd><Blocker><br> [On Play][When Digivolving] Without paying the cost, you may play 1 Digimon card with [Sistermon] in its name from your trash or 1 Digimon card with the [Royal Knight] trait from the digivolution cards of your Digimon in the breeding area. This effect can't play [Omnimon] or [Gankoomon].</dd>
  1485. </dl>
  1486. <dl>
  1487. <dt>Digivolveeffect</dt>
  1488. <dd>-</dd>
  1489. </dl>
  1490. <dl>
  1491. <dt>Securityeffect</dt>
  1492. <dd>-</dd>
  1493. </dl>
  1494. <dl>
  1495. <dt>Notes</dt>
  1496. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1497. </div>
  1498. </div>
  1499. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1500. </div>
  1501. </div>
  1502. </li>
  1503. <liclass="image_lists_itemdatapage-1">
  1504. <aclass="card_img">
  1505. <imgsrc="../images/cardlist/card/BT13-020.png"alt="BT13-020ShineGreymon:BurstMode"></a>
  1506. <divclass="popup">
  1507. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1508. <divclass="card_detail_inner">
  1509. <ulclass="cardinfo_head">
  1510. <liclass="cardno">BT13-020</li>
  1511. <li>SR</li>
  1512. <liclass="cardtype">Digimon</li>
  1513. <liclass="cardlv">Lv.7</li>
  1514. </ul>
  1515. <divclass="card_name">ShineGreymon:BurstMode</div>
  1516. <divclass="cardinfo_top">
  1517. <divclass="card_img">
  1518. <imgsrc="../images/cardlist/card/BT13-020.png"alt="BT13-020ShineGreymon:BurstMode"></div>
  1519. <divclass="cardinfo_top_body">
  1520. <dl>
  1521. <dt>Form</dt>
  1522. <dd>Mega</dd>
  1523. </dl>
  1524. <dl>
  1525. <dt>Attribute</dt>
  1526. <dd>Vaccine</dd>
  1527. </dl>
  1528. <dl>
  1529. <dt>Type</dt>
  1530. <dd>LightDragon</dd>
  1531. </dl>
  1532. <dl>
  1533. <dt>DP</dt>
  1534. <dd>15000</dl>
  1535. <dl>
  1536. <dt>PlayCost</dt>
  1537. <dd>15</dd>
  1538. </dl>
  1539. <dl>
  1540. <dt>DigivolveCost1</dt>
  1541. <dd>5fromLv.6</dd>
  1542. </dl>
  1543. <dl>
  1544. <dt>DigivolveCost2</dt>
  1545. <dd>5fromLv.6</dd>
  1546. </dl>
  1547. </div>
  1548. </div>
  1549. <divclass="cardinfo_bottom">
  1550. <dl>
  1551. <dt>Effect</dt>
  1552. <dd>Burst Digivolve: 0 from [ShineGreymon] by returning 1 [Marcus Damon] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] You may play 1 [Marcus Damon] from your hand without paying the cost. For the turn, the Tamer played by this effect is also treated as a 12000 DP Digimon, can't digivolve, and gains <Rush>.<br> [Your Turn][Once Per Turn] When one of your Tamers becomes suspended, trash the top card of your opponent’s security stack.</dd>
  1553. </dl>
  1554. <dl>
  1555. <dt>Digivolveeffect</dt>
  1556. <dd>-</dd>
  1557. </dl>
  1558. <dl>
  1559. <dt>Securityeffect</dt>
  1560. <dd>-</dd>
  1561. </dl>
  1562. <dl>
  1563. <dt>Notes</dt>
  1564. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1565. </div>
  1566. </div>
  1567. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1568. </div>
  1569. </div>
  1570. </li>
  1571. <liclass="image_lists_itemdatapage-1">
  1572. <aclass="card_img">
  1573. <imgsrc="../images/cardlist/card/BT13-020_P1.png"alt="BT13-020ShineGreymon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1574. </a>
  1575. <divclass="popup">
  1576. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1577. <divclass="card_detail_inner">
  1578. <ulclass="cardinfo_head">
  1579. <liclass="cardno">BT13-020</li>
  1580. <li>SR</li>
  1581. <liclass="cardtype">Digimon</li>
  1582. <liclass="cardlv">Lv.7</li>
  1583. <liclass="cardtypecardParallel">AlternativeArt</li>
  1584. </ul>
  1585. <divclass="card_name">ShineGreymon:BurstMode</div>
  1586. <divclass="cardinfo_top">
  1587. <divclass="card_img">
  1588. <imgsrc="../images/cardlist/card/BT13-020_P1.png"alt="BT13-020ShineGreymon:BurstMode"></div>
  1589. <divclass="cardinfo_top_body">
  1590. <dl>
  1591. <dt>Form</dt>
  1592. <dd>Mega</dd>
  1593. </dl>
  1594. <dl>
  1595. <dt>Attribute</dt>
  1596. <dd>Vaccine</dd>
  1597. </dl>
  1598. <dl>
  1599. <dt>Type</dt>
  1600. <dd>LightDragon</dd>
  1601. </dl>
  1602. <dl>
  1603. <dt>DP</dt>
  1604. <dd>15000</dl>
  1605. <dl>
  1606. <dt>PlayCost</dt>
  1607. <dd>15</dd>
  1608. </dl>
  1609. <dl>
  1610. <dt>DigivolveCost1</dt>
  1611. <dd>5fromLv.6</dd>
  1612. </dl>
  1613. <dl>
  1614. <dt>DigivolveCost2</dt>
  1615. <dd>5fromLv.6</dd>
  1616. </dl>
  1617. </div>
  1618. </div>
  1619. <divclass="cardinfo_bottom">
  1620. <dl>
  1621. <dt>Effect</dt>
  1622. <dd>Burst Digivolve: 0 from [ShineGreymon] by returning 1 [Marcus Damon] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] You may play 1 [Marcus Damon] from your hand without paying the cost. For the turn, the Tamer played by this effect is also treated as a 12000 DP Digimon, can't digivolve, and gains <Rush>.<br> [Your Turn][Once Per Turn] When one of your Tamers becomes suspended, trash the top card of your opponent’s security stack.</dd>
  1623. </dl>
  1624. <dl>
  1625. <dt>Digivolveeffect</dt>
  1626. <dd>-</dd>
  1627. </dl>
  1628. <dl>
  1629. <dt>Securityeffect</dt>
  1630. <dd>-</dd>
  1631. </dl>
  1632. <dl>
  1633. <dt>Notes</dt>
  1634. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1635. </div>
  1636. </div>
  1637. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1638. </div>
  1639. </div>
  1640. </li>
  1641. <liclass="image_lists_itemdatapage-1">
  1642. <aclass="card_img">
  1643. <imgsrc="../images/cardlist/card/BT13-020_P2.png"alt="BT13-020ShineGreymon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1644. </a>
  1645. <divclass="popup">
  1646. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1647. <divclass="card_detail_inner">
  1648. <ulclass="cardinfo_head">
  1649. <liclass="cardno">BT13-020</li>
  1650. <li>SR</li>
  1651. <liclass="cardtype">Digimon</li>
  1652. <liclass="cardlv">Lv.7</li>
  1653. <liclass="cardtypecardParallel">AlternativeArt</li>
  1654. </ul>
  1655. <divclass="card_name">ShineGreymon:BurstMode</div>
  1656. <divclass="cardinfo_top">
  1657. <divclass="card_img">
  1658. <imgsrc="../images/cardlist/card/BT13-020_P2.png"alt="BT13-020ShineGreymon:BurstMode"></div>
  1659. <divclass="cardinfo_top_body">
  1660. <dl>
  1661. <dt>Form</dt>
  1662. <dd>Mega</dd>
  1663. </dl>
  1664. <dl>
  1665. <dt>Attribute</dt>
  1666. <dd>Vaccine</dd>
  1667. </dl>
  1668. <dl>
  1669. <dt>Type</dt>
  1670. <dd>LightDragon</dd>
  1671. </dl>
  1672. <dl>
  1673. <dt>DP</dt>
  1674. <dd>15000</dl>
  1675. <dl>
  1676. <dt>PlayCost</dt>
  1677. <dd>15</dd>
  1678. </dl>
  1679. <dl>
  1680. <dt>DigivolveCost1</dt>
  1681. <dd>5fromLv.6</dd>
  1682. </dl>
  1683. <dl>
  1684. <dt>DigivolveCost2</dt>
  1685. <dd>5fromLv.6</dd>
  1686. </dl>
  1687. </div>
  1688. </div>
  1689. <divclass="cardinfo_bottom">
  1690. <dl>
  1691. <dt>Effect</dt>
  1692. <dd>Burst Digivolve: 0 from [ShineGreymon] by returning 1 [Marcus Damon] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] You may play 1 [Marcus Damon] from your hand without paying the cost. For the turn, the Tamer played by this effect is also treated as a 12000 DP Digimon, can't digivolve, and gains <Rush>.<br> [Your Turn][Once Per Turn] When one of your Tamers becomes suspended, trash the top card of your opponent’s security stack.</dd>
  1693. </dl>
  1694. <dl>
  1695. <dt>Digivolveeffect</dt>
  1696. <dd>-</dd>
  1697. </dl>
  1698. <dl>
  1699. <dt>Securityeffect</dt>
  1700. <dd>-</dd>
  1701. </dl>
  1702. <dl>
  1703. <dt>Notes</dt>
  1704. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1705. </div>
  1706. </div>
  1707. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1708. </div>
  1709. </div>
  1710. </li>
  1711. <liclass="image_lists_itemdatapage-1">
  1712. <aclass="card_img">
  1713. <imgsrc="../images/cardlist/card/BT13-021.png"alt="BT13-021Gaomon"></a>
  1714. <divclass="popup">
  1715. <divclass="card_detailcard_detail_blue">
  1716. <divclass="card_detail_inner">
  1717. <ulclass="cardinfo_head">
  1718. <liclass="cardno">BT13-021</li>
  1719. <li>C</li>
  1720. <liclass="cardtype">Digimon</li>
  1721. <liclass="cardlv">Lv.3</li>
  1722. </ul>
  1723. <divclass="card_name">Gaomon</div>
  1724. <divclass="cardinfo_top">
  1725. <divclass="card_img">
  1726. <imgsrc="../images/cardlist/card/BT13-021.png"alt="BT13-021Gaomon"></div>
  1727. <divclass="cardinfo_top_body">
  1728. <dl>
  1729. <dt>Form</dt>
  1730. <dd>Rookie</dd>
  1731. </dl>
  1732. <dl>
  1733. <dt>Attribute</dt>
  1734. <dd>Data</dd>
  1735. </dl>
  1736. <dl>
  1737. <dt>Type</dt>
  1738. <dd>Beast</dd>
  1739. </dl>
  1740. <dl>
  1741. <dt>DP</dt>
  1742. <dd>1000</dl>
  1743. <dl>
  1744. <dt>PlayCost</dt>
  1745. <dd>3</dd>
  1746. </dl>
  1747. <dl>
  1748. <dt>DigivolveCost1</dt>
  1749. <dd>0fromLv.2</dd>
  1750. </dl>
  1751. <dl>
  1752. <dt>DigivolveCost2</dt>
  1753. <dd>-</dd>
  1754. </dl>
  1755. </div>
  1756. </div>
  1757. <divclass="cardinfo_bottom">
  1758. <dl>
  1759. <dt>Effect</dt>
  1760. <dd>[When Attacking][Once Per Turn] Both players draw 1 card from their decks.</dd>
  1761. </dl>
  1762. <dl>
  1763. <dt>Digivolveeffect</dt>
  1764. <dd>[All Turns] While your opponent has 8 or more cards in their hand, this Digimon gets +1000 DP.</dd>
  1765. </dl>
  1766. <dl>
  1767. <dt>Securityeffect</dt>
  1768. <dd>-</dd>
  1769. </dl>
  1770. <dl>
  1771. <dt>Notes</dt>
  1772. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1773. </div>
  1774. </div>
  1775. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1776. </div>
  1777. </div>
  1778. </li>
  1779. <liclass="image_lists_itemdatapage-1">
  1780. <aclass="card_img">
  1781. <imgsrc="../images/cardlist/card/BT13-022.png"alt="BT13-022Kamemon"></a>
  1782. <divclass="popup">
  1783. <divclass="card_detailcard_detail_blue">
  1784. <divclass="card_detail_inner">
  1785. <ulclass="cardinfo_head">
  1786. <liclass="cardno">BT13-022</li>
  1787. <li>C</li>
  1788. <liclass="cardtype">Digimon</li>
  1789. <liclass="cardlv">Lv.3</li>
  1790. </ul>
  1791. <divclass="card_name">Kamemon</div>
  1792. <divclass="cardinfo_top">
  1793. <divclass="card_img">
  1794. <imgsrc="../images/cardlist/card/BT13-022.png"alt="BT13-022Kamemon"></div>
  1795. <divclass="cardinfo_top_body">
  1796. <dl>
  1797. <dt>Form</dt>
  1798. <dd>Rookie</dd>
  1799. </dl>
  1800. <dl>
  1801. <dt>Attribute</dt>
  1802. <dd>Data</dd>
  1803. </dl>
  1804. <dl>
  1805. <dt>Type</dt>
  1806. <dd>Cyborg</dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>DP</dt>
  1810. <dd>2000</dl>
  1811. <dl>
  1812. <dt>PlayCost</dt>
  1813. <dd>3</dd>
  1814. </dl>
  1815. <dl>
  1816. <dt>DigivolveCost1</dt>
  1817. <dd>0fromLv.2</dd>
  1818. </dl>
  1819. <dl>
  1820. <dt>DigivolveCost2</dt>
  1821. <dd>-</dd>
  1822. </dl>
  1823. </div>
  1824. </div>
  1825. <divclass="cardinfo_bottom">
  1826. <dl>
  1827. <dt>Effect</dt>
  1828. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  1829. </dl>
  1830. <dl>
  1831. <dt>Digivolveeffect</dt>
  1832. <dd>-</dd>
  1833. </dl>
  1834. <dl>
  1835. <dt>Securityeffect</dt>
  1836. <dd>-</dd>
  1837. </dl>
  1838. <dl>
  1839. <dt>Notes</dt>
  1840. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1841. </div>
  1842. </div>
  1843. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1844. </div>
  1845. </div>
  1846. </li>
  1847. <liclass="image_lists_itemdatapage-1">
  1848. <aclass="card_img">
  1849. <imgsrc="../images/cardlist/card/BT13-023.png"alt="BT13-023Jellymon"></a>
  1850. <divclass="popup">
  1851. <divclass="card_detailcard_detail_blue">
  1852. <divclass="card_detail_inner">
  1853. <ulclass="cardinfo_head">
  1854. <liclass="cardno">BT13-023</li>
  1855. <li>C</li>
  1856. <liclass="cardtype">Digimon</li>
  1857. <liclass="cardlv">Lv.3</li>
  1858. </ul>
  1859. <divclass="card_name">Jellymon</div>
  1860. <divclass="cardinfo_top">
  1861. <divclass="card_img">
  1862. <imgsrc="../images/cardlist/card/BT13-023.png"alt="BT13-023Jellymon"></div>
  1863. <divclass="cardinfo_top_body">
  1864. <dl>
  1865. <dt>Form</dt>
  1866. <dd>Rookie</dd>
  1867. </dl>
  1868. <dl>
  1869. <dt>Attribute</dt>
  1870. <dd>Data</dd>
  1871. </dl>
  1872. <dl>
  1873. <dt>Type</dt>
  1874. <dd>Mollusk</dd>
  1875. </dl>
  1876. <dl>
  1877. <dt>DP</dt>
  1878. <dd>1000</dl>
  1879. <dl>
  1880. <dt>PlayCost</dt>
  1881. <dd>3</dd>
  1882. </dl>
  1883. <dl>
  1884. <dt>DigivolveCost1</dt>
  1885. <dd>0fromLv.2</dd>
  1886. </dl>
  1887. <dl>
  1888. <dt>DigivolveCost2</dt>
  1889. <dd>-</dd>
  1890. </dl>
  1891. </div>
  1892. </div>
  1893. <divclass="cardinfo_bottom">
  1894. <dl>
  1895. <dt>Effect</dt>
  1896. <dd><Evade> (When this Digimon would be deleted, you may suspend it to prevent that deletion).</dd>
  1897. </dl>
  1898. <dl>
  1899. <dt>Digivolveeffect</dt>
  1900. <dd>[When Attacking] Trash the bottom digivolution card of 1 of your opponent's Digimon.</dd>
  1901. </dl>
  1902. <dl>
  1903. <dt>Securityeffect</dt>
  1904. <dd>-</dd>
  1905. </dl>
  1906. <dl>
  1907. <dt>Notes</dt>
  1908. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1909. </div>
  1910. </div>
  1911. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1912. </div>
  1913. </div>
  1914. </li>
  1915. <liclass="image_lists_itemdatapage-1">
  1916. <aclass="card_img">
  1917. <imgsrc="../images/cardlist/card/BT13-024.png"alt="BT13-024Gawappamon"></a>
  1918. <divclass="popup">
  1919. <divclass="card_detailcard_detail_blue">
  1920. <divclass="card_detail_inner">
  1921. <ulclass="cardinfo_head">
  1922. <liclass="cardno">BT13-024</li>
  1923. <li>C</li>
  1924. <liclass="cardtype">Digimon</li>
  1925. <liclass="cardlv">Lv.4</li>
  1926. </ul>
  1927. <divclass="card_name">Gawappamon</div>
  1928. <divclass="cardinfo_top">
  1929. <divclass="card_img">
  1930. <imgsrc="../images/cardlist/card/BT13-024.png"alt="BT13-024Gawappamon"></div>
  1931. <divclass="cardinfo_top_body">
  1932. <dl>
  1933. <dt>Form</dt>
  1934. <dd>Champion</dd>
  1935. </dl>
  1936. <dl>
  1937. <dt>Attribute</dt>
  1938. <dd>Data</dd>
  1939. </dl>
  1940. <dl>
  1941. <dt>Type</dt>
  1942. <dd>Cyborg</dd>
  1943. </dl>
  1944. <dl>
  1945. <dt>DP</dt>
  1946. <dd>5000</dl>
  1947. <dl>
  1948. <dt>PlayCost</dt>
  1949. <dd>4</dd>
  1950. </dl>
  1951. <dl>
  1952. <dt>DigivolveCost1</dt>
  1953. <dd>2fromLv.3</dd>
  1954. </dl>
  1955. <dl>
  1956. <dt>DigivolveCost2</dt>
  1957. <dd>-</dd>
  1958. </dl>
  1959. </div>
  1960. </div>
  1961. <divclass="cardinfo_bottom">
  1962. <dl>
  1963. <dt>Effect</dt>
  1964. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  1965. </dl>
  1966. <dl>
  1967. <dt>Digivolveeffect</dt>
  1968. <dd>-</dd>
  1969. </dl>
  1970. <dl>
  1971. <dt>Securityeffect</dt>
  1972. <dd>-</dd>
  1973. </dl>
  1974. <dl>
  1975. <dt>Notes</dt>
  1976. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  1977. </div>
  1978. </div>
  1979. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1980. </div>
  1981. </div>
  1982. </li>
  1983. <liclass="image_lists_itemdatapage-1">
  1984. <aclass="card_img">
  1985. <imgsrc="../images/cardlist/card/BT13-025.png"alt="BT13-025GaoGamon"></a>
  1986. <divclass="popup">
  1987. <divclass="card_detailcard_detail_blue">
  1988. <divclass="card_detail_inner">
  1989. <ulclass="cardinfo_head">
  1990. <liclass="cardno">BT13-025</li>
  1991. <li>C</li>
  1992. <liclass="cardtype">Digimon</li>
  1993. <liclass="cardlv">Lv.4</li>
  1994. </ul>
  1995. <divclass="card_name">GaoGamon</div>
  1996. <divclass="cardinfo_top">
  1997. <divclass="card_img">
  1998. <imgsrc="../images/cardlist/card/BT13-025.png"alt="BT13-025GaoGamon"></div>
  1999. <divclass="cardinfo_top_body">
  2000. <dl>
  2001. <dt>Form</dt>
  2002. <dd>Champion</dd>
  2003. </dl>
  2004. <dl>
  2005. <dt>Attribute</dt>
  2006. <dd>Data</dd>
  2007. </dl>
  2008. <dl>
  2009. <dt>Type</dt>
  2010. <dd>Beast</dd>
  2011. </dl>
  2012. <dl>
  2013. <dt>DP</dt>
  2014. <dd>5000</dl>
  2015. <dl>
  2016. <dt>PlayCost</dt>
  2017. <dd>5</dd>
  2018. </dl>
  2019. <dl>
  2020. <dt>DigivolveCost1</dt>
  2021. <dd>2fromLv.3</dd>
  2022. </dl>
  2023. <dl>
  2024. <dt>DigivolveCost2</dt>
  2025. <dd>-</dd>
  2026. </dl>
  2027. </div>
  2028. </div>
  2029. <divclass="cardinfo_bottom">
  2030. <dl>
  2031. <dt>Effect</dt>
  2032. <dd>[When Digivolving] If you don't have [Thomas H. Norstein], you may play 1 [Thomas H. Norstein] from your hand without paying the cost.</dd>
  2033. </dl>
  2034. <dl>
  2035. <dt>Digivolveeffect</dt>
  2036. <dd>[All Turns] While your opponent has 8 or more cards in their hand, this Digimon gets +1000 DP.</dd>
  2037. </dl>
  2038. <dl>
  2039. <dt>Securityeffect</dt>
  2040. <dd>-</dd>
  2041. </dl>
  2042. <dl>
  2043. <dt>Notes</dt>
  2044. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2045. </div>
  2046. </div>
  2047. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2048. </div>
  2049. </div>
  2050. </li>
  2051. <liclass="image_lists_itemdatapage-1">
  2052. <aclass="card_img">
  2053. <imgsrc="../images/cardlist/card/BT13-026.png"alt="BT13-026TeslaJellymon"></a>
  2054. <divclass="popup">
  2055. <divclass="card_detailcard_detail_blue">
  2056. <divclass="card_detail_inner">
  2057. <ulclass="cardinfo_head">
  2058. <liclass="cardno">BT13-026</li>
  2059. <li>C</li>
  2060. <liclass="cardtype">Digimon</li>
  2061. <liclass="cardlv">Lv.4</li>
  2062. </ul>
  2063. <divclass="card_name">TeslaJellymon</div>
  2064. <divclass="cardinfo_top">
  2065. <divclass="card_img">
  2066. <imgsrc="../images/cardlist/card/BT13-026.png"alt="BT13-026TeslaJellymon"></div>
  2067. <divclass="cardinfo_top_body">
  2068. <dl>
  2069. <dt>Form</dt>
  2070. <dd>Champion</dd>
  2071. </dl>
  2072. <dl>
  2073. <dt>Attribute</dt>
  2074. <dd>Data</dd>
  2075. </dl>
  2076. <dl>
  2077. <dt>Type</dt>
  2078. <dd>Mollusk</dd>
  2079. </dl>
  2080. <dl>
  2081. <dt>DP</dt>
  2082. <dd>5000</dl>
  2083. <dl>
  2084. <dt>PlayCost</dt>
  2085. <dd>5</dd>
  2086. </dl>
  2087. <dl>
  2088. <dt>DigivolveCost1</dt>
  2089. <dd>2fromLv.3</dd>
  2090. </dl>
  2091. <dl>
  2092. <dt>DigivolveCost2</dt>
  2093. <dd>-</dd>
  2094. </dl>
  2095. </div>
  2096. </div>
  2097. <divclass="cardinfo_bottom">
  2098. <dl>
  2099. <dt>Effect</dt>
  2100. <dd>[When Attacking] <Draw 1> (Draw 1 card from your deck.)</dd>
  2101. </dl>
  2102. <dl>
  2103. <dt>Digivolveeffect</dt>
  2104. <dd>[When Attacking] Trash the bottom digivolution card of 1 of your opponent's Digimon.</dd>
  2105. </dl>
  2106. <dl>
  2107. <dt>Securityeffect</dt>
  2108. <dd>-</dd>
  2109. </dl>
  2110. <dl>
  2111. <dt>Notes</dt>
  2112. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2113. </div>
  2114. </div>
  2115. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2116. </div>
  2117. </div>
  2118. </li>
  2119. <liclass="image_lists_itemdatapage-1">
  2120. <aclass="card_img">
  2121. <imgsrc="../images/cardlist/card/BT13-027.png"alt="BT13-027Shaujinmon"></a>
  2122. <divclass="popup">
  2123. <divclass="card_detailcard_detail_blue">
  2124. <divclass="card_detail_inner">
  2125. <ulclass="cardinfo_head">
  2126. <liclass="cardno">BT13-027</li>
  2127. <li>C</li>
  2128. <liclass="cardtype">Digimon</li>
  2129. <liclass="cardlv">Lv.5</li>
  2130. </ul>
  2131. <divclass="card_name">Shaujinmon</div>
  2132. <divclass="cardinfo_top">
  2133. <divclass="card_img">
  2134. <imgsrc="../images/cardlist/card/BT13-027.png"alt="BT13-027Shaujinmon"></div>
  2135. <divclass="cardinfo_top_body">
  2136. <dl>
  2137. <dt>Form</dt>
  2138. <dd>Ultimate</dd>
  2139. </dl>
  2140. <dl>
  2141. <dt>Attribute</dt>
  2142. <dd>Virus</dd>
  2143. </dl>
  2144. <dl>
  2145. <dt>Type</dt>
  2146. <dd>Wizard</dd>
  2147. </dl>
  2148. <dl>
  2149. <dt>DP</dt>
  2150. <dd>7000</dl>
  2151. <dl>
  2152. <dt>PlayCost</dt>
  2153. <dd>7</dd>
  2154. </dl>
  2155. <dl>
  2156. <dt>DigivolveCost1</dt>
  2157. <dd>3fromLv.4</dd>
  2158. </dl>
  2159. <dl>
  2160. <dt>DigivolveCost2</dt>
  2161. <dd>-</dd>
  2162. </dl>
  2163. </div>
  2164. </div>
  2165. <divclass="cardinfo_bottom">
  2166. <dl>
  2167. <dt>Effect</dt>
  2168. <dd><Blocker><br> [Opponent's Turn] When an opponent's Digimon attacks, you may play 1 level 4 or lower Digimon card from this Digimon's digivolution cards without paying the cost.</dd>
  2169. </dl>
  2170. <dl>
  2171. <dt>Digivolveeffect</dt>
  2172. <dd>-</dd>
  2173. </dl>
  2174. <dl>
  2175. <dt>Securityeffect</dt>
  2176. <dd>-</dd>
  2177. </dl>
  2178. <dl>
  2179. <dt>Notes</dt>
  2180. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2181. </div>
  2182. </div>
  2183. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2184. </div>
  2185. </div>
  2186. </li>
  2187. <liclass="image_lists_itemdatapage-1">
  2188. <aclass="card_img">
  2189. <imgsrc="../images/cardlist/card/BT13-028.png"alt="BT13-028Thetismon"></a>
  2190. <divclass="popup">
  2191. <divclass="card_detailcard_detail_blue">
  2192. <divclass="card_detail_inner">
  2193. <ulclass="cardinfo_head">
  2194. <liclass="cardno">BT13-028</li>
  2195. <li>U</li>
  2196. <liclass="cardtype">Digimon</li>
  2197. <liclass="cardlv">Lv.5</li>
  2198. </ul>
  2199. <divclass="card_name">Thetismon</div>
  2200. <divclass="cardinfo_top">
  2201. <divclass="card_img">
  2202. <imgsrc="../images/cardlist/card/BT13-028.png"alt="BT13-028Thetismon"></div>
  2203. <divclass="cardinfo_top_body">
  2204. <dl>
  2205. <dt>Form</dt>
  2206. <dd>Ultimate</dd>
  2207. </dl>
  2208. <dl>
  2209. <dt>Attribute</dt>
  2210. <dd>Data</dd>
  2211. </dl>
  2212. <dl>
  2213. <dt>Type</dt>
  2214. <dd>Aquabeast</dd>
  2215. </dl>
  2216. <dl>
  2217. <dt>DP</dt>
  2218. <dd>7000</dl>
  2219. <dl>
  2220. <dt>PlayCost</dt>
  2221. <dd>7</dd>
  2222. </dl>
  2223. <dl>
  2224. <dt>DigivolveCost1</dt>
  2225. <dd>3fromLv.4</dd>
  2226. </dl>
  2227. <dl>
  2228. <dt>DigivolveCost2</dt>
  2229. <dd>-</dd>
  2230. </dl>
  2231. </div>
  2232. </div>
  2233. <divclass="cardinfo_bottom">
  2234. <dl>
  2235. <dt>Effect</dt>
  2236. <dd>[Hand][Main] If you have [Kiyoshiro Higashimitarai], by placing 1 [TeslaJellymon] from your hand as 1 of your [Jellymon]'s bottom digivolution card, that Digimon digivolves into this card for a digivolution cost of 3, ignoring digivolution requirements.</dd>
  2237. </dl>
  2238. <dl>
  2239. <dt>Digivolveeffect</dt>
  2240. <dd>[End of Attack][Once Per Turn] By returning 3 cards with [Jellymon] in their text from your trash at the bottom of the deck in any order, unsuspend this Digimon.</dd>
  2241. </dl>
  2242. <dl>
  2243. <dt>Securityeffect</dt>
  2244. <dd>-</dd>
  2245. </dl>
  2246. <dl>
  2247. <dt>Notes</dt>
  2248. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2249. </div>
  2250. </div>
  2251. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2252. </div>
  2253. </div>
  2254. </li>
  2255. <liclass="image_lists_itemdatapage-1">
  2256. <aclass="card_img">
  2257. <imgsrc="../images/cardlist/card/BT13-029.png"alt="BT13-029MachGaogamon"></a>
  2258. <divclass="popup">
  2259. <divclass="card_detailcard_detail_blue">
  2260. <divclass="card_detail_inner">
  2261. <ulclass="cardinfo_head">
  2262. <liclass="cardno">BT13-029</li>
  2263. <li>U</li>
  2264. <liclass="cardtype">Digimon</li>
  2265. <liclass="cardlv">Lv.5</li>
  2266. </ul>
  2267. <divclass="card_name">MachGaogamon</div>
  2268. <divclass="cardinfo_top">
  2269. <divclass="card_img">
  2270. <imgsrc="../images/cardlist/card/BT13-029.png"alt="BT13-029MachGaogamon"></div>
  2271. <divclass="cardinfo_top_body">
  2272. <dl>
  2273. <dt>Form</dt>
  2274. <dd>Ultimate</dd>
  2275. </dl>
  2276. <dl>
  2277. <dt>Attribute</dt>
  2278. <dd>Data</dd>
  2279. </dl>
  2280. <dl>
  2281. <dt>Type</dt>
  2282. <dd>Cyborg</dd>
  2283. </dl>
  2284. <dl>
  2285. <dt>DP</dt>
  2286. <dd>7000</dl>
  2287. <dl>
  2288. <dt>PlayCost</dt>
  2289. <dd>7</dd>
  2290. </dl>
  2291. <dl>
  2292. <dt>DigivolveCost1</dt>
  2293. <dd>3fromLv.4</dd>
  2294. </dl>
  2295. <dl>
  2296. <dt>DigivolveCost2</dt>
  2297. <dd>-</dd>
  2298. </dl>
  2299. </div>
  2300. </div>
  2301. <divclass="cardinfo_bottom">
  2302. <dl>
  2303. <dt>Effect</dt>
  2304. <dd>[When Attacking] If your opponent has 8 or more cards in their hand, for the turn, this Digimon's attack target can't be switched.</dd>
  2305. </dl>
  2306. <dl>
  2307. <dt>Digivolveeffect</dt>
  2308. <dd>[All Turns][Once Per Turn] When an effect adds cards to your opponent's hand, unsuspend this Digimon.</dd>
  2309. </dl>
  2310. <dl>
  2311. <dt>Securityeffect</dt>
  2312. <dd>-</dd>
  2313. </dl>
  2314. <dl>
  2315. <dt>Notes</dt>
  2316. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2317. </div>
  2318. </div>
  2319. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2320. </div>
  2321. </div>
  2322. </li>
  2323. <liclass="image_lists_itemdatapage-1">
  2324. <aclass="card_img">
  2325. <imgsrc="../images/cardlist/card/BT13-030.png"alt="BT13-030UlforceVeedramon"></a>
  2326. <divclass="popup">
  2327. <divclass="card_detailcard_detail_blue">
  2328. <divclass="card_detail_inner">
  2329. <ulclass="cardinfo_head">
  2330. <liclass="cardno">BT13-030</li>
  2331. <li>R</li>
  2332. <liclass="cardtype">Digimon</li>
  2333. <liclass="cardlv">Lv.6</li>
  2334. </ul>
  2335. <divclass="card_name">UlforceVeedramon</div>
  2336. <divclass="cardinfo_top">
  2337. <divclass="card_img">
  2338. <imgsrc="../images/cardlist/card/BT13-030.png"alt="BT13-030UlforceVeedramon"></div>
  2339. <divclass="cardinfo_top_body">
  2340. <dl>
  2341. <dt>Form</dt>
  2342. <dd>Mega</dd>
  2343. </dl>
  2344. <dl>
  2345. <dt>Attribute</dt>
  2346. <dd>Vaccine</dd>
  2347. </dl>
  2348. <dl>
  2349. <dt>Type</dt>
  2350. <dd>HolyWarrior/RoyalKnight</dd>
  2351. </dl>
  2352. <dl>
  2353. <dt>DP</dt>
  2354. <dd>11000</dl>
  2355. <dl>
  2356. <dt>PlayCost</dt>
  2357. <dd>11</dd>
  2358. </dl>
  2359. <dl>
  2360. <dt>DigivolveCost1</dt>
  2361. <dd>3fromLv.5</dd>
  2362. </dl>
  2363. <dl>
  2364. <dt>DigivolveCost2</dt>
  2365. <dd>-</dd>
  2366. </dl>
  2367. </div>
  2368. </div>
  2369. <divclass="cardinfo_bottom">
  2370. <dl>
  2371. <dt>Effect</dt>
  2372. <dd>[On Play][When Digivolving] For each of your Digimon with the [Royal Knight] trait and each of your blue Tamers, trash the top 2 digivolution cards of 1 of your opponent's Digimon.<br> [Your Turn][Once Per Turn] When you play a Digimon with the [Royal Knight] trait or a blue Tamer, return 1 of your opponent's Digimon with no digivolution cards to the hand.</dd>
  2373. </dl>
  2374. <dl>
  2375. <dt>Digivolveeffect</dt>
  2376. <dd>-</dd>
  2377. </dl>
  2378. <dl>
  2379. <dt>Securityeffect</dt>
  2380. <dd>-</dd>
  2381. </dl>
  2382. <dl>
  2383. <dt>Notes</dt>
  2384. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2385. </div>
  2386. </div>
  2387. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2388. </div>
  2389. </div>
  2390. </li>
  2391. <liclass="image_lists_itemdatapage-1">
  2392. <aclass="card_img">
  2393. <imgsrc="../images/cardlist/card/BT13-030_P1.png"alt="BT13-030UlforceVeedramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2394. </a>
  2395. <divclass="popup">
  2396. <divclass="card_detailcard_detail_blue">
  2397. <divclass="card_detail_inner">
  2398. <ulclass="cardinfo_head">
  2399. <liclass="cardno">BT13-030</li>
  2400. <li>R</li>
  2401. <liclass="cardtype">Digimon</li>
  2402. <liclass="cardlv">Lv.6</li>
  2403. <liclass="cardtypecardParallel">AlternativeArt</li>
  2404. </ul>
  2405. <divclass="card_name">UlforceVeedramon</div>
  2406. <divclass="cardinfo_top">
  2407. <divclass="card_img">
  2408. <imgsrc="../images/cardlist/card/BT13-030_P1.png"alt="BT13-030UlforceVeedramon"></div>
  2409. <divclass="cardinfo_top_body">
  2410. <dl>
  2411. <dt>Form</dt>
  2412. <dd>Mega</dd>
  2413. </dl>
  2414. <dl>
  2415. <dt>Attribute</dt>
  2416. <dd>Vaccine</dd>
  2417. </dl>
  2418. <dl>
  2419. <dt>Type</dt>
  2420. <dd>HolyWarrior/RoyalKnight</dd>
  2421. </dl>
  2422. <dl>
  2423. <dt>DP</dt>
  2424. <dd>11000</dl>
  2425. <dl>
  2426. <dt>PlayCost</dt>
  2427. <dd>11</dd>
  2428. </dl>
  2429. <dl>
  2430. <dt>DigivolveCost1</dt>
  2431. <dd>3fromLv.5</dd>
  2432. </dl>
  2433. <dl>
  2434. <dt>DigivolveCost2</dt>
  2435. <dd>-</dd>
  2436. </dl>
  2437. </div>
  2438. </div>
  2439. <divclass="cardinfo_bottom">
  2440. <dl>
  2441. <dt>Effect</dt>
  2442. <dd>[On Play][When Digivolving] For each of your Digimon with the [Royal Knight] trait and each of your blue Tamers, trash the top 2 digivolution cards of 1 of your opponent's Digimon.<br> [Your Turn][Once Per Turn] When you play a Digimon with the [Royal Knight] trait or a blue Tamer, return 1 of your opponent's Digimon with no digivolution cards to the hand.</dd>
  2443. </dl>
  2444. <dl>
  2445. <dt>Digivolveeffect</dt>
  2446. <dd>-</dd>
  2447. </dl>
  2448. <dl>
  2449. <dt>Securityeffect</dt>
  2450. <dd>-</dd>
  2451. </dl>
  2452. <dl>
  2453. <dt>Notes</dt>
  2454. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2455. </div>
  2456. </div>
  2457. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2458. </div>
  2459. </div>
  2460. </li>
  2461. <liclass="image_lists_itemdatapage-1">
  2462. <aclass="card_img">
  2463. <imgsrc="../images/cardlist/card/BT13-031.png"alt="BT13-031MirageGaogamon"></a>
  2464. <divclass="popup">
  2465. <divclass="card_detailcard_detail_blue">
  2466. <divclass="card_detail_inner">
  2467. <ulclass="cardinfo_head">
  2468. <liclass="cardno">BT13-031</li>
  2469. <li>R</li>
  2470. <liclass="cardtype">Digimon</li>
  2471. <liclass="cardlv">Lv.6</li>
  2472. </ul>
  2473. <divclass="card_name">MirageGaogamon</div>
  2474. <divclass="cardinfo_top">
  2475. <divclass="card_img">
  2476. <imgsrc="../images/cardlist/card/BT13-031.png"alt="BT13-031MirageGaogamon"></div>
  2477. <divclass="cardinfo_top_body">
  2478. <dl>
  2479. <dt>Form</dt>
  2480. <dd>Mega</dd>
  2481. </dl>
  2482. <dl>
  2483. <dt>Attribute</dt>
  2484. <dd>Data</dd>
  2485. </dl>
  2486. <dl>
  2487. <dt>Type</dt>
  2488. <dd>BeastKnight</dd>
  2489. </dl>
  2490. <dl>
  2491. <dt>DP</dt>
  2492. <dd>12000</dl>
  2493. <dl>
  2494. <dt>PlayCost</dt>
  2495. <dd>12</dd>
  2496. </dl>
  2497. <dl>
  2498. <dt>DigivolveCost1</dt>
  2499. <dd>4fromLv.5</dd>
  2500. </dl>
  2501. <dl>
  2502. <dt>DigivolveCost2</dt>
  2503. <dd>-</dd>
  2504. </dl>
  2505. </div>
  2506. </div>
  2507. <divclass="cardinfo_bottom">
  2508. <dl>
  2509. <dt>Effect</dt>
  2510. <dd><Evade> (When this Digimon would be deleted, you may suspend it to prevent that deletion).<br> [When Digivolving] Return 1 of your opponent’s Tamers to the hand.<br> [All Turns][Once Per Turn] When an effect adds cards to your opponent's hand, you may play 1 [Thomas H. Norstein] from your hand without paying the cost.</dd>
  2511. </dl>
  2512. <dl>
  2513. <dt>Digivolveeffect</dt>
  2514. <dd>-</dd>
  2515. </dl>
  2516. <dl>
  2517. <dt>Securityeffect</dt>
  2518. <dd>-</dd>
  2519. </dl>
  2520. <dl>
  2521. <dt>Notes</dt>
  2522. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2523. </div>
  2524. </div>
  2525. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2526. </div>
  2527. </div>
  2528. </li>
  2529. <liclass="image_lists_itemdatapage-1">
  2530. <aclass="card_img">
  2531. <imgsrc="../images/cardlist/card/BT13-032.png"alt="BT13-032JumboGamemon"></a>
  2532. <divclass="popup">
  2533. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2534. <divclass="card_detail_inner">
  2535. <ulclass="cardinfo_head">
  2536. <liclass="cardno">BT13-032</li>
  2537. <li>U</li>
  2538. <liclass="cardtype">Digimon</li>
  2539. <liclass="cardlv">Lv.6</li>
  2540. </ul>
  2541. <divclass="card_name">JumboGamemon</div>
  2542. <divclass="cardinfo_top">
  2543. <divclass="card_img">
  2544. <imgsrc="../images/cardlist/card/BT13-032.png"alt="BT13-032JumboGamemon"></div>
  2545. <divclass="cardinfo_top_body">
  2546. <dl>
  2547. <dt>Form</dt>
  2548. <dd>Mega</dd>
  2549. </dl>
  2550. <dl>
  2551. <dt>Attribute</dt>
  2552. <dd>Data</dd>
  2553. </dl>
  2554. <dl>
  2555. <dt>Type</dt>
  2556. <dd>Cyborg</dd>
  2557. </dl>
  2558. <dl>
  2559. <dt>DP</dt>
  2560. <dd>13000</dl>
  2561. <dl>
  2562. <dt>PlayCost</dt>
  2563. <dd>13</dd>
  2564. </dl>
  2565. <dl>
  2566. <dt>DigivolveCost1</dt>
  2567. <dd>5fromLv.5</dd>
  2568. </dl>
  2569. <dl>
  2570. <dt>DigivolveCost2</dt>
  2571. <dd>5fromLv.5</dd>
  2572. </dl>
  2573. </div>
  2574. </div>
  2575. <divclass="cardinfo_bottom">
  2576. <dl>
  2577. <dt>Effect</dt>
  2578. <dd><Blocker><br> [Opponent's Turn] When an opponent's Digimon attacks, you may play 1 level 5 or lower Digimon card from this Digimon's digivolution cards without paying the cost.</dd>
  2579. </dl>
  2580. <dl>
  2581. <dt>Digivolveeffect</dt>
  2582. <dd>-</dd>
  2583. </dl>
  2584. <dl>
  2585. <dt>Securityeffect</dt>
  2586. <dd>-</dd>
  2587. </dl>
  2588. <dl>
  2589. <dt>Notes</dt>
  2590. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2591. </div>
  2592. </div>
  2593. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2594. </div>
  2595. </div>
  2596. </li>
  2597. <liclass="image_lists_itemdatapage-1">
  2598. <aclass="card_img">
  2599. <imgsrc="../images/cardlist/card/BT13-033.png"alt="BT13-033MirageGaogamon:BurstMode"></a>
  2600. <divclass="popup">
  2601. <divclass="card_detailcard_detail_blue">
  2602. <divclass="card_detail_inner">
  2603. <ulclass="cardinfo_head">
  2604. <liclass="cardno">BT13-033</li>
  2605. <li>SR</li>
  2606. <liclass="cardtype">Digimon</li>
  2607. <liclass="cardlv">Lv.7</li>
  2608. </ul>
  2609. <divclass="card_name">MirageGaogamon:BurstMode</div>
  2610. <divclass="cardinfo_top">
  2611. <divclass="card_img">
  2612. <imgsrc="../images/cardlist/card/BT13-033.png"alt="BT13-033MirageGaogamon:BurstMode"></div>
  2613. <divclass="cardinfo_top_body">
  2614. <dl>
  2615. <dt>Form</dt>
  2616. <dd>Mega</dd>
  2617. </dl>
  2618. <dl>
  2619. <dt>Attribute</dt>
  2620. <dd>Data</dd>
  2621. </dl>
  2622. <dl>
  2623. <dt>Type</dt>
  2624. <dd>BeastKnight</dd>
  2625. </dl>
  2626. <dl>
  2627. <dt>DP</dt>
  2628. <dd>15000</dl>
  2629. <dl>
  2630. <dt>PlayCost</dt>
  2631. <dd>15</dd>
  2632. </dl>
  2633. <dl>
  2634. <dt>DigivolveCost1</dt>
  2635. <dd>5fromLv.6</dd>
  2636. </dl>
  2637. <dl>
  2638. <dt>DigivolveCost2</dt>
  2639. <dd>-</dd>
  2640. </dl>
  2641. </div>
  2642. </div>
  2643. <divclass="cardinfo_bottom">
  2644. <dl>
  2645. <dt>Effect</dt>
  2646. <dd>Burst Digivolve: 0 from [MirageGaogamon] by returning 1 [Thomas H. Norstein] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Return 1 of your opponent's Digimon to the hand. Then, gain 1 memory for every 4 cards in your opponent's hand.<br> [When Attacking] If your opponent has 9 or more cards in their hand, by choosing cards in your opponent's hand without looking and returning them to the bottom of the deck so that 8 remain, unsuspend this Digimon.</dd>
  2647. </dl>
  2648. <dl>
  2649. <dt>Digivolveeffect</dt>
  2650. <dd>-</dd>
  2651. </dl>
  2652. <dl>
  2653. <dt>Securityeffect</dt>
  2654. <dd>-</dd>
  2655. </dl>
  2656. <dl>
  2657. <dt>Notes</dt>
  2658. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2659. </div>
  2660. </div>
  2661. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2662. </div>
  2663. </div>
  2664. </li>
  2665. <liclass="image_lists_itemdatapage-1">
  2666. <aclass="card_img">
  2667. <imgsrc="../images/cardlist/card/BT13-033_P1.png"alt="BT13-033MirageGaogamon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2668. </a>
  2669. <divclass="popup">
  2670. <divclass="card_detailcard_detail_blue">
  2671. <divclass="card_detail_inner">
  2672. <ulclass="cardinfo_head">
  2673. <liclass="cardno">BT13-033</li>
  2674. <li>SR</li>
  2675. <liclass="cardtype">Digimon</li>
  2676. <liclass="cardlv">Lv.7</li>
  2677. <liclass="cardtypecardParallel">AlternativeArt</li>
  2678. </ul>
  2679. <divclass="card_name">MirageGaogamon:BurstMode</div>
  2680. <divclass="cardinfo_top">
  2681. <divclass="card_img">
  2682. <imgsrc="../images/cardlist/card/BT13-033_P1.png"alt="BT13-033MirageGaogamon:BurstMode"></div>
  2683. <divclass="cardinfo_top_body">
  2684. <dl>
  2685. <dt>Form</dt>
  2686. <dd>Mega</dd>
  2687. </dl>
  2688. <dl>
  2689. <dt>Attribute</dt>
  2690. <dd>Data</dd>
  2691. </dl>
  2692. <dl>
  2693. <dt>Type</dt>
  2694. <dd>BeastKnight</dd>
  2695. </dl>
  2696. <dl>
  2697. <dt>DP</dt>
  2698. <dd>15000</dl>
  2699. <dl>
  2700. <dt>PlayCost</dt>
  2701. <dd>15</dd>
  2702. </dl>
  2703. <dl>
  2704. <dt>DigivolveCost1</dt>
  2705. <dd>5fromLv.6</dd>
  2706. </dl>
  2707. <dl>
  2708. <dt>DigivolveCost2</dt>
  2709. <dd>-</dd>
  2710. </dl>
  2711. </div>
  2712. </div>
  2713. <divclass="cardinfo_bottom">
  2714. <dl>
  2715. <dt>Effect</dt>
  2716. <dd>Burst Digivolve: 0 from [MirageGaogamon] by returning 1 [Thomas H. Norstein] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Return 1 of your opponent's Digimon to the hand. Then, gain 1 memory for every 4 cards in your opponent's hand.<br> [When Attacking] If your opponent has 9 or more cards in their hand, by choosing cards in your opponent's hand without looking and returning them to the bottom of the deck so that 8 remain, unsuspend this Digimon.</dd>
  2717. </dl>
  2718. <dl>
  2719. <dt>Digivolveeffect</dt>
  2720. <dd>-</dd>
  2721. </dl>
  2722. <dl>
  2723. <dt>Securityeffect</dt>
  2724. <dd>-</dd>
  2725. </dl>
  2726. <dl>
  2727. <dt>Notes</dt>
  2728. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2729. </div>
  2730. </div>
  2731. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2732. </div>
  2733. </div>
  2734. </li>
  2735. <liclass="image_lists_itemdatapage-2">
  2736. <aclass="card_img">
  2737. <imgsrc="../images/cardlist/card/BT13-033_P2.png"alt="BT13-033MirageGaogamon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  2738. </a>
  2739. <divclass="popup">
  2740. <divclass="card_detailcard_detail_blue">
  2741. <divclass="card_detail_inner">
  2742. <ulclass="cardinfo_head">
  2743. <liclass="cardno">BT13-033</li>
  2744. <li>SR</li>
  2745. <liclass="cardtype">Digimon</li>
  2746. <liclass="cardlv">Lv.7</li>
  2747. <liclass="cardtypecardParallel">AlternativeArt</li>
  2748. </ul>
  2749. <divclass="card_name">MirageGaogamon:BurstMode</div>
  2750. <divclass="cardinfo_top">
  2751. <divclass="card_img">
  2752. <imgsrc="../images/cardlist/card/BT13-033_P2.png"alt="BT13-033MirageGaogamon:BurstMode"></div>
  2753. <divclass="cardinfo_top_body">
  2754. <dl>
  2755. <dt>Form</dt>
  2756. <dd>Mega</dd>
  2757. </dl>
  2758. <dl>
  2759. <dt>Attribute</dt>
  2760. <dd>Data</dd>
  2761. </dl>
  2762. <dl>
  2763. <dt>Type</dt>
  2764. <dd>BeastKnight</dd>
  2765. </dl>
  2766. <dl>
  2767. <dt>DP</dt>
  2768. <dd>15000</dl>
  2769. <dl>
  2770. <dt>PlayCost</dt>
  2771. <dd>15</dd>
  2772. </dl>
  2773. <dl>
  2774. <dt>DigivolveCost1</dt>
  2775. <dd>5fromLv.6</dd>
  2776. </dl>
  2777. <dl>
  2778. <dt>DigivolveCost2</dt>
  2779. <dd>-</dd>
  2780. </dl>
  2781. </div>
  2782. </div>
  2783. <divclass="cardinfo_bottom">
  2784. <dl>
  2785. <dt>Effect</dt>
  2786. <dd>Burst Digivolve: 0 from [MirageGaogamon] by returning 1 [Thomas H. Norstein] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Return 1 of your opponent's Digimon to the hand. Then, gain 1 memory for every 4 cards in your opponent's hand.<br> [When Attacking] If your opponent has 9 or more cards in their hand, by choosing cards in your opponent's hand without looking and returning them to the bottom of the deck so that 8 remain, unsuspend this Digimon.</dd>
  2787. </dl>
  2788. <dl>
  2789. <dt>Digivolveeffect</dt>
  2790. <dd>-</dd>
  2791. </dl>
  2792. <dl>
  2793. <dt>Securityeffect</dt>
  2794. <dd>-</dd>
  2795. </dl>
  2796. <dl>
  2797. <dt>Notes</dt>
  2798. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2799. </div>
  2800. </div>
  2801. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2802. </div>
  2803. </div>
  2804. </li>
  2805. <liclass="image_lists_itemdatapage-2">
  2806. <aclass="card_img">
  2807. <imgsrc="../images/cardlist/card/BT13-034.png"alt="BT13-034Kudamon"></a>
  2808. <divclass="popup">
  2809. <divclass="card_detailcard_detail_yellow">
  2810. <divclass="card_detail_inner">
  2811. <ulclass="cardinfo_head">
  2812. <liclass="cardno">BT13-034</li>
  2813. <li>U</li>
  2814. <liclass="cardtype">Digimon</li>
  2815. <liclass="cardlv">Lv.3</li>
  2816. </ul>
  2817. <divclass="card_name">Kudamon</div>
  2818. <divclass="cardinfo_top">
  2819. <divclass="card_img">
  2820. <imgsrc="../images/cardlist/card/BT13-034.png"alt="BT13-034Kudamon"></div>
  2821. <divclass="cardinfo_top_body">
  2822. <dl>
  2823. <dt>Form</dt>
  2824. <dd>Rookie</dd>
  2825. </dl>
  2826. <dl>
  2827. <dt>Attribute</dt>
  2828. <dd>Vaccine</dd>
  2829. </dl>
  2830. <dl>
  2831. <dt>Type</dt>
  2832. <dd>HolyBeast</dd>
  2833. </dl>
  2834. <dl>
  2835. <dt>DP</dt>
  2836. <dd>1000</dl>
  2837. <dl>
  2838. <dt>PlayCost</dt>
  2839. <dd>3</dd>
  2840. </dl>
  2841. <dl>
  2842. <dt>DigivolveCost1</dt>
  2843. <dd>0fromLv.2</dd>
  2844. </dl>
  2845. <dl>
  2846. <dt>DigivolveCost2</dt>
  2847. <dd>-</dd>
  2848. </dl>
  2849. </div>
  2850. </div>
  2851. <divclass="cardinfo_bottom">
  2852. <dl>
  2853. <dt>Effect</dt>
  2854. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 yellow Digimon card with the [Vaccine] trait and 1 yellow Tamer card among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  2855. </dl>
  2856. <dl>
  2857. <dt>Digivolveeffect</dt>
  2858. <dd>[When Attacking][Once per Turn] If there're 6 or fewer total cards in both players' security stacks, 1 of your opponent’s Digimon gets -2000 DP for the turn.</dd>
  2859. </dl>
  2860. <dl>
  2861. <dt>Securityeffect</dt>
  2862. <dd>-</dd>
  2863. </dl>
  2864. <dl>
  2865. <dt>Notes</dt>
  2866. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2867. </div>
  2868. </div>
  2869. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2870. </div>
  2871. </div>
  2872. </li>
  2873. <liclass="image_lists_itemdatapage-2">
  2874. <aclass="card_img">
  2875. <imgsrc="../images/cardlist/card/BT13-035.png"alt="BT13-035PawnChessmon"></a>
  2876. <divclass="popup">
  2877. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  2878. <divclass="card_detail_inner">
  2879. <ulclass="cardinfo_head">
  2880. <liclass="cardno">BT13-035</li>
  2881. <li>R</li>
  2882. <liclass="cardtype">Digimon</li>
  2883. <liclass="cardlv">Lv.3</li>
  2884. </ul>
  2885. <divclass="card_name">PawnChessmon</div>
  2886. <divclass="cardinfo_top">
  2887. <divclass="card_img">
  2888. <imgsrc="../images/cardlist/card/BT13-035.png"alt="BT13-035PawnChessmon"></div>
  2889. <divclass="cardinfo_top_body">
  2890. <dl>
  2891. <dt>Form</dt>
  2892. <dd>Rookie</dd>
  2893. </dl>
  2894. <dl>
  2895. <dt>Attribute</dt>
  2896. <dd>Virus</dd>
  2897. </dl>
  2898. <dl>
  2899. <dt>Type</dt>
  2900. <dd>Puppet</dd>
  2901. </dl>
  2902. <dl>
  2903. <dt>DP</dt>
  2904. <dd>1000</dl>
  2905. <dl>
  2906. <dt>PlayCost</dt>
  2907. <dd>3</dd>
  2908. </dl>
  2909. <dl>
  2910. <dt>DigivolveCost1</dt>
  2911. <dd>1fromLv.2</dd>
  2912. </dl>
  2913. <dl>
  2914. <dt>DigivolveCost2</dt>
  2915. <dd>1fromLv.2</dd>
  2916. </dl>
  2917. </div>
  2918. </div>
  2919. <divclass="cardinfo_bottom">
  2920. <dl>
  2921. <dt>Effect</dt>
  2922. <dd>[On Deletion] If it's your turn, you may play 1 level 3 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost. If you have 8 or more Digimon cards with [Chessmon] in their names in your trash, add 2 to the maximum level of the card this effect can play.</dd>
  2923. </dl>
  2924. <dl>
  2925. <dt>Digivolveeffect</dt>
  2926. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase)</dd>
  2927. </dl>
  2928. <dl>
  2929. <dt>Securityeffect</dt>
  2930. <dd>-</dd>
  2931. </dl>
  2932. <dl>
  2933. <dt>Notes</dt>
  2934. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  2935. </div>
  2936. </div>
  2937. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2938. </div>
  2939. </div>
  2940. </li>
  2941. <liclass="image_lists_itemdatapage-2">
  2942. <aclass="card_img">
  2943. <imgsrc="../images/cardlist/card/BT13-036.png"alt="BT13-036Liollmon"></a>
  2944. <divclass="popup">
  2945. <divclass="card_detailcard_detail_yellow">
  2946. <divclass="card_detail_inner">
  2947. <ulclass="cardinfo_head">
  2948. <liclass="cardno">BT13-036</li>
  2949. <li>C</li>
  2950. <liclass="cardtype">Digimon</li>
  2951. <liclass="cardlv">Lv.3</li>
  2952. </ul>
  2953. <divclass="card_name">Liollmon</div>
  2954. <divclass="cardinfo_top">
  2955. <divclass="card_img">
  2956. <imgsrc="../images/cardlist/card/BT13-036.png"alt="BT13-036Liollmon"></div>
  2957. <divclass="cardinfo_top_body">
  2958. <dl>
  2959. <dt>Form</dt>
  2960. <dd>Rookie</dd>
  2961. </dl>
  2962. <dl>
  2963. <dt>Attribute</dt>
  2964. <dd>Vaccine</dd>
  2965. </dl>
  2966. <dl>
  2967. <dt>Type</dt>
  2968. <dd>HolyBeast</dd>
  2969. </dl>
  2970. <dl>
  2971. <dt>DP</dt>
  2972. <dd>1000</dl>
  2973. <dl>
  2974. <dt>PlayCost</dt>
  2975. <dd>3</dd>
  2976. </dl>
  2977. <dl>
  2978. <dt>DigivolveCost1</dt>
  2979. <dd>0fromLv.2</dd>
  2980. </dl>
  2981. <dl>
  2982. <dt>DigivolveCost2</dt>
  2983. <dd>-</dd>
  2984. </dl>
  2985. </div>
  2986. </div>
  2987. <divclass="cardinfo_bottom">
  2988. <dl>
  2989. <dt>Effect</dt>
  2990. <dd>[Your Turn][Once Per Turn] When a card is removed from your security stack, gain 1 memory.</dd>
  2991. </dl>
  2992. <dl>
  2993. <dt>Digivolveeffect</dt>
  2994. <dd>[When Attacking][Once per Turn] If there're 6 or fewer total cards in both players' security stacks, 1 of your opponent’s Digimon gets -2000 DP for the turn.</dd>
  2995. </dl>
  2996. <dl>
  2997. <dt>Securityeffect</dt>
  2998. <dd>-</dd>
  2999. </dl>
  3000. <dl>
  3001. <dt>Notes</dt>
  3002. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3003. </div>
  3004. </div>
  3005. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3006. </div>
  3007. </div>
  3008. </li>
  3009. <liclass="image_lists_itemdatapage-2">
  3010. <aclass="card_img">
  3011. <imgsrc="../images/cardlist/card/BT13-037.png"alt="BT13-037Liamon"></a>
  3012. <divclass="popup">
  3013. <divclass="card_detailcard_detail_yellow">
  3014. <divclass="card_detail_inner">
  3015. <ulclass="cardinfo_head">
  3016. <liclass="cardno">BT13-037</li>
  3017. <li>C</li>
  3018. <liclass="cardtype">Digimon</li>
  3019. <liclass="cardlv">Lv.4</li>
  3020. </ul>
  3021. <divclass="card_name">Liamon</div>
  3022. <divclass="cardinfo_top">
  3023. <divclass="card_img">
  3024. <imgsrc="../images/cardlist/card/BT13-037.png"alt="BT13-037Liamon"></div>
  3025. <divclass="cardinfo_top_body">
  3026. <dl>
  3027. <dt>Form</dt>
  3028. <dd>Champion</dd>
  3029. </dl>
  3030. <dl>
  3031. <dt>Attribute</dt>
  3032. <dd>Vaccine</dd>
  3033. </dl>
  3034. <dl>
  3035. <dt>Type</dt>
  3036. <dd>HolyBeast</dd>
  3037. </dl>
  3038. <dl>
  3039. <dt>DP</dt>
  3040. <dd>4000</dl>
  3041. <dl>
  3042. <dt>PlayCost</dt>
  3043. <dd>4</dd>
  3044. </dl>
  3045. <dl>
  3046. <dt>DigivolveCost1</dt>
  3047. <dd>2fromLv.3</dd>
  3048. </dl>
  3049. <dl>
  3050. <dt>DigivolveCost2</dt>
  3051. <dd>-</dd>
  3052. </dl>
  3053. </div>
  3054. </div>
  3055. <divclass="cardinfo_bottom">
  3056. <dl>
  3057. <dt>Effect</dt>
  3058. <dd>[When Attacking] By trashing the top card of your security stack, 1 of your opponent's Digimon gets -4000 DP for the turn.</dd>
  3059. </dl>
  3060. <dl>
  3061. <dt>Digivolveeffect</dt>
  3062. <dd>[When Attacking][Once per Turn] If there're 6 or fewer total cards in both players' security stacks, 1 of your opponent’s Digimon gets -2000 DP for the turn.</dd>
  3063. </dl>
  3064. <dl>
  3065. <dt>Securityeffect</dt>
  3066. <dd>-</dd>
  3067. </dl>
  3068. <dl>
  3069. <dt>Notes</dt>
  3070. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3071. </div>
  3072. </div>
  3073. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3074. </div>
  3075. </div>
  3076. </li>
  3077. <liclass="image_lists_itemdatapage-2">
  3078. <aclass="card_img">
  3079. <imgsrc="../images/cardlist/card/BT13-038.png"alt="BT13-038Reppamon"></a>
  3080. <divclass="popup">
  3081. <divclass="card_detailcard_detail_yellow">
  3082. <divclass="card_detail_inner">
  3083. <ulclass="cardinfo_head">
  3084. <liclass="cardno">BT13-038</li>
  3085. <li>C</li>
  3086. <liclass="cardtype">Digimon</li>
  3087. <liclass="cardlv">Lv.4</li>
  3088. </ul>
  3089. <divclass="card_name">Reppamon</div>
  3090. <divclass="cardinfo_top">
  3091. <divclass="card_img">
  3092. <imgsrc="../images/cardlist/card/BT13-038.png"alt="BT13-038Reppamon"></div>
  3093. <divclass="cardinfo_top_body">
  3094. <dl>
  3095. <dt>Form</dt>
  3096. <dd>Champion</dd>
  3097. </dl>
  3098. <dl>
  3099. <dt>Attribute</dt>
  3100. <dd>Vaccine</dd>
  3101. </dl>
  3102. <dl>
  3103. <dt>Type</dt>
  3104. <dd>HolyBeast</dd>
  3105. </dl>
  3106. <dl>
  3107. <dt>DP</dt>
  3108. <dd>4000</dl>
  3109. <dl>
  3110. <dt>PlayCost</dt>
  3111. <dd>4</dd>
  3112. </dl>
  3113. <dl>
  3114. <dt>DigivolveCost1</dt>
  3115. <dd>2fromLv.3</dd>
  3116. </dl>
  3117. <dl>
  3118. <dt>DigivolveCost2</dt>
  3119. <dd>-</dd>
  3120. </dl>
  3121. </div>
  3122. </div>
  3123. <divclass="cardinfo_bottom">
  3124. <dl>
  3125. <dt>Effect</dt>
  3126. <dd>[When Attacking] By trashing the top card of your security stack, 1 of your opponent's Digimon gains <Security Attack -2> until the end of your opponent's turn.</dd>
  3127. </dl>
  3128. <dl>
  3129. <dt>Digivolveeffect</dt>
  3130. <dd>[When Attacking][Once per Turn] If there're 6 or fewer total cards in both players' security stacks, 1 of your opponent’s Digimon gets -2000 DP for the turn.</dd>
  3131. </dl>
  3132. <dl>
  3133. <dt>Securityeffect</dt>
  3134. <dd>-</dd>
  3135. </dl>
  3136. <dl>
  3137. <dt>Notes</dt>
  3138. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3139. </div>
  3140. </div>
  3141. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3142. </div>
  3143. </div>
  3144. </li>
  3145. <liclass="image_lists_itemdatapage-2">
  3146. <aclass="card_img">
  3147. <imgsrc="../images/cardlist/card/BT13-039.png"alt="BT13-039KnightChessmon"></a>
  3148. <divclass="popup">
  3149. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3150. <divclass="card_detail_inner">
  3151. <ulclass="cardinfo_head">
  3152. <liclass="cardno">BT13-039</li>
  3153. <li>C</li>
  3154. <liclass="cardtype">Digimon</li>
  3155. <liclass="cardlv">Lv.4</li>
  3156. </ul>
  3157. <divclass="card_name">KnightChessmon</div>
  3158. <divclass="cardinfo_top">
  3159. <divclass="card_img">
  3160. <imgsrc="../images/cardlist/card/BT13-039.png"alt="BT13-039KnightChessmon"></div>
  3161. <divclass="cardinfo_top_body">
  3162. <dl>
  3163. <dt>Form</dt>
  3164. <dd>Champion</dd>
  3165. </dl>
  3166. <dl>
  3167. <dt>Attribute</dt>
  3168. <dd>Virus</dd>
  3169. </dl>
  3170. <dl>
  3171. <dt>Type</dt>
  3172. <dd>Puppet</dd>
  3173. </dl>
  3174. <dl>
  3175. <dt>DP</dt>
  3176. <dd>4000</dl>
  3177. <dl>
  3178. <dt>PlayCost</dt>
  3179. <dd>5</dd>
  3180. </dl>
  3181. <dl>
  3182. <dt>DigivolveCost1</dt>
  3183. <dd>3fromLv.3</dd>
  3184. </dl>
  3185. <dl>
  3186. <dt>DigivolveCost2</dt>
  3187. <dd>3fromLv.3</dd>
  3188. </dl>
  3189. </div>
  3190. </div>
  3191. <divclass="cardinfo_bottom">
  3192. <dl>
  3193. <dt>Effect</dt>
  3194. <dd>Digivolve: 2 from Lv.3 w/[Chessmon] in name <br>[On Deletion] If it's your turn, you may play 1 level 4 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost.</dd>
  3195. </dl>
  3196. <dl>
  3197. <dt>Digivolveeffect</dt>
  3198. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase)</dd>
  3199. </dl>
  3200. <dl>
  3201. <dt>Securityeffect</dt>
  3202. <dd>-</dd>
  3203. </dl>
  3204. <dl>
  3205. <dt>Notes</dt>
  3206. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3207. </div>
  3208. </div>
  3209. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3210. </div>
  3211. </div>
  3212. </li>
  3213. <liclass="image_lists_itemdatapage-2">
  3214. <aclass="card_img">
  3215. <imgsrc="../images/cardlist/card/BT13-040.png"alt="BT13-040Magnamon"></a>
  3216. <divclass="popup">
  3217. <divclass="card_detailcard_detail_yellow_bluemulticolor">
  3218. <divclass="card_detail_inner">
  3219. <ulclass="cardinfo_head">
  3220. <liclass="cardno">BT13-040</li>
  3221. <li>R</li>
  3222. <liclass="cardtype">Digimon</li>
  3223. <liclass="cardlv">Lv.4</li>
  3224. </ul>
  3225. <divclass="card_name">Magnamon</div>
  3226. <divclass="cardinfo_top">
  3227. <divclass="card_img">
  3228. <imgsrc="../images/cardlist/card/BT13-040.png"alt="BT13-040Magnamon"></div>
  3229. <divclass="cardinfo_top_body">
  3230. <dl>
  3231. <dt>Form</dt>
  3232. <dd>ArmorForm</dd>
  3233. </dl>
  3234. <dl>
  3235. <dt>Attribute</dt>
  3236. <dd>Free</dd>
  3237. </dl>
  3238. <dl>
  3239. <dt>Type</dt>
  3240. <dd>HolyWarrior/RoyalKnight</dd>
  3241. </dl>
  3242. <dl>
  3243. <dt>DP</dt>
  3244. <dd>7000</dl>
  3245. <dl>
  3246. <dt>PlayCost</dt>
  3247. <dd>7</dd>
  3248. </dl>
  3249. <dl>
  3250. <dt>DigivolveCost1</dt>
  3251. <dd>4fromLv.3</dd>
  3252. </dl>
  3253. <dl>
  3254. <dt>DigivolveCost2</dt>
  3255. <dd>-</dd>
  3256. </dl>
  3257. </div>
  3258. </div>
  3259. <divclass="cardinfo_bottom">
  3260. <dl>
  3261. <dt>Effect</dt>
  3262. <dd>Digivolve: 3 from [Veemon]<br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [All Turns] When this Digimon would leave the battle area, <Draw 1>. Then, you may play 1 [Veemon] from your hand or this Digimon's digivolution cards without paying the cost.</dd>
  3263. </dl>
  3264. <dl>
  3265. <dt>Digivolveeffect</dt>
  3266. <dd>-</dd>
  3267. </dl>
  3268. <dl>
  3269. <dt>Securityeffect</dt>
  3270. <dd>-</dd>
  3271. </dl>
  3272. <dl>
  3273. <dt>Notes</dt>
  3274. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3275. </div>
  3276. </div>
  3277. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3278. </div>
  3279. </div>
  3280. </li>
  3281. <liclass="image_lists_itemdatapage-2">
  3282. <aclass="card_img">
  3283. <imgsrc="../images/cardlist/card/BT13-040_P1.png"alt="BT13-040Magnamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3284. </a>
  3285. <divclass="popup">
  3286. <divclass="card_detailcard_detail_yellow_bluemulticolor">
  3287. <divclass="card_detail_inner">
  3288. <ulclass="cardinfo_head">
  3289. <liclass="cardno">BT13-040</li>
  3290. <li>R</li>
  3291. <liclass="cardtype">Digimon</li>
  3292. <liclass="cardlv">Lv.4</li>
  3293. <liclass="cardtypecardParallel">AlternativeArt</li>
  3294. </ul>
  3295. <divclass="card_name">Magnamon</div>
  3296. <divclass="cardinfo_top">
  3297. <divclass="card_img">
  3298. <imgsrc="../images/cardlist/card/BT13-040_P1.png"alt="BT13-040Magnamon"></div>
  3299. <divclass="cardinfo_top_body">
  3300. <dl>
  3301. <dt>Form</dt>
  3302. <dd>ArmorForm</dd>
  3303. </dl>
  3304. <dl>
  3305. <dt>Attribute</dt>
  3306. <dd>Free</dd>
  3307. </dl>
  3308. <dl>
  3309. <dt>Type</dt>
  3310. <dd>HolyWarrior/RoyalKnight</dd>
  3311. </dl>
  3312. <dl>
  3313. <dt>DP</dt>
  3314. <dd>7000</dl>
  3315. <dl>
  3316. <dt>PlayCost</dt>
  3317. <dd>7</dd>
  3318. </dl>
  3319. <dl>
  3320. <dt>DigivolveCost1</dt>
  3321. <dd>4fromLv.3</dd>
  3322. </dl>
  3323. <dl>
  3324. <dt>DigivolveCost2</dt>
  3325. <dd>-</dd>
  3326. </dl>
  3327. </div>
  3328. </div>
  3329. <divclass="cardinfo_bottom">
  3330. <dl>
  3331. <dt>Effect</dt>
  3332. <dd>Digivolve: 3 from [Veemon]<br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [All Turns] When this Digimon would leave the battle area, <Draw 1>. Then, you may play 1 [Veemon] from your hand or this Digimon's digivolution cards without paying the cost.</dd>
  3333. </dl>
  3334. <dl>
  3335. <dt>Digivolveeffect</dt>
  3336. <dd>-</dd>
  3337. </dl>
  3338. <dl>
  3339. <dt>Securityeffect</dt>
  3340. <dd>-</dd>
  3341. </dl>
  3342. <dl>
  3343. <dt>Notes</dt>
  3344. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3345. </div>
  3346. </div>
  3347. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3348. </div>
  3349. </div>
  3350. </li>
  3351. <liclass="image_lists_itemdatapage-2">
  3352. <aclass="card_img">
  3353. <imgsrc="../images/cardlist/card/BT13-041.png"alt="BT13-041Chirinmon"></a>
  3354. <divclass="popup">
  3355. <divclass="card_detailcard_detail_yellow">
  3356. <divclass="card_detail_inner">
  3357. <ulclass="cardinfo_head">
  3358. <liclass="cardno">BT13-041</li>
  3359. <li>U</li>
  3360. <liclass="cardtype">Digimon</li>
  3361. <liclass="cardlv">Lv.5</li>
  3362. </ul>
  3363. <divclass="card_name">Chirinmon</div>
  3364. <divclass="cardinfo_top">
  3365. <divclass="card_img">
  3366. <imgsrc="../images/cardlist/card/BT13-041.png"alt="BT13-041Chirinmon"></div>
  3367. <divclass="cardinfo_top_body">
  3368. <dl>
  3369. <dt>Form</dt>
  3370. <dd>Ultimate</dd>
  3371. </dl>
  3372. <dl>
  3373. <dt>Attribute</dt>
  3374. <dd>Vaccine</dd>
  3375. </dl>
  3376. <dl>
  3377. <dt>Type</dt>
  3378. <dd>HolyBeast</dd>
  3379. </dl>
  3380. <dl>
  3381. <dt>DP</dt>
  3382. <dd>7000</dl>
  3383. <dl>
  3384. <dt>PlayCost</dt>
  3385. <dd>7</dd>
  3386. </dl>
  3387. <dl>
  3388. <dt>DigivolveCost1</dt>
  3389. <dd>3fromLv.4</dd>
  3390. </dl>
  3391. <dl>
  3392. <dt>DigivolveCost2</dt>
  3393. <dd>-</dd>
  3394. </dl>
  3395. </div>
  3396. </div>
  3397. <divclass="cardinfo_bottom">
  3398. <dl>
  3399. <dt>Effect</dt>
  3400. <dd><Barrier> (When this Digimon would be deleted in battle, by trashing the top card of your security stack, prevent that deletion.)</dd>
  3401. </dl>
  3402. <dl>
  3403. <dt>Digivolveeffect</dt>
  3404. <dd>[On Deletion] You may play 1 [Kudamon] from your hand or trash suspended without paying the cost.</dd>
  3405. </dl>
  3406. <dl>
  3407. <dt>Securityeffect</dt>
  3408. <dd>-</dd>
  3409. </dl>
  3410. <dl>
  3411. <dt>Notes</dt>
  3412. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3413. </div>
  3414. </div>
  3415. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3416. </div>
  3417. </div>
  3418. </li>
  3419. <liclass="image_lists_itemdatapage-2">
  3420. <aclass="card_img">
  3421. <imgsrc="../images/cardlist/card/BT13-042.png"alt="BT13-042BishopChessmon"></a>
  3422. <divclass="popup">
  3423. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3424. <divclass="card_detail_inner">
  3425. <ulclass="cardinfo_head">
  3426. <liclass="cardno">BT13-042</li>
  3427. <li>C</li>
  3428. <liclass="cardtype">Digimon</li>
  3429. <liclass="cardlv">Lv.5</li>
  3430. </ul>
  3431. <divclass="card_name">BishopChessmon</div>
  3432. <divclass="cardinfo_top">
  3433. <divclass="card_img">
  3434. <imgsrc="../images/cardlist/card/BT13-042.png"alt="BT13-042BishopChessmon"></div>
  3435. <divclass="cardinfo_top_body">
  3436. <dl>
  3437. <dt>Form</dt>
  3438. <dd>Ultimate</dd>
  3439. </dl>
  3440. <dl>
  3441. <dt>Attribute</dt>
  3442. <dd>Virus</dd>
  3443. </dl>
  3444. <dl>
  3445. <dt>Type</dt>
  3446. <dd>Puppet</dd>
  3447. </dl>
  3448. <dl>
  3449. <dt>DP</dt>
  3450. <dd>7000</dl>
  3451. <dl>
  3452. <dt>PlayCost</dt>
  3453. <dd>7</dd>
  3454. </dl>
  3455. <dl>
  3456. <dt>DigivolveCost1</dt>
  3457. <dd>4fromLv.4</dd>
  3458. </dl>
  3459. <dl>
  3460. <dt>DigivolveCost2</dt>
  3461. <dd>4fromLv.4</dd>
  3462. </dl>
  3463. </div>
  3464. </div>
  3465. <divclass="cardinfo_bottom">
  3466. <dl>
  3467. <dt>Effect</dt>
  3468. <dd>Digivolve: 3 from Lv.4 w/[Chessmon] in name <br>[On Deletion] If it's your turn, you may play 1 level 5 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost.</dd>
  3469. </dl>
  3470. <dl>
  3471. <dt>Digivolveeffect</dt>
  3472. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase)</dd>
  3473. </dl>
  3474. <dl>
  3475. <dt>Securityeffect</dt>
  3476. <dd>-</dd>
  3477. </dl>
  3478. <dl>
  3479. <dt>Notes</dt>
  3480. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3481. </div>
  3482. </div>
  3483. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3484. </div>
  3485. </div>
  3486. </li>
  3487. <liclass="image_lists_itemdatapage-2">
  3488. <aclass="card_img">
  3489. <imgsrc="../images/cardlist/card/BT13-043.png"alt="BT13-043LoaderLeomon"></a>
  3490. <divclass="popup">
  3491. <divclass="card_detailcard_detail_yellow">
  3492. <divclass="card_detail_inner">
  3493. <ulclass="cardinfo_head">
  3494. <liclass="cardno">BT13-043</li>
  3495. <li>C</li>
  3496. <liclass="cardtype">Digimon</li>
  3497. <liclass="cardlv">Lv.5</li>
  3498. </ul>
  3499. <divclass="card_name">LoaderLeomon</div>
  3500. <divclass="cardinfo_top">
  3501. <divclass="card_img">
  3502. <imgsrc="../images/cardlist/card/BT13-043.png"alt="BT13-043LoaderLeomon"></div>
  3503. <divclass="cardinfo_top_body">
  3504. <dl>
  3505. <dt>Form</dt>
  3506. <dd>Ultimate</dd>
  3507. </dl>
  3508. <dl>
  3509. <dt>Attribute</dt>
  3510. <dd>Vaccine</dd>
  3511. </dl>
  3512. <dl>
  3513. <dt>Type</dt>
  3514. <dd>Machine</dd>
  3515. </dl>
  3516. <dl>
  3517. <dt>DP</dt>
  3518. <dd>7000</dl>
  3519. <dl>
  3520. <dt>PlayCost</dt>
  3521. <dd>7</dd>
  3522. </dl>
  3523. <dl>
  3524. <dt>DigivolveCost1</dt>
  3525. <dd>3fromLv.4</dd>
  3526. </dl>
  3527. <dl>
  3528. <dt>DigivolveCost2</dt>
  3529. <dd>-</dd>
  3530. </dl>
  3531. </div>
  3532. </div>
  3533. <divclass="cardinfo_bottom">
  3534. <dl>
  3535. <dt>Effect</dt>
  3536. <dd><Barrier> (When this Digimon would be deleted in battle, by trashing the top card of your security stack, prevent that deletion.)</dd>
  3537. </dl>
  3538. <dl>
  3539. <dt>Digivolveeffect</dt>
  3540. <dd><Barrier> (When this Digimon would be deleted in battle, by trashing the top card of your security stack, prevent that deletion.)</dd>
  3541. </dl>
  3542. <dl>
  3543. <dt>Securityeffect</dt>
  3544. <dd>-</dd>
  3545. </dl>
  3546. <dl>
  3547. <dt>Notes</dt>
  3548. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3549. </div>
  3550. </div>
  3551. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3552. </div>
  3553. </div>
  3554. </li>
  3555. <liclass="image_lists_itemdatapage-2">
  3556. <aclass="card_img">
  3557. <imgsrc="../images/cardlist/card/BT13-044.png"alt="BT13-044BanchoLeomon"></a>
  3558. <divclass="popup">
  3559. <divclass="card_detailcard_detail_yellow">
  3560. <divclass="card_detail_inner">
  3561. <ulclass="cardinfo_head">
  3562. <liclass="cardno">BT13-044</li>
  3563. <li>R</li>
  3564. <liclass="cardtype">Digimon</li>
  3565. <liclass="cardlv">Lv.6</li>
  3566. </ul>
  3567. <divclass="card_name">BanchoLeomon</div>
  3568. <divclass="cardinfo_top">
  3569. <divclass="card_img">
  3570. <imgsrc="../images/cardlist/card/BT13-044.png"alt="BT13-044BanchoLeomon"></div>
  3571. <divclass="cardinfo_top_body">
  3572. <dl>
  3573. <dt>Form</dt>
  3574. <dd>Mega</dd>
  3575. </dl>
  3576. <dl>
  3577. <dt>Attribute</dt>
  3578. <dd>Vaccine</dd>
  3579. </dl>
  3580. <dl>
  3581. <dt>Type</dt>
  3582. <dd>Beastkin/Boss</dd>
  3583. </dl>
  3584. <dl>
  3585. <dt>DP</dt>
  3586. <dd>11000</dl>
  3587. <dl>
  3588. <dt>PlayCost</dt>
  3589. <dd>12</dd>
  3590. </dl>
  3591. <dl>
  3592. <dt>DigivolveCost1</dt>
  3593. <dd>3fromLv.5</dd>
  3594. </dl>
  3595. <dl>
  3596. <dt>DigivolveCost2</dt>
  3597. <dd>-</dd>
  3598. </dl>
  3599. </div>
  3600. </div>
  3601. <divclass="cardinfo_bottom">
  3602. <dl>
  3603. <dt>Effect</dt>
  3604. <dd><Blocker><br> [When Digivolving] By trashing the top card of your security stack, 1 of your opponent's Digimon gets -6000 DP until the end of your opponent's turn.<br> [All Turns][Once Per Turn] When a card is removed from your security stack, you may play 1 yellow Tamer card from your hand without paying the cost.</dd>
  3605. </dl>
  3606. <dl>
  3607. <dt>Digivolveeffect</dt>
  3608. <dd>-</dd>
  3609. </dl>
  3610. <dl>
  3611. <dt>Securityeffect</dt>
  3612. <dd>-</dd>
  3613. </dl>
  3614. <dl>
  3615. <dt>Notes</dt>
  3616. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3617. </div>
  3618. </div>
  3619. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3620. </div>
  3621. </div>
  3622. </li>
  3623. <liclass="image_lists_itemdatapage-2">
  3624. <aclass="card_img">
  3625. <imgsrc="../images/cardlist/card/BT13-045.png"alt="BT13-045KingChessmon"></a>
  3626. <divclass="popup">
  3627. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3628. <divclass="card_detail_inner">
  3629. <ulclass="cardinfo_head">
  3630. <liclass="cardno">BT13-045</li>
  3631. <li>R</li>
  3632. <liclass="cardtype">Digimon</li>
  3633. <liclass="cardlv">Lv.6</li>
  3634. </ul>
  3635. <divclass="card_name">KingChessmon</div>
  3636. <divclass="cardinfo_top">
  3637. <divclass="card_img">
  3638. <imgsrc="../images/cardlist/card/BT13-045.png"alt="BT13-045KingChessmon"></div>
  3639. <divclass="cardinfo_top_body">
  3640. <dl>
  3641. <dt>Form</dt>
  3642. <dd>Mega</dd>
  3643. </dl>
  3644. <dl>
  3645. <dt>Attribute</dt>
  3646. <dd>Virus</dd>
  3647. </dl>
  3648. <dl>
  3649. <dt>Type</dt>
  3650. <dd>Puppet</dd>
  3651. </dl>
  3652. <dl>
  3653. <dt>DP</dt>
  3654. <dd>11000</dl>
  3655. <dl>
  3656. <dt>PlayCost</dt>
  3657. <dd>13</dd>
  3658. </dl>
  3659. <dl>
  3660. <dt>DigivolveCost1</dt>
  3661. <dd>4fromLv.5</dd>
  3662. </dl>
  3663. <dl>
  3664. <dt>DigivolveCost2</dt>
  3665. <dd>4fromLv.5</dd>
  3666. </dl>
  3667. </div>
  3668. </div>
  3669. <divclass="cardinfo_bottom">
  3670. <dl>
  3671. <dt>Effect</dt>
  3672. <dd>Digivolve: 3 from Lv.5 w/[Chessmon] in name <br>When you would play this card from the hand, if you have 8 or more Digimon cards with [Chessmon] in their names in your trash, reduce the play cost by 8.<br> [On Play][When Digivolving] By deleting 1 of your other Digimon, you may play 1 Digimon card with [Chessmon] in its name, other than [KingChessmon], from your hand without paying the cost. </dd>
  3673. </dl>
  3674. <dl>
  3675. <dt>Digivolveeffect</dt>
  3676. <dd>-</dd>
  3677. </dl>
  3678. <dl>
  3679. <dt>Securityeffect</dt>
  3680. <dd>-</dd>
  3681. </dl>
  3682. <dl>
  3683. <dt>Notes</dt>
  3684. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3685. </div>
  3686. </div>
  3687. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3688. </div>
  3689. </div>
  3690. </li>
  3691. <liclass="image_lists_itemdatapage-2">
  3692. <aclass="card_img">
  3693. <imgsrc="../images/cardlist/card/BT13-046.png"alt="BT13-046Kentaurosmon"></a>
  3694. <divclass="popup">
  3695. <divclass="card_detailcard_detail_yellow">
  3696. <divclass="card_detail_inner">
  3697. <ulclass="cardinfo_head">
  3698. <liclass="cardno">BT13-046</li>
  3699. <li>SR</li>
  3700. <liclass="cardtype">Digimon</li>
  3701. <liclass="cardlv">Lv.6</li>
  3702. </ul>
  3703. <divclass="card_name">Kentaurosmon</div>
  3704. <divclass="cardinfo_top">
  3705. <divclass="card_img">
  3706. <imgsrc="../images/cardlist/card/BT13-046.png"alt="BT13-046Kentaurosmon"></div>
  3707. <divclass="cardinfo_top_body">
  3708. <dl>
  3709. <dt>Form</dt>
  3710. <dd>Mega</dd>
  3711. </dl>
  3712. <dl>
  3713. <dt>Attribute</dt>
  3714. <dd>Vaccine</dd>
  3715. </dl>
  3716. <dl>
  3717. <dt>Type</dt>
  3718. <dd>HolyWarrior/RoyalKnight</dd>
  3719. </dl>
  3720. <dl>
  3721. <dt>DP</dt>
  3722. <dd>13000</dl>
  3723. <dl>
  3724. <dt>PlayCost</dt>
  3725. <dd>13</dd>
  3726. </dl>
  3727. <dl>
  3728. <dt>DigivolveCost1</dt>
  3729. <dd>5fromLv.5</dd>
  3730. </dl>
  3731. <dl>
  3732. <dt>DigivolveCost2</dt>
  3733. <dd>-</dd>
  3734. </dl>
  3735. </div>
  3736. </div>
  3737. <divclass="cardinfo_bottom">
  3738. <dl>
  3739. <dt>Effect</dt>
  3740. <dd>[On Play][When Digivolving] If there're 6 or fewer total cards in both players' security stacks, gain 3 memory, and reveal 1 card in your hand. If it’s yellow, place it on top of your security stack face down. If it's not, return it to the hand.<br>[When Attacking][Once Per Turn] By trashing the top card of your security stack, unsuspend this Digimon, and 1 of your opponent's Digimon gets -7000 DP for the turn.</dd>
  3741. </dl>
  3742. <dl>
  3743. <dt>Digivolveeffect</dt>
  3744. <dd>-</dd>
  3745. </dl>
  3746. <dl>
  3747. <dt>Securityeffect</dt>
  3748. <dd>-</dd>
  3749. </dl>
  3750. <dl>
  3751. <dt>Notes</dt>
  3752. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3753. </div>
  3754. </div>
  3755. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3756. </div>
  3757. </div>
  3758. </li>
  3759. <liclass="image_lists_itemdatapage-2">
  3760. <aclass="card_img">
  3761. <imgsrc="../images/cardlist/card/BT13-046_P1.png"alt="BT13-046Kentaurosmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  3762. </a>
  3763. <divclass="popup">
  3764. <divclass="card_detailcard_detail_yellow">
  3765. <divclass="card_detail_inner">
  3766. <ulclass="cardinfo_head">
  3767. <liclass="cardno">BT13-046</li>
  3768. <li>SR</li>
  3769. <liclass="cardtype">Digimon</li>
  3770. <liclass="cardlv">Lv.6</li>
  3771. <liclass="cardtypecardParallel">AlternativeArt</li>
  3772. </ul>
  3773. <divclass="card_name">Kentaurosmon</div>
  3774. <divclass="cardinfo_top">
  3775. <divclass="card_img">
  3776. <imgsrc="../images/cardlist/card/BT13-046_P1.png"alt="BT13-046Kentaurosmon"></div>
  3777. <divclass="cardinfo_top_body">
  3778. <dl>
  3779. <dt>Form</dt>
  3780. <dd>Mega</dd>
  3781. </dl>
  3782. <dl>
  3783. <dt>Attribute</dt>
  3784. <dd>Vaccine</dd>
  3785. </dl>
  3786. <dl>
  3787. <dt>Type</dt>
  3788. <dd>HolyWarrior/RoyalKnight</dd>
  3789. </dl>
  3790. <dl>
  3791. <dt>DP</dt>
  3792. <dd>13000</dl>
  3793. <dl>
  3794. <dt>PlayCost</dt>
  3795. <dd>13</dd>
  3796. </dl>
  3797. <dl>
  3798. <dt>DigivolveCost1</dt>
  3799. <dd>5fromLv.5</dd>
  3800. </dl>
  3801. <dl>
  3802. <dt>DigivolveCost2</dt>
  3803. <dd>-</dd>
  3804. </dl>
  3805. </div>
  3806. </div>
  3807. <divclass="cardinfo_bottom">
  3808. <dl>
  3809. <dt>Effect</dt>
  3810. <dd>[On Play][When Digivolving] If there're 6 or fewer total cards in both players' security stacks, gain 3 memory, and reveal 1 card in your hand. If it’s yellow, place it on top of your security stack face down. If it's not, return it to the hand.<br>[When Attacking][Once Per Turn] By trashing the top card of your security stack, unsuspend this Digimon, and 1 of your opponent's Digimon gets -7000 DP for the turn.</dd>
  3811. </dl>
  3812. <dl>
  3813. <dt>Digivolveeffect</dt>
  3814. <dd>-</dd>
  3815. </dl>
  3816. <dl>
  3817. <dt>Securityeffect</dt>
  3818. <dd>-</dd>
  3819. </dl>
  3820. <dl>
  3821. <dt>Notes</dt>
  3822. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3823. </div>
  3824. </div>
  3825. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3826. </div>
  3827. </div>
  3828. </li>
  3829. <liclass="image_lists_itemdatapage-2">
  3830. <aclass="card_img">
  3831. <imgsrc="../images/cardlist/card/BT13-047.png"alt="BT13-047Angoramon"></a>
  3832. <divclass="popup">
  3833. <divclass="card_detailcard_detail_green">
  3834. <divclass="card_detail_inner">
  3835. <ulclass="cardinfo_head">
  3836. <liclass="cardno">BT13-047</li>
  3837. <li>C</li>
  3838. <liclass="cardtype">Digimon</li>
  3839. <liclass="cardlv">Lv.3</li>
  3840. </ul>
  3841. <divclass="card_name">Angoramon</div>
  3842. <divclass="cardinfo_top">
  3843. <divclass="card_img">
  3844. <imgsrc="../images/cardlist/card/BT13-047.png"alt="BT13-047Angoramon"></div>
  3845. <divclass="cardinfo_top_body">
  3846. <dl>
  3847. <dt>Form</dt>
  3848. <dd>Rookie</dd>
  3849. </dl>
  3850. <dl>
  3851. <dt>Attribute</dt>
  3852. <dd>Vaccine</dd>
  3853. </dl>
  3854. <dl>
  3855. <dt>Type</dt>
  3856. <dd>Beast</dd>
  3857. </dl>
  3858. <dl>
  3859. <dt>DP</dt>
  3860. <dd>1000</dl>
  3861. <dl>
  3862. <dt>PlayCost</dt>
  3863. <dd>3</dd>
  3864. </dl>
  3865. <dl>
  3866. <dt>DigivolveCost1</dt>
  3867. <dd>0fromLv.2</dd>
  3868. </dl>
  3869. <dl>
  3870. <dt>DigivolveCost2</dt>
  3871. <dd>-</dd>
  3872. </dl>
  3873. </div>
  3874. </div>
  3875. <divclass="cardinfo_bottom">
  3876. <dl>
  3877. <dt>Effect</dt>
  3878. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  3879. </dl>
  3880. <dl>
  3881. <dt>Digivolveeffect</dt>
  3882. <dd>[All Turns] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  3883. </dl>
  3884. <dl>
  3885. <dt>Securityeffect</dt>
  3886. <dd>-</dd>
  3887. </dl>
  3888. <dl>
  3889. <dt>Notes</dt>
  3890. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3891. </div>
  3892. </div>
  3893. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3894. </div>
  3895. </div>
  3896. </li>
  3897. <liclass="image_lists_itemdatapage-2">
  3898. <aclass="card_img">
  3899. <imgsrc="../images/cardlist/card/BT13-048.png"alt="BT13-048Salamon"></a>
  3900. <divclass="popup">
  3901. <divclass="card_detailcard_detail_green">
  3902. <divclass="card_detail_inner">
  3903. <ulclass="cardinfo_head">
  3904. <liclass="cardno">BT13-048</li>
  3905. <li>U</li>
  3906. <liclass="cardtype">Digimon</li>
  3907. <liclass="cardlv">Lv.3</li>
  3908. </ul>
  3909. <divclass="card_name">Salamon</div>
  3910. <divclass="cardinfo_top">
  3911. <divclass="card_img">
  3912. <imgsrc="../images/cardlist/card/BT13-048.png"alt="BT13-048Salamon"></div>
  3913. <divclass="cardinfo_top_body">
  3914. <dl>
  3915. <dt>Form</dt>
  3916. <dd>Rookie</dd>
  3917. </dl>
  3918. <dl>
  3919. <dt>Attribute</dt>
  3920. <dd>Vaccine</dd>
  3921. </dl>
  3922. <dl>
  3923. <dt>Type</dt>
  3924. <dd>Mammal</dd>
  3925. </dl>
  3926. <dl>
  3927. <dt>DP</dt>
  3928. <dd>1000</dl>
  3929. <dl>
  3930. <dt>PlayCost</dt>
  3931. <dd>3</dd>
  3932. </dl>
  3933. <dl>
  3934. <dt>DigivolveCost1</dt>
  3935. <dd>0fromLv.2</dd>
  3936. </dl>
  3937. <dl>
  3938. <dt>DigivolveCost2</dt>
  3939. <dd>-</dd>
  3940. </dl>
  3941. </div>
  3942. </div>
  3943. <divclass="cardinfo_bottom">
  3944. <dl>
  3945. <dt>Effect</dt>
  3946. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [Beast], [Animal], or [Sovereign], other than [Sea Animal], in one of its traits and 1 Digimon card with the [Royal Knight] trait among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  3947. </dl>
  3948. <dl>
  3949. <dt>Digivolveeffect</dt>
  3950. <dd>[Your Turn] While this Digimon has [Beast], [Animal], or [Sovereign], other than [Sea Animal], in one of its traits or the [Royal Knight] trait, it gets +2000 DP.</dd>
  3951. </dl>
  3952. <dl>
  3953. <dt>Securityeffect</dt>
  3954. <dd>-</dd>
  3955. </dl>
  3956. <dl>
  3957. <dt>Notes</dt>
  3958. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  3959. </div>
  3960. </div>
  3961. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3962. </div>
  3963. </div>
  3964. </li>
  3965. <liclass="image_lists_itemdatapage-2">
  3966. <aclass="card_img">
  3967. <imgsrc="../images/cardlist/card/BT13-049.png"alt="BT13-049Lalamon"></a>
  3968. <divclass="popup">
  3969. <divclass="card_detailcard_detail_green">
  3970. <divclass="card_detail_inner">
  3971. <ulclass="cardinfo_head">
  3972. <liclass="cardno">BT13-049</li>
  3973. <li>C</li>
  3974. <liclass="cardtype">Digimon</li>
  3975. <liclass="cardlv">Lv.3</li>
  3976. </ul>
  3977. <divclass="card_name">Lalamon</div>
  3978. <divclass="cardinfo_top">
  3979. <divclass="card_img">
  3980. <imgsrc="../images/cardlist/card/BT13-049.png"alt="BT13-049Lalamon"></div>
  3981. <divclass="cardinfo_top_body">
  3982. <dl>
  3983. <dt>Form</dt>
  3984. <dd>Rookie</dd>
  3985. </dl>
  3986. <dl>
  3987. <dt>Attribute</dt>
  3988. <dd>Data</dd>
  3989. </dl>
  3990. <dl>
  3991. <dt>Type</dt>
  3992. <dd>Vegetation</dd>
  3993. </dl>
  3994. <dl>
  3995. <dt>DP</dt>
  3996. <dd>1000</dl>
  3997. <dl>
  3998. <dt>PlayCost</dt>
  3999. <dd>3</dd>
  4000. </dl>
  4001. <dl>
  4002. <dt>DigivolveCost1</dt>
  4003. <dd>0fromLv.2</dd>
  4004. </dl>
  4005. <dl>
  4006. <dt>DigivolveCost2</dt>
  4007. <dd>-</dd>
  4008. </dl>
  4009. </div>
  4010. </div>
  4011. <divclass="cardinfo_bottom">
  4012. <dl>
  4013. <dt>Effect</dt>
  4014. <dd>[On Play] Reveal the top 3 cards of your deck. Add 1 Digimon card with [Vegetation], [Plant], or [Fairy] in one of its traits and 1 [Yoshino Fujieda] among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  4015. </dl>
  4016. <dl>
  4017. <dt>Digivolveeffect</dt>
  4018. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, if you have a green Tamer, reduce the digivolution cost by 1.</dd>
  4019. </dl>
  4020. <dl>
  4021. <dt>Securityeffect</dt>
  4022. <dd>-</dd>
  4023. </dl>
  4024. <dl>
  4025. <dt>Notes</dt>
  4026. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4027. </div>
  4028. </div>
  4029. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4030. </div>
  4031. </div>
  4032. </li>
  4033. <liclass="image_lists_itemdatapage-2">
  4034. <aclass="card_img">
  4035. <imgsrc="../images/cardlist/card/BT13-050.png"alt="BT13-050Sunflowmon"></a>
  4036. <divclass="popup">
  4037. <divclass="card_detailcard_detail_green">
  4038. <divclass="card_detail_inner">
  4039. <ulclass="cardinfo_head">
  4040. <liclass="cardno">BT13-050</li>
  4041. <li>C</li>
  4042. <liclass="cardtype">Digimon</li>
  4043. <liclass="cardlv">Lv.4</li>
  4044. </ul>
  4045. <divclass="card_name">Sunflowmon</div>
  4046. <divclass="cardinfo_top">
  4047. <divclass="card_img">
  4048. <imgsrc="../images/cardlist/card/BT13-050.png"alt="BT13-050Sunflowmon"></div>
  4049. <divclass="cardinfo_top_body">
  4050. <dl>
  4051. <dt>Form</dt>
  4052. <dd>Champion</dd>
  4053. </dl>
  4054. <dl>
  4055. <dt>Attribute</dt>
  4056. <dd>Data</dd>
  4057. </dl>
  4058. <dl>
  4059. <dt>Type</dt>
  4060. <dd>Vegetation</dd>
  4061. </dl>
  4062. <dl>
  4063. <dt>DP</dt>
  4064. <dd>3000</dl>
  4065. <dl>
  4066. <dt>PlayCost</dt>
  4067. <dd>4</dd>
  4068. </dl>
  4069. <dl>
  4070. <dt>DigivolveCost1</dt>
  4071. <dd>2fromLv.3</dd>
  4072. </dl>
  4073. <dl>
  4074. <dt>DigivolveCost2</dt>
  4075. <dd>-</dd>
  4076. </dl>
  4077. </div>
  4078. </div>
  4079. <divclass="cardinfo_bottom">
  4080. <dl>
  4081. <dt>Effect</dt>
  4082. <dd>[Main] By suspending this Digimon, 1 of your Digimon may digivolve into a Digimon card with [Fairy] in one of its traits in the hand for the digivolution cost. When it would digivolve by this effect, reduce the digivolution cost by 2.</dd>
  4083. </dl>
  4084. <dl>
  4085. <dt>Digivolveeffect</dt>
  4086. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, if you have a green Tamer, reduce the digivolution cost by 1.</dd>
  4087. </dl>
  4088. <dl>
  4089. <dt>Securityeffect</dt>
  4090. <dd>-</dd>
  4091. </dl>
  4092. <dl>
  4093. <dt>Notes</dt>
  4094. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4095. </div>
  4096. </div>
  4097. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4098. </div>
  4099. </div>
  4100. </li>
  4101. <liclass="image_lists_itemdatapage-2">
  4102. <aclass="card_img">
  4103. <imgsrc="../images/cardlist/card/BT13-051.png"alt="BT13-051Mikemon"></a>
  4104. <divclass="popup">
  4105. <divclass="card_detailcard_detail_green">
  4106. <divclass="card_detail_inner">
  4107. <ulclass="cardinfo_head">
  4108. <liclass="cardno">BT13-051</li>
  4109. <li>C</li>
  4110. <liclass="cardtype">Digimon</li>
  4111. <liclass="cardlv">Lv.4</li>
  4112. </ul>
  4113. <divclass="card_name">Mikemon</div>
  4114. <divclass="cardinfo_top">
  4115. <divclass="card_img">
  4116. <imgsrc="../images/cardlist/card/BT13-051.png"alt="BT13-051Mikemon"></div>
  4117. <divclass="cardinfo_top_body">
  4118. <dl>
  4119. <dt>Form</dt>
  4120. <dd>Champion</dd>
  4121. </dl>
  4122. <dl>
  4123. <dt>Attribute</dt>
  4124. <dd>Data</dd>
  4125. </dl>
  4126. <dl>
  4127. <dt>Type</dt>
  4128. <dd>Beast</dd>
  4129. </dl>
  4130. <dl>
  4131. <dt>DP</dt>
  4132. <dd>4000</dl>
  4133. <dl>
  4134. <dt>PlayCost</dt>
  4135. <dd>4</dd>
  4136. </dl>
  4137. <dl>
  4138. <dt>DigivolveCost1</dt>
  4139. <dd>2fromLv.3</dd>
  4140. </dl>
  4141. <dl>
  4142. <dt>DigivolveCost2</dt>
  4143. <dd>-</dd>
  4144. </dl>
  4145. </div>
  4146. </div>
  4147. <divclass="cardinfo_bottom">
  4148. <dl>
  4149. <dt>Effect</dt>
  4150. <dd>[On Play] 1 of your Digimon gains <Piercing> for the turn. (When this Digimon attacks and deletes an opponent's Digimon, it performs any security checks it normally would.)</dd>
  4151. </dl>
  4152. <dl>
  4153. <dt>Digivolveeffect</dt>
  4154. <dd>[Your Turn] While this Digimon has [Beast], [Animal], or [Sovereign], other than [Sea Animal], in one of its traits or the [Royal Knight] trait, it gets +2000 DP.</dd>
  4155. </dl>
  4156. <dl>
  4157. <dt>Securityeffect</dt>
  4158. <dd>-</dd>
  4159. </dl>
  4160. <dl>
  4161. <dt>Notes</dt>
  4162. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4163. </div>
  4164. </div>
  4165. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4166. </div>
  4167. </div>
  4168. </li>
  4169. <liclass="image_lists_itemdatapage-2">
  4170. <aclass="card_img">
  4171. <imgsrc="../images/cardlist/card/BT13-052.png"alt="BT13-052SymbareAngoramon"></a>
  4172. <divclass="popup">
  4173. <divclass="card_detailcard_detail_green">
  4174. <divclass="card_detail_inner">
  4175. <ulclass="cardinfo_head">
  4176. <liclass="cardno">BT13-052</li>
  4177. <li>C</li>
  4178. <liclass="cardtype">Digimon</li>
  4179. <liclass="cardlv">Lv.4</li>
  4180. </ul>
  4181. <divclass="card_name">SymbareAngoramon</div>
  4182. <divclass="cardinfo_top">
  4183. <divclass="card_img">
  4184. <imgsrc="../images/cardlist/card/BT13-052.png"alt="BT13-052SymbareAngoramon"></div>
  4185. <divclass="cardinfo_top_body">
  4186. <dl>
  4187. <dt>Form</dt>
  4188. <dd>Champion</dd>
  4189. </dl>
  4190. <dl>
  4191. <dt>Attribute</dt>
  4192. <dd>Vaccine</dd>
  4193. </dl>
  4194. <dl>
  4195. <dt>Type</dt>
  4196. <dd>Beastkin</dd>
  4197. </dl>
  4198. <dl>
  4199. <dt>DP</dt>
  4200. <dd>5000</dl>
  4201. <dl>
  4202. <dt>PlayCost</dt>
  4203. <dd>5</dd>
  4204. </dl>
  4205. <dl>
  4206. <dt>DigivolveCost1</dt>
  4207. <dd>2fromLv.3</dd>
  4208. </dl>
  4209. <dl>
  4210. <dt>DigivolveCost2</dt>
  4211. <dd>-</dd>
  4212. </dl>
  4213. </div>
  4214. </div>
  4215. <divclass="cardinfo_bottom">
  4216. <dl>
  4217. <dt>Effect</dt>
  4218. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  4219. </dl>
  4220. <dl>
  4221. <dt>Digivolveeffect</dt>
  4222. <dd>[All Turns] While your opponent has no unsuspended Digimon, this Digimon gets +1000 DP.</dd>
  4223. </dl>
  4224. <dl>
  4225. <dt>Securityeffect</dt>
  4226. <dd>-</dd>
  4227. </dl>
  4228. <dl>
  4229. <dt>Notes</dt>
  4230. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4231. </div>
  4232. </div>
  4233. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4234. </div>
  4235. </div>
  4236. </li>
  4237. <liclass="image_lists_itemdatapage-2">
  4238. <aclass="card_img">
  4239. <imgsrc="../images/cardlist/card/BT13-053.png"alt="BT13-053Mihiramon"></a>
  4240. <divclass="popup">
  4241. <divclass="card_detailcard_detail_green">
  4242. <divclass="card_detail_inner">
  4243. <ulclass="cardinfo_head">
  4244. <liclass="cardno">BT13-053</li>
  4245. <li>U</li>
  4246. <liclass="cardtype">Digimon</li>
  4247. <liclass="cardlv">Lv.5</li>
  4248. </ul>
  4249. <divclass="card_name">Mihiramon</div>
  4250. <divclass="cardinfo_top">
  4251. <divclass="card_img">
  4252. <imgsrc="../images/cardlist/card/BT13-053.png"alt="BT13-053Mihiramon"></div>
  4253. <divclass="cardinfo_top_body">
  4254. <dl>
  4255. <dt>Form</dt>
  4256. <dd>Ultimate</dd>
  4257. </dl>
  4258. <dl>
  4259. <dt>Attribute</dt>
  4260. <dd>Data</dd>
  4261. </dl>
  4262. <dl>
  4263. <dt>Type</dt>
  4264. <dd>HolyBeast/Deva</dd>
  4265. </dl>
  4266. <dl>
  4267. <dt>DP</dt>
  4268. <dd>7000</dl>
  4269. <dl>
  4270. <dt>PlayCost</dt>
  4271. <dd>7</dd>
  4272. </dl>
  4273. <dl>
  4274. <dt>DigivolveCost1</dt>
  4275. <dd>3fromLv.4</dd>
  4276. </dl>
  4277. <dl>
  4278. <dt>DigivolveCost2</dt>
  4279. <dd>-</dd>
  4280. </dl>
  4281. </div>
  4282. </div>
  4283. <divclass="cardinfo_bottom">
  4284. <dl>
  4285. <dt>Effect</dt>
  4286. <dd>[On Play] Suspend 1 of your opponent's Digimon with 7000 DP or less. Then, until the end of your opponent's turn, 1 of your opponent's Digimon doesn't unsuspend.</dd>
  4287. </dl>
  4288. <dl>
  4289. <dt>Digivolveeffect</dt>
  4290. <dd>[Your Turn][Once Per Turn] When this Digimon would digivolve, reduce the digivolution cost by 1.</dd>
  4291. </dl>
  4292. <dl>
  4293. <dt>Securityeffect</dt>
  4294. <dd>-</dd>
  4295. </dl>
  4296. <dl>
  4297. <dt>Notes</dt>
  4298. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4299. </div>
  4300. </div>
  4301. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4302. </div>
  4303. </div>
  4304. </li>
  4305. <liclass="image_lists_itemdatapage-2">
  4306. <aclass="card_img">
  4307. <imgsrc="../images/cardlist/card/BT13-054.png"alt="BT13-054Lilamon"></a>
  4308. <divclass="popup">
  4309. <divclass="card_detailcard_detail_green">
  4310. <divclass="card_detail_inner">
  4311. <ulclass="cardinfo_head">
  4312. <liclass="cardno">BT13-054</li>
  4313. <li>C</li>
  4314. <liclass="cardtype">Digimon</li>
  4315. <liclass="cardlv">Lv.5</li>
  4316. </ul>
  4317. <divclass="card_name">Lilamon</div>
  4318. <divclass="cardinfo_top">
  4319. <divclass="card_img">
  4320. <imgsrc="../images/cardlist/card/BT13-054.png"alt="BT13-054Lilamon"></div>
  4321. <divclass="cardinfo_top_body">
  4322. <dl>
  4323. <dt>Form</dt>
  4324. <dd>Ultimate</dd>
  4325. </dl>
  4326. <dl>
  4327. <dt>Attribute</dt>
  4328. <dd>Data</dd>
  4329. </dl>
  4330. <dl>
  4331. <dt>Type</dt>
  4332. <dd>Fairy</dd>
  4333. </dl>
  4334. <dl>
  4335. <dt>DP</dt>
  4336. <dd>7000</dl>
  4337. <dl>
  4338. <dt>PlayCost</dt>
  4339. <dd>7</dd>
  4340. </dl>
  4341. <dl>
  4342. <dt>DigivolveCost1</dt>
  4343. <dd>3fromLv.4</dd>
  4344. </dl>
  4345. <dl>
  4346. <dt>DigivolveCost2</dt>
  4347. <dd>-</dd>
  4348. </dl>
  4349. </div>
  4350. </div>
  4351. <divclass="cardinfo_bottom">
  4352. <dl>
  4353. <dt>Effect</dt>
  4354. <dd>[When Digivolving] You may play 1 [Yoshino Fujieda] from your hand without paying the cost.</dd>
  4355. </dl>
  4356. <dl>
  4357. <dt>Digivolveeffect</dt>
  4358. <dd>[Your Turn] While your opponent has a suspended Digimon, this Digimon gains <Security Attack +1>.</dd>
  4359. </dl>
  4360. <dl>
  4361. <dt>Securityeffect</dt>
  4362. <dd>-</dd>
  4363. </dl>
  4364. <dl>
  4365. <dt>Notes</dt>
  4366. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4367. </div>
  4368. </div>
  4369. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4370. </div>
  4371. </div>
  4372. </li>
  4373. <liclass="image_lists_itemdatapage-2">
  4374. <aclass="card_img">
  4375. <imgsrc="../images/cardlist/card/BT13-055.png"alt="BT13-055Lamortmon"></a>
  4376. <divclass="popup">
  4377. <divclass="card_detailcard_detail_green">
  4378. <divclass="card_detail_inner">
  4379. <ulclass="cardinfo_head">
  4380. <liclass="cardno">BT13-055</li>
  4381. <li>C</li>
  4382. <liclass="cardtype">Digimon</li>
  4383. <liclass="cardlv">Lv.5</li>
  4384. </ul>
  4385. <divclass="card_name">Lamortmon</div>
  4386. <divclass="cardinfo_top">
  4387. <divclass="card_img">
  4388. <imgsrc="../images/cardlist/card/BT13-055.png"alt="BT13-055Lamortmon"></div>
  4389. <divclass="cardinfo_top_body">
  4390. <dl>
  4391. <dt>Form</dt>
  4392. <dd>Ultimate</dd>
  4393. </dl>
  4394. <dl>
  4395. <dt>Attribute</dt>
  4396. <dd>Vaccine</dd>
  4397. </dl>
  4398. <dl>
  4399. <dt>Type</dt>
  4400. <dd>Beast</dd>
  4401. </dl>
  4402. <dl>
  4403. <dt>DP</dt>
  4404. <dd>8000</dl>
  4405. <dl>
  4406. <dt>PlayCost</dt>
  4407. <dd>8</dd>
  4408. </dl>
  4409. <dl>
  4410. <dt>DigivolveCost1</dt>
  4411. <dd>3fromLv.4</dd>
  4412. </dl>
  4413. <dl>
  4414. <dt>DigivolveCost2</dt>
  4415. <dd>-</dd>
  4416. </dl>
  4417. </div>
  4418. </div>
  4419. <divclass="cardinfo_bottom">
  4420. <dl>
  4421. <dt>Effect</dt>
  4422. <dd>[Hand][Main] If you have [Ruli Tsukiyono], by placing 1 [SymbareAngoramon] from your hand as 1 of your [Angoramon]’s bottom digivolution card, that Digimon digivolves into this card for a digivolution cost of 3, ignoring digivolution requirements.</dd>
  4423. </dl>
  4424. <dl>
  4425. <dt>Digivolveeffect</dt>
  4426. <dd>[Your Turn][Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, trash the top card of your opponent's security stack.</dd>
  4427. </dl>
  4428. <dl>
  4429. <dt>Securityeffect</dt>
  4430. <dd>-</dd>
  4431. </dl>
  4432. <dl>
  4433. <dt>Notes</dt>
  4434. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4435. </div>
  4436. </div>
  4437. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4438. </div>
  4439. </div>
  4440. </li>
  4441. <liclass="image_lists_itemdatapage-2">
  4442. <aclass="card_img">
  4443. <imgsrc="../images/cardlist/card/BT13-056.png"alt="BT13-056Leopardmon"></a>
  4444. <divclass="popup">
  4445. <divclass="card_detailcard_detail_green">
  4446. <divclass="card_detail_inner">
  4447. <ulclass="cardinfo_head">
  4448. <liclass="cardno">BT13-056</li>
  4449. <li>R</li>
  4450. <liclass="cardtype">Digimon</li>
  4451. <liclass="cardlv">Lv.6</li>
  4452. </ul>
  4453. <divclass="card_name">Leopardmon</div>
  4454. <divclass="cardinfo_top">
  4455. <divclass="card_img">
  4456. <imgsrc="../images/cardlist/card/BT13-056.png"alt="BT13-056Leopardmon"></div>
  4457. <divclass="cardinfo_top_body">
  4458. <dl>
  4459. <dt>Form</dt>
  4460. <dd>Mega</dd>
  4461. </dl>
  4462. <dl>
  4463. <dt>Attribute</dt>
  4464. <dd>Data</dd>
  4465. </dl>
  4466. <dl>
  4467. <dt>Type</dt>
  4468. <dd>HolyWarrior/RoyalKnight</dd>
  4469. </dl>
  4470. <dl>
  4471. <dt>DP</dt>
  4472. <dd>11000</dl>
  4473. <dl>
  4474. <dt>PlayCost</dt>
  4475. <dd>11</dd>
  4476. </dl>
  4477. <dl>
  4478. <dt>DigivolveCost1</dt>
  4479. <dd>3fromLv.5</dd>
  4480. </dl>
  4481. <dl>
  4482. <dt>DigivolveCost2</dt>
  4483. <dd>-</dd>
  4484. </dl>
  4485. </div>
  4486. </div>
  4487. <divclass="cardinfo_bottom">
  4488. <dl>
  4489. <dt>Effect</dt>
  4490. <dd>[When Digivolving][Main][Once Per Turn] You may play 1 green or [Royal Knight] trait Digimon card from your hand for the cost. When it would be played by this effect, reduce the play cost by 4.<br> [All Turns] When you play another Digimon, all of your green and/or [Royal Knight] trait Digimon gain <Blocker> until the end of your opponent's turn.</dd>
  4491. </dl>
  4492. <dl>
  4493. <dt>Digivolveeffect</dt>
  4494. <dd>-</dd>
  4495. </dl>
  4496. <dl>
  4497. <dt>Securityeffect</dt>
  4498. <dd>-</dd>
  4499. </dl>
  4500. <dl>
  4501. <dt>Notes</dt>
  4502. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4503. </div>
  4504. </div>
  4505. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4506. </div>
  4507. </div>
  4508. </li>
  4509. <liclass="image_lists_itemdatapage-2">
  4510. <aclass="card_img">
  4511. <imgsrc="../images/cardlist/card/BT13-056_P1.png"alt="BT13-056Leopardmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4512. </a>
  4513. <divclass="popup">
  4514. <divclass="card_detailcard_detail_green">
  4515. <divclass="card_detail_inner">
  4516. <ulclass="cardinfo_head">
  4517. <liclass="cardno">BT13-056</li>
  4518. <li>R</li>
  4519. <liclass="cardtype">Digimon</li>
  4520. <liclass="cardlv">Lv.6</li>
  4521. <liclass="cardtypecardParallel">AlternativeArt</li>
  4522. </ul>
  4523. <divclass="card_name">Leopardmon</div>
  4524. <divclass="cardinfo_top">
  4525. <divclass="card_img">
  4526. <imgsrc="../images/cardlist/card/BT13-056_P1.png"alt="BT13-056Leopardmon"></div>
  4527. <divclass="cardinfo_top_body">
  4528. <dl>
  4529. <dt>Form</dt>
  4530. <dd>Mega</dd>
  4531. </dl>
  4532. <dl>
  4533. <dt>Attribute</dt>
  4534. <dd>Data</dd>
  4535. </dl>
  4536. <dl>
  4537. <dt>Type</dt>
  4538. <dd>HolyWarrior/RoyalKnight</dd>
  4539. </dl>
  4540. <dl>
  4541. <dt>DP</dt>
  4542. <dd>11000</dl>
  4543. <dl>
  4544. <dt>PlayCost</dt>
  4545. <dd>11</dd>
  4546. </dl>
  4547. <dl>
  4548. <dt>DigivolveCost1</dt>
  4549. <dd>3fromLv.5</dd>
  4550. </dl>
  4551. <dl>
  4552. <dt>DigivolveCost2</dt>
  4553. <dd>-</dd>
  4554. </dl>
  4555. </div>
  4556. </div>
  4557. <divclass="cardinfo_bottom">
  4558. <dl>
  4559. <dt>Effect</dt>
  4560. <dd>[When Digivolving][Main][Once Per Turn] You may play 1 green or [Royal Knight] trait Digimon card from your hand for the cost. When it would be played by this effect, reduce the play cost by 4.<br> [All Turns] When you play another Digimon, all of your green and/or [Royal Knight] trait Digimon gain <Blocker> until the end of your opponent's turn.</dd>
  4561. </dl>
  4562. <dl>
  4563. <dt>Digivolveeffect</dt>
  4564. <dd>-</dd>
  4565. </dl>
  4566. <dl>
  4567. <dt>Securityeffect</dt>
  4568. <dd>-</dd>
  4569. </dl>
  4570. <dl>
  4571. <dt>Notes</dt>
  4572. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4573. </div>
  4574. </div>
  4575. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4576. </div>
  4577. </div>
  4578. </li>
  4579. <liclass="image_lists_itemdatapage-2">
  4580. <aclass="card_img">
  4581. <imgsrc="../images/cardlist/card/BT13-057.png"alt="BT13-057Rosemon"></a>
  4582. <divclass="popup">
  4583. <divclass="card_detailcard_detail_green">
  4584. <divclass="card_detail_inner">
  4585. <ulclass="cardinfo_head">
  4586. <liclass="cardno">BT13-057</li>
  4587. <li>R</li>
  4588. <liclass="cardtype">Digimon</li>
  4589. <liclass="cardlv">Lv.6</li>
  4590. </ul>
  4591. <divclass="card_name">Rosemon</div>
  4592. <divclass="cardinfo_top">
  4593. <divclass="card_img">
  4594. <imgsrc="../images/cardlist/card/BT13-057.png"alt="BT13-057Rosemon"></div>
  4595. <divclass="cardinfo_top_body">
  4596. <dl>
  4597. <dt>Form</dt>
  4598. <dd>Mega</dd>
  4599. </dl>
  4600. <dl>
  4601. <dt>Attribute</dt>
  4602. <dd>Data</dd>
  4603. </dl>
  4604. <dl>
  4605. <dt>Type</dt>
  4606. <dd>Fairy</dd>
  4607. </dl>
  4608. <dl>
  4609. <dt>DP</dt>
  4610. <dd>11000</dl>
  4611. <dl>
  4612. <dt>PlayCost</dt>
  4613. <dd>11</dd>
  4614. </dl>
  4615. <dl>
  4616. <dt>DigivolveCost1</dt>
  4617. <dd>3fromLv.5</dd>
  4618. </dl>
  4619. <dl>
  4620. <dt>DigivolveCost2</dt>
  4621. <dd>-</dd>
  4622. </dl>
  4623. </div>
  4624. </div>
  4625. <divclass="cardinfo_bottom">
  4626. <dl>
  4627. <dt>Effect</dt>
  4628. <dd>[When Digivolving] By suspending 1 of your opponent's Digimon or Tamers, unsuspend this Digimon.<br> [All Turns][Once Per Turn] When an opponent’s Digimon or Tamer becomes suspended, suspend 1 of your opponent’s Digimon or Tamers.</dd>
  4629. </dl>
  4630. <dl>
  4631. <dt>Digivolveeffect</dt>
  4632. <dd>-</dd>
  4633. </dl>
  4634. <dl>
  4635. <dt>Securityeffect</dt>
  4636. <dd>-</dd>
  4637. </dl>
  4638. <dl>
  4639. <dt>Notes</dt>
  4640. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4641. </div>
  4642. </div>
  4643. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4644. </div>
  4645. </div>
  4646. </li>
  4647. <liclass="image_lists_itemdatapage-2">
  4648. <aclass="card_img">
  4649. <imgsrc="../images/cardlist/card/BT13-058.png"alt="BT13-058Leopardmon:LeopardMode"></a>
  4650. <divclass="popup">
  4651. <divclass="card_detailcard_detail_green">
  4652. <divclass="card_detail_inner">
  4653. <ulclass="cardinfo_head">
  4654. <liclass="cardno">BT13-058</li>
  4655. <li>SR</li>
  4656. <liclass="cardtype">Digimon</li>
  4657. <liclass="cardlv">Lv.6</li>
  4658. </ul>
  4659. <divclass="card_name">Leopardmon:LeopardMode</div>
  4660. <divclass="cardinfo_top">
  4661. <divclass="card_img">
  4662. <imgsrc="../images/cardlist/card/BT13-058.png"alt="BT13-058Leopardmon:LeopardMode"></div>
  4663. <divclass="cardinfo_top_body">
  4664. <dl>
  4665. <dt>Form</dt>
  4666. <dd>Mega</dd>
  4667. </dl>
  4668. <dl>
  4669. <dt>Attribute</dt>
  4670. <dd>Data</dd>
  4671. </dl>
  4672. <dl>
  4673. <dt>Type</dt>
  4674. <dd>HolyWarrior/RoyalKnight</dd>
  4675. </dl>
  4676. <dl>
  4677. <dt>DP</dt>
  4678. <dd>12000</dl>
  4679. <dl>
  4680. <dt>PlayCost</dt>
  4681. <dd>12</dd>
  4682. </dl>
  4683. <dl>
  4684. <dt>DigivolveCost1</dt>
  4685. <dd>4fromLv.5</dd>
  4686. </dl>
  4687. <dl>
  4688. <dt>DigivolveCost2</dt>
  4689. <dd>-</dd>
  4690. </dl>
  4691. </div>
  4692. </div>
  4693. <divclass="cardinfo_bottom">
  4694. <dl>
  4695. <dt>Effect</dt>
  4696. <dd>Digivolve: 1 from [Leopardmon]<br>[When Digivolving] Suspend 1 of your opponent's Digimon. Until the end of your opponent's turn, 1 of your opponent's Digimon doesn't unsuspend.<br> [When Attacking] By suspending 1 of your other Digimon, unsuspend this Digimon.<br> [End of Your Turn] Trash the top card of this Digimon and unsuspend all of your Digimon.</dd>
  4697. </dl>
  4698. <dl>
  4699. <dt>Digivolveeffect</dt>
  4700. <dd>-</dd>
  4701. </dl>
  4702. <dl>
  4703. <dt>Securityeffect</dt>
  4704. <dd>-</dd>
  4705. </dl>
  4706. <dl>
  4707. <dt>Notes</dt>
  4708. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4709. </div>
  4710. </div>
  4711. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4712. </div>
  4713. </div>
  4714. </li>
  4715. <liclass="image_lists_itemdatapage-2">
  4716. <aclass="card_img">
  4717. <imgsrc="../images/cardlist/card/BT13-058_P1.png"alt="BT13-058Leopardmon:LeopardMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4718. </a>
  4719. <divclass="popup">
  4720. <divclass="card_detailcard_detail_green">
  4721. <divclass="card_detail_inner">
  4722. <ulclass="cardinfo_head">
  4723. <liclass="cardno">BT13-058</li>
  4724. <li>SR</li>
  4725. <liclass="cardtype">Digimon</li>
  4726. <liclass="cardlv">Lv.6</li>
  4727. <liclass="cardtypecardParallel">AlternativeArt</li>
  4728. </ul>
  4729. <divclass="card_name">Leopardmon:LeopardMode</div>
  4730. <divclass="cardinfo_top">
  4731. <divclass="card_img">
  4732. <imgsrc="../images/cardlist/card/BT13-058_P1.png"alt="BT13-058Leopardmon:LeopardMode"></div>
  4733. <divclass="cardinfo_top_body">
  4734. <dl>
  4735. <dt>Form</dt>
  4736. <dd>Mega</dd>
  4737. </dl>
  4738. <dl>
  4739. <dt>Attribute</dt>
  4740. <dd>Data</dd>
  4741. </dl>
  4742. <dl>
  4743. <dt>Type</dt>
  4744. <dd>HolyWarrior/RoyalKnight</dd>
  4745. </dl>
  4746. <dl>
  4747. <dt>DP</dt>
  4748. <dd>12000</dl>
  4749. <dl>
  4750. <dt>PlayCost</dt>
  4751. <dd>12</dd>
  4752. </dl>
  4753. <dl>
  4754. <dt>DigivolveCost1</dt>
  4755. <dd>4fromLv.5</dd>
  4756. </dl>
  4757. <dl>
  4758. <dt>DigivolveCost2</dt>
  4759. <dd>-</dd>
  4760. </dl>
  4761. </div>
  4762. </div>
  4763. <divclass="cardinfo_bottom">
  4764. <dl>
  4765. <dt>Effect</dt>
  4766. <dd>Digivolve: 1 from [Leopardmon]<br>[When Digivolving] Suspend 1 of your opponent's Digimon. Until the end of your opponent's turn, 1 of your opponent's Digimon doesn't unsuspend.<br> [When Attacking] By suspending 1 of your other Digimon, unsuspend this Digimon.<br> [End of Your Turn] Trash the top card of this Digimon and unsuspend all of your Digimon.</dd>
  4767. </dl>
  4768. <dl>
  4769. <dt>Digivolveeffect</dt>
  4770. <dd>-</dd>
  4771. </dl>
  4772. <dl>
  4773. <dt>Securityeffect</dt>
  4774. <dd>-</dd>
  4775. </dl>
  4776. <dl>
  4777. <dt>Notes</dt>
  4778. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4779. </div>
  4780. </div>
  4781. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4782. </div>
  4783. </div>
  4784. </li>
  4785. <liclass="image_lists_itemdatapage-2">
  4786. <aclass="card_img">
  4787. <imgsrc="../images/cardlist/card/BT13-059.png"alt="BT13-059Examon"></a>
  4788. <divclass="popup">
  4789. <divclass="card_detailcard_detail_green_bluemulticolor">
  4790. <divclass="card_detail_inner">
  4791. <ulclass="cardinfo_head">
  4792. <liclass="cardno">BT13-059</li>
  4793. <li>R</li>
  4794. <liclass="cardtype">Digimon</li>
  4795. <liclass="cardlv">Lv.7</li>
  4796. </ul>
  4797. <divclass="card_name">Examon</div>
  4798. <divclass="cardinfo_top">
  4799. <divclass="card_img">
  4800. <imgsrc="../images/cardlist/card/BT13-059.png"alt="BT13-059Examon"></div>
  4801. <divclass="cardinfo_top_body">
  4802. <dl>
  4803. <dt>Form</dt>
  4804. <dd>Mega</dd>
  4805. </dl>
  4806. <dl>
  4807. <dt>Attribute</dt>
  4808. <dd>Data</dd>
  4809. </dl>
  4810. <dl>
  4811. <dt>Type</dt>
  4812. <dd>HolyWarrior/RoyalKnight</dd>
  4813. </dl>
  4814. <dl>
  4815. <dt>DP</dt>
  4816. <dd>14000</dl>
  4817. <dl>
  4818. <dt>PlayCost</dt>
  4819. <dd>14</dd>
  4820. </dl>
  4821. <dl>
  4822. <dt>DigivolveCost1</dt>
  4823. <dd>4fromLv.6</dd>
  4824. </dl>
  4825. <dl>
  4826. <dt>DigivolveCost2</dt>
  4827. <dd>4fromLv.6</dd>
  4828. </dl>
  4829. </div>
  4830. </div>
  4831. <divclass="cardinfo_bottom">
  4832. <dl>
  4833. <dt>Effect</dt>
  4834. <dd><DNA Digivolution: 0 from green Lv.6 + blue Lv.6><br>Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br>[On Play][When Digivolving] Suspend 1 of your opponent's Digimon. That Digimon doesn't unsuspend during your opponent's next unsuspend phase.<br> [All Turns][Once Per Turn] When an opponent's Digimon becomes suspended, you may activate 1 of the effects below.<br> ・ Suspend 1 of your opponent's Digimon.<br> ・ Unsuspend 1 of your Digimon.</dd>
  4835. </dl>
  4836. <dl>
  4837. <dt>Digivolveeffect</dt>
  4838. <dd>-</dd>
  4839. </dl>
  4840. <dl>
  4841. <dt>Securityeffect</dt>
  4842. <dd>-</dd>
  4843. </dl>
  4844. <dl>
  4845. <dt>Notes</dt>
  4846. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4847. </div>
  4848. </div>
  4849. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4850. </div>
  4851. </div>
  4852. </li>
  4853. <liclass="image_lists_itemdatapage-2">
  4854. <aclass="card_img">
  4855. <imgsrc="../images/cardlist/card/BT13-059_P1.png"alt="BT13-059Examon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  4856. </a>
  4857. <divclass="popup">
  4858. <divclass="card_detailcard_detail_green_bluemulticolor">
  4859. <divclass="card_detail_inner">
  4860. <ulclass="cardinfo_head">
  4861. <liclass="cardno">BT13-059</li>
  4862. <li>R</li>
  4863. <liclass="cardtype">Digimon</li>
  4864. <liclass="cardlv">Lv.7</li>
  4865. <liclass="cardtypecardParallel">AlternativeArt</li>
  4866. </ul>
  4867. <divclass="card_name">Examon</div>
  4868. <divclass="cardinfo_top">
  4869. <divclass="card_img">
  4870. <imgsrc="../images/cardlist/card/BT13-059_P1.png"alt="BT13-059Examon"></div>
  4871. <divclass="cardinfo_top_body">
  4872. <dl>
  4873. <dt>Form</dt>
  4874. <dd>Mega</dd>
  4875. </dl>
  4876. <dl>
  4877. <dt>Attribute</dt>
  4878. <dd>Data</dd>
  4879. </dl>
  4880. <dl>
  4881. <dt>Type</dt>
  4882. <dd>HolyWarrior/RoyalKnight</dd>
  4883. </dl>
  4884. <dl>
  4885. <dt>DP</dt>
  4886. <dd>14000</dl>
  4887. <dl>
  4888. <dt>PlayCost</dt>
  4889. <dd>14</dd>
  4890. </dl>
  4891. <dl>
  4892. <dt>DigivolveCost1</dt>
  4893. <dd>4fromLv.6</dd>
  4894. </dl>
  4895. <dl>
  4896. <dt>DigivolveCost2</dt>
  4897. <dd>4fromLv.6</dd>
  4898. </dl>
  4899. </div>
  4900. </div>
  4901. <divclass="cardinfo_bottom">
  4902. <dl>
  4903. <dt>Effect</dt>
  4904. <dd><DNA Digivolution: 0 from green Lv.6 + blue Lv.6><br>Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br>[On Play][When Digivolving] Suspend 1 of your opponent's Digimon. That Digimon doesn't unsuspend during your opponent's next unsuspend phase.<br> [All Turns][Once Per Turn] When an opponent's Digimon becomes suspended, you may activate 1 of the effects below.<br> ・ Suspend 1 of your opponent's Digimon.<br> ・ Unsuspend 1 of your Digimon.</dd>
  4905. </dl>
  4906. <dl>
  4907. <dt>Digivolveeffect</dt>
  4908. <dd>-</dd>
  4909. </dl>
  4910. <dl>
  4911. <dt>Securityeffect</dt>
  4912. <dd>-</dd>
  4913. </dl>
  4914. <dl>
  4915. <dt>Notes</dt>
  4916. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4917. </div>
  4918. </div>
  4919. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4920. </div>
  4921. </div>
  4922. </li>
  4923. <liclass="image_lists_itemdatapage-2">
  4924. <aclass="card_img">
  4925. <imgsrc="../images/cardlist/card/BT13-060.png"alt="BT13-060Rosemon:BurstMode"></a>
  4926. <divclass="popup">
  4927. <divclass="card_detailcard_detail_green">
  4928. <divclass="card_detail_inner">
  4929. <ulclass="cardinfo_head">
  4930. <liclass="cardno">BT13-060</li>
  4931. <li>SR</li>
  4932. <liclass="cardtype">Digimon</li>
  4933. <liclass="cardlv">Lv.7</li>
  4934. </ul>
  4935. <divclass="card_name">Rosemon:BurstMode</div>
  4936. <divclass="cardinfo_top">
  4937. <divclass="card_img">
  4938. <imgsrc="../images/cardlist/card/BT13-060.png"alt="BT13-060Rosemon:BurstMode"></div>
  4939. <divclass="cardinfo_top_body">
  4940. <dl>
  4941. <dt>Form</dt>
  4942. <dd>Mega</dd>
  4943. </dl>
  4944. <dl>
  4945. <dt>Attribute</dt>
  4946. <dd>Data</dd>
  4947. </dl>
  4948. <dl>
  4949. <dt>Type</dt>
  4950. <dd>Fairy</dd>
  4951. </dl>
  4952. <dl>
  4953. <dt>DP</dt>
  4954. <dd>15000</dl>
  4955. <dl>
  4956. <dt>PlayCost</dt>
  4957. <dd>15</dd>
  4958. </dl>
  4959. <dl>
  4960. <dt>DigivolveCost1</dt>
  4961. <dd>5fromLv.6</dd>
  4962. </dl>
  4963. <dl>
  4964. <dt>DigivolveCost2</dt>
  4965. <dd>-</dd>
  4966. </dl>
  4967. </div>
  4968. </div>
  4969. <divclass="cardinfo_bottom">
  4970. <dl>
  4971. <dt>Effect</dt>
  4972. <dd>Burst Digivolve: 0 from [Rosemon] by returning 1 [Yoshino Fujieda] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Suspend 1 of your opponent's Digimon and 1 of their Tamers. Until the end of your opponent's turn, all of their Digimon and Tamers don't unsuspend.<br> [When Attacking] Trash the top card of your opponent’s security stack for every 2 of your opponent's suspended Digimon and/or Tamers.</dd>
  4973. </dl>
  4974. <dl>
  4975. <dt>Digivolveeffect</dt>
  4976. <dd>-</dd>
  4977. </dl>
  4978. <dl>
  4979. <dt>Securityeffect</dt>
  4980. <dd>-</dd>
  4981. </dl>
  4982. <dl>
  4983. <dt>Notes</dt>
  4984. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  4985. </div>
  4986. </div>
  4987. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4988. </div>
  4989. </div>
  4990. </li>
  4991. <liclass="image_lists_itemdatapage-2">
  4992. <aclass="card_img">
  4993. <imgsrc="../images/cardlist/card/BT13-060_P1.png"alt="BT13-060Rosemon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  4994. </a>
  4995. <divclass="popup">
  4996. <divclass="card_detailcard_detail_green">
  4997. <divclass="card_detail_inner">
  4998. <ulclass="cardinfo_head">
  4999. <liclass="cardno">BT13-060</li>
  5000. <li>SR</li>
  5001. <liclass="cardtype">Digimon</li>
  5002. <liclass="cardlv">Lv.7</li>
  5003. <liclass="cardtypecardParallel">AlternativeArt</li>
  5004. </ul>
  5005. <divclass="card_name">Rosemon:BurstMode</div>
  5006. <divclass="cardinfo_top">
  5007. <divclass="card_img">
  5008. <imgsrc="../images/cardlist/card/BT13-060_P1.png"alt="BT13-060Rosemon:BurstMode"></div>
  5009. <divclass="cardinfo_top_body">
  5010. <dl>
  5011. <dt>Form</dt>
  5012. <dd>Mega</dd>
  5013. </dl>
  5014. <dl>
  5015. <dt>Attribute</dt>
  5016. <dd>Data</dd>
  5017. </dl>
  5018. <dl>
  5019. <dt>Type</dt>
  5020. <dd>Fairy</dd>
  5021. </dl>
  5022. <dl>
  5023. <dt>DP</dt>
  5024. <dd>15000</dl>
  5025. <dl>
  5026. <dt>PlayCost</dt>
  5027. <dd>15</dd>
  5028. </dl>
  5029. <dl>
  5030. <dt>DigivolveCost1</dt>
  5031. <dd>5fromLv.6</dd>
  5032. </dl>
  5033. <dl>
  5034. <dt>DigivolveCost2</dt>
  5035. <dd>-</dd>
  5036. </dl>
  5037. </div>
  5038. </div>
  5039. <divclass="cardinfo_bottom">
  5040. <dl>
  5041. <dt>Effect</dt>
  5042. <dd>Burst Digivolve: 0 from [Rosemon] by returning 1 [Yoshino Fujieda] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Suspend 1 of your opponent's Digimon and 1 of their Tamers. Until the end of your opponent's turn, all of their Digimon and Tamers don't unsuspend.<br> [When Attacking] Trash the top card of your opponent’s security stack for every 2 of your opponent's suspended Digimon and/or Tamers.</dd>
  5043. </dl>
  5044. <dl>
  5045. <dt>Digivolveeffect</dt>
  5046. <dd>-</dd>
  5047. </dl>
  5048. <dl>
  5049. <dt>Securityeffect</dt>
  5050. <dd>-</dd>
  5051. </dl>
  5052. <dl>
  5053. <dt>Notes</dt>
  5054. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5055. </div>
  5056. </div>
  5057. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5058. </div>
  5059. </div>
  5060. </li>
  5061. <liclass="image_lists_itemdatapage-2">
  5062. <aclass="card_img">
  5063. <imgsrc="../images/cardlist/card/BT13-060_P2.png"alt="BT13-060Rosemon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5064. </a>
  5065. <divclass="popup">
  5066. <divclass="card_detailcard_detail_green">
  5067. <divclass="card_detail_inner">
  5068. <ulclass="cardinfo_head">
  5069. <liclass="cardno">BT13-060</li>
  5070. <li>SR</li>
  5071. <liclass="cardtype">Digimon</li>
  5072. <liclass="cardlv">Lv.7</li>
  5073. <liclass="cardtypecardParallel">AlternativeArt</li>
  5074. </ul>
  5075. <divclass="card_name">Rosemon:BurstMode</div>
  5076. <divclass="cardinfo_top">
  5077. <divclass="card_img">
  5078. <imgsrc="../images/cardlist/card/BT13-060_P2.png"alt="BT13-060Rosemon:BurstMode"></div>
  5079. <divclass="cardinfo_top_body">
  5080. <dl>
  5081. <dt>Form</dt>
  5082. <dd>Mega</dd>
  5083. </dl>
  5084. <dl>
  5085. <dt>Attribute</dt>
  5086. <dd>Data</dd>
  5087. </dl>
  5088. <dl>
  5089. <dt>Type</dt>
  5090. <dd>Fairy</dd>
  5091. </dl>
  5092. <dl>
  5093. <dt>DP</dt>
  5094. <dd>15000</dl>
  5095. <dl>
  5096. <dt>PlayCost</dt>
  5097. <dd>15</dd>
  5098. </dl>
  5099. <dl>
  5100. <dt>DigivolveCost1</dt>
  5101. <dd>5fromLv.6</dd>
  5102. </dl>
  5103. <dl>
  5104. <dt>DigivolveCost2</dt>
  5105. <dd>-</dd>
  5106. </dl>
  5107. </div>
  5108. </div>
  5109. <divclass="cardinfo_bottom">
  5110. <dl>
  5111. <dt>Effect</dt>
  5112. <dd>Burst Digivolve: 0 from [Rosemon] by returning 1 [Yoshino Fujieda] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Suspend 1 of your opponent's Digimon and 1 of their Tamers. Until the end of your opponent's turn, all of their Digimon and Tamers don't unsuspend.<br> [When Attacking] Trash the top card of your opponent’s security stack for every 2 of your opponent's suspended Digimon and/or Tamers.</dd>
  5113. </dl>
  5114. <dl>
  5115. <dt>Digivolveeffect</dt>
  5116. <dd>-</dd>
  5117. </dl>
  5118. <dl>
  5119. <dt>Securityeffect</dt>
  5120. <dd>-</dd>
  5121. </dl>
  5122. <dl>
  5123. <dt>Notes</dt>
  5124. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5125. </div>
  5126. </div>
  5127. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5128. </div>
  5129. </div>
  5130. </li>
  5131. <liclass="image_lists_itemdatapage-2">
  5132. <aclass="card_img">
  5133. <imgsrc="../images/cardlist/card/BT13-061.png"alt="BT13-061Gotsumon"></a>
  5134. <divclass="popup">
  5135. <divclass="card_detailcard_detail_black">
  5136. <divclass="card_detail_inner">
  5137. <ulclass="cardinfo_head">
  5138. <liclass="cardno">BT13-061</li>
  5139. <li>C</li>
  5140. <liclass="cardtype">Digimon</li>
  5141. <liclass="cardlv">Lv.3</li>
  5142. </ul>
  5143. <divclass="card_name">Gotsumon</div>
  5144. <divclass="cardinfo_top">
  5145. <divclass="card_img">
  5146. <imgsrc="../images/cardlist/card/BT13-061.png"alt="BT13-061Gotsumon"></div>
  5147. <divclass="cardinfo_top_body">
  5148. <dl>
  5149. <dt>Form</dt>
  5150. <dd>Rookie</dd>
  5151. </dl>
  5152. <dl>
  5153. <dt>Attribute</dt>
  5154. <dd>Data</dd>
  5155. </dl>
  5156. <dl>
  5157. <dt>Type</dt>
  5158. <dd>Rock</dd>
  5159. </dl>
  5160. <dl>
  5161. <dt>DP</dt>
  5162. <dd>1000</dl>
  5163. <dl>
  5164. <dt>PlayCost</dt>
  5165. <dd>3</dd>
  5166. </dl>
  5167. <dl>
  5168. <dt>DigivolveCost1</dt>
  5169. <dd>0fromLv.2</dd>
  5170. </dl>
  5171. <dl>
  5172. <dt>DigivolveCost2</dt>
  5173. <dd>-</dd>
  5174. </dl>
  5175. </div>
  5176. </div>
  5177. <divclass="cardinfo_bottom">
  5178. <dl>
  5179. <dt>Effect</dt>
  5180. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [On Deletion] If it's your opponent's turn, reveal the top 3 cards of your deck. Add 1 black card among them to the hand. Place the rest at the bottom of the deck in any order.</dd>
  5181. </dl>
  5182. <dl>
  5183. <dt>Digivolveeffect</dt>
  5184. <dd>-</dd>
  5185. </dl>
  5186. <dl>
  5187. <dt>Securityeffect</dt>
  5188. <dd>-</dd>
  5189. </dl>
  5190. <dl>
  5191. <dt>Notes</dt>
  5192. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5193. </div>
  5194. </div>
  5195. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5196. </div>
  5197. </div>
  5198. </li>
  5199. <liclass="image_lists_itemdatapage-2">
  5200. <aclass="card_img">
  5201. <imgsrc="../images/cardlist/card/BT13-062.png"alt="BT13-062Chuumon"></a>
  5202. <divclass="popup">
  5203. <divclass="card_detailcard_detail_black">
  5204. <divclass="card_detail_inner">
  5205. <ulclass="cardinfo_head">
  5206. <liclass="cardno">BT13-062</li>
  5207. <li>C</li>
  5208. <liclass="cardtype">Digimon</li>
  5209. <liclass="cardlv">Lv.3</li>
  5210. </ul>
  5211. <divclass="card_name">Chuumon</div>
  5212. <divclass="cardinfo_top">
  5213. <divclass="card_img">
  5214. <imgsrc="../images/cardlist/card/BT13-062.png"alt="BT13-062Chuumon"></div>
  5215. <divclass="cardinfo_top_body">
  5216. <dl>
  5217. <dt>Form</dt>
  5218. <dd>Rookie</dd>
  5219. </dl>
  5220. <dl>
  5221. <dt>Attribute</dt>
  5222. <dd>Virus</dd>
  5223. </dl>
  5224. <dl>
  5225. <dt>Type</dt>
  5226. <dd>Beast</dd>
  5227. </dl>
  5228. <dl>
  5229. <dt>DP</dt>
  5230. <dd>1000</dl>
  5231. <dl>
  5232. <dt>PlayCost</dt>
  5233. <dd>3</dd>
  5234. </dl>
  5235. <dl>
  5236. <dt>DigivolveCost1</dt>
  5237. <dd>0fromLv.2</dd>
  5238. </dl>
  5239. <dl>
  5240. <dt>DigivolveCost2</dt>
  5241. <dd>-</dd>
  5242. </dl>
  5243. </div>
  5244. </div>
  5245. <divclass="cardinfo_bottom">
  5246. <dl>
  5247. <dt>Effect</dt>
  5248. <dd>[On Play] By trashing 1 card with [Sukamon] or [Etemon] in its name in your hand, return 1 card with [Sukamon] in its name from your trash to the hand.</dd>
  5249. </dl>
  5250. <dl>
  5251. <dt>Digivolveeffect</dt>
  5252. <dd>[On Deletion] If this Digimon had [Sukamon] or [Etemon] in its name, you may play 1 [Chuumon] from your trash suspended without paying the cost.</dd>
  5253. </dl>
  5254. <dl>
  5255. <dt>Securityeffect</dt>
  5256. <dd>-</dd>
  5257. </dl>
  5258. <dl>
  5259. <dt>Notes</dt>
  5260. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5261. </div>
  5262. </div>
  5263. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5264. </div>
  5265. </div>
  5266. </li>
  5267. <liclass="image_lists_itemdatapage-2">
  5268. <aclass="card_img">
  5269. <imgsrc="../images/cardlist/card/BT13-063.png"alt="BT13-063Dorumon"></a>
  5270. <divclass="popup">
  5271. <divclass="card_detailcard_detail_black">
  5272. <divclass="card_detail_inner">
  5273. <ulclass="cardinfo_head">
  5274. <liclass="cardno">BT13-063</li>
  5275. <li>C</li>
  5276. <liclass="cardtype">Digimon</li>
  5277. <liclass="cardlv">Lv.3</li>
  5278. </ul>
  5279. <divclass="card_name">Dorumon</div>
  5280. <divclass="cardinfo_top">
  5281. <divclass="card_img">
  5282. <imgsrc="../images/cardlist/card/BT13-063.png"alt="BT13-063Dorumon"></div>
  5283. <divclass="cardinfo_top_body">
  5284. <dl>
  5285. <dt>Form</dt>
  5286. <dd>Rookie</dd>
  5287. </dl>
  5288. <dl>
  5289. <dt>Attribute</dt>
  5290. <dd>Data</dd>
  5291. </dl>
  5292. <dl>
  5293. <dt>Type</dt>
  5294. <dd>Beast/XAntibody</dd>
  5295. </dl>
  5296. <dl>
  5297. <dt>DP</dt>
  5298. <dd>3000</dl>
  5299. <dl>
  5300. <dt>PlayCost</dt>
  5301. <dd>3</dd>
  5302. </dl>
  5303. <dl>
  5304. <dt>DigivolveCost1</dt>
  5305. <dd>0fromLv.2</dd>
  5306. </dl>
  5307. <dl>
  5308. <dt>DigivolveCost2</dt>
  5309. <dd>-</dd>
  5310. </dl>
  5311. </div>
  5312. </div>
  5313. <divclass="cardinfo_bottom">
  5314. <dl>
  5315. <dt>Effect</dt>
  5316. <dd>-</dd>
  5317. </dl>
  5318. <dl>
  5319. <dt>Digivolveeffect</dt>
  5320. <dd>[All Turns] While this Digimon has the [X Antibody] trait, it gets +1000 DP.</dd>
  5321. </dl>
  5322. <dl>
  5323. <dt>Securityeffect</dt>
  5324. <dd>-</dd>
  5325. </dl>
  5326. <dl>
  5327. <dt>Notes</dt>
  5328. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5329. </div>
  5330. </div>
  5331. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5332. </div>
  5333. </div>
  5334. </li>
  5335. <liclass="image_lists_itemdatapage-2">
  5336. <aclass="card_img">
  5337. <imgsrc="../images/cardlist/card/BT13-064.png"alt="BT13-064PawnChessmon"></a>
  5338. <divclass="popup">
  5339. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5340. <divclass="card_detail_inner">
  5341. <ulclass="cardinfo_head">
  5342. <liclass="cardno">BT13-064</li>
  5343. <li>R</li>
  5344. <liclass="cardtype">Digimon</li>
  5345. <liclass="cardlv">Lv.3</li>
  5346. </ul>
  5347. <divclass="card_name">PawnChessmon</div>
  5348. <divclass="cardinfo_top">
  5349. <divclass="card_img">
  5350. <imgsrc="../images/cardlist/card/BT13-064.png"alt="BT13-064PawnChessmon"></div>
  5351. <divclass="cardinfo_top_body">
  5352. <dl>
  5353. <dt>Form</dt>
  5354. <dd>Rookie</dd>
  5355. </dl>
  5356. <dl>
  5357. <dt>Attribute</dt>
  5358. <dd>Virus</dd>
  5359. </dl>
  5360. <dl>
  5361. <dt>Type</dt>
  5362. <dd>Puppet</dd>
  5363. </dl>
  5364. <dl>
  5365. <dt>DP</dt>
  5366. <dd>1000</dl>
  5367. <dl>
  5368. <dt>PlayCost</dt>
  5369. <dd>3</dd>
  5370. </dl>
  5371. <dl>
  5372. <dt>DigivolveCost1</dt>
  5373. <dd>1fromLv.2</dd>
  5374. </dl>
  5375. <dl>
  5376. <dt>DigivolveCost2</dt>
  5377. <dd>1fromLv.2</dd>
  5378. </dl>
  5379. </div>
  5380. </div>
  5381. <divclass="cardinfo_bottom">
  5382. <dl>
  5383. <dt>Effect</dt>
  5384. <dd><Blocker><br>[On Deletion] If it's your opponent's turn, you may play 1 level 3 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost. If you have 8 or more Digimon cards with [Chessmon] in their names in your trash, add 2 to the maximum level of the card this effect can play.</dd>
  5385. </dl>
  5386. <dl>
  5387. <dt>Digivolveeffect</dt>
  5388. <dd>-</dd>
  5389. </dl>
  5390. <dl>
  5391. <dt>Securityeffect</dt>
  5392. <dd>-</dd>
  5393. </dl>
  5394. <dl>
  5395. <dt>Notes</dt>
  5396. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5397. </div>
  5398. </div>
  5399. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5400. </div>
  5401. </div>
  5402. </li>
  5403. <liclass="image_lists_itemdatapage-2">
  5404. <aclass="card_img">
  5405. <imgsrc="../images/cardlist/card/BT13-065.png"alt="BT13-065PlatinumSukamon"></a>
  5406. <divclass="popup">
  5407. <divclass="card_detailcard_detail_black">
  5408. <divclass="card_detail_inner">
  5409. <ulclass="cardinfo_head">
  5410. <liclass="cardno">BT13-065</li>
  5411. <li>C</li>
  5412. <liclass="cardtype">Digimon</li>
  5413. <liclass="cardlv">Lv.4</li>
  5414. </ul>
  5415. <divclass="card_name">PlatinumSukamon</div>
  5416. <divclass="cardinfo_top">
  5417. <divclass="card_img">
  5418. <imgsrc="../images/cardlist/card/BT13-065.png"alt="BT13-065PlatinumSukamon"></div>
  5419. <divclass="cardinfo_top_body">
  5420. <dl>
  5421. <dt>Form</dt>
  5422. <dd>Champion</dd>
  5423. </dl>
  5424. <dl>
  5425. <dt>Attribute</dt>
  5426. <dd>Virus</dd>
  5427. </dl>
  5428. <dl>
  5429. <dt>Type</dt>
  5430. <dd>Mutant</dd>
  5431. </dl>
  5432. <dl>
  5433. <dt>DP</dt>
  5434. <dd>2000</dl>
  5435. <dl>
  5436. <dt>PlayCost</dt>
  5437. <dd>3</dd>
  5438. </dl>
  5439. <dl>
  5440. <dt>DigivolveCost1</dt>
  5441. <dd>2fromLv.3</dd>
  5442. </dl>
  5443. <dl>
  5444. <dt>DigivolveCost2</dt>
  5445. <dd>-</dd>
  5446. </dl>
  5447. </div>
  5448. </div>
  5449. <divclass="cardinfo_bottom">
  5450. <dl>
  5451. <dt>Effect</dt>
  5452. <dd>[On Deletion] <De-Digivolve 1> 1 of your opponent's Digimon. (Trash 1 card from the top of 1 of your opponent's Digimon. Stop trashing when you would trash a level 3 card or the Digimon's last card.)</dd>
  5453. </dl>
  5454. <dl>
  5455. <dt>Digivolveeffect</dt>
  5456. <dd>[All Turns] When this Digimon would be deleted, by deleting 1 other Digimon with [Sukamon] in its name, prevent that deletion.</dd>
  5457. </dl>
  5458. <dl>
  5459. <dt>Securityeffect</dt>
  5460. <dd>-</dd>
  5461. </dl>
  5462. <dl>
  5463. <dt>Notes</dt>
  5464. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5465. </div>
  5466. </div>
  5467. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5468. </div>
  5469. </div>
  5470. </li>
  5471. <liclass="image_lists_itemdatapage-3">
  5472. <aclass="card_img">
  5473. <imgsrc="../images/cardlist/card/BT13-066.png"alt="BT13-066Dorugamon"></a>
  5474. <divclass="popup">
  5475. <divclass="card_detailcard_detail_black">
  5476. <divclass="card_detail_inner">
  5477. <ulclass="cardinfo_head">
  5478. <liclass="cardno">BT13-066</li>
  5479. <li>C</li>
  5480. <liclass="cardtype">Digimon</li>
  5481. <liclass="cardlv">Lv.4</li>
  5482. </ul>
  5483. <divclass="card_name">Dorugamon</div>
  5484. <divclass="cardinfo_top">
  5485. <divclass="card_img">
  5486. <imgsrc="../images/cardlist/card/BT13-066.png"alt="BT13-066Dorugamon"></div>
  5487. <divclass="cardinfo_top_body">
  5488. <dl>
  5489. <dt>Form</dt>
  5490. <dd>Champion</dd>
  5491. </dl>
  5492. <dl>
  5493. <dt>Attribute</dt>
  5494. <dd>Data</dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>Type</dt>
  5498. <dd>BeastDragon/XAntibody</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>DP</dt>
  5502. <dd>5000</dl>
  5503. <dl>
  5504. <dt>PlayCost</dt>
  5505. <dd>4</dd>
  5506. </dl>
  5507. <dl>
  5508. <dt>DigivolveCost1</dt>
  5509. <dd>2fromLv.3</dd>
  5510. </dl>
  5511. <dl>
  5512. <dt>DigivolveCost2</dt>
  5513. <dd>-</dd>
  5514. </dl>
  5515. </div>
  5516. </div>
  5517. <divclass="cardinfo_bottom">
  5518. <dl>
  5519. <dt>Effect</dt>
  5520. <dd>-</dd>
  5521. </dl>
  5522. <dl>
  5523. <dt>Digivolveeffect</dt>
  5524. <dd>[All Turns] While this Digimon has the [X Antibody] trait, it gets +1000 DP.</dd>
  5525. </dl>
  5526. <dl>
  5527. <dt>Securityeffect</dt>
  5528. <dd>-</dd>
  5529. </dl>
  5530. <dl>
  5531. <dt>Notes</dt>
  5532. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5533. </div>
  5534. </div>
  5535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5536. </div>
  5537. </div>
  5538. </li>
  5539. <liclass="image_lists_itemdatapage-3">
  5540. <aclass="card_img">
  5541. <imgsrc="../images/cardlist/card/BT13-067.png"alt="BT13-067Gladimon"></a>
  5542. <divclass="popup">
  5543. <divclass="card_detailcard_detail_black">
  5544. <divclass="card_detail_inner">
  5545. <ulclass="cardinfo_head">
  5546. <liclass="cardno">BT13-067</li>
  5547. <li>C</li>
  5548. <liclass="cardtype">Digimon</li>
  5549. <liclass="cardlv">Lv.4</li>
  5550. </ul>
  5551. <divclass="card_name">Gladimon</div>
  5552. <divclass="cardinfo_top">
  5553. <divclass="card_img">
  5554. <imgsrc="../images/cardlist/card/BT13-067.png"alt="BT13-067Gladimon"></div>
  5555. <divclass="cardinfo_top_body">
  5556. <dl>
  5557. <dt>Form</dt>
  5558. <dd>Champion</dd>
  5559. </dl>
  5560. <dl>
  5561. <dt>Attribute</dt>
  5562. <dd>Vaccine</dd>
  5563. </dl>
  5564. <dl>
  5565. <dt>Type</dt>
  5566. <dd>Warrior</dd>
  5567. </dl>
  5568. <dl>
  5569. <dt>DP</dt>
  5570. <dd>4000</dl>
  5571. <dl>
  5572. <dt>PlayCost</dt>
  5573. <dd>5</dd>
  5574. </dl>
  5575. <dl>
  5576. <dt>DigivolveCost1</dt>
  5577. <dd>2fromLv.3</dd>
  5578. </dl>
  5579. <dl>
  5580. <dt>DigivolveCost2</dt>
  5581. <dd>-</dd>
  5582. </dl>
  5583. </div>
  5584. </div>
  5585. <divclass="cardinfo_bottom">
  5586. <dl>
  5587. <dt>Effect</dt>
  5588. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  5589. </dl>
  5590. <dl>
  5591. <dt>Digivolveeffect</dt>
  5592. <dd><Reboot> (Unsuspend this Digimon during your opponent's unsuspend phase)</dd>
  5593. </dl>
  5594. <dl>
  5595. <dt>Securityeffect</dt>
  5596. <dd>-</dd>
  5597. </dl>
  5598. <dl>
  5599. <dt>Notes</dt>
  5600. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5601. </div>
  5602. </div>
  5603. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5604. </div>
  5605. </div>
  5606. </li>
  5607. <liclass="image_lists_itemdatapage-3">
  5608. <aclass="card_img">
  5609. <imgsrc="../images/cardlist/card/BT13-068.png"alt="BT13-068KnightChessmon"></a>
  5610. <divclass="popup">
  5611. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5612. <divclass="card_detail_inner">
  5613. <ulclass="cardinfo_head">
  5614. <liclass="cardno">BT13-068</li>
  5615. <li>C</li>
  5616. <liclass="cardtype">Digimon</li>
  5617. <liclass="cardlv">Lv.4</li>
  5618. </ul>
  5619. <divclass="card_name">KnightChessmon</div>
  5620. <divclass="cardinfo_top">
  5621. <divclass="card_img">
  5622. <imgsrc="../images/cardlist/card/BT13-068.png"alt="BT13-068KnightChessmon"></div>
  5623. <divclass="cardinfo_top_body">
  5624. <dl>
  5625. <dt>Form</dt>
  5626. <dd>Champion</dd>
  5627. </dl>
  5628. <dl>
  5629. <dt>Attribute</dt>
  5630. <dd>Virus</dd>
  5631. </dl>
  5632. <dl>
  5633. <dt>Type</dt>
  5634. <dd>Puppet</dd>
  5635. </dl>
  5636. <dl>
  5637. <dt>DP</dt>
  5638. <dd>4000</dl>
  5639. <dl>
  5640. <dt>PlayCost</dt>
  5641. <dd>5</dd>
  5642. </dl>
  5643. <dl>
  5644. <dt>DigivolveCost1</dt>
  5645. <dd>3fromLv.3</dd>
  5646. </dl>
  5647. <dl>
  5648. <dt>DigivolveCost2</dt>
  5649. <dd>3fromLv.3</dd>
  5650. </dl>
  5651. </div>
  5652. </div>
  5653. <divclass="cardinfo_bottom">
  5654. <dl>
  5655. <dt>Effect</dt>
  5656. <dd>Digivolve: 2 from Lv.3 w/[Chessmon] in name <br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [On Deletion] If it's your opponent's turn, you may play 1 level 4 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost.</dd>
  5657. </dl>
  5658. <dl>
  5659. <dt>Digivolveeffect</dt>
  5660. <dd>-</dd>
  5661. </dl>
  5662. <dl>
  5663. <dt>Securityeffect</dt>
  5664. <dd>-</dd>
  5665. </dl>
  5666. <dl>
  5667. <dt>Notes</dt>
  5668. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5669. </div>
  5670. </div>
  5671. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5672. </div>
  5673. </div>
  5674. </li>
  5675. <liclass="image_lists_itemdatapage-3">
  5676. <aclass="card_img">
  5677. <imgsrc="../images/cardlist/card/BT13-069.png"alt="BT13-069KingSukamon"></a>
  5678. <divclass="popup">
  5679. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5680. <divclass="card_detail_inner">
  5681. <ulclass="cardinfo_head">
  5682. <liclass="cardno">BT13-069</li>
  5683. <li>C</li>
  5684. <liclass="cardtype">Digimon</li>
  5685. <liclass="cardlv">Lv.5</li>
  5686. </ul>
  5687. <divclass="card_name">KingSukamon</div>
  5688. <divclass="cardinfo_top">
  5689. <divclass="card_img">
  5690. <imgsrc="../images/cardlist/card/BT13-069.png"alt="BT13-069KingSukamon"></div>
  5691. <divclass="cardinfo_top_body">
  5692. <dl>
  5693. <dt>Form</dt>
  5694. <dd>Ultimate</dd>
  5695. </dl>
  5696. <dl>
  5697. <dt>Attribute</dt>
  5698. <dd>Virus</dd>
  5699. </dl>
  5700. <dl>
  5701. <dt>Type</dt>
  5702. <dd>Mutant</dd>
  5703. </dl>
  5704. <dl>
  5705. <dt>DP</dt>
  5706. <dd>6000</dl>
  5707. <dl>
  5708. <dt>PlayCost</dt>
  5709. <dd>6</dd>
  5710. </dl>
  5711. <dl>
  5712. <dt>DigivolveCost1</dt>
  5713. <dd>4fromLv.4</dd>
  5714. </dl>
  5715. <dl>
  5716. <dt>DigivolveCost2</dt>
  5717. <dd>4fromLv.4</dd>
  5718. </dl>
  5719. </div>
  5720. </div>
  5721. <divclass="cardinfo_bottom">
  5722. <dl>
  5723. <dt>Effect</dt>
  5724. <dd>Digivolve: 3 from Lv.4 w/[Sukamon] in name <br>[When Attacking] You may play 1 level 4 or lower Digimon card with [Sukamon] in its name from your hand without paying the cost.</dd>
  5725. </dl>
  5726. <dl>
  5727. <dt>Digivolveeffect</dt>
  5728. <dd>[All Turns] When this Digimon would be deleted, by deleting 1 other Digimon with [Sukamon] in its name, prevent that deletion.</dd>
  5729. </dl>
  5730. <dl>
  5731. <dt>Securityeffect</dt>
  5732. <dd>-</dd>
  5733. </dl>
  5734. <dl>
  5735. <dt>Notes</dt>
  5736. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5737. </div>
  5738. </div>
  5739. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5740. </div>
  5741. </div>
  5742. </li>
  5743. <liclass="image_lists_itemdatapage-3">
  5744. <aclass="card_img">
  5745. <imgsrc="../images/cardlist/card/BT13-070.png"alt="BT13-070RookChessmon"></a>
  5746. <divclass="popup">
  5747. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5748. <divclass="card_detail_inner">
  5749. <ulclass="cardinfo_head">
  5750. <liclass="cardno">BT13-070</li>
  5751. <li>C</li>
  5752. <liclass="cardtype">Digimon</li>
  5753. <liclass="cardlv">Lv.5</li>
  5754. </ul>
  5755. <divclass="card_name">RookChessmon</div>
  5756. <divclass="cardinfo_top">
  5757. <divclass="card_img">
  5758. <imgsrc="../images/cardlist/card/BT13-070.png"alt="BT13-070RookChessmon"></div>
  5759. <divclass="cardinfo_top_body">
  5760. <dl>
  5761. <dt>Form</dt>
  5762. <dd>Ultimate</dd>
  5763. </dl>
  5764. <dl>
  5765. <dt>Attribute</dt>
  5766. <dd>Virus</dd>
  5767. </dl>
  5768. <dl>
  5769. <dt>Type</dt>
  5770. <dd>Puppet</dd>
  5771. </dl>
  5772. <dl>
  5773. <dt>DP</dt>
  5774. <dd>7000</dl>
  5775. <dl>
  5776. <dt>PlayCost</dt>
  5777. <dd>7</dd>
  5778. </dl>
  5779. <dl>
  5780. <dt>DigivolveCost1</dt>
  5781. <dd>4fromLv.4</dd>
  5782. </dl>
  5783. <dl>
  5784. <dt>DigivolveCost2</dt>
  5785. <dd>4fromLv.4</dd>
  5786. </dl>
  5787. </div>
  5788. </div>
  5789. <divclass="cardinfo_bottom">
  5790. <dl>
  5791. <dt>Effect</dt>
  5792. <dd>Digivolve: 3 from Lv.4 w/[Chessmon] in name <br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [On Deletion] If it's your opponent's turn, you may play 1 level 5 or lower Digimon card with [Chessmon] in its name from your hand without paying the cost.</dd>
  5793. </dl>
  5794. <dl>
  5795. <dt>Digivolveeffect</dt>
  5796. <dd>-</dd>
  5797. </dl>
  5798. <dl>
  5799. <dt>Securityeffect</dt>
  5800. <dd>-</dd>
  5801. </dl>
  5802. <dl>
  5803. <dt>Notes</dt>
  5804. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5805. </div>
  5806. </div>
  5807. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5808. </div>
  5809. </div>
  5810. </li>
  5811. <liclass="image_lists_itemdatapage-3">
  5812. <aclass="card_img">
  5813. <imgsrc="../images/cardlist/card/BT13-071.png"alt="BT13-071Giromon"></a>
  5814. <divclass="popup">
  5815. <divclass="card_detailcard_detail_black">
  5816. <divclass="card_detail_inner">
  5817. <ulclass="cardinfo_head">
  5818. <liclass="cardno">BT13-071</li>
  5819. <li>U</li>
  5820. <liclass="cardtype">Digimon</li>
  5821. <liclass="cardlv">Lv.5</li>
  5822. </ul>
  5823. <divclass="card_name">Giromon</div>
  5824. <divclass="cardinfo_top">
  5825. <divclass="card_img">
  5826. <imgsrc="../images/cardlist/card/BT13-071.png"alt="BT13-071Giromon"></div>
  5827. <divclass="cardinfo_top_body">
  5828. <dl>
  5829. <dt>Form</dt>
  5830. <dd>Ultimate</dd>
  5831. </dl>
  5832. <dl>
  5833. <dt>Attribute</dt>
  5834. <dd>Vaccine</dd>
  5835. </dl>
  5836. <dl>
  5837. <dt>Type</dt>
  5838. <dd>Mine</dd>
  5839. </dl>
  5840. <dl>
  5841. <dt>DP</dt>
  5842. <dd>8000</dl>
  5843. <dl>
  5844. <dt>PlayCost</dt>
  5845. <dd>8</dd>
  5846. </dl>
  5847. <dl>
  5848. <dt>DigivolveCost1</dt>
  5849. <dd>3fromLv.4</dd>
  5850. </dl>
  5851. <dl>
  5852. <dt>DigivolveCost2</dt>
  5853. <dd>-</dd>
  5854. </dl>
  5855. </div>
  5856. </div>
  5857. <divclass="cardinfo_bottom">
  5858. <dl>
  5859. <dt>Effect</dt>
  5860. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  5861. </dl>
  5862. <dl>
  5863. <dt>Digivolveeffect</dt>
  5864. <dd>[Opponent's Turn][Once Per Turn] When one of your Digimon becomes suspended, trash the top card of your opponent's security stack.</dd>
  5865. </dl>
  5866. <dl>
  5867. <dt>Securityeffect</dt>
  5868. <dd>-</dd>
  5869. </dl>
  5870. <dl>
  5871. <dt>Notes</dt>
  5872. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5873. </div>
  5874. </div>
  5875. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5876. </div>
  5877. </div>
  5878. </li>
  5879. <liclass="image_lists_itemdatapage-3">
  5880. <aclass="card_img">
  5881. <imgsrc="../images/cardlist/card/BT13-072.png"alt="BT13-072DoruGreymon"></a>
  5882. <divclass="popup">
  5883. <divclass="card_detailcard_detail_black">
  5884. <divclass="card_detail_inner">
  5885. <ulclass="cardinfo_head">
  5886. <liclass="cardno">BT13-072</li>
  5887. <li>C</li>
  5888. <liclass="cardtype">Digimon</li>
  5889. <liclass="cardlv">Lv.5</li>
  5890. </ul>
  5891. <divclass="card_name">DoruGreymon</div>
  5892. <divclass="cardinfo_top">
  5893. <divclass="card_img">
  5894. <imgsrc="../images/cardlist/card/BT13-072.png"alt="BT13-072DoruGreymon"></div>
  5895. <divclass="cardinfo_top_body">
  5896. <dl>
  5897. <dt>Form</dt>
  5898. <dd>Ultimate</dd>
  5899. </dl>
  5900. <dl>
  5901. <dt>Attribute</dt>
  5902. <dd>Data</dd>
  5903. </dl>
  5904. <dl>
  5905. <dt>Type</dt>
  5906. <dd>BeastDragon/XAntibody</dd>
  5907. </dl>
  5908. <dl>
  5909. <dt>DP</dt>
  5910. <dd>8000</dl>
  5911. <dl>
  5912. <dt>PlayCost</dt>
  5913. <dd>8</dd>
  5914. </dl>
  5915. <dl>
  5916. <dt>DigivolveCost1</dt>
  5917. <dd>3fromLv.4</dd>
  5918. </dl>
  5919. <dl>
  5920. <dt>DigivolveCost2</dt>
  5921. <dd>-</dd>
  5922. </dl>
  5923. </div>
  5924. </div>
  5925. <divclass="cardinfo_bottom">
  5926. <dl>
  5927. <dt>Effect</dt>
  5928. <dd>[When Digivolving] Reveal the top 3 cards of your deck. Place 1 card with the [X Antibody] trait among them as this Digimon's bottom digivolution card. If a card was placed by this effect, this Digimon's DP can't be reduced until the end of your opponent's turn. Trash the rest.</dd>
  5929. </dl>
  5930. <dl>
  5931. <dt>Digivolveeffect</dt>
  5932. <dd> [End of Your Turn][Once Per Turn] You may place 1 Digimon card with the [X Antibody] trait from your hand as this Digimon's bottom digivolution card.</dd>
  5933. </dl>
  5934. <dl>
  5935. <dt>Securityeffect</dt>
  5936. <dd>-</dd>
  5937. </dl>
  5938. <dl>
  5939. <dt>Notes</dt>
  5940. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  5941. </div>
  5942. </div>
  5943. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5944. </div>
  5945. </div>
  5946. </li>
  5947. <liclass="image_lists_itemdatapage-3">
  5948. <aclass="card_img">
  5949. <imgsrc="../images/cardlist/card/BT13-073.png"alt="BT13-073QueenChessmon"></a>
  5950. <divclass="popup">
  5951. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5952. <divclass="card_detail_inner">
  5953. <ulclass="cardinfo_head">
  5954. <liclass="cardno">BT13-073</li>
  5955. <li>U</li>
  5956. <liclass="cardtype">Digimon</li>
  5957. <liclass="cardlv">Lv.6</li>
  5958. </ul>
  5959. <divclass="card_name">QueenChessmon</div>
  5960. <divclass="cardinfo_top">
  5961. <divclass="card_img">
  5962. <imgsrc="../images/cardlist/card/BT13-073.png"alt="BT13-073QueenChessmon"></div>
  5963. <divclass="cardinfo_top_body">
  5964. <dl>
  5965. <dt>Form</dt>
  5966. <dd>Mega</dd>
  5967. </dl>
  5968. <dl>
  5969. <dt>Attribute</dt>
  5970. <dd>Virus</dd>
  5971. </dl>
  5972. <dl>
  5973. <dt>Type</dt>
  5974. <dd>Puppet</dd>
  5975. </dl>
  5976. <dl>
  5977. <dt>DP</dt>
  5978. <dd>12000</dl>
  5979. <dl>
  5980. <dt>PlayCost</dt>
  5981. <dd>11</dd>
  5982. </dl>
  5983. <dl>
  5984. <dt>DigivolveCost1</dt>
  5985. <dd>4fromLv.5</dd>
  5986. </dl>
  5987. <dl>
  5988. <dt>DigivolveCost2</dt>
  5989. <dd>4fromLv.5</dd>
  5990. </dl>
  5991. </div>
  5992. </div>
  5993. <divclass="cardinfo_bottom">
  5994. <dl>
  5995. <dt>Effect</dt>
  5996. <dd>Digivolve: 3 from Lv.5 w/[Chessmon] in name <br><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)<br> [All Turns] When one of your Digimon with [Chessmon] in its name is deleted, unsuspend this Digimon.</dd>
  5997. </dl>
  5998. <dl>
  5999. <dt>Digivolveeffect</dt>
  6000. <dd>-</dd>
  6001. </dl>
  6002. <dl>
  6003. <dt>Securityeffect</dt>
  6004. <dd>-</dd>
  6005. </dl>
  6006. <dl>
  6007. <dt>Notes</dt>
  6008. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6009. </div>
  6010. </div>
  6011. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6012. </div>
  6013. </div>
  6014. </li>
  6015. <liclass="image_lists_itemdatapage-3">
  6016. <aclass="card_img">
  6017. <imgsrc="../images/cardlist/card/BT13-074.png"alt="BT13-074PrinceMamemon"></a>
  6018. <divclass="popup">
  6019. <divclass="card_detailcard_detail_black">
  6020. <divclass="card_detail_inner">
  6021. <ulclass="cardinfo_head">
  6022. <liclass="cardno">BT13-074</li>
  6023. <li>U</li>
  6024. <liclass="cardtype">Digimon</li>
  6025. <liclass="cardlv">Lv.6</li>
  6026. </ul>
  6027. <divclass="card_name">PrinceMamemon</div>
  6028. <divclass="cardinfo_top">
  6029. <divclass="card_img">
  6030. <imgsrc="../images/cardlist/card/BT13-074.png"alt="BT13-074PrinceMamemon"></div>
  6031. <divclass="cardinfo_top_body">
  6032. <dl>
  6033. <dt>Form</dt>
  6034. <dd>Mega</dd>
  6035. </dl>
  6036. <dl>
  6037. <dt>Attribute</dt>
  6038. <dd>Data</dd>
  6039. </dl>
  6040. <dl>
  6041. <dt>Type</dt>
  6042. <dd>Mutant</dd>
  6043. </dl>
  6044. <dl>
  6045. <dt>DP</dt>
  6046. <dd>11000</dl>
  6047. <dl>
  6048. <dt>PlayCost</dt>
  6049. <dd>11</dd>
  6050. </dl>
  6051. <dl>
  6052. <dt>DigivolveCost1</dt>
  6053. <dd>3fromLv.5</dd>
  6054. </dl>
  6055. <dl>
  6056. <dt>DigivolveCost2</dt>
  6057. <dd>-</dd>
  6058. </dl>
  6059. </div>
  6060. </div>
  6061. <divclass="cardinfo_bottom">
  6062. <dl>
  6063. <dt>Effect</dt>
  6064. <dd>[On Play][When Digivolving] Reveal the top 3 cards of your deck. You may play 1 Digimon card that has [Mamemon] in its name and a play cost of 10 or less among them without paying the cost. Trash the rest.<br>[All Turns] All of your Digimon with [Mamemon] in their names or the [Royal Knight] trait gain <Jamming> and <Reboot>.</dd>
  6065. </dl>
  6066. <dl>
  6067. <dt>Digivolveeffect</dt>
  6068. <dd>-</dd>
  6069. </dl>
  6070. <dl>
  6071. <dt>Securityeffect</dt>
  6072. <dd>-</dd>
  6073. </dl>
  6074. <dl>
  6075. <dt>Notes</dt>
  6076. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6077. </div>
  6078. </div>
  6079. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6080. </div>
  6081. </div>
  6082. </li>
  6083. <liclass="image_lists_itemdatapage-3">
  6084. <aclass="card_img">
  6085. <imgsrc="../images/cardlist/card/BT13-075.png"alt="BT13-075Alphamon"></a>
  6086. <divclass="popup">
  6087. <divclass="card_detailcard_detail_black">
  6088. <divclass="card_detail_inner">
  6089. <ulclass="cardinfo_head">
  6090. <liclass="cardno">BT13-075</li>
  6091. <li>SR</li>
  6092. <liclass="cardtype">Digimon</li>
  6093. <liclass="cardlv">Lv.6</li>
  6094. </ul>
  6095. <divclass="card_name">Alphamon</div>
  6096. <divclass="cardinfo_top">
  6097. <divclass="card_img">
  6098. <imgsrc="../images/cardlist/card/BT13-075.png"alt="BT13-075Alphamon"></div>
  6099. <divclass="cardinfo_top_body">
  6100. <dl>
  6101. <dt>Form</dt>
  6102. <dd>Mega</dd>
  6103. </dl>
  6104. <dl>
  6105. <dt>Attribute</dt>
  6106. <dd>Vaccine</dd>
  6107. </dl>
  6108. <dl>
  6109. <dt>Type</dt>
  6110. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  6111. </dl>
  6112. <dl>
  6113. <dt>DP</dt>
  6114. <dd>12000</dl>
  6115. <dl>
  6116. <dt>PlayCost</dt>
  6117. <dd>12</dd>
  6118. </dl>
  6119. <dl>
  6120. <dt>DigivolveCost1</dt>
  6121. <dd>4fromLv.5</dd>
  6122. </dl>
  6123. <dl>
  6124. <dt>DigivolveCost2</dt>
  6125. <dd>-</dd>
  6126. </dl>
  6127. </div>
  6128. </div>
  6129. <divclass="cardinfo_bottom">
  6130. <dl>
  6131. <dt>Effect</dt>
  6132. <dd>[On Play][When Digivolving] By placing 1 Digimon card with the [X Antibody] or [Royal Knight] trait from your trash as this Digimon's bottom digivolution card, all of your opponent's play cost 10 or higher Digimon can't attack players until the end of their turn.<br>[All Turns][Once Per Turn] When an effect would remove this Digimon from the battle area, by returning 1 card with the [X Antibody] or [Royal Knight] trait from this Digimon's digivolution cards to the bottom of the deck, prevent that removal.</dd>
  6133. </dl>
  6134. <dl>
  6135. <dt>Digivolveeffect</dt>
  6136. <dd>-</dd>
  6137. </dl>
  6138. <dl>
  6139. <dt>Securityeffect</dt>
  6140. <dd>-</dd>
  6141. </dl>
  6142. <dl>
  6143. <dt>Notes</dt>
  6144. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6145. </div>
  6146. </div>
  6147. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6148. </div>
  6149. </div>
  6150. </li>
  6151. <liclass="image_lists_itemdatapage-3">
  6152. <aclass="card_img">
  6153. <imgsrc="../images/cardlist/card/BT13-075_P1.png"alt="BT13-075Alphamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6154. </a>
  6155. <divclass="popup">
  6156. <divclass="card_detailcard_detail_black">
  6157. <divclass="card_detail_inner">
  6158. <ulclass="cardinfo_head">
  6159. <liclass="cardno">BT13-075</li>
  6160. <li>SR</li>
  6161. <liclass="cardtype">Digimon</li>
  6162. <liclass="cardlv">Lv.6</li>
  6163. <liclass="cardtypecardParallel">AlternativeArt</li>
  6164. </ul>
  6165. <divclass="card_name">Alphamon</div>
  6166. <divclass="cardinfo_top">
  6167. <divclass="card_img">
  6168. <imgsrc="../images/cardlist/card/BT13-075_P1.png"alt="BT13-075Alphamon"></div>
  6169. <divclass="cardinfo_top_body">
  6170. <dl>
  6171. <dt>Form</dt>
  6172. <dd>Mega</dd>
  6173. </dl>
  6174. <dl>
  6175. <dt>Attribute</dt>
  6176. <dd>Vaccine</dd>
  6177. </dl>
  6178. <dl>
  6179. <dt>Type</dt>
  6180. <dd>HolyWarrior/RoyalKnight/XAntibody</dd>
  6181. </dl>
  6182. <dl>
  6183. <dt>DP</dt>
  6184. <dd>12000</dl>
  6185. <dl>
  6186. <dt>PlayCost</dt>
  6187. <dd>12</dd>
  6188. </dl>
  6189. <dl>
  6190. <dt>DigivolveCost1</dt>
  6191. <dd>4fromLv.5</dd>
  6192. </dl>
  6193. <dl>
  6194. <dt>DigivolveCost2</dt>
  6195. <dd>-</dd>
  6196. </dl>
  6197. </div>
  6198. </div>
  6199. <divclass="cardinfo_bottom">
  6200. <dl>
  6201. <dt>Effect</dt>
  6202. <dd>[On Play][When Digivolving] By placing 1 Digimon card with the [X Antibody] or [Royal Knight] trait from your trash as this Digimon's bottom digivolution card, all of your opponent's play cost 10 or higher Digimon can't attack players until the end of their turn.<br>[All Turns][Once Per Turn] When an effect would remove this Digimon from the battle area, by returning 1 card with the [X Antibody] or [Royal Knight] trait from this Digimon's digivolution cards to the bottom of the deck, prevent that removal.</dd>
  6203. </dl>
  6204. <dl>
  6205. <dt>Digivolveeffect</dt>
  6206. <dd>-</dd>
  6207. </dl>
  6208. <dl>
  6209. <dt>Securityeffect</dt>
  6210. <dd>-</dd>
  6211. </dl>
  6212. <dl>
  6213. <dt>Notes</dt>
  6214. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6215. </div>
  6216. </div>
  6217. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6218. </div>
  6219. </div>
  6220. </li>
  6221. <liclass="image_lists_itemdatapage-3">
  6222. <aclass="card_img">
  6223. <imgsrc="../images/cardlist/card/BT13-076.png"alt="BT13-076KingEtemon"></a>
  6224. <divclass="popup">
  6225. <divclass="card_detailcard_detail_black_yellowmulticolor">
  6226. <divclass="card_detail_inner">
  6227. <ulclass="cardinfo_head">
  6228. <liclass="cardno">BT13-076</li>
  6229. <li>U</li>
  6230. <liclass="cardtype">Digimon</li>
  6231. <liclass="cardlv">Lv.6</li>
  6232. </ul>
  6233. <divclass="card_name">KingEtemon</div>
  6234. <divclass="cardinfo_top">
  6235. <divclass="card_img">
  6236. <imgsrc="../images/cardlist/card/BT13-076.png"alt="BT13-076KingEtemon"></div>
  6237. <divclass="cardinfo_top_body">
  6238. <dl>
  6239. <dt>Form</dt>
  6240. <dd>Mega</dd>
  6241. </dl>
  6242. <dl>
  6243. <dt>Attribute</dt>
  6244. <dd>Virus</dd>
  6245. </dl>
  6246. <dl>
  6247. <dt>Type</dt>
  6248. <dd>Puppet</dd>
  6249. </dl>
  6250. <dl>
  6251. <dt>DP</dt>
  6252. <dd>12000</dl>
  6253. <dl>
  6254. <dt>PlayCost</dt>
  6255. <dd>13</dd>
  6256. </dl>
  6257. <dl>
  6258. <dt>DigivolveCost1</dt>
  6259. <dd>5fromLv.5</dd>
  6260. </dl>
  6261. <dl>
  6262. <dt>DigivolveCost2</dt>
  6263. <dd>5fromLv.5</dd>
  6264. </dl>
  6265. </div>
  6266. </div>
  6267. <divclass="cardinfo_bottom">
  6268. <dl>
  6269. <dt>Effect</dt>
  6270. <dd>Digivolve: 4 from Lv.5 w/[Etemon] or [Sukamon] in name<br>[All Turns][Once Per Turn] When another Digimon with [Etemon] or [Sukamon] in its name is deleted, 1 of your opponent's Digimon gets -3000 DP and gains <Security Attack -1> until the end of your opponent's turn.<br> [Opponent's Turn] All of your Digimon with [Etemon] or [Sukamon] in their names gain <Blocker> and can't be returned to hands or decks.</dd>
  6271. </dl>
  6272. <dl>
  6273. <dt>Digivolveeffect</dt>
  6274. <dd>-</dd>
  6275. </dl>
  6276. <dl>
  6277. <dt>Securityeffect</dt>
  6278. <dd>-</dd>
  6279. </dl>
  6280. <dl>
  6281. <dt>Notes</dt>
  6282. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6283. </div>
  6284. </div>
  6285. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6286. </div>
  6287. </div>
  6288. </li>
  6289. <liclass="image_lists_itemdatapage-3">
  6290. <aclass="card_img">
  6291. <imgsrc="../images/cardlist/card/BT13-077.png"alt="BT13-077Craniamon"></a>
  6292. <divclass="popup">
  6293. <divclass="card_detailcard_detail_black">
  6294. <divclass="card_detail_inner">
  6295. <ulclass="cardinfo_head">
  6296. <liclass="cardno">BT13-077</li>
  6297. <li>SR</li>
  6298. <liclass="cardtype">Digimon</li>
  6299. <liclass="cardlv">Lv.6</li>
  6300. </ul>
  6301. <divclass="card_name">Craniamon</div>
  6302. <divclass="cardinfo_top">
  6303. <divclass="card_img">
  6304. <imgsrc="../images/cardlist/card/BT13-077.png"alt="BT13-077Craniamon"></div>
  6305. <divclass="cardinfo_top_body">
  6306. <dl>
  6307. <dt>Form</dt>
  6308. <dd>Mega</dd>
  6309. </dl>
  6310. <dl>
  6311. <dt>Attribute</dt>
  6312. <dd>Vaccine</dd>
  6313. </dl>
  6314. <dl>
  6315. <dt>Type</dt>
  6316. <dd>HolyWarrior/RoyalKnight</dd>
  6317. </dl>
  6318. <dl>
  6319. <dt>DP</dt>
  6320. <dd>13000</dl>
  6321. <dl>
  6322. <dt>PlayCost</dt>
  6323. <dd>13</dd>
  6324. </dl>
  6325. <dl>
  6326. <dt>DigivolveCost1</dt>
  6327. <dd>5fromLv.5</dd>
  6328. </dl>
  6329. <dl>
  6330. <dt>DigivolveCost2</dt>
  6331. <dd>-</dd>
  6332. </dl>
  6333. </div>
  6334. </div>
  6335. <divclass="cardinfo_bottom">
  6336. <dl>
  6337. <dt>Effect</dt>
  6338. <dd><Blocker><br> [On Play][When Digivolving] Until the end of your opponent's turn, this Digimon isn't affected by the effects of your opponent's Digimon.<br> [End of Opponent’s Turn] Choose 1 of your opponent's Digimon. Your opponent attacks with the chosen Digimon.</dd>
  6339. </dl>
  6340. <dl>
  6341. <dt>Digivolveeffect</dt>
  6342. <dd>-</dd>
  6343. </dl>
  6344. <dl>
  6345. <dt>Securityeffect</dt>
  6346. <dd>-</dd>
  6347. </dl>
  6348. <dl>
  6349. <dt>Notes</dt>
  6350. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6351. </div>
  6352. </div>
  6353. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6354. </div>
  6355. </div>
  6356. </li>
  6357. <liclass="image_lists_itemdatapage-3">
  6358. <aclass="card_img">
  6359. <imgsrc="../images/cardlist/card/BT13-077_P1.png"alt="BT13-077Craniamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  6360. </a>
  6361. <divclass="popup">
  6362. <divclass="card_detailcard_detail_black">
  6363. <divclass="card_detail_inner">
  6364. <ulclass="cardinfo_head">
  6365. <liclass="cardno">BT13-077</li>
  6366. <li>SR</li>
  6367. <liclass="cardtype">Digimon</li>
  6368. <liclass="cardlv">Lv.6</li>
  6369. <liclass="cardtypecardParallel">AlternativeArt</li>
  6370. </ul>
  6371. <divclass="card_name">Craniamon</div>
  6372. <divclass="cardinfo_top">
  6373. <divclass="card_img">
  6374. <imgsrc="../images/cardlist/card/BT13-077_P1.png"alt="BT13-077Craniamon"></div>
  6375. <divclass="cardinfo_top_body">
  6376. <dl>
  6377. <dt>Form</dt>
  6378. <dd>Mega</dd>
  6379. </dl>
  6380. <dl>
  6381. <dt>Attribute</dt>
  6382. <dd>Vaccine</dd>
  6383. </dl>
  6384. <dl>
  6385. <dt>Type</dt>
  6386. <dd>HolyWarrior/RoyalKnight</dd>
  6387. </dl>
  6388. <dl>
  6389. <dt>DP</dt>
  6390. <dd>13000</dl>
  6391. <dl>
  6392. <dt>PlayCost</dt>
  6393. <dd>13</dd>
  6394. </dl>
  6395. <dl>
  6396. <dt>DigivolveCost1</dt>
  6397. <dd>5fromLv.5</dd>
  6398. </dl>
  6399. <dl>
  6400. <dt>DigivolveCost2</dt>
  6401. <dd>-</dd>
  6402. </dl>
  6403. </div>
  6404. </div>
  6405. <divclass="cardinfo_bottom">
  6406. <dl>
  6407. <dt>Effect</dt>
  6408. <dd><Blocker><br> [On Play][When Digivolving] Until the end of your opponent's turn, this Digimon isn't affected by the effects of your opponent's Digimon.<br> [End of Opponent’s Turn] Choose 1 of your opponent's Digimon. Your opponent attacks with the chosen Digimon.</dd>
  6409. </dl>
  6410. <dl>
  6411. <dt>Digivolveeffect</dt>
  6412. <dd>-</dd>
  6413. </dl>
  6414. <dl>
  6415. <dt>Securityeffect</dt>
  6416. <dd>-</dd>
  6417. </dl>
  6418. <dl>
  6419. <dt>Notes</dt>
  6420. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6421. </div>
  6422. </div>
  6423. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6424. </div>
  6425. </div>
  6426. </li>
  6427. <liclass="image_lists_itemdatapage-3">
  6428. <aclass="card_img">
  6429. <imgsrc="../images/cardlist/card/BT13-078.png"alt="BT13-078Phascomon"></a>
  6430. <divclass="popup">
  6431. <divclass="card_detailcard_detail_purple">
  6432. <divclass="card_detail_inner">
  6433. <ulclass="cardinfo_head">
  6434. <liclass="cardno">BT13-078</li>
  6435. <li>C</li>
  6436. <liclass="cardtype">Digimon</li>
  6437. <liclass="cardlv">Lv.3</li>
  6438. </ul>
  6439. <divclass="card_name">Phascomon</div>
  6440. <divclass="cardinfo_top">
  6441. <divclass="card_img">
  6442. <imgsrc="../images/cardlist/card/BT13-078.png"alt="BT13-078Phascomon"></div>
  6443. <divclass="cardinfo_top_body">
  6444. <dl>
  6445. <dt>Form</dt>
  6446. <dd>Rookie</dd>
  6447. </dl>
  6448. <dl>
  6449. <dt>Attribute</dt>
  6450. <dd>Virus</dd>
  6451. </dl>
  6452. <dl>
  6453. <dt>Type</dt>
  6454. <dd>DarkAnimal</dd>
  6455. </dl>
  6456. <dl>
  6457. <dt>DP</dt>
  6458. <dd>1000</dl>
  6459. <dl>
  6460. <dt>PlayCost</dt>
  6461. <dd>3</dd>
  6462. </dl>
  6463. <dl>
  6464. <dt>DigivolveCost1</dt>
  6465. <dd>0fromLv.2</dd>
  6466. </dl>
  6467. <dl>
  6468. <dt>DigivolveCost2</dt>
  6469. <dd>-</dd>
  6470. </dl>
  6471. </div>
  6472. </div>
  6473. <divclass="cardinfo_bottom">
  6474. <dl>
  6475. <dt>Effect</dt>
  6476. <dd>[On Deletion] <Draw 1> (Draw 1 card from your deck.) Then, trash 1 card in your hand.</dd>
  6477. </dl>
  6478. <dl>
  6479. <dt>Digivolveeffect</dt>
  6480. <dd>[End of Opponent’s Turn][Once Per Turn] <Draw 1>. Then, trash 1 card in your hand.</dd>
  6481. </dl>
  6482. <dl>
  6483. <dt>Securityeffect</dt>
  6484. <dd>-</dd>
  6485. </dl>
  6486. <dl>
  6487. <dt>Notes</dt>
  6488. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6489. </div>
  6490. </div>
  6491. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6492. </div>
  6493. </div>
  6494. </li>
  6495. <liclass="image_lists_itemdatapage-3">
  6496. <aclass="card_img">
  6497. <imgsrc="../images/cardlist/card/BT13-079.png"alt="BT13-079Falcomon"></a>
  6498. <divclass="popup">
  6499. <divclass="card_detailcard_detail_purple">
  6500. <divclass="card_detail_inner">
  6501. <ulclass="cardinfo_head">
  6502. <liclass="cardno">BT13-079</li>
  6503. <li>C</li>
  6504. <liclass="cardtype">Digimon</li>
  6505. <liclass="cardlv">Lv.3</li>
  6506. </ul>
  6507. <divclass="card_name">Falcomon</div>
  6508. <divclass="cardinfo_top">
  6509. <divclass="card_img">
  6510. <imgsrc="../images/cardlist/card/BT13-079.png"alt="BT13-079Falcomon"></div>
  6511. <divclass="cardinfo_top_body">
  6512. <dl>
  6513. <dt>Form</dt>
  6514. <dd>Rookie</dd>
  6515. </dl>
  6516. <dl>
  6517. <dt>Attribute</dt>
  6518. <dd>Vaccine</dd>
  6519. </dl>
  6520. <dl>
  6521. <dt>Type</dt>
  6522. <dd>Avian</dd>
  6523. </dl>
  6524. <dl>
  6525. <dt>DP</dt>
  6526. <dd>1000</dl>
  6527. <dl>
  6528. <dt>PlayCost</dt>
  6529. <dd>3</dd>
  6530. </dl>
  6531. <dl>
  6532. <dt>DigivolveCost1</dt>
  6533. <dd>0fromLv.2</dd>
  6534. </dl>
  6535. <dl>
  6536. <dt>DigivolveCost2</dt>
  6537. <dd>-</dd>
  6538. </dl>
  6539. </div>
  6540. </div>
  6541. <divclass="cardinfo_bottom">
  6542. <dl>
  6543. <dt>Effect</dt>
  6544. <dd>[On Play] 1 of your purple Digimon gains <Retaliation> until the end of your opponent's turn.</dd>
  6545. </dl>
  6546. <dl>
  6547. <dt>Digivolveeffect</dt>
  6548. <dd>[On Deletion] If deleted outside of a battle, your opponent trashes 1 card in their hand.</dd>
  6549. </dl>
  6550. <dl>
  6551. <dt>Securityeffect</dt>
  6552. <dd>-</dd>
  6553. </dl>
  6554. <dl>
  6555. <dt>Notes</dt>
  6556. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6557. </div>
  6558. </div>
  6559. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6560. </div>
  6561. </div>
  6562. </li>
  6563. <liclass="image_lists_itemdatapage-3">
  6564. <aclass="card_img">
  6565. <imgsrc="../images/cardlist/card/BT13-080.png"alt="BT13-080ProtoGizmon"></a>
  6566. <divclass="popup">
  6567. <divclass="card_detailcard_detail_purple">
  6568. <divclass="card_detail_inner">
  6569. <ulclass="cardinfo_head">
  6570. <liclass="cardno">BT13-080</li>
  6571. <li>C</li>
  6572. <liclass="cardtype">Digimon</li>
  6573. <liclass="cardlv">Lv.3</li>
  6574. </ul>
  6575. <divclass="card_name">ProtoGizmon</div>
  6576. <divclass="cardinfo_top">
  6577. <divclass="card_img">
  6578. <imgsrc="../images/cardlist/card/BT13-080.png"alt="BT13-080ProtoGizmon"></div>
  6579. <divclass="cardinfo_top_body">
  6580. <dl>
  6581. <dt>Form</dt>
  6582. <dd>Rookie</dd>
  6583. </dl>
  6584. <dl>
  6585. <dt>Attribute</dt>
  6586. <dd>Unknown</dd>
  6587. </dl>
  6588. <dl>
  6589. <dt>Type</dt>
  6590. <dd>Unknown</dd>
  6591. </dl>
  6592. <dl>
  6593. <dt>DP</dt>
  6594. <dd>3000</dl>
  6595. <dl>
  6596. <dt>PlayCost</dt>
  6597. <dd>3</dd>
  6598. </dl>
  6599. <dl>
  6600. <dt>DigivolveCost1</dt>
  6601. <dd>-</dd>
  6602. </dl>
  6603. <dl>
  6604. <dt>DigivolveCost2</dt>
  6605. <dd>-</dd>
  6606. </dl>
  6607. </div>
  6608. </div>
  6609. <divclass="cardinfo_bottom">
  6610. <dl>
  6611. <dt>Effect</dt>
  6612. <dd>When you would play this card, by deleting 1 of your level 2 Digimon in the breeding area, reduce the play cost by 2.<br> [On Play] <Draw 1>. Then, trash 1 card in your hand.<br> [All Turns] This Digimon can't digivolve.<br> [On Deletion] By returning 2 cards with [Gizmon] in their names from your trash to the bottom of the deck in any order, you may play 1 [Gizmon: AT] from your trash without paying the cost.</dd>
  6613. </dl>
  6614. <dl>
  6615. <dt>Digivolveeffect</dt>
  6616. <dd>-</dd>
  6617. </dl>
  6618. <dl>
  6619. <dt>Securityeffect</dt>
  6620. <dd>-</dd>
  6621. </dl>
  6622. <dl>
  6623. <dt>Notes</dt>
  6624. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6625. </div>
  6626. </div>
  6627. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6628. </div>
  6629. </div>
  6630. </li>
  6631. <liclass="image_lists_itemdatapage-3">
  6632. <aclass="card_img">
  6633. <imgsrc="../images/cardlist/card/BT13-081.png"alt="BT13-081Porcupamon"></a>
  6634. <divclass="popup">
  6635. <divclass="card_detailcard_detail_purple">
  6636. <divclass="card_detail_inner">
  6637. <ulclass="cardinfo_head">
  6638. <liclass="cardno">BT13-081</li>
  6639. <li>C</li>
  6640. <liclass="cardtype">Digimon</li>
  6641. <liclass="cardlv">Lv.4</li>
  6642. </ul>
  6643. <divclass="card_name">Porcupamon</div>
  6644. <divclass="cardinfo_top">
  6645. <divclass="card_img">
  6646. <imgsrc="../images/cardlist/card/BT13-081.png"alt="BT13-081Porcupamon"></div>
  6647. <divclass="cardinfo_top_body">
  6648. <dl>
  6649. <dt>Form</dt>
  6650. <dd>Champion</dd>
  6651. </dl>
  6652. <dl>
  6653. <dt>Attribute</dt>
  6654. <dd>Virus</dd>
  6655. </dl>
  6656. <dl>
  6657. <dt>Type</dt>
  6658. <dd>Puppet</dd>
  6659. </dl>
  6660. <dl>
  6661. <dt>DP</dt>
  6662. <dd>3000</dl>
  6663. <dl>
  6664. <dt>PlayCost</dt>
  6665. <dd>4</dd>
  6666. </dl>
  6667. <dl>
  6668. <dt>DigivolveCost1</dt>
  6669. <dd>2fromLv.3</dd>
  6670. </dl>
  6671. <dl>
  6672. <dt>DigivolveCost2</dt>
  6673. <dd>-</dd>
  6674. </dl>
  6675. </div>
  6676. </div>
  6677. <divclass="cardinfo_bottom">
  6678. <dl>
  6679. <dt>Effect</dt>
  6680. <dd>[On Play][On Deletion] Delete 1 of your opponent's level 3 Digimon.</dd>
  6681. </dl>
  6682. <dl>
  6683. <dt>Digivolveeffect</dt>
  6684. <dd>[End of Opponent’s Turn][Once Per Turn] <Draw 1>. Then, trash 1 card in your hand.</dd>
  6685. </dl>
  6686. <dl>
  6687. <dt>Securityeffect</dt>
  6688. <dd>-</dd>
  6689. </dl>
  6690. <dl>
  6691. <dt>Notes</dt>
  6692. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6693. </div>
  6694. </div>
  6695. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6696. </div>
  6697. </div>
  6698. </li>
  6699. <liclass="image_lists_itemdatapage-3">
  6700. <aclass="card_img">
  6701. <imgsrc="../images/cardlist/card/BT13-082.png"alt="BT13-082Peckmon"></a>
  6702. <divclass="popup">
  6703. <divclass="card_detailcard_detail_purple">
  6704. <divclass="card_detail_inner">
  6705. <ulclass="cardinfo_head">
  6706. <liclass="cardno">BT13-082</li>
  6707. <li>C</li>
  6708. <liclass="cardtype">Digimon</li>
  6709. <liclass="cardlv">Lv.4</li>
  6710. </ul>
  6711. <divclass="card_name">Peckmon</div>
  6712. <divclass="cardinfo_top">
  6713. <divclass="card_img">
  6714. <imgsrc="../images/cardlist/card/BT13-082.png"alt="BT13-082Peckmon"></div>
  6715. <divclass="cardinfo_top_body">
  6716. <dl>
  6717. <dt>Form</dt>
  6718. <dd>Champion</dd>
  6719. </dl>
  6720. <dl>
  6721. <dt>Attribute</dt>
  6722. <dd>Vaccine</dd>
  6723. </dl>
  6724. <dl>
  6725. <dt>Type</dt>
  6726. <dd>Avian</dd>
  6727. </dl>
  6728. <dl>
  6729. <dt>DP</dt>
  6730. <dd>5000</dl>
  6731. <dl>
  6732. <dt>PlayCost</dt>
  6733. <dd>5</dd>
  6734. </dl>
  6735. <dl>
  6736. <dt>DigivolveCost1</dt>
  6737. <dd>2fromLv.3</dd>
  6738. </dl>
  6739. <dl>
  6740. <dt>DigivolveCost2</dt>
  6741. <dd>-</dd>
  6742. </dl>
  6743. </div>
  6744. </div>
  6745. <divclass="cardinfo_bottom">
  6746. <dl>
  6747. <dt>Effect</dt>
  6748. <dd><Blocker> (When an opponent's Digimon attacks, you may suspend this Digimon to force the opponent to attack it instead.)</dd>
  6749. </dl>
  6750. <dl>
  6751. <dt>Digivolveeffect</dt>
  6752. <dd>[On Deletion] If deleted outside of a battle, your opponent trashes 1 card in their hand.</dd>
  6753. </dl>
  6754. <dl>
  6755. <dt>Securityeffect</dt>
  6756. <dd>-</dd>
  6757. </dl>
  6758. <dl>
  6759. <dt>Notes</dt>
  6760. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6761. </div>
  6762. </div>
  6763. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6764. </div>
  6765. </div>
  6766. </li>
  6767. <liclass="image_lists_itemdatapage-3">
  6768. <aclass="card_img">
  6769. <imgsrc="../images/cardlist/card/BT13-083.png"alt="BT13-083Gizmon:AT"></a>
  6770. <divclass="popup">
  6771. <divclass="card_detailcard_detail_purple">
  6772. <divclass="card_detail_inner">
  6773. <ulclass="cardinfo_head">
  6774. <liclass="cardno">BT13-083</li>
  6775. <li>C</li>
  6776. <liclass="cardtype">Digimon</li>
  6777. <liclass="cardlv">Lv.4</li>
  6778. </ul>
  6779. <divclass="card_name">Gizmon:AT</div>
  6780. <divclass="cardinfo_top">
  6781. <divclass="card_img">
  6782. <imgsrc="../images/cardlist/card/BT13-083.png"alt="BT13-083Gizmon:AT"></div>
  6783. <divclass="cardinfo_top_body">
  6784. <dl>
  6785. <dt>Form</dt>
  6786. <dd>Champion</dd>
  6787. </dl>
  6788. <dl>
  6789. <dt>Attribute</dt>
  6790. <dd>Unknown</dd>
  6791. </dl>
  6792. <dl>
  6793. <dt>Type</dt>
  6794. <dd>Unknown</dd>
  6795. </dl>
  6796. <dl>
  6797. <dt>DP</dt>
  6798. <dd>6000</dl>
  6799. <dl>
  6800. <dt>PlayCost</dt>
  6801. <dd>6</dd>
  6802. </dl>
  6803. <dl>
  6804. <dt>DigivolveCost1</dt>
  6805. <dd>-</dd>
  6806. </dl>
  6807. <dl>
  6808. <dt>DigivolveCost2</dt>
  6809. <dd>-</dd>
  6810. </dl>
  6811. </div>
  6812. </div>
  6813. <divclass="cardinfo_bottom">
  6814. <dl>
  6815. <dt>Effect</dt>
  6816. <dd>When you would play this card, by deleting 1 of your level 3 Digimon, reduce the play cost by 4.<br> [On Play] <Draw 2>. Then, trash 2 cards in your hand.<br> [All Turns] This Digimon can't digivolve.<br> [On Deletion] By returning 2 cards with [Gizmon] in their names from your trash to the bottom of the deck in any order, you may play 1 [Gizmon: XT] from your trash without paying the cost.</dd>
  6817. </dl>
  6818. <dl>
  6819. <dt>Digivolveeffect</dt>
  6820. <dd>-</dd>
  6821. </dl>
  6822. <dl>
  6823. <dt>Securityeffect</dt>
  6824. <dd>-</dd>
  6825. </dl>
  6826. <dl>
  6827. <dt>Notes</dt>
  6828. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6829. </div>
  6830. </div>
  6831. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6832. </div>
  6833. </div>
  6834. </li>
  6835. <liclass="image_lists_itemdatapage-3">
  6836. <aclass="card_img">
  6837. <imgsrc="../images/cardlist/card/BT13-084.png"alt="BT13-084Astamon"></a>
  6838. <divclass="popup">
  6839. <divclass="card_detailcard_detail_purple">
  6840. <divclass="card_detail_inner">
  6841. <ulclass="cardinfo_head">
  6842. <liclass="cardno">BT13-084</li>
  6843. <li>C</li>
  6844. <liclass="cardtype">Digimon</li>
  6845. <liclass="cardlv">Lv.5</li>
  6846. </ul>
  6847. <divclass="card_name">Astamon</div>
  6848. <divclass="cardinfo_top">
  6849. <divclass="card_img">
  6850. <imgsrc="../images/cardlist/card/BT13-084.png"alt="BT13-084Astamon"></div>
  6851. <divclass="cardinfo_top_body">
  6852. <dl>
  6853. <dt>Form</dt>
  6854. <dd>Ultimate</dd>
  6855. </dl>
  6856. <dl>
  6857. <dt>Attribute</dt>
  6858. <dd>Virus</dd>
  6859. </dl>
  6860. <dl>
  6861. <dt>Type</dt>
  6862. <dd>Wizard</dd>
  6863. </dl>
  6864. <dl>
  6865. <dt>DP</dt>
  6866. <dd>7000</dl>
  6867. <dl>
  6868. <dt>PlayCost</dt>
  6869. <dd>7</dd>
  6870. </dl>
  6871. <dl>
  6872. <dt>DigivolveCost1</dt>
  6873. <dd>3fromLv.4</dd>
  6874. </dl>
  6875. <dl>
  6876. <dt>DigivolveCost2</dt>
  6877. <dd>-</dd>
  6878. </dl>
  6879. </div>
  6880. </div>
  6881. <divclass="cardinfo_bottom">
  6882. <dl>
  6883. <dt>Effect</dt>
  6884. <dd>[On Play][When Digivolving] By deleting 1 of your other purple Digimon, this Digimon may digivolve into a Digimon card with [Belphemon] in its name in your hand without paying the cost.</dd>
  6885. </dl>
  6886. <dl>
  6887. <dt>Digivolveeffect</dt>
  6888. <dd>[Opponent's Turn][Once Per Turn] When a card is trashed from your hand, you may play 1 level 4 or lower purple Digimon card from your trash without paying the cost.</dd>
  6889. </dl>
  6890. <dl>
  6891. <dt>Securityeffect</dt>
  6892. <dd>-</dd>
  6893. </dl>
  6894. <dl>
  6895. <dt>Notes</dt>
  6896. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6897. </div>
  6898. </div>
  6899. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6900. </div>
  6901. </div>
  6902. </li>
  6903. <liclass="image_lists_itemdatapage-3">
  6904. <aclass="card_img">
  6905. <imgsrc="../images/cardlist/card/BT13-085.png"alt="BT13-085Crowmon"></a>
  6906. <divclass="popup">
  6907. <divclass="card_detailcard_detail_purple">
  6908. <divclass="card_detail_inner">
  6909. <ulclass="cardinfo_head">
  6910. <liclass="cardno">BT13-085</li>
  6911. <li>C</li>
  6912. <liclass="cardtype">Digimon</li>
  6913. <liclass="cardlv">Lv.5</li>
  6914. </ul>
  6915. <divclass="card_name">Crowmon</div>
  6916. <divclass="cardinfo_top">
  6917. <divclass="card_img">
  6918. <imgsrc="../images/cardlist/card/BT13-085.png"alt="BT13-085Crowmon"></div>
  6919. <divclass="cardinfo_top_body">
  6920. <dl>
  6921. <dt>Form</dt>
  6922. <dd>Ultimate</dd>
  6923. </dl>
  6924. <dl>
  6925. <dt>Attribute</dt>
  6926. <dd>Vaccine</dd>
  6927. </dl>
  6928. <dl>
  6929. <dt>Type</dt>
  6930. <dd>MysteriousBird</dd>
  6931. </dl>
  6932. <dl>
  6933. <dt>DP</dt>
  6934. <dd>7000</dl>
  6935. <dl>
  6936. <dt>PlayCost</dt>
  6937. <dd>7</dd>
  6938. </dl>
  6939. <dl>
  6940. <dt>DigivolveCost1</dt>
  6941. <dd>3fromLv.4</dd>
  6942. </dl>
  6943. <dl>
  6944. <dt>DigivolveCost2</dt>
  6945. <dd>-</dd>
  6946. </dl>
  6947. </div>
  6948. </div>
  6949. <divclass="cardinfo_bottom">
  6950. <dl>
  6951. <dt>Effect</dt>
  6952. <dd>[When Attacking] If you have a Tamer, this Digimon may digivolve into [Ravemon] in your trash for the digivolution cost.</dd>
  6953. </dl>
  6954. <dl>
  6955. <dt>Digivolveeffect</dt>
  6956. <dd>[On Deletion] If deleted outside of a battle, you may play 1 level 4 or lower purple Digimon card from your trash without paying the cost.</dd>
  6957. </dl>
  6958. <dl>
  6959. <dt>Securityeffect</dt>
  6960. <dd>-</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>Notes</dt>
  6964. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  6965. </div>
  6966. </div>
  6967. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6968. </div>
  6969. </div>
  6970. </li>
  6971. <liclass="image_lists_itemdatapage-3">
  6972. <aclass="card_img">
  6973. <imgsrc="../images/cardlist/card/BT13-086.png"alt="BT13-086Gizmon:XT"></a>
  6974. <divclass="popup">
  6975. <divclass="card_detailcard_detail_purple">
  6976. <divclass="card_detail_inner">
  6977. <ulclass="cardinfo_head">
  6978. <liclass="cardno">BT13-086</li>
  6979. <li>U</li>
  6980. <liclass="cardtype">Digimon</li>
  6981. <liclass="cardlv">Lv.5</li>
  6982. </ul>
  6983. <divclass="card_name">Gizmon:XT</div>
  6984. <divclass="cardinfo_top">
  6985. <divclass="card_img">
  6986. <imgsrc="../images/cardlist/card/BT13-086.png"alt="BT13-086Gizmon:XT"></div>
  6987. <divclass="cardinfo_top_body">
  6988. <dl>
  6989. <dt>Form</dt>
  6990. <dd>Ultimate</dd>
  6991. </dl>
  6992. <dl>
  6993. <dt>Attribute</dt>
  6994. <dd>Unknown</dd>
  6995. </dl>
  6996. <dl>
  6997. <dt>Type</dt>
  6998. <dd>Unknown</dd>
  6999. </dl>
  7000. <dl>
  7001. <dt>DP</dt>
  7002. <dd>9000</dl>
  7003. <dl>
  7004. <dt>PlayCost</dt>
  7005. <dd>9</dd>
  7006. </dl>
  7007. <dl>
  7008. <dt>DigivolveCost1</dt>
  7009. <dd>-</dd>
  7010. </dl>
  7011. <dl>
  7012. <dt>DigivolveCost2</dt>
  7013. <dd>-</dd>
  7014. </dl>
  7015. </div>
  7016. </div>
  7017. <divclass="cardinfo_bottom">
  7018. <dl>
  7019. <dt>Effect</dt>
  7020. <dd>When you would play this card, by deleting 1 of your level 4 Digimon, reduce the play cost by 6.<br> <Blocker><br> [On Play] Play 1 [Akihiro Kurata] from your trash without paying the cost.<br> [All Turns] This Digimon can't digivolve.<br> [On Deletion] You may play 1 [ProtoGizmon] from your trash without paying the cost.</dd>
  7021. </dl>
  7022. <dl>
  7023. <dt>Digivolveeffect</dt>
  7024. <dd>-</dd>
  7025. </dl>
  7026. <dl>
  7027. <dt>Securityeffect</dt>
  7028. <dd>-</dd>
  7029. </dl>
  7030. <dl>
  7031. <dt>Notes</dt>
  7032. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7033. </div>
  7034. </div>
  7035. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7036. </div>
  7037. </div>
  7038. </li>
  7039. <liclass="image_lists_itemdatapage-3">
  7040. <aclass="card_img">
  7041. <imgsrc="../images/cardlist/card/BT13-087.png"alt="BT13-087Dynasmon"></a>
  7042. <divclass="popup">
  7043. <divclass="card_detailcard_detail_purple">
  7044. <divclass="card_detail_inner">
  7045. <ulclass="cardinfo_head">
  7046. <liclass="cardno">BT13-087</li>
  7047. <li>R</li>
  7048. <liclass="cardtype">Digimon</li>
  7049. <liclass="cardlv">Lv.6</li>
  7050. </ul>
  7051. <divclass="card_name">Dynasmon</div>
  7052. <divclass="cardinfo_top">
  7053. <divclass="card_img">
  7054. <imgsrc="../images/cardlist/card/BT13-087.png"alt="BT13-087Dynasmon"></div>
  7055. <divclass="cardinfo_top_body">
  7056. <dl>
  7057. <dt>Form</dt>
  7058. <dd>Mega</dd>
  7059. </dl>
  7060. <dl>
  7061. <dt>Attribute</dt>
  7062. <dd>Data</dd>
  7063. </dl>
  7064. <dl>
  7065. <dt>Type</dt>
  7066. <dd>HolyWarrior/RoyalKnight</dd>
  7067. </dl>
  7068. <dl>
  7069. <dt>DP</dt>
  7070. <dd>11000</dl>
  7071. <dl>
  7072. <dt>PlayCost</dt>
  7073. <dd>10</dd>
  7074. </dl>
  7075. <dl>
  7076. <dt>DigivolveCost1</dt>
  7077. <dd>3fromLv.5</dd>
  7078. </dl>
  7079. <dl>
  7080. <dt>DigivolveCost2</dt>
  7081. <dd>-</dd>
  7082. </dl>
  7083. </div>
  7084. </div>
  7085. <divclass="cardinfo_bottom">
  7086. <dl>
  7087. <dt>Effect</dt>
  7088. <dd>[On Play][When Digivolving] Reveal the top 4 cards of your deck. Add 2 cards with [Lucemon] in their names or the [Royal Knight] trait among them to the hand. Trash the rest.<br> [Your Turn] When you play another Digimon with [Lucemon] in its name or the [Royal Knight] trait, delete all of your opponent's level 4 or lower Digimon.</dd>
  7089. </dl>
  7090. <dl>
  7091. <dt>Digivolveeffect</dt>
  7092. <dd>-</dd>
  7093. </dl>
  7094. <dl>
  7095. <dt>Securityeffect</dt>
  7096. <dd>-</dd>
  7097. </dl>
  7098. <dl>
  7099. <dt>Notes</dt>
  7100. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7101. </div>
  7102. </div>
  7103. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7104. </div>
  7105. </div>
  7106. </li>
  7107. <liclass="image_lists_itemdatapage-3">
  7108. <aclass="card_img">
  7109. <imgsrc="../images/cardlist/card/BT13-087_P1.png"alt="BT13-087Dynasmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7110. </a>
  7111. <divclass="popup">
  7112. <divclass="card_detailcard_detail_purple">
  7113. <divclass="card_detail_inner">
  7114. <ulclass="cardinfo_head">
  7115. <liclass="cardno">BT13-087</li>
  7116. <li>R</li>
  7117. <liclass="cardtype">Digimon</li>
  7118. <liclass="cardlv">Lv.6</li>
  7119. <liclass="cardtypecardParallel">AlternativeArt</li>
  7120. </ul>
  7121. <divclass="card_name">Dynasmon</div>
  7122. <divclass="cardinfo_top">
  7123. <divclass="card_img">
  7124. <imgsrc="../images/cardlist/card/BT13-087_P1.png"alt="BT13-087Dynasmon"></div>
  7125. <divclass="cardinfo_top_body">
  7126. <dl>
  7127. <dt>Form</dt>
  7128. <dd>Mega</dd>
  7129. </dl>
  7130. <dl>
  7131. <dt>Attribute</dt>
  7132. <dd>Data</dd>
  7133. </dl>
  7134. <dl>
  7135. <dt>Type</dt>
  7136. <dd>HolyWarrior/RoyalKnight</dd>
  7137. </dl>
  7138. <dl>
  7139. <dt>DP</dt>
  7140. <dd>11000</dl>
  7141. <dl>
  7142. <dt>PlayCost</dt>
  7143. <dd>10</dd>
  7144. </dl>
  7145. <dl>
  7146. <dt>DigivolveCost1</dt>
  7147. <dd>3fromLv.5</dd>
  7148. </dl>
  7149. <dl>
  7150. <dt>DigivolveCost2</dt>
  7151. <dd>-</dd>
  7152. </dl>
  7153. </div>
  7154. </div>
  7155. <divclass="cardinfo_bottom">
  7156. <dl>
  7157. <dt>Effect</dt>
  7158. <dd>[On Play][When Digivolving] Reveal the top 4 cards of your deck. Add 2 cards with [Lucemon] in their names or the [Royal Knight] trait among them to the hand. Trash the rest.<br> [Your Turn] When you play another Digimon with [Lucemon] in its name or the [Royal Knight] trait, delete all of your opponent's level 4 or lower Digimon.</dd>
  7159. </dl>
  7160. <dl>
  7161. <dt>Digivolveeffect</dt>
  7162. <dd>-</dd>
  7163. </dl>
  7164. <dl>
  7165. <dt>Securityeffect</dt>
  7166. <dd>-</dd>
  7167. </dl>
  7168. <dl>
  7169. <dt>Notes</dt>
  7170. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7171. </div>
  7172. </div>
  7173. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7174. </div>
  7175. </div>
  7176. </li>
  7177. <liclass="image_lists_itemdatapage-3">
  7178. <aclass="card_img">
  7179. <imgsrc="../images/cardlist/card/BT13-088.png"alt="BT13-088Belphemon:SleepMode"></a>
  7180. <divclass="popup">
  7181. <divclass="card_detailcard_detail_purple">
  7182. <divclass="card_detail_inner">
  7183. <ulclass="cardinfo_head">
  7184. <liclass="cardno">BT13-088</li>
  7185. <li>R</li>
  7186. <liclass="cardtype">Digimon</li>
  7187. <liclass="cardlv">Lv.6</li>
  7188. </ul>
  7189. <divclass="card_name">Belphemon:SleepMode</div>
  7190. <divclass="cardinfo_top">
  7191. <divclass="card_img">
  7192. <imgsrc="../images/cardlist/card/BT13-088.png"alt="BT13-088Belphemon:SleepMode"></div>
  7193. <divclass="cardinfo_top_body">
  7194. <dl>
  7195. <dt>Form</dt>
  7196. <dd>Mega</dd>
  7197. </dl>
  7198. <dl>
  7199. <dt>Attribute</dt>
  7200. <dd>Virus</dd>
  7201. </dl>
  7202. <dl>
  7203. <dt>Type</dt>
  7204. <dd>DemonLord/SevenGreatDemonLords</dd>
  7205. </dl>
  7206. <dl>
  7207. <dt>DP</dt>
  7208. <dd>11000</dl>
  7209. <dl>
  7210. <dt>PlayCost</dt>
  7211. <dd>11</dd>
  7212. </dl>
  7213. <dl>
  7214. <dt>DigivolveCost1</dt>
  7215. <dd>3fromLv.5</dd>
  7216. </dl>
  7217. <dl>
  7218. <dt>DigivolveCost2</dt>
  7219. <dd>-</dd>
  7220. </dl>
  7221. </div>
  7222. </div>
  7223. <divclass="cardinfo_bottom">
  7224. <dl>
  7225. <dt>Effect</dt>
  7226. <dd>Digivolve: 1 from [Belphemon: Rage Mode]<br>[On Play][When Digivolving] By placing 1 [Belphemon: Rage Mode] from your trash as this Digimon's top digivolution card, until the end of your opponent's turn, this Digimon can't attack and isn't affected by your opponent's effects.<br> [Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, by trashing 2 cards in your hand, end the attack.</dd>
  7227. </dl>
  7228. <dl>
  7229. <dt>Digivolveeffect</dt>
  7230. <dd>-</dd>
  7231. </dl>
  7232. <dl>
  7233. <dt>Securityeffect</dt>
  7234. <dd>-</dd>
  7235. </dl>
  7236. <dl>
  7237. <dt>Notes</dt>
  7238. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7239. </div>
  7240. </div>
  7241. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7242. </div>
  7243. </div>
  7244. </li>
  7245. <liclass="image_lists_itemdatapage-3">
  7246. <aclass="card_img">
  7247. <imgsrc="../images/cardlist/card/BT13-089.png"alt="BT13-089Ravemon"></a>
  7248. <divclass="popup">
  7249. <divclass="card_detailcard_detail_purple">
  7250. <divclass="card_detail_inner">
  7251. <ulclass="cardinfo_head">
  7252. <liclass="cardno">BT13-089</li>
  7253. <li>R</li>
  7254. <liclass="cardtype">Digimon</li>
  7255. <liclass="cardlv">Lv.6</li>
  7256. </ul>
  7257. <divclass="card_name">Ravemon</div>
  7258. <divclass="cardinfo_top">
  7259. <divclass="card_img">
  7260. <imgsrc="../images/cardlist/card/BT13-089.png"alt="BT13-089Ravemon"></div>
  7261. <divclass="cardinfo_top_body">
  7262. <dl>
  7263. <dt>Form</dt>
  7264. <dd>Mega</dd>
  7265. </dl>
  7266. <dl>
  7267. <dt>Attribute</dt>
  7268. <dd>Vaccine</dd>
  7269. </dl>
  7270. <dl>
  7271. <dt>Type</dt>
  7272. <dd>Cyborg</dd>
  7273. </dl>
  7274. <dl>
  7275. <dt>DP</dt>
  7276. <dd>12000</dl>
  7277. <dl>
  7278. <dt>PlayCost</dt>
  7279. <dd>12</dd>
  7280. </dl>
  7281. <dl>
  7282. <dt>DigivolveCost1</dt>
  7283. <dd>4fromLv.5</dd>
  7284. </dl>
  7285. <dl>
  7286. <dt>DigivolveCost2</dt>
  7287. <dd>-</dd>
  7288. </dl>
  7289. </div>
  7290. </div>
  7291. <divclass="cardinfo_bottom">
  7292. <dl>
  7293. <dt>Effect</dt>
  7294. <dd> [End of Your Turn] By deleting this Digimon that has a digivolution card with [Bird] or [Avian] in one of its traits, at the end of your opponent's turn, you may play 1 [Ravemon] from your trash without paying the cost.<br> [On Deletion] You may play 1 [Falcomon] or [Keenan Crier] from your hand or trash without paying the cost.</dd>
  7295. </dl>
  7296. <dl>
  7297. <dt>Digivolveeffect</dt>
  7298. <dd>-</dd>
  7299. </dl>
  7300. <dl>
  7301. <dt>Securityeffect</dt>
  7302. <dd>-</dd>
  7303. </dl>
  7304. <dl>
  7305. <dt>Notes</dt>
  7306. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7307. </div>
  7308. </div>
  7309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7310. </div>
  7311. </div>
  7312. </li>
  7313. <liclass="image_lists_itemdatapage-3">
  7314. <aclass="card_img">
  7315. <imgsrc="../images/cardlist/card/BT13-090.png"alt="BT13-090LordKnightmon"></a>
  7316. <divclass="popup">
  7317. <divclass="card_detailcard_detail_purple">
  7318. <divclass="card_detail_inner">
  7319. <ulclass="cardinfo_head">
  7320. <liclass="cardno">BT13-090</li>
  7321. <li>R</li>
  7322. <liclass="cardtype">Digimon</li>
  7323. <liclass="cardlv">Lv.6</li>
  7324. </ul>
  7325. <divclass="card_name">LordKnightmon</div>
  7326. <divclass="cardinfo_top">
  7327. <divclass="card_img">
  7328. <imgsrc="../images/cardlist/card/BT13-090.png"alt="BT13-090LordKnightmon"></div>
  7329. <divclass="cardinfo_top_body">
  7330. <dl>
  7331. <dt>Form</dt>
  7332. <dd>Mega</dd>
  7333. </dl>
  7334. <dl>
  7335. <dt>Attribute</dt>
  7336. <dd>Virus</dd>
  7337. </dl>
  7338. <dl>
  7339. <dt>Type</dt>
  7340. <dd>HolyWarrior/RoyalKnight</dd>
  7341. </dl>
  7342. <dl>
  7343. <dt>DP</dt>
  7344. <dd>11000</dl>
  7345. <dl>
  7346. <dt>PlayCost</dt>
  7347. <dd>12</dd>
  7348. </dl>
  7349. <dl>
  7350. <dt>DigivolveCost1</dt>
  7351. <dd>3fromLv.5</dd>
  7352. </dl>
  7353. <dl>
  7354. <dt>DigivolveCost2</dt>
  7355. <dd>-</dd>
  7356. </dl>
  7357. </div>
  7358. </div>
  7359. <divclass="cardinfo_bottom">
  7360. <dl>
  7361. <dt>Effect</dt>
  7362. <dd>[On Play][When Digivolving] You may return 1 card with [Lucemon] in its name or the [Royal Knight] trait from your trash to the hand.<br> [Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, gain 1 memory for each of your Digimon with the [Royal Knight] trait.</dd>
  7363. </dl>
  7364. <dl>
  7365. <dt>Digivolveeffect</dt>
  7366. <dd>-</dd>
  7367. </dl>
  7368. <dl>
  7369. <dt>Securityeffect</dt>
  7370. <dd>-</dd>
  7371. </dl>
  7372. <dl>
  7373. <dt>Notes</dt>
  7374. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7375. </div>
  7376. </div>
  7377. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7378. </div>
  7379. </div>
  7380. </li>
  7381. <liclass="image_lists_itemdatapage-3">
  7382. <aclass="card_img">
  7383. <imgsrc="../images/cardlist/card/BT13-090_P1.png"alt="BT13-090LordKnightmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7384. </a>
  7385. <divclass="popup">
  7386. <divclass="card_detailcard_detail_purple">
  7387. <divclass="card_detail_inner">
  7388. <ulclass="cardinfo_head">
  7389. <liclass="cardno">BT13-090</li>
  7390. <li>R</li>
  7391. <liclass="cardtype">Digimon</li>
  7392. <liclass="cardlv">Lv.6</li>
  7393. <liclass="cardtypecardParallel">AlternativeArt</li>
  7394. </ul>
  7395. <divclass="card_name">LordKnightmon</div>
  7396. <divclass="cardinfo_top">
  7397. <divclass="card_img">
  7398. <imgsrc="../images/cardlist/card/BT13-090_P1.png"alt="BT13-090LordKnightmon"></div>
  7399. <divclass="cardinfo_top_body">
  7400. <dl>
  7401. <dt>Form</dt>
  7402. <dd>Mega</dd>
  7403. </dl>
  7404. <dl>
  7405. <dt>Attribute</dt>
  7406. <dd>Virus</dd>
  7407. </dl>
  7408. <dl>
  7409. <dt>Type</dt>
  7410. <dd>HolyWarrior/RoyalKnight</dd>
  7411. </dl>
  7412. <dl>
  7413. <dt>DP</dt>
  7414. <dd>11000</dl>
  7415. <dl>
  7416. <dt>PlayCost</dt>
  7417. <dd>12</dd>
  7418. </dl>
  7419. <dl>
  7420. <dt>DigivolveCost1</dt>
  7421. <dd>3fromLv.5</dd>
  7422. </dl>
  7423. <dl>
  7424. <dt>DigivolveCost2</dt>
  7425. <dd>-</dd>
  7426. </dl>
  7427. </div>
  7428. </div>
  7429. <divclass="cardinfo_bottom">
  7430. <dl>
  7431. <dt>Effect</dt>
  7432. <dd>[On Play][When Digivolving] You may return 1 card with [Lucemon] in its name or the [Royal Knight] trait from your trash to the hand.<br> [Opponent's Turn][Once Per Turn] When an opponent's Digimon attacks, gain 1 memory for each of your Digimon with the [Royal Knight] trait.</dd>
  7433. </dl>
  7434. <dl>
  7435. <dt>Digivolveeffect</dt>
  7436. <dd>-</dd>
  7437. </dl>
  7438. <dl>
  7439. <dt>Securityeffect</dt>
  7440. <dd>-</dd>
  7441. </dl>
  7442. <dl>
  7443. <dt>Notes</dt>
  7444. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7445. </div>
  7446. </div>
  7447. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7448. </div>
  7449. </div>
  7450. </li>
  7451. <liclass="image_lists_itemdatapage-3">
  7452. <aclass="card_img">
  7453. <imgsrc="../images/cardlist/card/BT13-091.png"alt="BT13-091Belphemon:RageMode"></a>
  7454. <divclass="popup">
  7455. <divclass="card_detailcard_detail_purple">
  7456. <divclass="card_detail_inner">
  7457. <ulclass="cardinfo_head">
  7458. <liclass="cardno">BT13-091</li>
  7459. <li>SR</li>
  7460. <liclass="cardtype">Digimon</li>
  7461. <liclass="cardlv">Lv.6</li>
  7462. </ul>
  7463. <divclass="card_name">Belphemon:RageMode</div>
  7464. <divclass="cardinfo_top">
  7465. <divclass="card_img">
  7466. <imgsrc="../images/cardlist/card/BT13-091.png"alt="BT13-091Belphemon:RageMode"></div>
  7467. <divclass="cardinfo_top_body">
  7468. <dl>
  7469. <dt>Form</dt>
  7470. <dd>Mega</dd>
  7471. </dl>
  7472. <dl>
  7473. <dt>Attribute</dt>
  7474. <dd>Virus</dd>
  7475. </dl>
  7476. <dl>
  7477. <dt>Type</dt>
  7478. <dd>DemonLord/SevenGreatDemonLords</dd>
  7479. </dl>
  7480. <dl>
  7481. <dt>DP</dt>
  7482. <dd>14000</dl>
  7483. <dl>
  7484. <dt>PlayCost</dt>
  7485. <dd>14</dd>
  7486. </dl>
  7487. <dl>
  7488. <dt>DigivolveCost1</dt>
  7489. <dd>6fromLv.5</dd>
  7490. </dl>
  7491. <dl>
  7492. <dt>DigivolveCost2</dt>
  7493. <dd>-</dd>
  7494. </dl>
  7495. </div>
  7496. </div>
  7497. <divclass="cardinfo_bottom">
  7498. <dl>
  7499. <dt>Effect</dt>
  7500. <dd>[Start of Your Main Phase] Delete all of your opponent's level 5 or lower Digimon. Then, if you have 6 or fewer cards in your hand, this Digimon gets +3000 DP and gains <Security Attack +1> for the turn.<br>[End of Attack][Once Per Turn] By deleting 1 of your other Digimon, unsuspend this Digimon.</dd>
  7501. </dl>
  7502. <dl>
  7503. <dt>Digivolveeffect</dt>
  7504. <dd>[End of Opponent’s Turn] If this Digimon is [Belphemon: Sleep Mode], trash the top card of this Digimon. </dd>
  7505. </dl>
  7506. <dl>
  7507. <dt>Securityeffect</dt>
  7508. <dd>-</dd>
  7509. </dl>
  7510. <dl>
  7511. <dt>Notes</dt>
  7512. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7513. </div>
  7514. </div>
  7515. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7516. </div>
  7517. </div>
  7518. </li>
  7519. <liclass="image_lists_itemdatapage-3">
  7520. <aclass="card_img">
  7521. <imgsrc="../images/cardlist/card/BT13-091_P1.png"alt="BT13-091Belphemon:RageMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7522. </a>
  7523. <divclass="popup">
  7524. <divclass="card_detailcard_detail_purple">
  7525. <divclass="card_detail_inner">
  7526. <ulclass="cardinfo_head">
  7527. <liclass="cardno">BT13-091</li>
  7528. <li>SR</li>
  7529. <liclass="cardtype">Digimon</li>
  7530. <liclass="cardlv">Lv.6</li>
  7531. <liclass="cardtypecardParallel">AlternativeArt</li>
  7532. </ul>
  7533. <divclass="card_name">Belphemon:RageMode</div>
  7534. <divclass="cardinfo_top">
  7535. <divclass="card_img">
  7536. <imgsrc="../images/cardlist/card/BT13-091_P1.png"alt="BT13-091Belphemon:RageMode"></div>
  7537. <divclass="cardinfo_top_body">
  7538. <dl>
  7539. <dt>Form</dt>
  7540. <dd>Mega</dd>
  7541. </dl>
  7542. <dl>
  7543. <dt>Attribute</dt>
  7544. <dd>Virus</dd>
  7545. </dl>
  7546. <dl>
  7547. <dt>Type</dt>
  7548. <dd>DemonLord/SevenGreatDemonLords</dd>
  7549. </dl>
  7550. <dl>
  7551. <dt>DP</dt>
  7552. <dd>14000</dl>
  7553. <dl>
  7554. <dt>PlayCost</dt>
  7555. <dd>14</dd>
  7556. </dl>
  7557. <dl>
  7558. <dt>DigivolveCost1</dt>
  7559. <dd>6fromLv.5</dd>
  7560. </dl>
  7561. <dl>
  7562. <dt>DigivolveCost2</dt>
  7563. <dd>-</dd>
  7564. </dl>
  7565. </div>
  7566. </div>
  7567. <divclass="cardinfo_bottom">
  7568. <dl>
  7569. <dt>Effect</dt>
  7570. <dd>[Start of Your Main Phase] Delete all of your opponent's level 5 or lower Digimon. Then, if you have 6 or fewer cards in your hand, this Digimon gets +3000 DP and gains <Security Attack +1> for the turn.<br>[End of Attack][Once Per Turn] By deleting 1 of your other Digimon, unsuspend this Digimon.</dd>
  7571. </dl>
  7572. <dl>
  7573. <dt>Digivolveeffect</dt>
  7574. <dd>[End of Opponent’s Turn] If this Digimon is [Belphemon: Sleep Mode], trash the top card of this Digimon. </dd>
  7575. </dl>
  7576. <dl>
  7577. <dt>Securityeffect</dt>
  7578. <dd>-</dd>
  7579. </dl>
  7580. <dl>
  7581. <dt>Notes</dt>
  7582. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7583. </div>
  7584. </div>
  7585. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7586. </div>
  7587. </div>
  7588. </li>
  7589. <liclass="image_lists_itemdatapage-3">
  7590. <aclass="card_img">
  7591. <imgsrc="../images/cardlist/card/BT13-092.png"alt="BT13-092Ravemon:BurstMode"></a>
  7592. <divclass="popup">
  7593. <divclass="card_detailcard_detail_purple">
  7594. <divclass="card_detail_inner">
  7595. <ulclass="cardinfo_head">
  7596. <liclass="cardno">BT13-092</li>
  7597. <li>SR</li>
  7598. <liclass="cardtype">Digimon</li>
  7599. <liclass="cardlv">Lv.7</li>
  7600. </ul>
  7601. <divclass="card_name">Ravemon:BurstMode</div>
  7602. <divclass="cardinfo_top">
  7603. <divclass="card_img">
  7604. <imgsrc="../images/cardlist/card/BT13-092.png"alt="BT13-092Ravemon:BurstMode"></div>
  7605. <divclass="cardinfo_top_body">
  7606. <dl>
  7607. <dt>Form</dt>
  7608. <dd>Mega</dd>
  7609. </dl>
  7610. <dl>
  7611. <dt>Attribute</dt>
  7612. <dd>Vaccine</dd>
  7613. </dl>
  7614. <dl>
  7615. <dt>Type</dt>
  7616. <dd>Cyborg</dd>
  7617. </dl>
  7618. <dl>
  7619. <dt>DP</dt>
  7620. <dd>15000</dl>
  7621. <dl>
  7622. <dt>PlayCost</dt>
  7623. <dd>15</dd>
  7624. </dl>
  7625. <dl>
  7626. <dt>DigivolveCost1</dt>
  7627. <dd>5fromLv.6</dd>
  7628. </dl>
  7629. <dl>
  7630. <dt>DigivolveCost2</dt>
  7631. <dd>-</dd>
  7632. </dl>
  7633. </div>
  7634. </div>
  7635. <divclass="cardinfo_bottom">
  7636. <dl>
  7637. <dt>Effect</dt>
  7638. <dd>Burst Digivolve: 0 from [Ravemon] by returning 1 [Keenan Crier] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Search your opponent's hand, and trash 1 card among it. Then, if they have 7 or fewer cards in their hand, they add the top card of their security stack to the hand.<br> [When Attacking] By returning 1 Digimon card from your opponent's trash to the bottom of the deck, delete all of your opponent's Digimon with the same name as that card.</dd>
  7639. </dl>
  7640. <dl>
  7641. <dt>Digivolveeffect</dt>
  7642. <dd>-</dd>
  7643. </dl>
  7644. <dl>
  7645. <dt>Securityeffect</dt>
  7646. <dd>-</dd>
  7647. </dl>
  7648. <dl>
  7649. <dt>Notes</dt>
  7650. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7651. </div>
  7652. </div>
  7653. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7654. </div>
  7655. </div>
  7656. </li>
  7657. <liclass="image_lists_itemdatapage-3">
  7658. <aclass="card_img">
  7659. <imgsrc="../images/cardlist/card/BT13-092_P1.png"alt="BT13-092Ravemon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7660. </a>
  7661. <divclass="popup">
  7662. <divclass="card_detailcard_detail_purple">
  7663. <divclass="card_detail_inner">
  7664. <ulclass="cardinfo_head">
  7665. <liclass="cardno">BT13-092</li>
  7666. <li>SR</li>
  7667. <liclass="cardtype">Digimon</li>
  7668. <liclass="cardlv">Lv.7</li>
  7669. <liclass="cardtypecardParallel">AlternativeArt</li>
  7670. </ul>
  7671. <divclass="card_name">Ravemon:BurstMode</div>
  7672. <divclass="cardinfo_top">
  7673. <divclass="card_img">
  7674. <imgsrc="../images/cardlist/card/BT13-092_P1.png"alt="BT13-092Ravemon:BurstMode"></div>
  7675. <divclass="cardinfo_top_body">
  7676. <dl>
  7677. <dt>Form</dt>
  7678. <dd>Mega</dd>
  7679. </dl>
  7680. <dl>
  7681. <dt>Attribute</dt>
  7682. <dd>Vaccine</dd>
  7683. </dl>
  7684. <dl>
  7685. <dt>Type</dt>
  7686. <dd>Cyborg</dd>
  7687. </dl>
  7688. <dl>
  7689. <dt>DP</dt>
  7690. <dd>15000</dl>
  7691. <dl>
  7692. <dt>PlayCost</dt>
  7693. <dd>15</dd>
  7694. </dl>
  7695. <dl>
  7696. <dt>DigivolveCost1</dt>
  7697. <dd>5fromLv.6</dd>
  7698. </dl>
  7699. <dl>
  7700. <dt>DigivolveCost2</dt>
  7701. <dd>-</dd>
  7702. </dl>
  7703. </div>
  7704. </div>
  7705. <divclass="cardinfo_bottom">
  7706. <dl>
  7707. <dt>Effect</dt>
  7708. <dd>Burst Digivolve: 0 from [Ravemon] by returning 1 [Keenan Crier] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Search your opponent's hand, and trash 1 card among it. Then, if they have 7 or fewer cards in their hand, they add the top card of their security stack to the hand.<br> [When Attacking] By returning 1 Digimon card from your opponent's trash to the bottom of the deck, delete all of your opponent's Digimon with the same name as that card.</dd>
  7709. </dl>
  7710. <dl>
  7711. <dt>Digivolveeffect</dt>
  7712. <dd>-</dd>
  7713. </dl>
  7714. <dl>
  7715. <dt>Securityeffect</dt>
  7716. <dd>-</dd>
  7717. </dl>
  7718. <dl>
  7719. <dt>Notes</dt>
  7720. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7721. </div>
  7722. </div>
  7723. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7724. </div>
  7725. </div>
  7726. </li>
  7727. <liclass="image_lists_itemdatapage-3">
  7728. <aclass="card_img">
  7729. <imgsrc="../images/cardlist/card/BT13-092_P2.png"alt="BT13-092Ravemon:BurstMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7730. </a>
  7731. <divclass="popup">
  7732. <divclass="card_detailcard_detail_purple">
  7733. <divclass="card_detail_inner">
  7734. <ulclass="cardinfo_head">
  7735. <liclass="cardno">BT13-092</li>
  7736. <li>SR</li>
  7737. <liclass="cardtype">Digimon</li>
  7738. <liclass="cardlv">Lv.7</li>
  7739. <liclass="cardtypecardParallel">AlternativeArt</li>
  7740. </ul>
  7741. <divclass="card_name">Ravemon:BurstMode</div>
  7742. <divclass="cardinfo_top">
  7743. <divclass="card_img">
  7744. <imgsrc="../images/cardlist/card/BT13-092_P2.png"alt="BT13-092Ravemon:BurstMode"></div>
  7745. <divclass="cardinfo_top_body">
  7746. <dl>
  7747. <dt>Form</dt>
  7748. <dd>Mega</dd>
  7749. </dl>
  7750. <dl>
  7751. <dt>Attribute</dt>
  7752. <dd>Vaccine</dd>
  7753. </dl>
  7754. <dl>
  7755. <dt>Type</dt>
  7756. <dd>Cyborg</dd>
  7757. </dl>
  7758. <dl>
  7759. <dt>DP</dt>
  7760. <dd>15000</dl>
  7761. <dl>
  7762. <dt>PlayCost</dt>
  7763. <dd>15</dd>
  7764. </dl>
  7765. <dl>
  7766. <dt>DigivolveCost1</dt>
  7767. <dd>5fromLv.6</dd>
  7768. </dl>
  7769. <dl>
  7770. <dt>DigivolveCost2</dt>
  7771. <dd>-</dd>
  7772. </dl>
  7773. </div>
  7774. </div>
  7775. <divclass="cardinfo_bottom">
  7776. <dl>
  7777. <dt>Effect</dt>
  7778. <dd>Burst Digivolve: 0 from [Ravemon] by returning 1 [Keenan Crier] to hand<br>At the end of the burst digivolution turn, trash this Digimon’s top card<br>[When Digivolving] Search your opponent's hand, and trash 1 card among it. Then, if they have 7 or fewer cards in their hand, they add the top card of their security stack to the hand.<br> [When Attacking] By returning 1 Digimon card from your opponent's trash to the bottom of the deck, delete all of your opponent's Digimon with the same name as that card.</dd>
  7779. </dl>
  7780. <dl>
  7781. <dt>Digivolveeffect</dt>
  7782. <dd>-</dd>
  7783. </dl>
  7784. <dl>
  7785. <dt>Securityeffect</dt>
  7786. <dd>-</dd>
  7787. </dl>
  7788. <dl>
  7789. <dt>Notes</dt>
  7790. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7791. </div>
  7792. </div>
  7793. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7794. </div>
  7795. </div>
  7796. </li>
  7797. <liclass="image_lists_itemdatapage-3">
  7798. <aclass="card_img">
  7799. <imgsrc="../images/cardlist/card/BT13-093.png"alt="BT13-093Omekamon"></a>
  7800. <divclass="popup">
  7801. <divclass="card_detailcard_detail_white">
  7802. <divclass="card_detail_inner">
  7803. <ulclass="cardinfo_head">
  7804. <liclass="cardno">BT13-093</li>
  7805. <li>U</li>
  7806. <liclass="cardtype">Digimon</li>
  7807. <liclass="cardlv">Lv.4</li>
  7808. </ul>
  7809. <divclass="card_name">Omekamon</div>
  7810. <divclass="cardinfo_top">
  7811. <divclass="card_img">
  7812. <imgsrc="../images/cardlist/card/BT13-093.png"alt="BT13-093Omekamon"></div>
  7813. <divclass="cardinfo_top_body">
  7814. <dl>
  7815. <dt>Form</dt>
  7816. <dd>Champion</dd>
  7817. </dl>
  7818. <dl>
  7819. <dt>Attribute</dt>
  7820. <dd>Data</dd>
  7821. </dl>
  7822. <dl>
  7823. <dt>Type</dt>
  7824. <dd>Puppet/XAntibody</dd>
  7825. </dl>
  7826. <dl>
  7827. <dt>DP</dt>
  7828. <dd>4000</dl>
  7829. <dl>
  7830. <dt>PlayCost</dt>
  7831. <dd>4</dd>
  7832. </dl>
  7833. <dl>
  7834. <dt>DigivolveCost1</dt>
  7835. <dd>-</dd>
  7836. </dl>
  7837. <dl>
  7838. <dt>DigivolveCost2</dt>
  7839. <dd>-</dd>
  7840. </dl>
  7841. </div>
  7842. </div>
  7843. <divclass="cardinfo_bottom">
  7844. <dl>
  7845. <dt>Effect</dt>
  7846. <dd> [On Play] <Draw 1> (Draw 1 card from your deck.)<br> [On Deletion] Place 1 Digimon card with the [Royal Knight] trait from your hand as the bottom digivolution card of one of your [King Drasil_7D6] in the breeding area.</dd>
  7847. </dl>
  7848. <dl>
  7849. <dt>Digivolveeffect</dt>
  7850. <dd>-</dd>
  7851. </dl>
  7852. <dl>
  7853. <dt>Securityeffect</dt>
  7854. <dd>-</dd>
  7855. </dl>
  7856. <dl>
  7857. <dt>Notes</dt>
  7858. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7859. </div>
  7860. </div>
  7861. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7862. </div>
  7863. </div>
  7864. </li>
  7865. <liclass="image_lists_itemdatapage-3">
  7866. <aclass="card_img">
  7867. <imgsrc="../images/cardlist/card/BT13-111.png"alt="BT13-111Gallantmon"></a>
  7868. <divclass="popup">
  7869. <divclass="card_detailcard_detail_red">
  7870. <divclass="card_detail_inner">
  7871. <ulclass="cardinfo_head">
  7872. <liclass="cardno">BT13-111</li>
  7873. <li>SEC</li>
  7874. <liclass="cardtype">Digimon</li>
  7875. <liclass="cardlv">Lv.6</li>
  7876. </ul>
  7877. <divclass="card_name">Gallantmon</div>
  7878. <divclass="cardinfo_top">
  7879. <divclass="card_img">
  7880. <imgsrc="../images/cardlist/card/BT13-111.png"alt="BT13-111Gallantmon"></div>
  7881. <divclass="cardinfo_top_body">
  7882. <dl>
  7883. <dt>Form</dt>
  7884. <dd>Mega</dd>
  7885. </dl>
  7886. <dl>
  7887. <dt>Attribute</dt>
  7888. <dd>Virus</dd>
  7889. </dl>
  7890. <dl>
  7891. <dt>Type</dt>
  7892. <dd>HolyWarrior/RoyalKnight</dd>
  7893. </dl>
  7894. <dl>
  7895. <dt>DP</dt>
  7896. <dd>13000</dl>
  7897. <dl>
  7898. <dt>PlayCost</dt>
  7899. <dd>13</dd>
  7900. </dl>
  7901. <dl>
  7902. <dt>DigivolveCost1</dt>
  7903. <dd>5fromLv.5</dd>
  7904. </dl>
  7905. <dl>
  7906. <dt>DigivolveCost2</dt>
  7907. <dd>-</dd>
  7908. </dl>
  7909. </div>
  7910. </div>
  7911. <divclass="cardinfo_bottom">
  7912. <dl>
  7913. <dt>Effect</dt>
  7914. <dd>When you would play this card from the hand, if you have no Digimon, reduce the play cost by 2 for every 5 total cards in both players' trashes.<br><Rush> (This Digimon can attack the turn it was played.)<br> [On Play][When Digivolving][When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If no opponent's Digimon was deleted by this effect, delete 1 of their Digimon with 13000 DP or more.</dd>
  7915. </dl>
  7916. <dl>
  7917. <dt>Digivolveeffect</dt>
  7918. <dd>-</dd>
  7919. </dl>
  7920. <dl>
  7921. <dt>Securityeffect</dt>
  7922. <dd>-</dd>
  7923. </dl>
  7924. <dl>
  7925. <dt>Notes</dt>
  7926. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7927. </div>
  7928. </div>
  7929. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7930. </div>
  7931. </div>
  7932. </li>
  7933. <liclass="image_lists_itemdatapage-3">
  7934. <aclass="card_img">
  7935. <imgsrc="../images/cardlist/card/BT13-111_P1.png"alt="BT13-111Gallantmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  7936. </a>
  7937. <divclass="popup">
  7938. <divclass="card_detailcard_detail_red">
  7939. <divclass="card_detail_inner">
  7940. <ulclass="cardinfo_head">
  7941. <liclass="cardno">BT13-111</li>
  7942. <li>SEC</li>
  7943. <liclass="cardtype">Digimon</li>
  7944. <liclass="cardlv">Lv.6</li>
  7945. <liclass="cardtypecardParallel">AlternativeArt</li>
  7946. </ul>
  7947. <divclass="card_name">Gallantmon</div>
  7948. <divclass="cardinfo_top">
  7949. <divclass="card_img">
  7950. <imgsrc="../images/cardlist/card/BT13-111_P1.png"alt="BT13-111Gallantmon"></div>
  7951. <divclass="cardinfo_top_body">
  7952. <dl>
  7953. <dt>Form</dt>
  7954. <dd>Mega</dd>
  7955. </dl>
  7956. <dl>
  7957. <dt>Attribute</dt>
  7958. <dd>Virus</dd>
  7959. </dl>
  7960. <dl>
  7961. <dt>Type</dt>
  7962. <dd>HolyWarrior/RoyalKnight</dd>
  7963. </dl>
  7964. <dl>
  7965. <dt>DP</dt>
  7966. <dd>13000</dl>
  7967. <dl>
  7968. <dt>PlayCost</dt>
  7969. <dd>13</dd>
  7970. </dl>
  7971. <dl>
  7972. <dt>DigivolveCost1</dt>
  7973. <dd>5fromLv.5</dd>
  7974. </dl>
  7975. <dl>
  7976. <dt>DigivolveCost2</dt>
  7977. <dd>-</dd>
  7978. </dl>
  7979. </div>
  7980. </div>
  7981. <divclass="cardinfo_bottom">
  7982. <dl>
  7983. <dt>Effect</dt>
  7984. <dd>When you would play this card from the hand, if you have no Digimon, reduce the play cost by 2 for every 5 total cards in both players' trashes.<br><Rush> (This Digimon can attack the turn it was played.)<br> [On Play][When Digivolving][When Attacking] Delete 1 of your opponent's Digimon with 6000 DP or less. If no opponent's Digimon was deleted by this effect, delete 1 of their Digimon with 13000 DP or more.</dd>
  7985. </dl>
  7986. <dl>
  7987. <dt>Digivolveeffect</dt>
  7988. <dd>-</dd>
  7989. </dl>
  7990. <dl>
  7991. <dt>Securityeffect</dt>
  7992. <dd>-</dd>
  7993. </dl>
  7994. <dl>
  7995. <dt>Notes</dt>
  7996. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  7997. </div>
  7998. </div>
  7999. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8000. </div>
  8001. </div>
  8002. </li>
  8003. <liclass="image_lists_itemdatapage-3">
  8004. <aclass="card_img">
  8005. <imgsrc="../images/cardlist/card/BT13-112.png"alt="BT13-112Omnimon"></a>
  8006. <divclass="popup">
  8007. <divclass="card_detailcard_detail_white">
  8008. <divclass="card_detail_inner">
  8009. <ulclass="cardinfo_head">
  8010. <liclass="cardno">BT13-112</li>
  8011. <li>SEC</li>
  8012. <liclass="cardtype">Digimon</li>
  8013. <liclass="cardlv">Lv.7</li>
  8014. </ul>
  8015. <divclass="card_name">Omnimon</div>
  8016. <divclass="cardinfo_top">
  8017. <divclass="card_img">
  8018. <imgsrc="../images/cardlist/card/BT13-112.png"alt="BT13-112Omnimon"></div>
  8019. <divclass="cardinfo_top_body">
  8020. <dl>
  8021. <dt>Form</dt>
  8022. <dd>Mega</dd>
  8023. </dl>
  8024. <dl>
  8025. <dt>Attribute</dt>
  8026. <dd>Vaccine</dd>
  8027. </dl>
  8028. <dl>
  8029. <dt>Type</dt>
  8030. <dd>HolyWarrior/RoyalKnight</dd>
  8031. </dl>
  8032. <dl>
  8033. <dt>DP</dt>
  8034. <dd>14000</dl>
  8035. <dl>
  8036. <dt>PlayCost</dt>
  8037. <dd>14</dd>
  8038. </dl>
  8039. <dl>
  8040. <dt>DigivolveCost1</dt>
  8041. <dd>4fromLv.6</dd>
  8042. </dl>
  8043. <dl>
  8044. <dt>DigivolveCost2</dt>
  8045. <dd>4fromLv.6</dd>
  8046. </dl>
  8047. </div>
  8048. </div>
  8049. <divclass="cardinfo_bottom">
  8050. <dl>
  8051. <dt>Effect</dt>
  8052. <dd>[On Play][When Digivolving] You may delete 1 of your opponent's Digimon, or play 1 of each Digimon with the [Royal Knight] trait and different names from the digivolution cards of your Digimon in the breeding area without paying the costs. When a Digimon is played by this effect, trash your Digimon in the breeding area, and all your Digimon gain <Rush> for the turn.</dd>
  8053. </dl>
  8054. <dl>
  8055. <dt>Digivolveeffect</dt>
  8056. <dd>-</dd>
  8057. </dl>
  8058. <dl>
  8059. <dt>Securityeffect</dt>
  8060. <dd>-</dd>
  8061. </dl>
  8062. <dl>
  8063. <dt>Notes</dt>
  8064. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8065. </div>
  8066. </div>
  8067. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8068. </div>
  8069. </div>
  8070. </li>
  8071. <liclass="image_lists_itemdatapage-3">
  8072. <aclass="card_img">
  8073. <imgsrc="../images/cardlist/card/BT13-112_P1.png"alt="BT13-112Omnimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8074. </a>
  8075. <divclass="popup">
  8076. <divclass="card_detailcard_detail_white">
  8077. <divclass="card_detail_inner">
  8078. <ulclass="cardinfo_head">
  8079. <liclass="cardno">BT13-112</li>
  8080. <li>SEC</li>
  8081. <liclass="cardtype">Digimon</li>
  8082. <liclass="cardlv">Lv.7</li>
  8083. <liclass="cardtypecardParallel">AlternativeArt</li>
  8084. </ul>
  8085. <divclass="card_name">Omnimon</div>
  8086. <divclass="cardinfo_top">
  8087. <divclass="card_img">
  8088. <imgsrc="../images/cardlist/card/BT13-112_P1.png"alt="BT13-112Omnimon"></div>
  8089. <divclass="cardinfo_top_body">
  8090. <dl>
  8091. <dt>Form</dt>
  8092. <dd>Mega</dd>
  8093. </dl>
  8094. <dl>
  8095. <dt>Attribute</dt>
  8096. <dd>Vaccine</dd>
  8097. </dl>
  8098. <dl>
  8099. <dt>Type</dt>
  8100. <dd>HolyWarrior/RoyalKnight</dd>
  8101. </dl>
  8102. <dl>
  8103. <dt>DP</dt>
  8104. <dd>14000</dl>
  8105. <dl>
  8106. <dt>PlayCost</dt>
  8107. <dd>14</dd>
  8108. </dl>
  8109. <dl>
  8110. <dt>DigivolveCost1</dt>
  8111. <dd>4fromLv.6</dd>
  8112. </dl>
  8113. <dl>
  8114. <dt>DigivolveCost2</dt>
  8115. <dd>4fromLv.6</dd>
  8116. </dl>
  8117. </div>
  8118. </div>
  8119. <divclass="cardinfo_bottom">
  8120. <dl>
  8121. <dt>Effect</dt>
  8122. <dd>[On Play][When Digivolving] You may delete 1 of your opponent's Digimon, or play 1 of each Digimon with the [Royal Knight] trait and different names from the digivolution cards of your Digimon in the breeding area without paying the costs. When a Digimon is played by this effect, trash your Digimon in the breeding area, and all your Digimon gain <Rush> for the turn.</dd>
  8123. </dl>
  8124. <dl>
  8125. <dt>Digivolveeffect</dt>
  8126. <dd>-</dd>
  8127. </dl>
  8128. <dl>
  8129. <dt>Securityeffect</dt>
  8130. <dd>-</dd>
  8131. </dl>
  8132. <dl>
  8133. <dt>Notes</dt>
  8134. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8135. </div>
  8136. </div>
  8137. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8138. </div>
  8139. </div>
  8140. </li>
  8141. <liclass="image_lists_itemdatapage-3">
  8142. <aclass="card_img">
  8143. <imgsrc="../images/cardlist/card/BT13-094.png"alt="BT13-094KristyDamon"></a>
  8144. <divclass="popup">
  8145. <divclass="card_detailcard_detail_red">
  8146. <divclass="card_detail_inner">
  8147. <ulclass="cardinfo_head">
  8148. <liclass="cardno">BT13-094</li>
  8149. <li>U</li>
  8150. <liclass="cardtype">Tamer</li>
  8151. </ul>
  8152. <divclass="card_name">KristyDamon</div>
  8153. <divclass="cardinfo_top">
  8154. <divclass="card_img">
  8155. <imgsrc="../images/cardlist/card/BT13-094.png"alt="BT13-094KristyDamon"></div>
  8156. <divclass="cardinfo_top_body">
  8157. <dl>
  8158. <dt>Form</dt>
  8159. <dd>-</dd>
  8160. </dl>
  8161. <dl>
  8162. <dt>Attribute</dt>
  8163. <dd>-</dd>
  8164. </dl>
  8165. <dl>
  8166. <dt>Type</dt>
  8167. <dd>-</dd>
  8168. </dl>
  8169. <dl>
  8170. <dt>DP</dt>
  8171. <dd>-</dl>
  8172. <dl>
  8173. <dt>PlayCost</dt>
  8174. <dd>3</dd>
  8175. </dl>
  8176. <dl>
  8177. <dt>DigivolveCost1</dt>
  8178. <dd>-</dd>
  8179. </dl>
  8180. <dl>
  8181. <dt>DigivolveCost2</dt>
  8182. <dd>-</dd>
  8183. </dl>
  8184. </div>
  8185. </div>
  8186. <divclass="cardinfo_bottom">
  8187. <dl>
  8188. <dt>Effect</dt>
  8189. <dd>[Start of Your Main Phase] If you have a Digimon with [Avian] or [Bird] in one of its traits, gain 1 memory.<br> [On Play] 1 of your Digimon gains "[On Deletion] You may play 1 [Biyomon] from your hand or trash without paying the cost" until the end of your opponent's turn.</dd>
  8190. </dl>
  8191. <dl>
  8192. <dt>Digivolveeffect</dt>
  8193. <dd>-</dd>
  8194. </dl>
  8195. <dl>
  8196. <dt>Securityeffect</dt>
  8197. <dd>[Security] Play this card without paying the cost.</dd>
  8198. </dl>
  8199. <dl>
  8200. <dt>Notes</dt>
  8201. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8202. </div>
  8203. </div>
  8204. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8205. </div>
  8206. </div>
  8207. </li>
  8208. <liclass="image_lists_itemdatapage-4">
  8209. <aclass="card_img">
  8210. <imgsrc="../images/cardlist/card/BT13-095.png"alt="BT13-095MarcusDamon"></a>
  8211. <divclass="popup">
  8212. <divclass="card_detailcard_detail_red_yellowmulticolor">
  8213. <divclass="card_detail_inner">
  8214. <ulclass="cardinfo_head">
  8215. <liclass="cardno">BT13-095</li>
  8216. <li>R</li>
  8217. <liclass="cardtype">Tamer</li>
  8218. </ul>
  8219. <divclass="card_name">MarcusDamon</div>
  8220. <divclass="cardinfo_top">
  8221. <divclass="card_img">
  8222. <imgsrc="../images/cardlist/card/BT13-095.png"alt="BT13-095MarcusDamon"></div>
  8223. <divclass="cardinfo_top_body">
  8224. <dl>
  8225. <dt>Form</dt>
  8226. <dd>-</dd>
  8227. </dl>
  8228. <dl>
  8229. <dt>Attribute</dt>
  8230. <dd>-</dd>
  8231. </dl>
  8232. <dl>
  8233. <dt>Type</dt>
  8234. <dd>-</dd>
  8235. </dl>
  8236. <dl>
  8237. <dt>DP</dt>
  8238. <dd>-</dl>
  8239. <dl>
  8240. <dt>PlayCost</dt>
  8241. <dd>5</dd>
  8242. </dl>
  8243. <dl>
  8244. <dt>DigivolveCost1</dt>
  8245. <dd>-</dd>
  8246. </dl>
  8247. <dl>
  8248. <dt>DigivolveCost2</dt>
  8249. <dd>-</dd>
  8250. </dl>
  8251. </div>
  8252. </div>
  8253. <divclass="cardinfo_bottom">
  8254. <dl>
  8255. <dt>Effect</dt>
  8256. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[On Play] You may suspend this Tamer.<br>[All Turns] When this Tamer becomes suspended, 1 of your opponent's Digimon gets -3000 DP for the turn. Then, if you have a Digimon with [Agumon] or [Greymon] in its name, gain 1 memory.</dd>
  8257. </dl>
  8258. <dl>
  8259. <dt>Digivolveeffect</dt>
  8260. <dd>-</dd>
  8261. </dl>
  8262. <dl>
  8263. <dt>Securityeffect</dt>
  8264. <dd>[Security] Play this card without paying the cost.</dd>
  8265. </dl>
  8266. <dl>
  8267. <dt>Notes</dt>
  8268. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8269. </div>
  8270. </div>
  8271. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8272. </div>
  8273. </div>
  8274. </li>
  8275. <liclass="image_lists_itemdatapage-4">
  8276. <aclass="card_img">
  8277. <imgsrc="../images/cardlist/card/BT13-095_P1.png"alt="BT13-095MarcusDamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  8278. </a>
  8279. <divclass="popup">
  8280. <divclass="card_detailcard_detail_red_yellowmulticolor">
  8281. <divclass="card_detail_inner">
  8282. <ulclass="cardinfo_head">
  8283. <liclass="cardno">BT13-095</li>
  8284. <li>R</li>
  8285. <liclass="cardtype">Tamer</li>
  8286. <liclass="cardtypecardParallel">AlternativeArt</li>
  8287. </ul>
  8288. <divclass="card_name">MarcusDamon</div>
  8289. <divclass="cardinfo_top">
  8290. <divclass="card_img">
  8291. <imgsrc="../images/cardlist/card/BT13-095_P1.png"alt="BT13-095MarcusDamon"></div>
  8292. <divclass="cardinfo_top_body">
  8293. <dl>
  8294. <dt>Form</dt>
  8295. <dd>-</dd>
  8296. </dl>
  8297. <dl>
  8298. <dt>Attribute</dt>
  8299. <dd>-</dd>
  8300. </dl>
  8301. <dl>
  8302. <dt>Type</dt>
  8303. <dd>-</dd>
  8304. </dl>
  8305. <dl>
  8306. <dt>DP</dt>
  8307. <dd>-</dl>
  8308. <dl>
  8309. <dt>PlayCost</dt>
  8310. <dd>5</dd>
  8311. </dl>
  8312. <dl>
  8313. <dt>DigivolveCost1</dt>
  8314. <dd>-</dd>
  8315. </dl>
  8316. <dl>
  8317. <dt>DigivolveCost2</dt>
  8318. <dd>-</dd>
  8319. </dl>
  8320. </div>
  8321. </div>
  8322. <divclass="cardinfo_bottom">
  8323. <dl>
  8324. <dt>Effect</dt>
  8325. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[On Play] You may suspend this Tamer.<br>[All Turns] When this Tamer becomes suspended, 1 of your opponent's Digimon gets -3000 DP for the turn. Then, if you have a Digimon with [Agumon] or [Greymon] in its name, gain 1 memory.</dd>
  8326. </dl>
  8327. <dl>
  8328. <dt>Digivolveeffect</dt>
  8329. <dd>-</dd>
  8330. </dl>
  8331. <dl>
  8332. <dt>Securityeffect</dt>
  8333. <dd>[Security] Play this card without paying the cost.</dd>
  8334. </dl>
  8335. <dl>
  8336. <dt>Notes</dt>
  8337. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8338. </div>
  8339. </div>
  8340. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8341. </div>
  8342. </div>
  8343. </li>
  8344. <liclass="image_lists_itemdatapage-4">
  8345. <aclass="card_img">
  8346. <imgsrc="../images/cardlist/card/BT13-096.png"alt="BT13-096HomerYushima"></a>
  8347. <divclass="popup">
  8348. <divclass="card_detailcard_detail_blue">
  8349. <divclass="card_detail_inner">
  8350. <ulclass="cardinfo_head">
  8351. <liclass="cardno">BT13-096</li>
  8352. <li>U</li>
  8353. <liclass="cardtype">Tamer</li>
  8354. </ul>
  8355. <divclass="card_name">HomerYushima</div>
  8356. <divclass="cardinfo_top">
  8357. <divclass="card_img">
  8358. <imgsrc="../images/cardlist/card/BT13-096.png"alt="BT13-096HomerYushima"></div>
  8359. <divclass="cardinfo_top_body">
  8360. <dl>
  8361. <dt>Form</dt>
  8362. <dd>-</dd>
  8363. </dl>
  8364. <dl>
  8365. <dt>Attribute</dt>
  8366. <dd>-</dd>
  8367. </dl>
  8368. <dl>
  8369. <dt>Type</dt>
  8370. <dd>-</dd>
  8371. </dl>
  8372. <dl>
  8373. <dt>DP</dt>
  8374. <dd>-</dl>
  8375. <dl>
  8376. <dt>PlayCost</dt>
  8377. <dd>3</dd>
  8378. </dl>
  8379. <dl>
  8380. <dt>DigivolveCost1</dt>
  8381. <dd>-</dd>
  8382. </dl>
  8383. <dl>
  8384. <dt>DigivolveCost2</dt>
  8385. <dd>-</dd>
  8386. </dl>
  8387. </div>
  8388. </div>
  8389. <divclass="cardinfo_bottom">
  8390. <dl>
  8391. <dt>Effect</dt>
  8392. <dd>[On Play] You may play 1 blue level 3 Digimon card from 1 of your Digimon's digivolution cards without paying the cost.<br> [All Turns] When you play a blue Digimon, by suspending this Tamer, you may place 1 blue level 4 or lower Digimon card as that Digimon's bottom digivolution card.</dd>
  8393. </dl>
  8394. <dl>
  8395. <dt>Digivolveeffect</dt>
  8396. <dd>-</dd>
  8397. </dl>
  8398. <dl>
  8399. <dt>Securityeffect</dt>
  8400. <dd>[Security] Play this card without paying the cost.</dd>
  8401. </dl>
  8402. <dl>
  8403. <dt>Notes</dt>
  8404. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8405. </div>
  8406. </div>
  8407. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8408. </div>
  8409. </div>
  8410. </li>
  8411. <liclass="image_lists_itemdatapage-4">
  8412. <aclass="card_img">
  8413. <imgsrc="../images/cardlist/card/BT13-097.png"alt="BT13-097ThomasH.Norstein"></a>
  8414. <divclass="popup">
  8415. <divclass="card_detailcard_detail_blue">
  8416. <divclass="card_detail_inner">
  8417. <ulclass="cardinfo_head">
  8418. <liclass="cardno">BT13-097</li>
  8419. <li>R</li>
  8420. <liclass="cardtype">Tamer</li>
  8421. </ul>
  8422. <divclass="card_name">ThomasH.Norstein</div>
  8423. <divclass="cardinfo_top">
  8424. <divclass="card_img">
  8425. <imgsrc="../images/cardlist/card/BT13-097.png"alt="BT13-097ThomasH.Norstein"></div>
  8426. <divclass="cardinfo_top_body">
  8427. <dl>
  8428. <dt>Form</dt>
  8429. <dd>-</dd>
  8430. </dl>
  8431. <dl>
  8432. <dt>Attribute</dt>
  8433. <dd>-</dd>
  8434. </dl>
  8435. <dl>
  8436. <dt>Type</dt>
  8437. <dd>-</dd>
  8438. </dl>
  8439. <dl>
  8440. <dt>DP</dt>
  8441. <dd>-</dl>
  8442. <dl>
  8443. <dt>PlayCost</dt>
  8444. <dd>4</dd>
  8445. </dl>
  8446. <dl>
  8447. <dt>DigivolveCost1</dt>
  8448. <dd>-</dd>
  8449. </dl>
  8450. <dl>
  8451. <dt>DigivolveCost2</dt>
  8452. <dd>-</dd>
  8453. </dl>
  8454. </div>
  8455. </div>
  8456. <divclass="cardinfo_bottom">
  8457. <dl>
  8458. <dt>Effect</dt>
  8459. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[Your Turn] When one of your Digimon with [Gaomon] or [GaoGamon] in its name attacks, by suspending this Tamer, both players draw 1 card from their decks.</dd>
  8460. </dl>
  8461. <dl>
  8462. <dt>Digivolveeffect</dt>
  8463. <dd>-</dd>
  8464. </dl>
  8465. <dl>
  8466. <dt>Securityeffect</dt>
  8467. <dd>[Security] Play this card without paying the cost.</dd>
  8468. </dl>
  8469. <dl>
  8470. <dt>Notes</dt>
  8471. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8472. </div>
  8473. </div>
  8474. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8475. </div>
  8476. </div>
  8477. </li>
  8478. <liclass="image_lists_itemdatapage-4">
  8479. <aclass="card_img">
  8480. <imgsrc="../images/cardlist/card/BT13-097_P1.png"alt="BT13-097ThomasH.Norstein"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  8481. </a>
  8482. <divclass="popup">
  8483. <divclass="card_detailcard_detail_blue">
  8484. <divclass="card_detail_inner">
  8485. <ulclass="cardinfo_head">
  8486. <liclass="cardno">BT13-097</li>
  8487. <li>R</li>
  8488. <liclass="cardtype">Tamer</li>
  8489. <liclass="cardtypecardParallel">AlternativeArt</li>
  8490. </ul>
  8491. <divclass="card_name">ThomasH.Norstein</div>
  8492. <divclass="cardinfo_top">
  8493. <divclass="card_img">
  8494. <imgsrc="../images/cardlist/card/BT13-097_P1.png"alt="BT13-097ThomasH.Norstein"></div>
  8495. <divclass="cardinfo_top_body">
  8496. <dl>
  8497. <dt>Form</dt>
  8498. <dd>-</dd>
  8499. </dl>
  8500. <dl>
  8501. <dt>Attribute</dt>
  8502. <dd>-</dd>
  8503. </dl>
  8504. <dl>
  8505. <dt>Type</dt>
  8506. <dd>-</dd>
  8507. </dl>
  8508. <dl>
  8509. <dt>DP</dt>
  8510. <dd>-</dl>
  8511. <dl>
  8512. <dt>PlayCost</dt>
  8513. <dd>4</dd>
  8514. </dl>
  8515. <dl>
  8516. <dt>DigivolveCost1</dt>
  8517. <dd>-</dd>
  8518. </dl>
  8519. <dl>
  8520. <dt>DigivolveCost2</dt>
  8521. <dd>-</dd>
  8522. </dl>
  8523. </div>
  8524. </div>
  8525. <divclass="cardinfo_bottom">
  8526. <dl>
  8527. <dt>Effect</dt>
  8528. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[Your Turn] When one of your Digimon with [Gaomon] or [GaoGamon] in its name attacks, by suspending this Tamer, both players draw 1 card from their decks.</dd>
  8529. </dl>
  8530. <dl>
  8531. <dt>Digivolveeffect</dt>
  8532. <dd>-</dd>
  8533. </dl>
  8534. <dl>
  8535. <dt>Securityeffect</dt>
  8536. <dd>[Security] Play this card without paying the cost.</dd>
  8537. </dl>
  8538. <dl>
  8539. <dt>Notes</dt>
  8540. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8541. </div>
  8542. </div>
  8543. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8544. </div>
  8545. </div>
  8546. </li>
  8547. <liclass="image_lists_itemdatapage-4">
  8548. <aclass="card_img">
  8549. <imgsrc="../images/cardlist/card/BT13-098.png"alt="BT13-098RichardSampson"></a>
  8550. <divclass="popup">
  8551. <divclass="card_detailcard_detail_yellow">
  8552. <divclass="card_detail_inner">
  8553. <ulclass="cardinfo_head">
  8554. <liclass="cardno">BT13-098</li>
  8555. <li>U</li>
  8556. <liclass="cardtype">Tamer</li>
  8557. </ul>
  8558. <divclass="card_name">RichardSampson</div>
  8559. <divclass="cardinfo_top">
  8560. <divclass="card_img">
  8561. <imgsrc="../images/cardlist/card/BT13-098.png"alt="BT13-098RichardSampson"></div>
  8562. <divclass="cardinfo_top_body">
  8563. <dl>
  8564. <dt>Form</dt>
  8565. <dd>-</dd>
  8566. </dl>
  8567. <dl>
  8568. <dt>Attribute</dt>
  8569. <dd>-</dd>
  8570. </dl>
  8571. <dl>
  8572. <dt>Type</dt>
  8573. <dd>-</dd>
  8574. </dl>
  8575. <dl>
  8576. <dt>DP</dt>
  8577. <dd>-</dl>
  8578. <dl>
  8579. <dt>PlayCost</dt>
  8580. <dd>3</dd>
  8581. </dl>
  8582. <dl>
  8583. <dt>DigivolveCost1</dt>
  8584. <dd>-</dd>
  8585. </dl>
  8586. <dl>
  8587. <dt>DigivolveCost2</dt>
  8588. <dd>-</dd>
  8589. </dl>
  8590. </div>
  8591. </div>
  8592. <divclass="cardinfo_bottom">
  8593. <dl>
  8594. <dt>Effect</dt>
  8595. <dd>When an effect trashes this card from the security stack, you may play this card without paying the cost.<br> [Start of Your Main Phase] If there're 6 or fewer total cards in both players' security stacks, gain 1 memory.<br>[Main] If there're 6 or fewer total cards in both players' security stacks, by suspending this Tamer, 1 of your [Kudamon] may digivolve into [Kentaurosmon] in the hand for the digivolution cost, ignoring its level.</dd>
  8596. </dl>
  8597. <dl>
  8598. <dt>Digivolveeffect</dt>
  8599. <dd>-</dd>
  8600. </dl>
  8601. <dl>
  8602. <dt>Securityeffect</dt>
  8603. <dd>[Security] Play this card without paying the cost.</dd>
  8604. </dl>
  8605. <dl>
  8606. <dt>Notes</dt>
  8607. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8608. </div>
  8609. </div>
  8610. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8611. </div>
  8612. </div>
  8613. </li>
  8614. <liclass="image_lists_itemdatapage-4">
  8615. <aclass="card_img">
  8616. <imgsrc="../images/cardlist/card/BT13-098_P1.png"alt="BT13-098RichardSampson"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  8617. </a>
  8618. <divclass="popup">
  8619. <divclass="card_detailcard_detail_yellow">
  8620. <divclass="card_detail_inner">
  8621. <ulclass="cardinfo_head">
  8622. <liclass="cardno">BT13-098</li>
  8623. <li>U</li>
  8624. <liclass="cardtype">Tamer</li>
  8625. <liclass="cardtypecardParallel">AlternativeArt</li>
  8626. </ul>
  8627. <divclass="card_name">RichardSampson</div>
  8628. <divclass="cardinfo_top">
  8629. <divclass="card_img">
  8630. <imgsrc="../images/cardlist/card/BT13-098_P1.png"alt="BT13-098RichardSampson"></div>
  8631. <divclass="cardinfo_top_body">
  8632. <dl>
  8633. <dt>Form</dt>
  8634. <dd>-</dd>
  8635. </dl>
  8636. <dl>
  8637. <dt>Attribute</dt>
  8638. <dd>-</dd>
  8639. </dl>
  8640. <dl>
  8641. <dt>Type</dt>
  8642. <dd>-</dd>
  8643. </dl>
  8644. <dl>
  8645. <dt>DP</dt>
  8646. <dd>-</dl>
  8647. <dl>
  8648. <dt>PlayCost</dt>
  8649. <dd>3</dd>
  8650. </dl>
  8651. <dl>
  8652. <dt>DigivolveCost1</dt>
  8653. <dd>-</dd>
  8654. </dl>
  8655. <dl>
  8656. <dt>DigivolveCost2</dt>
  8657. <dd>-</dd>
  8658. </dl>
  8659. </div>
  8660. </div>
  8661. <divclass="cardinfo_bottom">
  8662. <dl>
  8663. <dt>Effect</dt>
  8664. <dd>When an effect trashes this card from the security stack, you may play this card without paying the cost.<br> [Start of Your Main Phase] If there're 6 or fewer total cards in both players' security stacks, gain 1 memory.<br>[Main] If there're 6 or fewer total cards in both players' security stacks, by suspending this Tamer, 1 of your [Kudamon] may digivolve into [Kentaurosmon] in the hand for the digivolution cost, ignoring its level.</dd>
  8665. </dl>
  8666. <dl>
  8667. <dt>Digivolveeffect</dt>
  8668. <dd>-</dd>
  8669. </dl>
  8670. <dl>
  8671. <dt>Securityeffect</dt>
  8672. <dd>[Security] Play this card without paying the cost.</dd>
  8673. </dl>
  8674. <dl>
  8675. <dt>Notes</dt>
  8676. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8677. </div>
  8678. </div>
  8679. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8680. </div>
  8681. </div>
  8682. </li>
  8683. <liclass="image_lists_itemdatapage-4">
  8684. <aclass="card_img">
  8685. <imgsrc="../images/cardlist/card/BT13-099.png"alt="BT13-099SpencerDamon"></a>
  8686. <divclass="popup">
  8687. <divclass="card_detailcard_detail_yellow">
  8688. <divclass="card_detail_inner">
  8689. <ulclass="cardinfo_head">
  8690. <liclass="cardno">BT13-099</li>
  8691. <li>U</li>
  8692. <liclass="cardtype">Tamer</li>
  8693. </ul>
  8694. <divclass="card_name">SpencerDamon</div>
  8695. <divclass="cardinfo_top">
  8696. <divclass="card_img">
  8697. <imgsrc="../images/cardlist/card/BT13-099.png"alt="BT13-099SpencerDamon"></div>
  8698. <divclass="cardinfo_top_body">
  8699. <dl>
  8700. <dt>Form</dt>
  8701. <dd>-</dd>
  8702. </dl>
  8703. <dl>
  8704. <dt>Attribute</dt>
  8705. <dd>-</dd>
  8706. </dl>
  8707. <dl>
  8708. <dt>Type</dt>
  8709. <dd>-</dd>
  8710. </dl>
  8711. <dl>
  8712. <dt>DP</dt>
  8713. <dd>-</dl>
  8714. <dl>
  8715. <dt>PlayCost</dt>
  8716. <dd>3</dd>
  8717. </dl>
  8718. <dl>
  8719. <dt>DigivolveCost1</dt>
  8720. <dd>-</dd>
  8721. </dl>
  8722. <dl>
  8723. <dt>DigivolveCost2</dt>
  8724. <dd>-</dd>
  8725. </dl>
  8726. </div>
  8727. </div>
  8728. <divclass="cardinfo_bottom">
  8729. <dl>
  8730. <dt>Effect</dt>
  8731. <dd>[All Turns][Once Per Turn] When one of your yellow Digimon becomes suspended, 1 of your opponent's Digimon gets -1000 DP until the end of your opponent's turn.<br>[End of Your Turn][Once Per Turn] If there're 6 or fewer total cards in both players' security stacks, until the end of your opponent's turn, this Tamer is also treated as a 3000 DP Digimon, can't digivolve, and gains <Blocker>.</dd>
  8732. </dl>
  8733. <dl>
  8734. <dt>Digivolveeffect</dt>
  8735. <dd>-</dd>
  8736. </dl>
  8737. <dl>
  8738. <dt>Securityeffect</dt>
  8739. <dd>[Security] Play this card without paying the cost.</dd>
  8740. </dl>
  8741. <dl>
  8742. <dt>Notes</dt>
  8743. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8744. </div>
  8745. </div>
  8746. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8747. </div>
  8748. </div>
  8749. </li>
  8750. <liclass="image_lists_itemdatapage-4">
  8751. <aclass="card_img">
  8752. <imgsrc="../images/cardlist/card/BT13-100.png"alt="BT13-100YoshinoFujieda"></a>
  8753. <divclass="popup">
  8754. <divclass="card_detailcard_detail_green">
  8755. <divclass="card_detail_inner">
  8756. <ulclass="cardinfo_head">
  8757. <liclass="cardno">BT13-100</li>
  8758. <li>R</li>
  8759. <liclass="cardtype">Tamer</li>
  8760. </ul>
  8761. <divclass="card_name">YoshinoFujieda</div>
  8762. <divclass="cardinfo_top">
  8763. <divclass="card_img">
  8764. <imgsrc="../images/cardlist/card/BT13-100.png"alt="BT13-100YoshinoFujieda"></div>
  8765. <divclass="cardinfo_top_body">
  8766. <dl>
  8767. <dt>Form</dt>
  8768. <dd>-</dd>
  8769. </dl>
  8770. <dl>
  8771. <dt>Attribute</dt>
  8772. <dd>-</dd>
  8773. </dl>
  8774. <dl>
  8775. <dt>Type</dt>
  8776. <dd>-</dd>
  8777. </dl>
  8778. <dl>
  8779. <dt>DP</dt>
  8780. <dd>-</dl>
  8781. <dl>
  8782. <dt>PlayCost</dt>
  8783. <dd>4</dd>
  8784. </dl>
  8785. <dl>
  8786. <dt>DigivolveCost1</dt>
  8787. <dd>-</dd>
  8788. </dl>
  8789. <dl>
  8790. <dt>DigivolveCost2</dt>
  8791. <dd>-</dd>
  8792. </dl>
  8793. </div>
  8794. </div>
  8795. <divclass="cardinfo_bottom">
  8796. <dl>
  8797. <dt>Effect</dt>
  8798. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[Your Turn] When one of your Digimon digivolves into a Digimon with [Vegetation], [Plant], or [Fairy] in one of its traits, by suspending this Tamer, gain 1 memory.</dd>
  8799. </dl>
  8800. <dl>
  8801. <dt>Digivolveeffect</dt>
  8802. <dd>-</dd>
  8803. </dl>
  8804. <dl>
  8805. <dt>Securityeffect</dt>
  8806. <dd>[Security] Play this card without paying the cost.</dd>
  8807. </dl>
  8808. <dl>
  8809. <dt>Notes</dt>
  8810. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8811. </div>
  8812. </div>
  8813. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8814. </div>
  8815. </div>
  8816. </li>
  8817. <liclass="image_lists_itemdatapage-4">
  8818. <aclass="card_img">
  8819. <imgsrc="../images/cardlist/card/BT13-100_P1.png"alt="BT13-100YoshinoFujieda"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  8820. </a>
  8821. <divclass="popup">
  8822. <divclass="card_detailcard_detail_green">
  8823. <divclass="card_detail_inner">
  8824. <ulclass="cardinfo_head">
  8825. <liclass="cardno">BT13-100</li>
  8826. <li>R</li>
  8827. <liclass="cardtype">Tamer</li>
  8828. <liclass="cardtypecardParallel">AlternativeArt</li>
  8829. </ul>
  8830. <divclass="card_name">YoshinoFujieda</div>
  8831. <divclass="cardinfo_top">
  8832. <divclass="card_img">
  8833. <imgsrc="../images/cardlist/card/BT13-100_P1.png"alt="BT13-100YoshinoFujieda"></div>
  8834. <divclass="cardinfo_top_body">
  8835. <dl>
  8836. <dt>Form</dt>
  8837. <dd>-</dd>
  8838. </dl>
  8839. <dl>
  8840. <dt>Attribute</dt>
  8841. <dd>-</dd>
  8842. </dl>
  8843. <dl>
  8844. <dt>Type</dt>
  8845. <dd>-</dd>
  8846. </dl>
  8847. <dl>
  8848. <dt>DP</dt>
  8849. <dd>-</dl>
  8850. <dl>
  8851. <dt>PlayCost</dt>
  8852. <dd>4</dd>
  8853. </dl>
  8854. <dl>
  8855. <dt>DigivolveCost1</dt>
  8856. <dd>-</dd>
  8857. </dl>
  8858. <dl>
  8859. <dt>DigivolveCost2</dt>
  8860. <dd>-</dd>
  8861. </dl>
  8862. </div>
  8863. </div>
  8864. <divclass="cardinfo_bottom">
  8865. <dl>
  8866. <dt>Effect</dt>
  8867. <dd>[Start of Your Turn] If you have 2 or fewer memory, set it to 3.<br>[Your Turn] When one of your Digimon digivolves into a Digimon with [Vegetation], [Plant], or [Fairy] in one of its traits, by suspending this Tamer, gain 1 memory.</dd>
  8868. </dl>
  8869. <dl>
  8870. <dt>Digivolveeffect</dt>
  8871. <dd>-</dd>
  8872. </dl>
  8873. <dl>
  8874. <dt>Securityeffect</dt>
  8875. <dd>[Security] Play this card without paying the cost.</dd>
  8876. </dl>
  8877. <dl>
  8878. <dt>Notes</dt>
  8879. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8880. </div>
  8881. </div>
  8882. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8883. </div>
  8884. </div>
  8885. </li>
  8886. <liclass="image_lists_itemdatapage-4">
  8887. <aclass="card_img">
  8888. <imgsrc="../images/cardlist/card/BT13-101.png"alt="BT13-101MikiKurosaki&MegumiShirakawa"></a>
  8889. <divclass="popup">
  8890. <divclass="card_detailcard_detail_black_yellowmulticolor">
  8891. <divclass="card_detail_inner">
  8892. <ulclass="cardinfo_head">
  8893. <liclass="cardno">BT13-101</li>
  8894. <li>U</li>
  8895. <liclass="cardtype">Tamer</li>
  8896. </ul>
  8897. <divclass="card_name">MikiKurosaki&MegumiShirakawa</div>
  8898. <divclass="cardinfo_top">
  8899. <divclass="card_img">
  8900. <imgsrc="../images/cardlist/card/BT13-101.png"alt="BT13-101MikiKurosaki&MegumiShirakawa"></div>
  8901. <divclass="cardinfo_top_body">
  8902. <dl>
  8903. <dt>Form</dt>
  8904. <dd>-</dd>
  8905. </dl>
  8906. <dl>
  8907. <dt>Attribute</dt>
  8908. <dd>-</dd>
  8909. </dl>
  8910. <dl>
  8911. <dt>Type</dt>
  8912. <dd>-</dd>
  8913. </dl>
  8914. <dl>
  8915. <dt>DP</dt>
  8916. <dd>-</dl>
  8917. <dl>
  8918. <dt>PlayCost</dt>
  8919. <dd>4</dd>
  8920. </dl>
  8921. <dl>
  8922. <dt>DigivolveCost1</dt>
  8923. <dd>-</dd>
  8924. </dl>
  8925. <dl>
  8926. <dt>DigivolveCost2</dt>
  8927. <dd>-</dd>
  8928. </dl>
  8929. </div>
  8930. </div>
  8931. <divclass="cardinfo_bottom">
  8932. <dl>
  8933. <dt>Effect</dt>
  8934. <dd>[On Play] You may play 1 Digimon card with [PawnChessmon] in its name from your hand without paying the cost.<br> [All Turns] When you play a 2-color black and yellow Digimon, by suspending this Tamer, <Draw 1> and gain 1 memory.</dd>
  8935. </dl>
  8936. <dl>
  8937. <dt>Digivolveeffect</dt>
  8938. <dd>-</dd>
  8939. </dl>
  8940. <dl>
  8941. <dt>Securityeffect</dt>
  8942. <dd>[Security] Play this card without paying the cost.</dd>
  8943. </dl>
  8944. <dl>
  8945. <dt>Notes</dt>
  8946. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  8947. </div>
  8948. </div>
  8949. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8950. </div>
  8951. </div>
  8952. </li>
  8953. <liclass="image_lists_itemdatapage-4">
  8954. <aclass="card_img">
  8955. <imgsrc="../images/cardlist/card/BT13-101_P1.png"alt="BT13-101MikiKurosaki&MegumiShirakawa"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  8956. </a>
  8957. <divclass="popup">
  8958. <divclass="card_detailcard_detail_black_yellowmulticolor">
  8959. <divclass="card_detail_inner">
  8960. <ulclass="cardinfo_head">
  8961. <liclass="cardno">BT13-101</li>
  8962. <li>U</li>
  8963. <liclass="cardtype">Tamer</li>
  8964. <liclass="cardtypecardParallel">AlternativeArt</li>
  8965. </ul>
  8966. <divclass="card_name">MikiKurosaki&MegumiShirakawa</div>
  8967. <divclass="cardinfo_top">
  8968. <divclass="card_img">
  8969. <imgsrc="../images/cardlist/card/BT13-101_P1.png"alt="BT13-101MikiKurosaki&MegumiShirakawa"></div>
  8970. <divclass="cardinfo_top_body">
  8971. <dl>
  8972. <dt>Form</dt>
  8973. <dd>-</dd>
  8974. </dl>
  8975. <dl>
  8976. <dt>Attribute</dt>
  8977. <dd>-</dd>
  8978. </dl>
  8979. <dl>
  8980. <dt>Type</dt>
  8981. <dd>-</dd>
  8982. </dl>
  8983. <dl>
  8984. <dt>DP</dt>
  8985. <dd>-</dl>
  8986. <dl>
  8987. <dt>PlayCost</dt>
  8988. <dd>4</dd>
  8989. </dl>
  8990. <dl>
  8991. <dt>DigivolveCost1</dt>
  8992. <dd>-</dd>
  8993. </dl>
  8994. <dl>
  8995. <dt>DigivolveCost2</dt>
  8996. <dd>-</dd>
  8997. </dl>
  8998. </div>
  8999. </div>
  9000. <divclass="cardinfo_bottom">
  9001. <dl>
  9002. <dt>Effect</dt>
  9003. <dd>[On Play] You may play 1 Digimon card with [PawnChessmon] in its name from your hand without paying the cost.<br> [All Turns] When you play a 2-color black and yellow Digimon, by suspending this Tamer, <Draw 1> and gain 1 memory.</dd>
  9004. </dl>
  9005. <dl>
  9006. <dt>Digivolveeffect</dt>
  9007. <dd>-</dd>
  9008. </dl>
  9009. <dl>
  9010. <dt>Securityeffect</dt>
  9011. <dd>[Security] Play this card without paying the cost.</dd>
  9012. </dl>
  9013. <dl>
  9014. <dt>Notes</dt>
  9015. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9016. </div>
  9017. </div>
  9018. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9019. </div>
  9020. </div>
  9021. </li>
  9022. <liclass="image_lists_itemdatapage-4">
  9023. <aclass="card_img">
  9024. <imgsrc="../images/cardlist/card/BT13-102.png"alt="BT13-102KeenanCrier"></a>
  9025. <divclass="popup">
  9026. <divclass="card_detailcard_detail_purple">
  9027. <divclass="card_detail_inner">
  9028. <ulclass="cardinfo_head">
  9029. <liclass="cardno">BT13-102</li>
  9030. <li>R</li>
  9031. <liclass="cardtype">Tamer</li>
  9032. </ul>
  9033. <divclass="card_name">KeenanCrier</div>
  9034. <divclass="cardinfo_top">
  9035. <divclass="card_img">
  9036. <imgsrc="../images/cardlist/card/BT13-102.png"alt="BT13-102KeenanCrier"></div>
  9037. <divclass="cardinfo_top_body">
  9038. <dl>
  9039. <dt>Form</dt>
  9040. <dd>-</dd>
  9041. </dl>
  9042. <dl>
  9043. <dt>Attribute</dt>
  9044. <dd>-</dd>
  9045. </dl>
  9046. <dl>
  9047. <dt>Type</dt>
  9048. <dd>-</dd>
  9049. </dl>
  9050. <dl>
  9051. <dt>DP</dt>
  9052. <dd>-</dl>
  9053. <dl>
  9054. <dt>PlayCost</dt>
  9055. <dd>3</dd>
  9056. </dl>
  9057. <dl>
  9058. <dt>DigivolveCost1</dt>
  9059. <dd>-</dd>
  9060. </dl>
  9061. <dl>
  9062. <dt>DigivolveCost2</dt>
  9063. <dd>-</dd>
  9064. </dl>
  9065. </div>
  9066. </div>
  9067. <divclass="cardinfo_bottom">
  9068. <dl>
  9069. <dt>Effect</dt>
  9070. <dd>[On Play] Your opponent may trash 1 Tamer card or Option card in their hand. If they don't, gain 1 memory and <Draw 1>.<br> [Opponent's Turn] When an effect plays a Digimon, by suspending this Tamer, gain 1 memory.</dd>
  9071. </dl>
  9072. <dl>
  9073. <dt>Digivolveeffect</dt>
  9074. <dd>-</dd>
  9075. </dl>
  9076. <dl>
  9077. <dt>Securityeffect</dt>
  9078. <dd>[Security] Play this card without paying the cost.</dd>
  9079. </dl>
  9080. <dl>
  9081. <dt>Notes</dt>
  9082. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9083. </div>
  9084. </div>
  9085. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9086. </div>
  9087. </div>
  9088. </li>
  9089. <liclass="image_lists_itemdatapage-4">
  9090. <aclass="card_img">
  9091. <imgsrc="../images/cardlist/card/BT13-102_P1.png"alt="BT13-102KeenanCrier"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  9092. </a>
  9093. <divclass="popup">
  9094. <divclass="card_detailcard_detail_purple">
  9095. <divclass="card_detail_inner">
  9096. <ulclass="cardinfo_head">
  9097. <liclass="cardno">BT13-102</li>
  9098. <li>R</li>
  9099. <liclass="cardtype">Tamer</li>
  9100. <liclass="cardtypecardParallel">AlternativeArt</li>
  9101. </ul>
  9102. <divclass="card_name">KeenanCrier</div>
  9103. <divclass="cardinfo_top">
  9104. <divclass="card_img">
  9105. <imgsrc="../images/cardlist/card/BT13-102_P1.png"alt="BT13-102KeenanCrier"></div>
  9106. <divclass="cardinfo_top_body">
  9107. <dl>
  9108. <dt>Form</dt>
  9109. <dd>-</dd>
  9110. </dl>
  9111. <dl>
  9112. <dt>Attribute</dt>
  9113. <dd>-</dd>
  9114. </dl>
  9115. <dl>
  9116. <dt>Type</dt>
  9117. <dd>-</dd>
  9118. </dl>
  9119. <dl>
  9120. <dt>DP</dt>
  9121. <dd>-</dl>
  9122. <dl>
  9123. <dt>PlayCost</dt>
  9124. <dd>3</dd>
  9125. </dl>
  9126. <dl>
  9127. <dt>DigivolveCost1</dt>
  9128. <dd>-</dd>
  9129. </dl>
  9130. <dl>
  9131. <dt>DigivolveCost2</dt>
  9132. <dd>-</dd>
  9133. </dl>
  9134. </div>
  9135. </div>
  9136. <divclass="cardinfo_bottom">
  9137. <dl>
  9138. <dt>Effect</dt>
  9139. <dd>[On Play] Your opponent may trash 1 Tamer card or Option card in their hand. If they don't, gain 1 memory and <Draw 1>.<br> [Opponent's Turn] When an effect plays a Digimon, by suspending this Tamer, gain 1 memory.</dd>
  9140. </dl>
  9141. <dl>
  9142. <dt>Digivolveeffect</dt>
  9143. <dd>-</dd>
  9144. </dl>
  9145. <dl>
  9146. <dt>Securityeffect</dt>
  9147. <dd>[Security] Play this card without paying the cost.</dd>
  9148. </dl>
  9149. <dl>
  9150. <dt>Notes</dt>
  9151. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9152. </div>
  9153. </div>
  9154. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9155. </div>
  9156. </div>
  9157. </li>
  9158. <liclass="image_lists_itemdatapage-4">
  9159. <aclass="card_img">
  9160. <imgsrc="../images/cardlist/card/BT13-103.png"alt="BT13-103AkihiroKurata"></a>
  9161. <divclass="popup">
  9162. <divclass="card_detailcard_detail_purple">
  9163. <divclass="card_detail_inner">
  9164. <ulclass="cardinfo_head">
  9165. <liclass="cardno">BT13-103</li>
  9166. <li>U</li>
  9167. <liclass="cardtype">Tamer</li>
  9168. </ul>
  9169. <divclass="card_name">AkihiroKurata</div>
  9170. <divclass="cardinfo_top">
  9171. <divclass="card_img">
  9172. <imgsrc="../images/cardlist/card/BT13-103.png"alt="BT13-103AkihiroKurata"></div>
  9173. <divclass="cardinfo_top_body">
  9174. <dl>
  9175. <dt>Form</dt>
  9176. <dd>-</dd>
  9177. </dl>
  9178. <dl>
  9179. <dt>Attribute</dt>
  9180. <dd>-</dd>
  9181. </dl>
  9182. <dl>
  9183. <dt>Type</dt>
  9184. <dd>-</dd>
  9185. </dl>
  9186. <dl>
  9187. <dt>DP</dt>
  9188. <dd>-</dl>
  9189. <dl>
  9190. <dt>PlayCost</dt>
  9191. <dd>3</dd>
  9192. </dl>
  9193. <dl>
  9194. <dt>DigivolveCost1</dt>
  9195. <dd>-</dd>
  9196. </dl>
  9197. <dl>
  9198. <dt>DigivolveCost2</dt>
  9199. <dd>-</dd>
  9200. </dl>
  9201. </div>
  9202. </div>
  9203. <divclass="cardinfo_bottom">
  9204. <dl>
  9205. <dt>Effect</dt>
  9206. <dd>[Your Turn] When a card with [Belphemon] in its name would be played, by deleting 1 of your Digimon with [Gizmon] in its name, reduce the play cost by the play cost of the deleted Digimon.<br> [End of Opponent’s Turn][Once Per Turn] <Draw 1> and trash 1 card in your hand. Then, by placing this Tamer as the bottom digivolution card of 1 of your Digimon with [Belphemon] in its name, delete 1 of your opponent's level 6 Digimon.</dd>
  9207. </dl>
  9208. <dl>
  9209. <dt>Digivolveeffect</dt>
  9210. <dd>-</dd>
  9211. </dl>
  9212. <dl>
  9213. <dt>Securityeffect</dt>
  9214. <dd>[Security] Play this card without paying the cost.</dd>
  9215. </dl>
  9216. <dl>
  9217. <dt>Notes</dt>
  9218. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9219. </div>
  9220. </div>
  9221. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9222. </div>
  9223. </div>
  9224. </li>
  9225. <liclass="image_lists_itemdatapage-4">
  9226. <aclass="card_img">
  9227. <imgsrc="../images/cardlist/card/BT13-104.png"alt="BT13-104FinalShiningBurst"></a>
  9228. <divclass="popup">
  9229. <divclass="card_detailcard_detail_red_yellowmulticolor">
  9230. <divclass="card_detail_inner">
  9231. <ulclass="cardinfo_head">
  9232. <liclass="cardno">BT13-104</li>
  9233. <li>R</li>
  9234. <liclass="cardtype">Option</li>
  9235. </ul>
  9236. <divclass="card_name">FinalShiningBurst</div>
  9237. <divclass="cardinfo_top">
  9238. <divclass="card_img">
  9239. <imgsrc="../images/cardlist/card/BT13-104.png"alt="BT13-104FinalShiningBurst"></div>
  9240. <divclass="cardinfo_top_body">
  9241. <dl>
  9242. <dt>Form</dt>
  9243. <dd>-</dd>
  9244. </dl>
  9245. <dl>
  9246. <dt>Attribute</dt>
  9247. <dd>-</dd>
  9248. </dl>
  9249. <dl>
  9250. <dt>Type</dt>
  9251. <dd>-</dd>
  9252. </dl>
  9253. <dl>
  9254. <dt>DP</dt>
  9255. <dd>-</dl>
  9256. <dl>
  9257. <dt>PlayCost</dt>
  9258. <dd>8</dd>
  9259. </dl>
  9260. <dl>
  9261. <dt>DigivolveCost1</dt>
  9262. <dd>-</dd>
  9263. </dl>
  9264. <dl>
  9265. <dt>DigivolveCost2</dt>
  9266. <dd>-</dd>
  9267. </dl>
  9268. </div>
  9269. </div>
  9270. <divclass="cardinfo_bottom">
  9271. <dl>
  9272. <dt>Effect</dt>
  9273. <dd>[Main] 1 of your opponent's Digimon gets -12000 DP until the end of your opponent's turn. Then, you may play 1 [Marcus Damon] from your hand without paying the cost.</dd>
  9274. </dl>
  9275. <dl>
  9276. <dt>Digivolveeffect</dt>
  9277. <dd>-</dd>
  9278. </dl>
  9279. <dl>
  9280. <dt>Securityeffect</dt>
  9281. <dd>[Security] Activate this card's [Main] effect.</dd>
  9282. </dl>
  9283. <dl>
  9284. <dt>Notes</dt>
  9285. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9286. </div>
  9287. </div>
  9288. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9289. </div>
  9290. </div>
  9291. </li>
  9292. <liclass="image_lists_itemdatapage-4">
  9293. <aclass="card_img">
  9294. <imgsrc="../images/cardlist/card/BT13-105.png"alt="BT13-105FullMoonMeteorImpact"></a>
  9295. <divclass="popup">
  9296. <divclass="card_detailcard_detail_blue">
  9297. <divclass="card_detail_inner">
  9298. <ulclass="cardinfo_head">
  9299. <liclass="cardno">BT13-105</li>
  9300. <li>R</li>
  9301. <liclass="cardtype">Option</li>
  9302. </ul>
  9303. <divclass="card_name">FullMoonMeteorImpact</div>
  9304. <divclass="cardinfo_top">
  9305. <divclass="card_img">
  9306. <imgsrc="../images/cardlist/card/BT13-105.png"alt="BT13-105FullMoonMeteorImpact"></div>
  9307. <divclass="cardinfo_top_body">
  9308. <dl>
  9309. <dt>Form</dt>
  9310. <dd>-</dd>
  9311. </dl>
  9312. <dl>
  9313. <dt>Attribute</dt>
  9314. <dd>-</dd>
  9315. </dl>
  9316. <dl>
  9317. <dt>Type</dt>
  9318. <dd>-</dd>
  9319. </dl>
  9320. <dl>
  9321. <dt>DP</dt>
  9322. <dd>-</dl>
  9323. <dl>
  9324. <dt>PlayCost</dt>
  9325. <dd>8</dd>
  9326. </dl>
  9327. <dl>
  9328. <dt>DigivolveCost1</dt>
  9329. <dd>-</dd>
  9330. </dl>
  9331. <dl>
  9332. <dt>DigivolveCost2</dt>
  9333. <dd>-</dd>
  9334. </dl>
  9335. </div>
  9336. </div>
  9337. <divclass="cardinfo_bottom">
  9338. <dl>
  9339. <dt>Effect</dt>
  9340. <dd>[Main] Return 1 of your opponent's Digimon to the hand. Then, gain 1 memory for every 4 cards in your opponent's hand.</dd>
  9341. </dl>
  9342. <dl>
  9343. <dt>Digivolveeffect</dt>
  9344. <dd>-</dd>
  9345. </dl>
  9346. <dl>
  9347. <dt>Securityeffect</dt>
  9348. <dd>[Security] Return 1 of your opponent's Digimon to the hand.</dd>
  9349. </dl>
  9350. <dl>
  9351. <dt>Notes</dt>
  9352. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9353. </div>
  9354. </div>
  9355. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9356. </div>
  9357. </div>
  9358. </li>
  9359. <liclass="image_lists_itemdatapage-4">
  9360. <aclass="card_img">
  9361. <imgsrc="../images/cardlist/card/BT13-106.png"alt="BT13-106Odin'sBreath"></a>
  9362. <divclass="popup">
  9363. <divclass="card_detailcard_detail_yellow">
  9364. <divclass="card_detail_inner">
  9365. <ulclass="cardinfo_head">
  9366. <liclass="cardno">BT13-106</li>
  9367. <li>U</li>
  9368. <liclass="cardtype">Option</li>
  9369. </ul>
  9370. <divclass="card_name">Odin'sBreath</div>
  9371. <divclass="cardinfo_top">
  9372. <divclass="card_img">
  9373. <imgsrc="../images/cardlist/card/BT13-106.png"alt="BT13-106Odin'sBreath"></div>
  9374. <divclass="cardinfo_top_body">
  9375. <dl>
  9376. <dt>Form</dt>
  9377. <dd>-</dd>
  9378. </dl>
  9379. <dl>
  9380. <dt>Attribute</dt>
  9381. <dd>-</dd>
  9382. </dl>
  9383. <dl>
  9384. <dt>Type</dt>
  9385. <dd>-</dd>
  9386. </dl>
  9387. <dl>
  9388. <dt>DP</dt>
  9389. <dd>-</dl>
  9390. <dl>
  9391. <dt>PlayCost</dt>
  9392. <dd>5</dd>
  9393. </dl>
  9394. <dl>
  9395. <dt>DigivolveCost1</dt>
  9396. <dd>-</dd>
  9397. </dl>
  9398. <dl>
  9399. <dt>DigivolveCost2</dt>
  9400. <dd>-</dd>
  9401. </dl>
  9402. </div>
  9403. </div>
  9404. <divclass="cardinfo_bottom">
  9405. <dl>
  9406. <dt>Effect</dt>
  9407. <dd> When an effect trashes this card from the security stack, activate this card's [Main] effect.<br>[Main] 1 of your opponent's Digimon gets -3000 DP until the end of your opponent's turn. Then, if there're 6 or fewer total cards in both players' security stacks, all of your opponent's Digimon gain <Security Attack -1> until the end of your opponent's turn.</dd>
  9408. </dl>
  9409. <dl>
  9410. <dt>Digivolveeffect</dt>
  9411. <dd>-</dd>
  9412. </dl>
  9413. <dl>
  9414. <dt>Securityeffect</dt>
  9415. <dd>[Security] Activate this card's [Main] effect.</dd>
  9416. </dl>
  9417. <dl>
  9418. <dt>Notes</dt>
  9419. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9420. </div>
  9421. </div>
  9422. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9423. </div>
  9424. </div>
  9425. </li>
  9426. <liclass="image_lists_itemdatapage-4">
  9427. <aclass="card_img">
  9428. <imgsrc="../images/cardlist/card/BT13-107.png"alt="BT13-107VulcanCrusher"></a>
  9429. <divclass="popup">
  9430. <divclass="card_detailcard_detail_green">
  9431. <divclass="card_detail_inner">
  9432. <ulclass="cardinfo_head">
  9433. <liclass="cardno">BT13-107</li>
  9434. <li>U</li>
  9435. <liclass="cardtype">Option</li>
  9436. </ul>
  9437. <divclass="card_name">VulcanCrusher</div>
  9438. <divclass="cardinfo_top">
  9439. <divclass="card_img">
  9440. <imgsrc="../images/cardlist/card/BT13-107.png"alt="BT13-107VulcanCrusher"></div>
  9441. <divclass="cardinfo_top_body">
  9442. <dl>
  9443. <dt>Form</dt>
  9444. <dd>-</dd>
  9445. </dl>
  9446. <dl>
  9447. <dt>Attribute</dt>
  9448. <dd>-</dd>
  9449. </dl>
  9450. <dl>
  9451. <dt>Type</dt>
  9452. <dd>-</dd>
  9453. </dl>
  9454. <dl>
  9455. <dt>DP</dt>
  9456. <dd>-</dl>
  9457. <dl>
  9458. <dt>PlayCost</dt>
  9459. <dd>4</dd>
  9460. </dl>
  9461. <dl>
  9462. <dt>DigivolveCost1</dt>
  9463. <dd>-</dd>
  9464. </dl>
  9465. <dl>
  9466. <dt>DigivolveCost2</dt>
  9467. <dd>-</dd>
  9468. </dl>
  9469. </div>
  9470. </div>
  9471. <divclass="cardinfo_bottom">
  9472. <dl>
  9473. <dt>Effect</dt>
  9474. <dd>[Main] Choose 1 of your Digimon. Return 1 of your opponent's suspended Digimon with DP less than or equal to that Digimon to the hand. Then, by returning the top card of one of your [Leopardmon: Leopard Mode] to the hand, unsuspend all of your Digimon.</dd>
  9475. </dl>
  9476. <dl>
  9477. <dt>Digivolveeffect</dt>
  9478. <dd>-</dd>
  9479. </dl>
  9480. <dl>
  9481. <dt>Securityeffect</dt>
  9482. <dd>[Security] Suspend 1 of your opponent's Digimon. Then, add this card to the hand.</dd>
  9483. </dl>
  9484. <dl>
  9485. <dt>Notes</dt>
  9486. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9487. </div>
  9488. </div>
  9489. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9490. </div>
  9491. </div>
  9492. </li>
  9493. <liclass="image_lists_itemdatapage-4">
  9494. <aclass="card_img">
  9495. <imgsrc="../images/cardlist/card/BT13-108.png"alt="BT13-108Waltz'sEnd"></a>
  9496. <divclass="popup">
  9497. <divclass="card_detailcard_detail_black">
  9498. <divclass="card_detail_inner">
  9499. <ulclass="cardinfo_head">
  9500. <liclass="cardno">BT13-108</li>
  9501. <li>U</li>
  9502. <liclass="cardtype">Option</li>
  9503. </ul>
  9504. <divclass="card_name">Waltz'sEnd</div>
  9505. <divclass="cardinfo_top">
  9506. <divclass="card_img">
  9507. <imgsrc="../images/cardlist/card/BT13-108.png"alt="BT13-108Waltz'sEnd"></div>
  9508. <divclass="cardinfo_top_body">
  9509. <dl>
  9510. <dt>Form</dt>
  9511. <dd>-</dd>
  9512. </dl>
  9513. <dl>
  9514. <dt>Attribute</dt>
  9515. <dd>-</dd>
  9516. </dl>
  9517. <dl>
  9518. <dt>Type</dt>
  9519. <dd>-</dd>
  9520. </dl>
  9521. <dl>
  9522. <dt>DP</dt>
  9523. <dd>-</dl>
  9524. <dl>
  9525. <dt>PlayCost</dt>
  9526. <dd>6</dd>
  9527. </dl>
  9528. <dl>
  9529. <dt>DigivolveCost1</dt>
  9530. <dd>-</dd>
  9531. </dl>
  9532. <dl>
  9533. <dt>DigivolveCost2</dt>
  9534. <dd>-</dd>
  9535. </dl>
  9536. </div>
  9537. </div>
  9538. <divclass="cardinfo_bottom">
  9539. <dl>
  9540. <dt>Effect</dt>
  9541. <dd>[Main] Until the end of your opponent's turn, 1 of your Digimon gains "[Opponent's Turn] When this Digimon becomes suspended, delete all of your opponent's Digimon with a play cost less than or equal to this Digimon's" and "[Opponent's Turn] This Digimon isn't affected by your opponent's Option cards." </dd>
  9542. </dl>
  9543. <dl>
  9544. <dt>Digivolveeffect</dt>
  9545. <dd>-</dd>
  9546. </dl>
  9547. <dl>
  9548. <dt>Securityeffect</dt>
  9549. <dd>[Security] Delete 1 of your opponent's Digimon with the lowest play cost.</dd>
  9550. </dl>
  9551. <dl>
  9552. <dt>Notes</dt>
  9553. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9554. </div>
  9555. </div>
  9556. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9557. </div>
  9558. </div>
  9559. </li>
  9560. <liclass="image_lists_itemdatapage-4">
  9561. <aclass="card_img">
  9562. <imgsrc="../images/cardlist/card/BT13-109.png"alt="BT13-109GiftofDarkness"></a>
  9563. <divclass="popup">
  9564. <divclass="card_detailcard_detail_purple">
  9565. <divclass="card_detail_inner">
  9566. <ulclass="cardinfo_head">
  9567. <liclass="cardno">BT13-109</li>
  9568. <li>R</li>
  9569. <liclass="cardtype">Option</li>
  9570. </ul>
  9571. <divclass="card_name">GiftofDarkness</div>
  9572. <divclass="cardinfo_top">
  9573. <divclass="card_img">
  9574. <imgsrc="../images/cardlist/card/BT13-109.png"alt="BT13-109GiftofDarkness"></div>
  9575. <divclass="cardinfo_top_body">
  9576. <dl>
  9577. <dt>Form</dt>
  9578. <dd>-</dd>
  9579. </dl>
  9580. <dl>
  9581. <dt>Attribute</dt>
  9582. <dd>-</dd>
  9583. </dl>
  9584. <dl>
  9585. <dt>Type</dt>
  9586. <dd>-</dd>
  9587. </dl>
  9588. <dl>
  9589. <dt>DP</dt>
  9590. <dd>-</dl>
  9591. <dl>
  9592. <dt>PlayCost</dt>
  9593. <dd>6</dd>
  9594. </dl>
  9595. <dl>
  9596. <dt>DigivolveCost1</dt>
  9597. <dd>-</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>[Main] Delete 1 of your opponent's level 6 or higher Digimon. Then, 1 of your Digimon may digivolve into [Belphemon: Sleep Mode] from your trash without paying the cost.</dd>
  9609. </dl>
  9610. <dl>
  9611. <dt>Digivolveeffect</dt>
  9612. <dd>-</dd>
  9613. </dl>
  9614. <dl>
  9615. <dt>Securityeffect</dt>
  9616. <dd>[Security] By trashing 1 Digimon card in your hand, delete 1 of your opponent's Digimon whose level is less than or equal to the trashed card.</dd>
  9617. </dl>
  9618. <dl>
  9619. <dt>Notes</dt>
  9620. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</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/BT13-110.png"alt="BT13-110RoyalKnightsofthePurge"></a>
  9630. <divclass="popup">
  9631. <divclass="card_detailcard_detail_white">
  9632. <divclass="card_detail_inner">
  9633. <ulclass="cardinfo_head">
  9634. <liclass="cardno">BT13-110</li>
  9635. <li>R</li>
  9636. <liclass="cardtype">Option</li>
  9637. </ul>
  9638. <divclass="card_name">RoyalKnightsofthePurge</div>
  9639. <divclass="cardinfo_top">
  9640. <divclass="card_img">
  9641. <imgsrc="../images/cardlist/card/BT13-110.png"alt="BT13-110RoyalKnightsofthePurge"></div>
  9642. <divclass="cardinfo_top_body">
  9643. <dl>
  9644. <dt>Form</dt>
  9645. <dd>-</dd>
  9646. </dl>
  9647. <dl>
  9648. <dt>Attribute</dt>
  9649. <dd>-</dd>
  9650. </dl>
  9651. <dl>
  9652. <dt>Type</dt>
  9653. <dd>RoyalKnight</dd>
  9654. </dl>
  9655. <dl>
  9656. <dt>DP</dt>
  9657. <dd>-</dl>
  9658. <dl>
  9659. <dt>PlayCost</dt>
  9660. <dd>6</dd>
  9661. </dl>
  9662. <dl>
  9663. <dt>DigivolveCost1</dt>
  9664. <dd>-</dd>
  9665. </dl>
  9666. <dl>
  9667. <dt>DigivolveCost2</dt>
  9668. <dd>-</dd>
  9669. </dl>
  9670. </div>
  9671. </div>
  9672. <divclass="cardinfo_bottom">
  9673. <dl>
  9674. <dt>Effect</dt>
  9675. <dd>[Main] <Draw 1>. You may place 1 Digimon card from your hand as the bottom digivolution card of 1 of your [King Drasil_7D6] in the breeding area. Then, place this card in the battle area.<br> [Main] <Delay><br> ・ Play 1 [Royal Knight] trait card from the digivolution cards of your Digimon in the breeding area without paying the cost. [On Play] effects on Digimon played by this effect don't activate, and they gain <Rush> for the turn.</dd>
  9676. </dl>
  9677. <dl>
  9678. <dt>Digivolveeffect</dt>
  9679. <dd>-</dd>
  9680. </dl>
  9681. <dl>
  9682. <dt>Securityeffect</dt>
  9683. <dd>[Security] Place this card in the battle area.</dd>
  9684. </dl>
  9685. <dl>
  9686. <dt>Notes</dt>
  9687. <dd><ahref="/products/pack/ver13.php">&rtri;BOOSTERVERSUSROYALKNIGHTS[BT13]</a></dd></dl>
  9688. </div>
  9689. </div>
  9690. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9691. </div>
  9692. </div>
  9693. </li>