522021.txt 257 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870
  1. <liclass="image_lists_itemdatapage-1">
  2. <aclass="card_img">
  3. <imgsrc="../images/cardlist/card/BT16-001.png"alt="BT16-001Poromon"></a>
  4. <divclass="popup">
  5. <divclass="card_detailcard_detail_red">
  6. <divclass="card_detail_inner">
  7. <ulclass="cardinfo_head">
  8. <liclass="cardno">BT16-001</li>
  9. <li>U</li>
  10. <liclass="cardtype">Digi-Egg</li>
  11. <liclass="cardlv">Lv.2</li>
  12. </ul>
  13. <divclass="card_name">Poromon</div>
  14. <divclass="cardinfo_top">
  15. <divclass="card_img">
  16. <imgsrc="../images/cardlist/card/BT16-001.png"alt="BT16-001Poromon"></div>
  17. <divclass="cardinfo_top_body">
  18. <dl>
  19. <dt>Color</dt>
  20. <ddclass="cardColor">
  21. <spanclass="cardColor_red">Red</span>
  22. </dd>
  23. </dl>
  24. <dl>
  25. <dt>Form</dt>
  26. <dd>In-Training</dd>
  27. </dl>
  28. <dl>
  29. <dt>Attribute</dt>
  30. <dd>-</dd>
  31. </dl>
  32. <dl>
  33. <dt>Type</dt>
  34. <dd>MiniBird</dd>
  35. </dl>
  36. <divclass="cardinfo_flex">
  37. <dlclass="cardinfo_dp">
  38. <dt>DP</dt>
  39. <dd>-</dl>
  40. <dl>
  41. <dt>PlayCost</dt>
  42. <dd>-</dd>
  43. </dl>
  44. </div>
  45. <dl>
  46. <dt>DigivolveCost1</dt>
  47. <dd>-</dd>
  48. </dl>
  49. <dl>
  50. <dt>DigivolveCost2</dt>
  51. <dd>-</dd>
  52. </dl>
  53. </div>
  54. </div>
  55. <divclass="cardinfo_bottom">
  56. <dl>
  57. <dt>Effect</dt>
  58. <dd>-</dd>
  59. </dl>
  60. <dl>
  61. <dt>InheritedEffect</dt>
  62. <dd>[When Attacking] [Once Per Turn] If this Digimon has 2 or more colors, delete 1 of your opponent's Digimon with 2000 DP or less.</dd>
  63. </dl>
  64. <dl>
  65. <dt>SecurityEffect</dt>
  66. <dd>-</dd>
  67. </dl>
  68. <dl>
  69. <dt>Notes</dt>
  70. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  71. </div>
  72. </div>
  73. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  74. </div>
  75. </div>
  76. </li>
  77. <liclass="image_lists_itemdatapage-1">
  78. <aclass="card_img">
  79. <imgsrc="../images/cardlist/card/BT16-001_P1.png"alt="BT16-001Poromon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_red.png">
  80. </a>
  81. <divclass="popup">
  82. <divclass="card_detailcard_detail_red">
  83. <divclass="card_detail_inner">
  84. <ulclass="cardinfo_head">
  85. <liclass="cardno">BT16-001</li>
  86. <li>U</li>
  87. <liclass="cardtype">Digi-Egg</li>
  88. <liclass="cardlv">Lv.2</li>
  89. <liclass="cardtypecardParallel">AlternativeArt</li>
  90. </ul>
  91. <divclass="card_name">Poromon</div>
  92. <divclass="cardinfo_top">
  93. <divclass="card_img">
  94. <imgsrc="../images/cardlist/card/BT16-001_P1.png"alt="BT16-001Poromon"></div>
  95. <divclass="cardinfo_top_body">
  96. <dl>
  97. <dt>Color</dt>
  98. <ddclass="cardColor">
  99. <spanclass="cardColor_red">Red</span>
  100. </dd>
  101. </dl>
  102. <dl>
  103. <dt>Form</dt>
  104. <dd>In-Training</dd>
  105. </dl>
  106. <dl>
  107. <dt>Attribute</dt>
  108. <dd>-</dd>
  109. </dl>
  110. <dl>
  111. <dt>Type</dt>
  112. <dd>MiniBird</dd>
  113. </dl>
  114. <divclass="cardinfo_flex">
  115. <dlclass="cardinfo_dp">
  116. <dt>DP</dt>
  117. <dd>-</dl>
  118. <dl>
  119. <dt>PlayCost</dt>
  120. <dd>-</dd>
  121. </dl>
  122. </div>
  123. <dl>
  124. <dt>DigivolveCost1</dt>
  125. <dd>-</dd>
  126. </dl>
  127. <dl>
  128. <dt>DigivolveCost2</dt>
  129. <dd>-</dd>
  130. </dl>
  131. </div>
  132. </div>
  133. <divclass="cardinfo_bottom">
  134. <dl>
  135. <dt>Effect</dt>
  136. <dd>-</dd>
  137. </dl>
  138. <dl>
  139. <dt>InheritedEffect</dt>
  140. <dd>[When Attacking] [Once Per Turn] If this Digimon has 2 or more colors, delete 1 of your opponent's Digimon with 2000 DP or less.</dd>
  141. </dl>
  142. <dl>
  143. <dt>SecurityEffect</dt>
  144. <dd>-</dd>
  145. </dl>
  146. <dl>
  147. <dt>Notes</dt>
  148. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  149. </div>
  150. </div>
  151. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  152. </div>
  153. </div>
  154. </li>
  155. <liclass="image_lists_itemdatapage-1">
  156. <aclass="card_img">
  157. <imgsrc="../images/cardlist/card/BT16-002.png"alt="BT16-002DemiVeemon"></a>
  158. <divclass="popup">
  159. <divclass="card_detailcard_detail_blue">
  160. <divclass="card_detail_inner">
  161. <ulclass="cardinfo_head">
  162. <liclass="cardno">BT16-002</li>
  163. <li>U</li>
  164. <liclass="cardtype">Digi-Egg</li>
  165. <liclass="cardlv">Lv.2</li>
  166. </ul>
  167. <divclass="card_name">DemiVeemon</div>
  168. <divclass="cardinfo_top">
  169. <divclass="card_img">
  170. <imgsrc="../images/cardlist/card/BT16-002.png"alt="BT16-002DemiVeemon"></div>
  171. <divclass="cardinfo_top_body">
  172. <dl>
  173. <dt>Color</dt>
  174. <ddclass="cardColor">
  175. <spanclass="cardColor_blue">Blue</span>
  176. </dd>
  177. </dl>
  178. <dl>
  179. <dt>Form</dt>
  180. <dd>In-Training</dd>
  181. </dl>
  182. <dl>
  183. <dt>Attribute</dt>
  184. <dd>-</dd>
  185. </dl>
  186. <dl>
  187. <dt>Type</dt>
  188. <dd>BabyDragon</dd>
  189. </dl>
  190. <divclass="cardinfo_flex">
  191. <dlclass="cardinfo_dp">
  192. <dt>DP</dt>
  193. <dd>-</dl>
  194. <dl>
  195. <dt>PlayCost</dt>
  196. <dd>-</dd>
  197. </dl>
  198. </div>
  199. <dl>
  200. <dt>DigivolveCost1</dt>
  201. <dd>-</dd>
  202. </dl>
  203. <dl>
  204. <dt>DigivolveCost2</dt>
  205. <dd>-</dd>
  206. </dl>
  207. </div>
  208. </div>
  209. <divclass="cardinfo_bottom">
  210. <dl>
  211. <dt>Effect</dt>
  212. <dd>-</dd>
  213. </dl>
  214. <dl>
  215. <dt>InheritedEffect</dt>
  216. <dd>[All Turns] While this Digimon has 2 or more colors, it gets +1000 DP.</dd>
  217. </dl>
  218. <dl>
  219. <dt>SecurityEffect</dt>
  220. <dd>-</dd>
  221. </dl>
  222. <dl>
  223. <dt>Notes</dt>
  224. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  225. </div>
  226. </div>
  227. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  228. </div>
  229. </div>
  230. </li>
  231. <liclass="image_lists_itemdatapage-1">
  232. <aclass="card_img">
  233. <imgsrc="../images/cardlist/card/BT16-002_P1.png"alt="BT16-002DemiVeemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_blue.png">
  234. </a>
  235. <divclass="popup">
  236. <divclass="card_detailcard_detail_blue">
  237. <divclass="card_detail_inner">
  238. <ulclass="cardinfo_head">
  239. <liclass="cardno">BT16-002</li>
  240. <li>U</li>
  241. <liclass="cardtype">Digi-Egg</li>
  242. <liclass="cardlv">Lv.2</li>
  243. <liclass="cardtypecardParallel">AlternativeArt</li>
  244. </ul>
  245. <divclass="card_name">DemiVeemon</div>
  246. <divclass="cardinfo_top">
  247. <divclass="card_img">
  248. <imgsrc="../images/cardlist/card/BT16-002_P1.png"alt="BT16-002DemiVeemon"></div>
  249. <divclass="cardinfo_top_body">
  250. <dl>
  251. <dt>Color</dt>
  252. <ddclass="cardColor">
  253. <spanclass="cardColor_blue">Blue</span>
  254. </dd>
  255. </dl>
  256. <dl>
  257. <dt>Form</dt>
  258. <dd>In-Training</dd>
  259. </dl>
  260. <dl>
  261. <dt>Attribute</dt>
  262. <dd>-</dd>
  263. </dl>
  264. <dl>
  265. <dt>Type</dt>
  266. <dd>BabyDragon</dd>
  267. </dl>
  268. <divclass="cardinfo_flex">
  269. <dlclass="cardinfo_dp">
  270. <dt>DP</dt>
  271. <dd>-</dl>
  272. <dl>
  273. <dt>PlayCost</dt>
  274. <dd>-</dd>
  275. </dl>
  276. </div>
  277. <dl>
  278. <dt>DigivolveCost1</dt>
  279. <dd>-</dd>
  280. </dl>
  281. <dl>
  282. <dt>DigivolveCost2</dt>
  283. <dd>-</dd>
  284. </dl>
  285. </div>
  286. </div>
  287. <divclass="cardinfo_bottom">
  288. <dl>
  289. <dt>Effect</dt>
  290. <dd>-</dd>
  291. </dl>
  292. <dl>
  293. <dt>InheritedEffect</dt>
  294. <dd>[All Turns] While this Digimon has 2 or more colors, it gets +1000 DP.</dd>
  295. </dl>
  296. <dl>
  297. <dt>SecurityEffect</dt>
  298. <dd>-</dd>
  299. </dl>
  300. <dl>
  301. <dt>Notes</dt>
  302. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  303. </div>
  304. </div>
  305. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  306. </div>
  307. </div>
  308. </li>
  309. <liclass="image_lists_itemdatapage-1">
  310. <aclass="card_img">
  311. <imgsrc="../images/cardlist/card/BT16-003.png"alt="BT16-003Upamon"></a>
  312. <divclass="popup">
  313. <divclass="card_detailcard_detail_yellow">
  314. <divclass="card_detail_inner">
  315. <ulclass="cardinfo_head">
  316. <liclass="cardno">BT16-003</li>
  317. <li>U</li>
  318. <liclass="cardtype">Digi-Egg</li>
  319. <liclass="cardlv">Lv.2</li>
  320. </ul>
  321. <divclass="card_name">Upamon</div>
  322. <divclass="cardinfo_top">
  323. <divclass="card_img">
  324. <imgsrc="../images/cardlist/card/BT16-003.png"alt="BT16-003Upamon"></div>
  325. <divclass="cardinfo_top_body">
  326. <dl>
  327. <dt>Color</dt>
  328. <ddclass="cardColor">
  329. <spanclass="cardColor_yellow">Yellow</span>
  330. </dd>
  331. </dl>
  332. <dl>
  333. <dt>Form</dt>
  334. <dd>In-Training</dd>
  335. </dl>
  336. <dl>
  337. <dt>Attribute</dt>
  338. <dd>-</dd>
  339. </dl>
  340. <dl>
  341. <dt>Type</dt>
  342. <dd>Amphibian</dd>
  343. </dl>
  344. <divclass="cardinfo_flex">
  345. <dlclass="cardinfo_dp">
  346. <dt>DP</dt>
  347. <dd>-</dl>
  348. <dl>
  349. <dt>PlayCost</dt>
  350. <dd>-</dd>
  351. </dl>
  352. </div>
  353. <dl>
  354. <dt>DigivolveCost1</dt>
  355. <dd>-</dd>
  356. </dl>
  357. <dl>
  358. <dt>DigivolveCost2</dt>
  359. <dd>-</dd>
  360. </dl>
  361. </div>
  362. </div>
  363. <divclass="cardinfo_bottom">
  364. <dl>
  365. <dt>Effect</dt>
  366. <dd>-</dd>
  367. </dl>
  368. <dl>
  369. <dt>InheritedEffect</dt>
  370. <dd>[Opponent's Turn] While this Digimon has 2 or more colors, it gains <Blocker>.</dd>
  371. </dl>
  372. <dl>
  373. <dt>SecurityEffect</dt>
  374. <dd>-</dd>
  375. </dl>
  376. <dl>
  377. <dt>Notes</dt>
  378. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  379. </div>
  380. </div>
  381. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  382. </div>
  383. </div>
  384. </li>
  385. <liclass="image_lists_itemdatapage-1">
  386. <aclass="card_img">
  387. <imgsrc="../images/cardlist/card/BT16-003_P1.png"alt="BT16-003Upamon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_yellow.png">
  388. </a>
  389. <divclass="popup">
  390. <divclass="card_detailcard_detail_yellow">
  391. <divclass="card_detail_inner">
  392. <ulclass="cardinfo_head">
  393. <liclass="cardno">BT16-003</li>
  394. <li>U</li>
  395. <liclass="cardtype">Digi-Egg</li>
  396. <liclass="cardlv">Lv.2</li>
  397. <liclass="cardtypecardParallel">AlternativeArt</li>
  398. </ul>
  399. <divclass="card_name">Upamon</div>
  400. <divclass="cardinfo_top">
  401. <divclass="card_img">
  402. <imgsrc="../images/cardlist/card/BT16-003_P1.png"alt="BT16-003Upamon"></div>
  403. <divclass="cardinfo_top_body">
  404. <dl>
  405. <dt>Color</dt>
  406. <ddclass="cardColor">
  407. <spanclass="cardColor_yellow">Yellow</span>
  408. </dd>
  409. </dl>
  410. <dl>
  411. <dt>Form</dt>
  412. <dd>In-Training</dd>
  413. </dl>
  414. <dl>
  415. <dt>Attribute</dt>
  416. <dd>-</dd>
  417. </dl>
  418. <dl>
  419. <dt>Type</dt>
  420. <dd>Amphibian</dd>
  421. </dl>
  422. <divclass="cardinfo_flex">
  423. <dlclass="cardinfo_dp">
  424. <dt>DP</dt>
  425. <dd>-</dl>
  426. <dl>
  427. <dt>PlayCost</dt>
  428. <dd>-</dd>
  429. </dl>
  430. </div>
  431. <dl>
  432. <dt>DigivolveCost1</dt>
  433. <dd>-</dd>
  434. </dl>
  435. <dl>
  436. <dt>DigivolveCost2</dt>
  437. <dd>-</dd>
  438. </dl>
  439. </div>
  440. </div>
  441. <divclass="cardinfo_bottom">
  442. <dl>
  443. <dt>Effect</dt>
  444. <dd>-</dd>
  445. </dl>
  446. <dl>
  447. <dt>InheritedEffect</dt>
  448. <dd>[Opponent's Turn] While this Digimon has 2 or more colors, it gains <Blocker>.</dd>
  449. </dl>
  450. <dl>
  451. <dt>SecurityEffect</dt>
  452. <dd>-</dd>
  453. </dl>
  454. <dl>
  455. <dt>Notes</dt>
  456. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  457. </div>
  458. </div>
  459. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  460. </div>
  461. </div>
  462. </li>
  463. <liclass="image_lists_itemdatapage-1">
  464. <aclass="card_img">
  465. <imgsrc="../images/cardlist/card/BT16-004.png"alt="BT16-004Minomon"></a>
  466. <divclass="popup">
  467. <divclass="card_detailcard_detail_green">
  468. <divclass="card_detail_inner">
  469. <ulclass="cardinfo_head">
  470. <liclass="cardno">BT16-004</li>
  471. <li>U</li>
  472. <liclass="cardtype">Digi-Egg</li>
  473. <liclass="cardlv">Lv.2</li>
  474. </ul>
  475. <divclass="card_name">Minomon</div>
  476. <divclass="cardinfo_top">
  477. <divclass="card_img">
  478. <imgsrc="../images/cardlist/card/BT16-004.png"alt="BT16-004Minomon"></div>
  479. <divclass="cardinfo_top_body">
  480. <dl>
  481. <dt>Color</dt>
  482. <ddclass="cardColor">
  483. <spanclass="cardColor_green">Green</span>
  484. </dd>
  485. </dl>
  486. <dl>
  487. <dt>Form</dt>
  488. <dd>In-Training</dd>
  489. </dl>
  490. <dl>
  491. <dt>Attribute</dt>
  492. <dd>-</dd>
  493. </dl>
  494. <dl>
  495. <dt>Type</dt>
  496. <dd>Larva</dd>
  497. </dl>
  498. <divclass="cardinfo_flex">
  499. <dlclass="cardinfo_dp">
  500. <dt>DP</dt>
  501. <dd>-</dl>
  502. <dl>
  503. <dt>PlayCost</dt>
  504. <dd>-</dd>
  505. </dl>
  506. </div>
  507. <dl>
  508. <dt>DigivolveCost1</dt>
  509. <dd>-</dd>
  510. </dl>
  511. <dl>
  512. <dt>DigivolveCost2</dt>
  513. <dd>-</dd>
  514. </dl>
  515. </div>
  516. </div>
  517. <divclass="cardinfo_bottom">
  518. <dl>
  519. <dt>Effect</dt>
  520. <dd>-</dd>
  521. </dl>
  522. <dl>
  523. <dt>InheritedEffect</dt>
  524. <dd>[All Turns] [Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, if this Digimon has 2 or more colors, gain 1 memory.</dd>
  525. </dl>
  526. <dl>
  527. <dt>SecurityEffect</dt>
  528. <dd>-</dd>
  529. </dl>
  530. <dl>
  531. <dt>Notes</dt>
  532. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  533. </div>
  534. </div>
  535. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  536. </div>
  537. </div>
  538. </li>
  539. <liclass="image_lists_itemdatapage-1">
  540. <aclass="card_img">
  541. <imgsrc="../images/cardlist/card/BT16-004_P1.png"alt="BT16-004Minomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  542. </a>
  543. <divclass="popup">
  544. <divclass="card_detailcard_detail_green">
  545. <divclass="card_detail_inner">
  546. <ulclass="cardinfo_head">
  547. <liclass="cardno">BT16-004</li>
  548. <li>U</li>
  549. <liclass="cardtype">Digi-Egg</li>
  550. <liclass="cardlv">Lv.2</li>
  551. <liclass="cardtypecardParallel">AlternativeArt</li>
  552. </ul>
  553. <divclass="card_name">Minomon</div>
  554. <divclass="cardinfo_top">
  555. <divclass="card_img">
  556. <imgsrc="../images/cardlist/card/BT16-004_P1.png"alt="BT16-004Minomon"></div>
  557. <divclass="cardinfo_top_body">
  558. <dl>
  559. <dt>Color</dt>
  560. <ddclass="cardColor">
  561. <spanclass="cardColor_green">Green</span>
  562. </dd>
  563. </dl>
  564. <dl>
  565. <dt>Form</dt>
  566. <dd>In-Training</dd>
  567. </dl>
  568. <dl>
  569. <dt>Attribute</dt>
  570. <dd>-</dd>
  571. </dl>
  572. <dl>
  573. <dt>Type</dt>
  574. <dd>Larva</dd>
  575. </dl>
  576. <divclass="cardinfo_flex">
  577. <dlclass="cardinfo_dp">
  578. <dt>DP</dt>
  579. <dd>-</dl>
  580. <dl>
  581. <dt>PlayCost</dt>
  582. <dd>-</dd>
  583. </dl>
  584. </div>
  585. <dl>
  586. <dt>DigivolveCost1</dt>
  587. <dd>-</dd>
  588. </dl>
  589. <dl>
  590. <dt>DigivolveCost2</dt>
  591. <dd>-</dd>
  592. </dl>
  593. </div>
  594. </div>
  595. <divclass="cardinfo_bottom">
  596. <dl>
  597. <dt>Effect</dt>
  598. <dd>-</dd>
  599. </dl>
  600. <dl>
  601. <dt>InheritedEffect</dt>
  602. <dd>[All Turns] [Once Per Turn] When this Digimon deletes an opponent's Digimon in battle, if this Digimon has 2 or more colors, gain 1 memory.</dd>
  603. </dl>
  604. <dl>
  605. <dt>SecurityEffect</dt>
  606. <dd>-</dd>
  607. </dl>
  608. <dl>
  609. <dt>Notes</dt>
  610. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  611. </div>
  612. </div>
  613. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  614. </div>
  615. </div>
  616. </li>
  617. <liclass="image_lists_itemdatapage-1">
  618. <aclass="card_img">
  619. <imgsrc="../images/cardlist/card/BT16-005.png"alt="BT16-005Dorimon"></a>
  620. <divclass="popup">
  621. <divclass="card_detailcard_detail_black">
  622. <divclass="card_detail_inner">
  623. <ulclass="cardinfo_head">
  624. <liclass="cardno">BT16-005</li>
  625. <li>U</li>
  626. <liclass="cardtype">Digi-Egg</li>
  627. <liclass="cardlv">Lv.2</li>
  628. </ul>
  629. <divclass="card_name">Dorimon</div>
  630. <divclass="cardinfo_top">
  631. <divclass="card_img">
  632. <imgsrc="../images/cardlist/card/BT16-005.png"alt="BT16-005Dorimon"></div>
  633. <divclass="cardinfo_top_body">
  634. <dl>
  635. <dt>Color</dt>
  636. <ddclass="cardColor">
  637. <spanclass="cardColor_black">Black</span>
  638. </dd>
  639. </dl>
  640. <dl>
  641. <dt>Form</dt>
  642. <dd>In-Training</dd>
  643. </dl>
  644. <dl>
  645. <dt>Attribute</dt>
  646. <dd>-</dd>
  647. </dl>
  648. <dl>
  649. <dt>Type</dt>
  650. <dd>Lesser/XAntibody</dd>
  651. </dl>
  652. <divclass="cardinfo_flex">
  653. <dlclass="cardinfo_dp">
  654. <dt>DP</dt>
  655. <dd>-</dl>
  656. <dl>
  657. <dt>PlayCost</dt>
  658. <dd>-</dd>
  659. </dl>
  660. </div>
  661. <dl>
  662. <dt>DigivolveCost1</dt>
  663. <dd>-</dd>
  664. </dl>
  665. <dl>
  666. <dt>DigivolveCost2</dt>
  667. <dd>-</dd>
  668. </dl>
  669. </div>
  670. </div>
  671. <divclass="cardinfo_bottom">
  672. <dl>
  673. <dt>Effect</dt>
  674. <dd>-</dd>
  675. </dl>
  676. <dl>
  677. <dt>InheritedEffect</dt>
  678. <dd>[All Turns] [Once Per Turn] When another Digimon with <Blocker> is deleted, gain 1 memory.</dd>
  679. </dl>
  680. <dl>
  681. <dt>SecurityEffect</dt>
  682. <dd>-</dd>
  683. </dl>
  684. <dl>
  685. <dt>Notes</dt>
  686. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  687. <aclass="btn"href="/rule/?card_no=BT16-005"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  688. </div>
  689. </div>
  690. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  691. </div>
  692. </div>
  693. </li>
  694. <liclass="image_lists_itemdatapage-1">
  695. <aclass="card_img">
  696. <imgsrc="../images/cardlist/card/BT16-005_P1.png"alt="BT16-005Dorimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  697. </a>
  698. <divclass="popup">
  699. <divclass="card_detailcard_detail_black">
  700. <divclass="card_detail_inner">
  701. <ulclass="cardinfo_head">
  702. <liclass="cardno">BT16-005</li>
  703. <li>U</li>
  704. <liclass="cardtype">Digi-Egg</li>
  705. <liclass="cardlv">Lv.2</li>
  706. <liclass="cardtypecardParallel">AlternativeArt</li>
  707. </ul>
  708. <divclass="card_name">Dorimon</div>
  709. <divclass="cardinfo_top">
  710. <divclass="card_img">
  711. <imgsrc="../images/cardlist/card/BT16-005_P1.png"alt="BT16-005Dorimon"></div>
  712. <divclass="cardinfo_top_body">
  713. <dl>
  714. <dt>Color</dt>
  715. <ddclass="cardColor">
  716. <spanclass="cardColor_black">Black</span>
  717. </dd>
  718. </dl>
  719. <dl>
  720. <dt>Form</dt>
  721. <dd>In-Training</dd>
  722. </dl>
  723. <dl>
  724. <dt>Attribute</dt>
  725. <dd>-</dd>
  726. </dl>
  727. <dl>
  728. <dt>Type</dt>
  729. <dd>Lesser/XAntibody</dd>
  730. </dl>
  731. <divclass="cardinfo_flex">
  732. <dlclass="cardinfo_dp">
  733. <dt>DP</dt>
  734. <dd>-</dl>
  735. <dl>
  736. <dt>PlayCost</dt>
  737. <dd>-</dd>
  738. </dl>
  739. </div>
  740. <dl>
  741. <dt>DigivolveCost1</dt>
  742. <dd>-</dd>
  743. </dl>
  744. <dl>
  745. <dt>DigivolveCost2</dt>
  746. <dd>-</dd>
  747. </dl>
  748. </div>
  749. </div>
  750. <divclass="cardinfo_bottom">
  751. <dl>
  752. <dt>Effect</dt>
  753. <dd>-</dd>
  754. </dl>
  755. <dl>
  756. <dt>InheritedEffect</dt>
  757. <dd>[All Turns] [Once Per Turn] When another Digimon with <Blocker> is deleted, gain 1 memory.</dd>
  758. </dl>
  759. <dl>
  760. <dt>SecurityEffect</dt>
  761. <dd>-</dd>
  762. </dl>
  763. <dl>
  764. <dt>Notes</dt>
  765. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  766. <aclass="btn"href="/rule/?card_no=BT16-005"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  767. </div>
  768. </div>
  769. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  770. </div>
  771. </div>
  772. </li>
  773. <liclass="image_lists_itemdatapage-1">
  774. <aclass="card_img">
  775. <imgsrc="../images/cardlist/card/BT16-006.png"alt="BT16-006Cupimon"></a>
  776. <divclass="popup">
  777. <divclass="card_detailcard_detail_purple">
  778. <divclass="card_detail_inner">
  779. <ulclass="cardinfo_head">
  780. <liclass="cardno">BT16-006</li>
  781. <li>U</li>
  782. <liclass="cardtype">Digi-Egg</li>
  783. <liclass="cardlv">Lv.2</li>
  784. </ul>
  785. <divclass="card_name">Cupimon</div>
  786. <divclass="cardinfo_top">
  787. <divclass="card_img">
  788. <imgsrc="../images/cardlist/card/BT16-006.png"alt="BT16-006Cupimon"></div>
  789. <divclass="cardinfo_top_body">
  790. <dl>
  791. <dt>Color</dt>
  792. <ddclass="cardColor">
  793. <spanclass="cardColor_purple">Purple</span>
  794. </dd>
  795. </dl>
  796. <dl>
  797. <dt>Form</dt>
  798. <dd>In-Training</dd>
  799. </dl>
  800. <dl>
  801. <dt>Attribute</dt>
  802. <dd>-</dd>
  803. </dl>
  804. <dl>
  805. <dt>Type</dt>
  806. <dd>MiniAngel</dd>
  807. </dl>
  808. <divclass="cardinfo_flex">
  809. <dlclass="cardinfo_dp">
  810. <dt>DP</dt>
  811. <dd>-</dl>
  812. <dl>
  813. <dt>PlayCost</dt>
  814. <dd>-</dd>
  815. </dl>
  816. </div>
  817. <dl>
  818. <dt>DigivolveCost1</dt>
  819. <dd>-</dd>
  820. </dl>
  821. <dl>
  822. <dt>DigivolveCost2</dt>
  823. <dd>-</dd>
  824. </dl>
  825. </div>
  826. </div>
  827. <divclass="cardinfo_bottom">
  828. <dl>
  829. <dt>Effect</dt>
  830. <dd>-</dd>
  831. </dl>
  832. <dl>
  833. <dt>InheritedEffect</dt>
  834. <dd>[On Deletion] By trashing 1 card in your hand, gain 1 memory.</dd>
  835. </dl>
  836. <dl>
  837. <dt>SecurityEffect</dt>
  838. <dd>-</dd>
  839. </dl>
  840. <dl>
  841. <dt>Notes</dt>
  842. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  843. </div>
  844. </div>
  845. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  846. </div>
  847. </div>
  848. </li>
  849. <liclass="image_lists_itemdatapage-1">
  850. <aclass="card_img">
  851. <imgsrc="../images/cardlist/card/BT16-006_P1.png"alt="BT16-006Cupimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  852. </a>
  853. <divclass="popup">
  854. <divclass="card_detailcard_detail_purple">
  855. <divclass="card_detail_inner">
  856. <ulclass="cardinfo_head">
  857. <liclass="cardno">BT16-006</li>
  858. <li>U</li>
  859. <liclass="cardtype">Digi-Egg</li>
  860. <liclass="cardlv">Lv.2</li>
  861. <liclass="cardtypecardParallel">AlternativeArt</li>
  862. </ul>
  863. <divclass="card_name">Cupimon</div>
  864. <divclass="cardinfo_top">
  865. <divclass="card_img">
  866. <imgsrc="../images/cardlist/card/BT16-006_P1.png"alt="BT16-006Cupimon"></div>
  867. <divclass="cardinfo_top_body">
  868. <dl>
  869. <dt>Color</dt>
  870. <ddclass="cardColor">
  871. <spanclass="cardColor_purple">Purple</span>
  872. </dd>
  873. </dl>
  874. <dl>
  875. <dt>Form</dt>
  876. <dd>In-Training</dd>
  877. </dl>
  878. <dl>
  879. <dt>Attribute</dt>
  880. <dd>-</dd>
  881. </dl>
  882. <dl>
  883. <dt>Type</dt>
  884. <dd>MiniAngel</dd>
  885. </dl>
  886. <divclass="cardinfo_flex">
  887. <dlclass="cardinfo_dp">
  888. <dt>DP</dt>
  889. <dd>-</dl>
  890. <dl>
  891. <dt>PlayCost</dt>
  892. <dd>-</dd>
  893. </dl>
  894. </div>
  895. <dl>
  896. <dt>DigivolveCost1</dt>
  897. <dd>-</dd>
  898. </dl>
  899. <dl>
  900. <dt>DigivolveCost2</dt>
  901. <dd>-</dd>
  902. </dl>
  903. </div>
  904. </div>
  905. <divclass="cardinfo_bottom">
  906. <dl>
  907. <dt>Effect</dt>
  908. <dd>-</dd>
  909. </dl>
  910. <dl>
  911. <dt>InheritedEffect</dt>
  912. <dd>[On Deletion] By trashing 1 card in your hand, gain 1 memory.</dd>
  913. </dl>
  914. <dl>
  915. <dt>SecurityEffect</dt>
  916. <dd>-</dd>
  917. </dl>
  918. <dl>
  919. <dt>Notes</dt>
  920. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  921. </div>
  922. </div>
  923. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  924. </div>
  925. </div>
  926. </li>
  927. <liclass="image_lists_itemdatapage-1">
  928. <aclass="card_img">
  929. <imgsrc="../images/cardlist/card/BT16-007.png"alt="BT16-007Hawkmon"></a>
  930. <divclass="popup">
  931. <divclass="card_detailcard_detail_red_greenmulticolor">
  932. <divclass="card_detail_inner">
  933. <ulclass="cardinfo_head">
  934. <liclass="cardno">BT16-007</li>
  935. <li>C</li>
  936. <liclass="cardtype">Digimon</li>
  937. <liclass="cardlv">Lv.3</li>
  938. </ul>
  939. <divclass="card_name">Hawkmon</div>
  940. <divclass="cardinfo_top">
  941. <divclass="card_img">
  942. <imgsrc="../images/cardlist/card/BT16-007.png"alt="BT16-007Hawkmon"></div>
  943. <divclass="cardinfo_top_body">
  944. <dl>
  945. <dt>Color</dt>
  946. <ddclass="cardColor">
  947. <spanclass="cardColor_red">Red</span>
  948. <spanclass="cardColor_green">Green</span>
  949. </dd>
  950. </dl>
  951. <dl>
  952. <dt>Form</dt>
  953. <dd>Rookie</dd>
  954. </dl>
  955. <dl>
  956. <dt>Attribute</dt>
  957. <dd>Free</dd>
  958. </dl>
  959. <dl>
  960. <dt>Type</dt>
  961. <dd>Avian</dd>
  962. </dl>
  963. <divclass="cardinfo_flex">
  964. <dlclass="cardinfo_dp">
  965. <dt>DP</dt>
  966. <dd>2000</dl>
  967. <dl>
  968. <dt>PlayCost</dt>
  969. <dd>3</dd>
  970. </dl>
  971. </div>
  972. <dl>
  973. <dt>DigivolveCost1</dt>
  974. <dd>1fromLv.2</dd>
  975. </dl>
  976. <dl>
  977. <dt>DigivolveCost2</dt>
  978. <dd>1fromLv.2</dd>
  979. </dl>
  980. </div>
  981. </div>
  982. <divclass="cardinfo_bottom">
  983. <dl>
  984. <dt>Effect</dt>
  985. <dd>[Digivolve] [Poromon]: Cost 0<br>[Your Turn][Once Per Turn] When one of your other Digimon is played or digivolves, if it has the [Free] trait or is yellow, gain 1 memory.</dd>
  986. </dl>
  987. <dl>
  988. <dt>InheritedEffect</dt>
  989. <dd>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's Digimon.</dd>
  990. </dl>
  991. <dl>
  992. <dt>SecurityEffect</dt>
  993. <dd>-</dd>
  994. </dl>
  995. <dl>
  996. <dt>Notes</dt>
  997. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  998. <aclass="btn"href="/rule/?card_no=BT16-007"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  999. </div>
  1000. </div>
  1001. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1002. </div>
  1003. </div>
  1004. </li>
  1005. <liclass="image_lists_itemdatapage-1">
  1006. <aclass="card_img">
  1007. <imgsrc="../images/cardlist/card/BT16-008.png"alt="BT16-008Aquilamon"></a>
  1008. <divclass="popup">
  1009. <divclass="card_detailcard_detail_red_greenmulticolor">
  1010. <divclass="card_detail_inner">
  1011. <ulclass="cardinfo_head">
  1012. <liclass="cardno">BT16-008</li>
  1013. <li>C</li>
  1014. <liclass="cardtype">Digimon</li>
  1015. <liclass="cardlv">Lv.4</li>
  1016. </ul>
  1017. <divclass="card_name">Aquilamon</div>
  1018. <divclass="cardinfo_top">
  1019. <divclass="card_img">
  1020. <imgsrc="../images/cardlist/card/BT16-008.png"alt="BT16-008Aquilamon"></div>
  1021. <divclass="cardinfo_top_body">
  1022. <dl>
  1023. <dt>Color</dt>
  1024. <ddclass="cardColor">
  1025. <spanclass="cardColor_red">Red</span>
  1026. <spanclass="cardColor_green">Green</span>
  1027. </dd>
  1028. </dl>
  1029. <dl>
  1030. <dt>Form</dt>
  1031. <dd>Champion</dd>
  1032. </dl>
  1033. <dl>
  1034. <dt>Attribute</dt>
  1035. <dd>Free</dd>
  1036. </dl>
  1037. <dl>
  1038. <dt>Type</dt>
  1039. <dd>GiantBird</dd>
  1040. </dl>
  1041. <divclass="cardinfo_flex">
  1042. <dlclass="cardinfo_dp">
  1043. <dt>DP</dt>
  1044. <dd>4000</dl>
  1045. <dl>
  1046. <dt>PlayCost</dt>
  1047. <dd>4</dd>
  1048. </dl>
  1049. </div>
  1050. <dl>
  1051. <dt>DigivolveCost1</dt>
  1052. <dd>3fromLv.3</dd>
  1053. </dl>
  1054. <dl>
  1055. <dt>DigivolveCost2</dt>
  1056. <dd>3fromLv.3</dd>
  1057. </dl>
  1058. </div>
  1059. </div>
  1060. <divclass="cardinfo_bottom">
  1061. <dl>
  1062. <dt>Effect</dt>
  1063. <dd>[Digivolve] [Hawkmon]: Cost 2<br><Jamming> <br>[On Play] [When Digivolving] Delete 1 of your opponent's Digimon with 3000 DP or less.</dd>
  1064. </dl>
  1065. <dl>
  1066. <dt>InheritedEffect</dt>
  1067. <dd>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's Digimon.</dd>
  1068. </dl>
  1069. <dl>
  1070. <dt>SecurityEffect</dt>
  1071. <dd>-</dd>
  1072. </dl>
  1073. <dl>
  1074. <dt>Notes</dt>
  1075. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1076. </div>
  1077. </div>
  1078. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1079. </div>
  1080. </div>
  1081. </li>
  1082. <liclass="image_lists_itemdatapage-1">
  1083. <aclass="card_img">
  1084. <imgsrc="../images/cardlist/card/BT16-009.png"alt="BT16-009Lynxmon"></a>
  1085. <divclass="popup">
  1086. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1087. <divclass="card_detail_inner">
  1088. <ulclass="cardinfo_head">
  1089. <liclass="cardno">BT16-009</li>
  1090. <li>C</li>
  1091. <liclass="cardtype">Digimon</li>
  1092. <liclass="cardlv">Lv.4</li>
  1093. </ul>
  1094. <divclass="card_name">Lynxmon</div>
  1095. <divclass="cardinfo_top">
  1096. <divclass="card_img">
  1097. <imgsrc="../images/cardlist/card/BT16-009.png"alt="BT16-009Lynxmon"></div>
  1098. <divclass="cardinfo_top_body">
  1099. <dl>
  1100. <dt>Color</dt>
  1101. <ddclass="cardColor">
  1102. <spanclass="cardColor_red">Red</span>
  1103. <spanclass="cardColor_yellow">Yellow</span>
  1104. </dd>
  1105. </dl>
  1106. <dl>
  1107. <dt>Form</dt>
  1108. <dd>ArmorForm</dd>
  1109. </dl>
  1110. <dl>
  1111. <dt>Attribute</dt>
  1112. <dd>Free</dd>
  1113. </dl>
  1114. <dl>
  1115. <dt>Type</dt>
  1116. <dd>Beast</dd>
  1117. </dl>
  1118. <divclass="cardinfo_flex">
  1119. <dlclass="cardinfo_dp">
  1120. <dt>DP</dt>
  1121. <dd>5000</dl>
  1122. <dl>
  1123. <dt>PlayCost</dt>
  1124. <dd>5</dd>
  1125. </dl>
  1126. </div>
  1127. <dl>
  1128. <dt>DigivolveCost1</dt>
  1129. <dd>3fromLv.3</dd>
  1130. </dl>
  1131. <dl>
  1132. <dt>DigivolveCost2</dt>
  1133. <dd>3fromLv.3</dd>
  1134. </dl>
  1135. </div>
  1136. </div>
  1137. <divclass="cardinfo_bottom">
  1138. <dl>
  1139. <dt>Effect</dt>
  1140. <dd>[Digivolve] [Gatomon]: Cost 0<br><Raid><Armor Purge> <br>[When Digivolving] 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  1141. </dl>
  1142. <dl>
  1143. <dt>InheritedEffect</dt>
  1144. <dd>-</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/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</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/BT16-010.png"alt="BT16-010Helloogarmon"></a>
  1162. <divclass="popup">
  1163. <divclass="card_detailcard_detail_red_purplemulticolor">
  1164. <divclass="card_detail_inner">
  1165. <ulclass="cardinfo_head">
  1166. <liclass="cardno">BT16-010</li>
  1167. <li>U</li>
  1168. <liclass="cardtype">Digimon</li>
  1169. <liclass="cardlv">Lv.5</li>
  1170. </ul>
  1171. <divclass="card_name">Helloogarmon</div>
  1172. <divclass="cardinfo_top">
  1173. <divclass="card_img">
  1174. <imgsrc="../images/cardlist/card/BT16-010.png"alt="BT16-010Helloogarmon"></div>
  1175. <divclass="cardinfo_top_body">
  1176. <dl>
  1177. <dt>Color</dt>
  1178. <ddclass="cardColor">
  1179. <spanclass="cardColor_red">Red</span>
  1180. <spanclass="cardColor_purple">Purple</span>
  1181. </dd>
  1182. </dl>
  1183. <dl>
  1184. <dt>Form</dt>
  1185. <dd>Ultimate</dd>
  1186. </dl>
  1187. <dl>
  1188. <dt>Attribute</dt>
  1189. <dd>Virus</dd>
  1190. </dl>
  1191. <dl>
  1192. <dt>Type</dt>
  1193. <dd>DarkAnimal/XAntibody/SoC</dd>
  1194. </dl>
  1195. <divclass="cardinfo_flex">
  1196. <dlclass="cardinfo_dp">
  1197. <dt>DP</dt>
  1198. <dd>8000</dl>
  1199. <dl>
  1200. <dt>PlayCost</dt>
  1201. <dd>7</dd>
  1202. </dl>
  1203. </div>
  1204. <dl>
  1205. <dt>DigivolveCost1</dt>
  1206. <dd>4fromLv.4</dd>
  1207. </dl>
  1208. <dl>
  1209. <dt>DigivolveCost2</dt>
  1210. <dd>4fromLv.4</dd>
  1211. </dl>
  1212. </div>
  1213. </div>
  1214. <divclass="cardinfo_bottom">
  1215. <dl>
  1216. <dt>Effect</dt>
  1217. <dd>[Digivolve] Lv.4 w/[SoC] trait: Cost 3<br><Retaliation> <br>[End of Opponent’s Turn] By deleting this Digimon, delete 1 of your opponent's Digimon with the lowest DP. <br>[On Deletion] You may play 1 [Loogamon] or [Eiji Nagasumi] from your trash without paying the cost.</dd>
  1218. </dl>
  1219. <dl>
  1220. <dt>InheritedEffect</dt>
  1221. <dd>-</dd>
  1222. </dl>
  1223. <dl>
  1224. <dt>SecurityEffect</dt>
  1225. <dd>-</dd>
  1226. </dl>
  1227. <dl>
  1228. <dt>Notes</dt>
  1229. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1230. <aclass="btn"href="/rule/?card_no=BT16-010"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1231. </div>
  1232. </div>
  1233. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1234. </div>
  1235. </div>
  1236. </li>
  1237. <liclass="image_lists_itemdatapage-1">
  1238. <aclass="card_img">
  1239. <imgsrc="../images/cardlist/card/BT16-011.png"alt="BT16-011Garudamon(XAntibody)"></a>
  1240. <divclass="popup">
  1241. <divclass="card_detailcard_detail_red">
  1242. <divclass="card_detail_inner">
  1243. <ulclass="cardinfo_head">
  1244. <liclass="cardno">BT16-011</li>
  1245. <li>U</li>
  1246. <liclass="cardtype">Digimon</li>
  1247. <liclass="cardlv">Lv.5</li>
  1248. </ul>
  1249. <divclass="card_name">Garudamon(XAntibody)</div>
  1250. <divclass="cardinfo_top">
  1251. <divclass="card_img">
  1252. <imgsrc="../images/cardlist/card/BT16-011.png"alt="BT16-011Garudamon(XAntibody)"></div>
  1253. <divclass="cardinfo_top_body">
  1254. <dl>
  1255. <dt>Color</dt>
  1256. <ddclass="cardColor">
  1257. <spanclass="cardColor_red">Red</span>
  1258. </dd>
  1259. </dl>
  1260. <dl>
  1261. <dt>Form</dt>
  1262. <dd>Ultimate</dd>
  1263. </dl>
  1264. <dl>
  1265. <dt>Attribute</dt>
  1266. <dd>Vaccine</dd>
  1267. </dl>
  1268. <dl>
  1269. <dt>Type</dt>
  1270. <dd>Birdkin/XAntibody</dd>
  1271. </dl>
  1272. <divclass="cardinfo_flex">
  1273. <dlclass="cardinfo_dp">
  1274. <dt>DP</dt>
  1275. <dd>8000</dl>
  1276. <dl>
  1277. <dt>PlayCost</dt>
  1278. <dd>8</dd>
  1279. </dl>
  1280. </div>
  1281. <dl>
  1282. <dt>DigivolveCost1</dt>
  1283. <dd>3fromLv.4</dd>
  1284. </dl>
  1285. <dl>
  1286. <dt>DigivolveCost2</dt>
  1287. <dd>-</dd>
  1288. </dl>
  1289. </div>
  1290. </div>
  1291. <divclass="cardinfo_bottom">
  1292. <dl>
  1293. <dt>Effect</dt>
  1294. <dd>[Digivolve] [Garudamon]: Cost 0<br>[On Play] [When Digivolving] You may return 1 red Digimon card from your trash to the hand. Then, if [Garudamon] or [X Antibody] is in this Digimon's digivolution cards, delete 1 of your opponent’s Digimon with as much or less DP as this Digimon. <br>[Your Turn] [Once Per Turn] When a red card returns from your trash to the hand, 1 of your Digimon gains <Rush> for the turn.</dd>
  1295. </dl>
  1296. <dl>
  1297. <dt>InheritedEffect</dt>
  1298. <dd>[On Deletion] Trash the top card of your opponent's security stack.</dd>
  1299. </dl>
  1300. <dl>
  1301. <dt>SecurityEffect</dt>
  1302. <dd>-</dd>
  1303. </dl>
  1304. <dl>
  1305. <dt>Notes</dt>
  1306. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1307. </div>
  1308. </div>
  1309. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1310. </div>
  1311. </div>
  1312. </li>
  1313. <liclass="image_lists_itemdatapage-1">
  1314. <aclass="card_img">
  1315. <imgsrc="../images/cardlist/card/BT16-012.png"alt="BT16-012Silphymon"></a>
  1316. <divclass="popup">
  1317. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1318. <divclass="card_detail_inner">
  1319. <ulclass="cardinfo_head">
  1320. <liclass="cardno">BT16-012</li>
  1321. <li>SR</li>
  1322. <liclass="cardtype">Digimon</li>
  1323. <liclass="cardlv">Lv.5</li>
  1324. </ul>
  1325. <divclass="card_name">Silphymon</div>
  1326. <divclass="cardinfo_top">
  1327. <divclass="card_img">
  1328. <imgsrc="../images/cardlist/card/BT16-012.png"alt="BT16-012Silphymon"></div>
  1329. <divclass="cardinfo_top_body">
  1330. <dl>
  1331. <dt>Color</dt>
  1332. <ddclass="cardColor">
  1333. <spanclass="cardColor_red">Red</span>
  1334. <spanclass="cardColor_yellow">Yellow</span>
  1335. </dd>
  1336. </dl>
  1337. <dl>
  1338. <dt>Form</dt>
  1339. <dd>Ultimate</dd>
  1340. </dl>
  1341. <dl>
  1342. <dt>Attribute</dt>
  1343. <dd>Free</dd>
  1344. </dl>
  1345. <dl>
  1346. <dt>Type</dt>
  1347. <dd>Beastkin</dd>
  1348. </dl>
  1349. <divclass="cardinfo_flex">
  1350. <dlclass="cardinfo_dp">
  1351. <dt>DP</dt>
  1352. <dd>8000</dl>
  1353. <dl>
  1354. <dt>PlayCost</dt>
  1355. <dd>8</dd>
  1356. </dl>
  1357. </div>
  1358. <dl>
  1359. <dt>DigivolveCost1</dt>
  1360. <dd>4fromLv.4</dd>
  1361. </dl>
  1362. <dl>
  1363. <dt>DigivolveCost2</dt>
  1364. <dd>4fromLv.4</dd>
  1365. </dl>
  1366. </div>
  1367. </div>
  1368. <divclass="cardinfo_bottom">
  1369. <dl>
  1370. <dt>Effect</dt>
  1371. <dd>[DNA Digivolution] Red Lv.4 + yellow Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (red Lv.4 & yellow Lv.4)> <br>[When Digivolving] If DNA digivolving, 1 of your opponent's Digimon gets -7000 DP until the end of their turn. <br>[When Digivolving] [When Attacking] Delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1372. </dl>
  1373. <dl>
  1374. <dt>InheritedEffect</dt>
  1375. <dd><Partition (red Lv.4 & yellow Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  1376. </dl>
  1377. <dl>
  1378. <dt>SecurityEffect</dt>
  1379. <dd>-</dd>
  1380. </dl>
  1381. <dl>
  1382. <dt>Notes</dt>
  1383. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1384. </div>
  1385. </div>
  1386. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1387. </div>
  1388. </div>
  1389. </li>
  1390. <liclass="image_lists_itemdatapage-1">
  1391. <aclass="card_img">
  1392. <imgsrc="../images/cardlist/card/BT16-012_P1.png"alt="BT16-012Silphymon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1393. </a>
  1394. <divclass="popup">
  1395. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1396. <divclass="card_detail_inner">
  1397. <ulclass="cardinfo_head">
  1398. <liclass="cardno">BT16-012</li>
  1399. <li>SR</li>
  1400. <liclass="cardtype">Digimon</li>
  1401. <liclass="cardlv">Lv.5</li>
  1402. <liclass="cardtypecardParallel">AlternativeArt</li>
  1403. </ul>
  1404. <divclass="card_name">Silphymon</div>
  1405. <divclass="cardinfo_top">
  1406. <divclass="card_img">
  1407. <imgsrc="../images/cardlist/card/BT16-012_P1.png"alt="BT16-012Silphymon"></div>
  1408. <divclass="cardinfo_top_body">
  1409. <dl>
  1410. <dt>Color</dt>
  1411. <ddclass="cardColor">
  1412. <spanclass="cardColor_red">Red</span>
  1413. <spanclass="cardColor_yellow">Yellow</span>
  1414. </dd>
  1415. </dl>
  1416. <dl>
  1417. <dt>Form</dt>
  1418. <dd>Ultimate</dd>
  1419. </dl>
  1420. <dl>
  1421. <dt>Attribute</dt>
  1422. <dd>Free</dd>
  1423. </dl>
  1424. <dl>
  1425. <dt>Type</dt>
  1426. <dd>Beastkin</dd>
  1427. </dl>
  1428. <divclass="cardinfo_flex">
  1429. <dlclass="cardinfo_dp">
  1430. <dt>DP</dt>
  1431. <dd>8000</dl>
  1432. <dl>
  1433. <dt>PlayCost</dt>
  1434. <dd>8</dd>
  1435. </dl>
  1436. </div>
  1437. <dl>
  1438. <dt>DigivolveCost1</dt>
  1439. <dd>4fromLv.4</dd>
  1440. </dl>
  1441. <dl>
  1442. <dt>DigivolveCost2</dt>
  1443. <dd>4fromLv.4</dd>
  1444. </dl>
  1445. </div>
  1446. </div>
  1447. <divclass="cardinfo_bottom">
  1448. <dl>
  1449. <dt>Effect</dt>
  1450. <dd>[DNA Digivolution] Red Lv.4 + yellow Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (red Lv.4 & yellow Lv.4)> <br>[When Digivolving] If DNA digivolving, 1 of your opponent's Digimon gets -7000 DP until the end of their turn. <br>[When Digivolving] [When Attacking] Delete 1 of your opponent's Digimon with 4000 DP or less.</dd>
  1451. </dl>
  1452. <dl>
  1453. <dt>InheritedEffect</dt>
  1454. <dd><Partition (red Lv.4 & yellow Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  1455. </dl>
  1456. <dl>
  1457. <dt>SecurityEffect</dt>
  1458. <dd>-</dd>
  1459. </dl>
  1460. <dl>
  1461. <dt>Notes</dt>
  1462. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1463. </div>
  1464. </div>
  1465. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1466. </div>
  1467. </div>
  1468. </li>
  1469. <liclass="image_lists_itemdatapage-1">
  1470. <aclass="card_img">
  1471. <imgsrc="../images/cardlist/card/BT16-013.png"alt="BT16-013ValkyrimonACE"></a>
  1472. <divclass="popup">
  1473. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1474. <divclass="card_detail_inner">
  1475. <ulclass="cardinfo_head">
  1476. <liclass="cardno">BT16-013</li>
  1477. <li>SR</li>
  1478. <liclass="cardtype">Digimon</li>
  1479. <liclass="cardlv">Lv.6</li>
  1480. </ul>
  1481. <divclass="card_name">ValkyrimonACE</div>
  1482. <divclass="cardinfo_top">
  1483. <divclass="card_img">
  1484. <imgsrc="../images/cardlist/card/BT16-013.png"alt="BT16-013ValkyrimonACE"></div>
  1485. <divclass="cardinfo_top_body">
  1486. <dl>
  1487. <dt>Color</dt>
  1488. <ddclass="cardColor">
  1489. <spanclass="cardColor_red">Red</span>
  1490. <spanclass="cardColor_yellow">Yellow</span>
  1491. </dd>
  1492. </dl>
  1493. <dl>
  1494. <dt>Form</dt>
  1495. <dd>Mega</dd>
  1496. </dl>
  1497. <dl>
  1498. <dt>Attribute</dt>
  1499. <dd>Free</dd>
  1500. </dl>
  1501. <dl>
  1502. <dt>Type</dt>
  1503. <dd>Warrior</dd>
  1504. </dl>
  1505. <divclass="cardinfo_flex">
  1506. <dlclass="cardinfo_dp">
  1507. <dt>DP</dt>
  1508. <dd>12000</dl>
  1509. <dl>
  1510. <dt>PlayCost</dt>
  1511. <dd>7</dd>
  1512. </dl>
  1513. </div>
  1514. <dl>
  1515. <dt>DigivolveCost1</dt>
  1516. <dd>4fromLv.5</dd>
  1517. </dl>
  1518. <dl>
  1519. <dt>DigivolveCost2</dt>
  1520. <dd>4fromLv.5</dd>
  1521. </dl>
  1522. </div>
  1523. </div>
  1524. <divclass="cardinfo_bottom">
  1525. <dl>
  1526. <dt>Effect</dt>
  1527. <dd>[Digivolve] [Silphymon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] All of your opponent's Digimon get -5000 DP for the turn.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, delete 1 of your opponent's 8000 DP or lower Digimon. If this effect didn't delete, this Digimon gains <Security A. +1> until the end of your turn.</dd>
  1528. </dl>
  1529. <dl>
  1530. <dt>InheritedEffect</dt>
  1531. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  1532. </dl>
  1533. <dl>
  1534. <dt>SecurityEffect</dt>
  1535. <dd>-</dd>
  1536. </dl>
  1537. <dl>
  1538. <dt>Notes</dt>
  1539. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1540. <aclass="btn"href="/rule/?card_no=BT16-013"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1541. </div>
  1542. </div>
  1543. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1544. </div>
  1545. </div>
  1546. </li>
  1547. <liclass="image_lists_itemdatapage-1">
  1548. <aclass="card_img">
  1549. <imgsrc="../images/cardlist/card/BT16-013_P1.png"alt="BT16-013ValkyrimonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1550. </a>
  1551. <divclass="popup">
  1552. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1553. <divclass="card_detail_inner">
  1554. <ulclass="cardinfo_head">
  1555. <liclass="cardno">BT16-013</li>
  1556. <li>SR</li>
  1557. <liclass="cardtype">Digimon</li>
  1558. <liclass="cardlv">Lv.6</li>
  1559. <liclass="cardtypecardParallel">AlternativeArt</li>
  1560. </ul>
  1561. <divclass="card_name">ValkyrimonACE</div>
  1562. <divclass="cardinfo_top">
  1563. <divclass="card_img">
  1564. <imgsrc="../images/cardlist/card/BT16-013_P1.png"alt="BT16-013ValkyrimonACE"></div>
  1565. <divclass="cardinfo_top_body">
  1566. <dl>
  1567. <dt>Color</dt>
  1568. <ddclass="cardColor">
  1569. <spanclass="cardColor_red">Red</span>
  1570. <spanclass="cardColor_yellow">Yellow</span>
  1571. </dd>
  1572. </dl>
  1573. <dl>
  1574. <dt>Form</dt>
  1575. <dd>Mega</dd>
  1576. </dl>
  1577. <dl>
  1578. <dt>Attribute</dt>
  1579. <dd>Free</dd>
  1580. </dl>
  1581. <dl>
  1582. <dt>Type</dt>
  1583. <dd>Warrior</dd>
  1584. </dl>
  1585. <divclass="cardinfo_flex">
  1586. <dlclass="cardinfo_dp">
  1587. <dt>DP</dt>
  1588. <dd>12000</dl>
  1589. <dl>
  1590. <dt>PlayCost</dt>
  1591. <dd>7</dd>
  1592. </dl>
  1593. </div>
  1594. <dl>
  1595. <dt>DigivolveCost1</dt>
  1596. <dd>4fromLv.5</dd>
  1597. </dl>
  1598. <dl>
  1599. <dt>DigivolveCost2</dt>
  1600. <dd>4fromLv.5</dd>
  1601. </dl>
  1602. </div>
  1603. </div>
  1604. <divclass="cardinfo_bottom">
  1605. <dl>
  1606. <dt>Effect</dt>
  1607. <dd>[Digivolve] [Silphymon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] All of your opponent's Digimon get -5000 DP for the turn.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, delete 1 of your opponent's 8000 DP or lower Digimon. If this effect didn't delete, this Digimon gains <Security A. +1> until the end of your turn.</dd>
  1608. </dl>
  1609. <dl>
  1610. <dt>InheritedEffect</dt>
  1611. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  1612. </dl>
  1613. <dl>
  1614. <dt>SecurityEffect</dt>
  1615. <dd>-</dd>
  1616. </dl>
  1617. <dl>
  1618. <dt>Notes</dt>
  1619. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1620. <aclass="btn"href="/rule/?card_no=BT16-013"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1621. </div>
  1622. </div>
  1623. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1624. </div>
  1625. </div>
  1626. </li>
  1627. <liclass="image_lists_itemdatapage-1">
  1628. <aclass="card_img">
  1629. <imgsrc="../images/cardlist/card/BT16-013_P2.png"alt="BT16-013ValkyrimonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  1630. </a>
  1631. <divclass="popup">
  1632. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1633. <divclass="card_detail_inner">
  1634. <ulclass="cardinfo_head">
  1635. <liclass="cardno">BT16-013</li>
  1636. <li>SR</li>
  1637. <liclass="cardtype">Digimon</li>
  1638. <liclass="cardlv">Lv.6</li>
  1639. <liclass="cardtypecardParallel">AlternativeArt</li>
  1640. </ul>
  1641. <divclass="card_name">ValkyrimonACE</div>
  1642. <divclass="cardinfo_top">
  1643. <divclass="card_img">
  1644. <imgsrc="../images/cardlist/card/BT16-013_P2.png"alt="BT16-013ValkyrimonACE"></div>
  1645. <divclass="cardinfo_top_body">
  1646. <dl>
  1647. <dt>Color</dt>
  1648. <ddclass="cardColor">
  1649. <spanclass="cardColor_red">Red</span>
  1650. <spanclass="cardColor_yellow">Yellow</span>
  1651. </dd>
  1652. </dl>
  1653. <dl>
  1654. <dt>Form</dt>
  1655. <dd>Mega</dd>
  1656. </dl>
  1657. <dl>
  1658. <dt>Attribute</dt>
  1659. <dd>Free</dd>
  1660. </dl>
  1661. <dl>
  1662. <dt>Type</dt>
  1663. <dd>Warrior</dd>
  1664. </dl>
  1665. <divclass="cardinfo_flex">
  1666. <dlclass="cardinfo_dp">
  1667. <dt>DP</dt>
  1668. <dd>12000</dl>
  1669. <dl>
  1670. <dt>PlayCost</dt>
  1671. <dd>7</dd>
  1672. </dl>
  1673. </div>
  1674. <dl>
  1675. <dt>DigivolveCost1</dt>
  1676. <dd>4fromLv.5</dd>
  1677. </dl>
  1678. <dl>
  1679. <dt>DigivolveCost2</dt>
  1680. <dd>4fromLv.5</dd>
  1681. </dl>
  1682. </div>
  1683. </div>
  1684. <divclass="cardinfo_bottom">
  1685. <dl>
  1686. <dt>Effect</dt>
  1687. <dd>[Digivolve] [Silphymon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] All of your opponent's Digimon get -5000 DP for the turn.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, delete 1 of your opponent's 8000 DP or lower Digimon. If this effect didn't delete, this Digimon gains <Security A. +1> until the end of your turn.</dd>
  1688. </dl>
  1689. <dl>
  1690. <dt>InheritedEffect</dt>
  1691. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  1692. </dl>
  1693. <dl>
  1694. <dt>SecurityEffect</dt>
  1695. <dd>-</dd>
  1696. </dl>
  1697. <dl>
  1698. <dt>Notes</dt>
  1699. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1700. <aclass="btn"href="/rule/?card_no=BT16-013"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1701. </div>
  1702. </div>
  1703. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1704. </div>
  1705. </div>
  1706. </li>
  1707. <liclass="image_lists_itemdatapage-1">
  1708. <aclass="card_img">
  1709. <imgsrc="../images/cardlist/card/BT16-014.png"alt="BT16-014Goldramon(XAntibody)"></a>
  1710. <divclass="popup">
  1711. <divclass="card_detailcard_detail_red_yellowmulticolor">
  1712. <divclass="card_detail_inner">
  1713. <ulclass="cardinfo_head">
  1714. <liclass="cardno">BT16-014</li>
  1715. <li>R</li>
  1716. <liclass="cardtype">Digimon</li>
  1717. <liclass="cardlv">Lv.6</li>
  1718. </ul>
  1719. <divclass="card_name">Goldramon(XAntibody)</div>
  1720. <divclass="cardinfo_top">
  1721. <divclass="card_img">
  1722. <imgsrc="../images/cardlist/card/BT16-014.png"alt="BT16-014Goldramon(XAntibody)"></div>
  1723. <divclass="cardinfo_top_body">
  1724. <dl>
  1725. <dt>Color</dt>
  1726. <ddclass="cardColor">
  1727. <spanclass="cardColor_red">Red</span>
  1728. <spanclass="cardColor_yellow">Yellow</span>
  1729. </dd>
  1730. </dl>
  1731. <dl>
  1732. <dt>Form</dt>
  1733. <dd>Mega</dd>
  1734. </dl>
  1735. <dl>
  1736. <dt>Attribute</dt>
  1737. <dd>Vaccine</dd>
  1738. </dl>
  1739. <dl>
  1740. <dt>Type</dt>
  1741. <dd>HolyDragon/XAntibody/FourGreatDragons</dd>
  1742. </dl>
  1743. <divclass="cardinfo_flex">
  1744. <dlclass="cardinfo_dp">
  1745. <dt>DP</dt>
  1746. <dd>13000</dl>
  1747. <dl>
  1748. <dt>PlayCost</dt>
  1749. <dd>13</dd>
  1750. </dl>
  1751. </div>
  1752. <dl>
  1753. <dt>DigivolveCost1</dt>
  1754. <dd>5fromLv.5</dd>
  1755. </dl>
  1756. <dl>
  1757. <dt>DigivolveCost2</dt>
  1758. <dd>5fromLv.5</dd>
  1759. </dl>
  1760. </div>
  1761. </div>
  1762. <divclass="cardinfo_bottom">
  1763. <dl>
  1764. <dt>Effect</dt>
  1765. <dd>[Digivolve] [Goldramon]: Cost 2<br><Raid> <br>[When Digivolving] [When Attacking] You may use 1 [God Flame] or 1 Option card with the [Four Great Dragons] trait from your hand without paying the cost. <br>[All Turns] This Digimon gains all effects of [Goldramon] in this Digimon's digivolution cards.</dd>
  1766. </dl>
  1767. <dl>
  1768. <dt>InheritedEffect</dt>
  1769. <dd>-</dd>
  1770. </dl>
  1771. <dl>
  1772. <dt>SecurityEffect</dt>
  1773. <dd>-</dd>
  1774. </dl>
  1775. <dl>
  1776. <dt>Notes</dt>
  1777. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1778. <aclass="btn"href="/rule/?card_no=BT16-014"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1779. </div>
  1780. </div>
  1781. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1782. </div>
  1783. </div>
  1784. </li>
  1785. <liclass="image_lists_itemdatapage-1">
  1786. <aclass="card_img">
  1787. <imgsrc="../images/cardlist/card/BT16-015.png"alt="BT16-015Phoenixmon(XAntibody)"></a>
  1788. <divclass="popup">
  1789. <divclass="card_detailcard_detail_red">
  1790. <divclass="card_detail_inner">
  1791. <ulclass="cardinfo_head">
  1792. <liclass="cardno">BT16-015</li>
  1793. <li>R</li>
  1794. <liclass="cardtype">Digimon</li>
  1795. <liclass="cardlv">Lv.6</li>
  1796. </ul>
  1797. <divclass="card_name">Phoenixmon(XAntibody)</div>
  1798. <divclass="cardinfo_top">
  1799. <divclass="card_img">
  1800. <imgsrc="../images/cardlist/card/BT16-015.png"alt="BT16-015Phoenixmon(XAntibody)"></div>
  1801. <divclass="cardinfo_top_body">
  1802. <dl>
  1803. <dt>Color</dt>
  1804. <ddclass="cardColor">
  1805. <spanclass="cardColor_red">Red</span>
  1806. </dd>
  1807. </dl>
  1808. <dl>
  1809. <dt>Form</dt>
  1810. <dd>Mega</dd>
  1811. </dl>
  1812. <dl>
  1813. <dt>Attribute</dt>
  1814. <dd>Vaccine</dd>
  1815. </dl>
  1816. <dl>
  1817. <dt>Type</dt>
  1818. <dd>HolyBeast/XAntibody</dd>
  1819. </dl>
  1820. <divclass="cardinfo_flex">
  1821. <dlclass="cardinfo_dp">
  1822. <dt>DP</dt>
  1823. <dd>13000</dl>
  1824. <dl>
  1825. <dt>PlayCost</dt>
  1826. <dd>13</dd>
  1827. </dl>
  1828. </div>
  1829. <dl>
  1830. <dt>DigivolveCost1</dt>
  1831. <dd>5fromLv.5</dd>
  1832. </dl>
  1833. <dl>
  1834. <dt>DigivolveCost2</dt>
  1835. <dd>-</dd>
  1836. </dl>
  1837. </div>
  1838. </div>
  1839. <divclass="cardinfo_bottom">
  1840. <dl>
  1841. <dt>Effect</dt>
  1842. <dd>[Digivolve] [Phoenixmon]: Cost 2<br>[When Digivolving] <Blitz> <br>[Your Turn] While [Phoenixmon] or [X Antibody] is in this Digimon's digivolution cards, attach [End of Attack] to all of this Digimon's [On Deletion] effects. <br>[On Deletion] You may play 1 11000 DP or lower red Digimon card with [Avian], [Bird], [Beast], [Animal] or [Sovereign], other than [Sea Animal], in one of its traits from your hand without paying the cost. Delete 1 of your opponent's Digimon with as much or less DP as the Digimon this effect played.</dd>
  1843. </dl>
  1844. <dl>
  1845. <dt>InheritedEffect</dt>
  1846. <dd>-</dd>
  1847. </dl>
  1848. <dl>
  1849. <dt>SecurityEffect</dt>
  1850. <dd>-</dd>
  1851. </dl>
  1852. <dl>
  1853. <dt>Notes</dt>
  1854. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1855. <aclass="btn"href="/rule/?card_no=BT16-015"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  1856. </div>
  1857. </div>
  1858. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1859. </div>
  1860. </div>
  1861. </li>
  1862. <liclass="image_lists_itemdatapage-1">
  1863. <aclass="card_img">
  1864. <imgsrc="../images/cardlist/card/BT16-016.png"alt="BT16-016Patamon"></a>
  1865. <divclass="popup">
  1866. <divclass="card_detailcard_detail_blue_yellowmulticolor">
  1867. <divclass="card_detail_inner">
  1868. <ulclass="cardinfo_head">
  1869. <liclass="cardno">BT16-016</li>
  1870. <li>C</li>
  1871. <liclass="cardtype">Digimon</li>
  1872. <liclass="cardlv">Lv.3</li>
  1873. </ul>
  1874. <divclass="card_name">Patamon</div>
  1875. <divclass="cardinfo_top">
  1876. <divclass="card_img">
  1877. <imgsrc="../images/cardlist/card/BT16-016.png"alt="BT16-016Patamon"></div>
  1878. <divclass="cardinfo_top_body">
  1879. <dl>
  1880. <dt>Color</dt>
  1881. <ddclass="cardColor">
  1882. <spanclass="cardColor_blue">Blue</span>
  1883. <spanclass="cardColor_yellow">Yellow</span>
  1884. </dd>
  1885. </dl>
  1886. <dl>
  1887. <dt>Form</dt>
  1888. <dd>Rookie</dd>
  1889. </dl>
  1890. <dl>
  1891. <dt>Attribute</dt>
  1892. <dd>Data</dd>
  1893. </dl>
  1894. <dl>
  1895. <dt>Type</dt>
  1896. <dd>Mammal</dd>
  1897. </dl>
  1898. <divclass="cardinfo_flex">
  1899. <dlclass="cardinfo_dp">
  1900. <dt>DP</dt>
  1901. <dd>2000</dl>
  1902. <dl>
  1903. <dt>PlayCost</dt>
  1904. <dd>3</dd>
  1905. </dl>
  1906. </div>
  1907. <dl>
  1908. <dt>DigivolveCost1</dt>
  1909. <dd>1fromLv.2</dd>
  1910. </dl>
  1911. <dl>
  1912. <dt>DigivolveCost2</dt>
  1913. <dd>1fromLv.2</dd>
  1914. </dl>
  1915. </div>
  1916. </div>
  1917. <divclass="cardinfo_bottom">
  1918. <dl>
  1919. <dt>Effect</dt>
  1920. <dd>[Digivolve] [Tokomon]: Cost 0<br>[Start of Your Main Phase] [On Play] If it's your turn, 1 of your Digimon may digivolve into a level 4 Digimon card with the [Angel] or [Free] trait in your hand with the digivolution cost reduced by 1.</dd>
  1921. </dl>
  1922. <dl>
  1923. <dt>InheritedEffect</dt>
  1924. <dd>[When Attacking] Trash the top digivolution card of 1 of your opponent's Digimon.</dd>
  1925. </dl>
  1926. <dl>
  1927. <dt>SecurityEffect</dt>
  1928. <dd>-</dd>
  1929. </dl>
  1930. <dl>
  1931. <dt>Notes</dt>
  1932. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  1933. </div>
  1934. </div>
  1935. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  1936. </div>
  1937. </div>
  1938. </li>
  1939. <liclass="image_lists_itemdatapage-1">
  1940. <aclass="card_img">
  1941. <imgsrc="../images/cardlist/card/BT16-017.png"alt="BT16-017Veemon"></a>
  1942. <divclass="popup">
  1943. <divclass="card_detailcard_detail_blue_redmulticolor">
  1944. <divclass="card_detail_inner">
  1945. <ulclass="cardinfo_head">
  1946. <liclass="cardno">BT16-017</li>
  1947. <li>U</li>
  1948. <liclass="cardtype">Digimon</li>
  1949. <liclass="cardlv">Lv.3</li>
  1950. </ul>
  1951. <divclass="card_name">Veemon</div>
  1952. <divclass="cardinfo_top">
  1953. <divclass="card_img">
  1954. <imgsrc="../images/cardlist/card/BT16-017.png"alt="BT16-017Veemon"></div>
  1955. <divclass="cardinfo_top_body">
  1956. <dl>
  1957. <dt>Color</dt>
  1958. <ddclass="cardColor">
  1959. <spanclass="cardColor_blue">Blue</span>
  1960. <spanclass="cardColor_red">Red</span>
  1961. </dd>
  1962. </dl>
  1963. <dl>
  1964. <dt>Form</dt>
  1965. <dd>Rookie</dd>
  1966. </dl>
  1967. <dl>
  1968. <dt>Attribute</dt>
  1969. <dd>Free</dd>
  1970. </dl>
  1971. <dl>
  1972. <dt>Type</dt>
  1973. <dd>MiniDragon</dd>
  1974. </dl>
  1975. <divclass="cardinfo_flex">
  1976. <dlclass="cardinfo_dp">
  1977. <dt>DP</dt>
  1978. <dd>2000</dl>
  1979. <dl>
  1980. <dt>PlayCost</dt>
  1981. <dd>3</dd>
  1982. </dl>
  1983. </div>
  1984. <dl>
  1985. <dt>DigivolveCost1</dt>
  1986. <dd>1fromLv.2</dd>
  1987. </dl>
  1988. <dl>
  1989. <dt>DigivolveCost2</dt>
  1990. <dd>1fromLv.2</dd>
  1991. </dl>
  1992. </div>
  1993. </div>
  1994. <divclass="cardinfo_bottom">
  1995. <dl>
  1996. <dt>Effect</dt>
  1997. <dd>[Digivolve] [DemiVeemon]: Cost 0<br>[Your Turn][Once Per Turn] When one of your other Digimon is played or digivolves, if it has the [Free] trait or is green, gain 1 memory.</dd>
  1998. </dl>
  1999. <dl>
  2000. <dt>InheritedEffect</dt>
  2001. <dd>[Your Turn] This Digimon gets +2000 DP.</dd>
  2002. </dl>
  2003. <dl>
  2004. <dt>SecurityEffect</dt>
  2005. <dd>-</dd>
  2006. </dl>
  2007. <dl>
  2008. <dt>Notes</dt>
  2009. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2010. <aclass="btn"href="/rule/?card_no=BT16-017"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2011. </div>
  2012. </div>
  2013. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2014. </div>
  2015. </div>
  2016. </li>
  2017. <liclass="image_lists_itemdatapage-1">
  2018. <aclass="card_img">
  2019. <imgsrc="../images/cardlist/card/BT16-018.png"alt="BT16-018ExVeemon"></a>
  2020. <divclass="popup">
  2021. <divclass="card_detailcard_detail_blue_redmulticolor">
  2022. <divclass="card_detail_inner">
  2023. <ulclass="cardinfo_head">
  2024. <liclass="cardno">BT16-018</li>
  2025. <li>C</li>
  2026. <liclass="cardtype">Digimon</li>
  2027. <liclass="cardlv">Lv.4</li>
  2028. </ul>
  2029. <divclass="card_name">ExVeemon</div>
  2030. <divclass="cardinfo_top">
  2031. <divclass="card_img">
  2032. <imgsrc="../images/cardlist/card/BT16-018.png"alt="BT16-018ExVeemon"></div>
  2033. <divclass="cardinfo_top_body">
  2034. <dl>
  2035. <dt>Color</dt>
  2036. <ddclass="cardColor">
  2037. <spanclass="cardColor_blue">Blue</span>
  2038. <spanclass="cardColor_red">Red</span>
  2039. </dd>
  2040. </dl>
  2041. <dl>
  2042. <dt>Form</dt>
  2043. <dd>Champion</dd>
  2044. </dl>
  2045. <dl>
  2046. <dt>Attribute</dt>
  2047. <dd>Free</dd>
  2048. </dl>
  2049. <dl>
  2050. <dt>Type</dt>
  2051. <dd>MythicalDragon</dd>
  2052. </dl>
  2053. <divclass="cardinfo_flex">
  2054. <dlclass="cardinfo_dp">
  2055. <dt>DP</dt>
  2056. <dd>4000</dl>
  2057. <dl>
  2058. <dt>PlayCost</dt>
  2059. <dd>4</dd>
  2060. </dl>
  2061. </div>
  2062. <dl>
  2063. <dt>DigivolveCost1</dt>
  2064. <dd>3fromLv.3</dd>
  2065. </dl>
  2066. <dl>
  2067. <dt>DigivolveCost2</dt>
  2068. <dd>3fromLv.3</dd>
  2069. </dl>
  2070. </div>
  2071. </div>
  2072. <divclass="cardinfo_bottom">
  2073. <dl>
  2074. <dt>Effect</dt>
  2075. <dd>[Digivolve] [Veemon]: Cost 2<br><Raid> <br>[On Play] [When Digivolving] 1 of your Digimon can't be deleted in battle until the end of your opponent's turn.</dd>
  2076. </dl>
  2077. <dl>
  2078. <dt>InheritedEffect</dt>
  2079. <dd>[Your Turn] This Digimon gets +2000 DP.</dd>
  2080. </dl>
  2081. <dl>
  2082. <dt>SecurityEffect</dt>
  2083. <dd>-</dd>
  2084. </dl>
  2085. <dl>
  2086. <dt>Notes</dt>
  2087. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2088. <aclass="btn"href="/rule/?card_no=BT16-018"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2089. </div>
  2090. </div>
  2091. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2092. </div>
  2093. </div>
  2094. </li>
  2095. <liclass="image_lists_itemdatapage-1">
  2096. <aclass="card_img">
  2097. <imgsrc="../images/cardlist/card/BT16-019.png"alt="BT16-019Angemon"></a>
  2098. <divclass="popup">
  2099. <divclass="card_detailcard_detail_blue_yellowmulticolor">
  2100. <divclass="card_detail_inner">
  2101. <ulclass="cardinfo_head">
  2102. <liclass="cardno">BT16-019</li>
  2103. <li>C</li>
  2104. <liclass="cardtype">Digimon</li>
  2105. <liclass="cardlv">Lv.4</li>
  2106. </ul>
  2107. <divclass="card_name">Angemon</div>
  2108. <divclass="cardinfo_top">
  2109. <divclass="card_img">
  2110. <imgsrc="../images/cardlist/card/BT16-019.png"alt="BT16-019Angemon"></div>
  2111. <divclass="cardinfo_top_body">
  2112. <dl>
  2113. <dt>Color</dt>
  2114. <ddclass="cardColor">
  2115. <spanclass="cardColor_blue">Blue</span>
  2116. <spanclass="cardColor_yellow">Yellow</span>
  2117. </dd>
  2118. </dl>
  2119. <dl>
  2120. <dt>Form</dt>
  2121. <dd>Champion</dd>
  2122. </dl>
  2123. <dl>
  2124. <dt>Attribute</dt>
  2125. <dd>Vaccine</dd>
  2126. </dl>
  2127. <dl>
  2128. <dt>Type</dt>
  2129. <dd>Angel</dd>
  2130. </dl>
  2131. <divclass="cardinfo_flex">
  2132. <dlclass="cardinfo_dp">
  2133. <dt>DP</dt>
  2134. <dd>4000</dl>
  2135. <dl>
  2136. <dt>PlayCost</dt>
  2137. <dd>4</dd>
  2138. </dl>
  2139. </div>
  2140. <dl>
  2141. <dt>DigivolveCost1</dt>
  2142. <dd>3fromLv.3</dd>
  2143. </dl>
  2144. <dl>
  2145. <dt>DigivolveCost2</dt>
  2146. <dd>3fromLv.3</dd>
  2147. </dl>
  2148. </div>
  2149. </div>
  2150. <divclass="cardinfo_bottom">
  2151. <dl>
  2152. <dt>Effect</dt>
  2153. <dd>[Digivolve] [Patamon]: Cost 2<br><Blocker> <br>[On Play] [When Digivolving] Unsuspend 1 of your level 4 or lower Digimon.</dd>
  2154. </dl>
  2155. <dl>
  2156. <dt>InheritedEffect</dt>
  2157. <dd>[When Attacking] Trash the top digivolution card of 1 of your opponent's Digimon.</dd>
  2158. </dl>
  2159. <dl>
  2160. <dt>SecurityEffect</dt>
  2161. <dd>-</dd>
  2162. </dl>
  2163. <dl>
  2164. <dt>Notes</dt>
  2165. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2166. </div>
  2167. </div>
  2168. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2169. </div>
  2170. </div>
  2171. </li>
  2172. <liclass="image_lists_itemdatapage-1">
  2173. <aclass="card_img">
  2174. <imgsrc="../images/cardlist/card/BT16-020.png"alt="BT16-020GaoGamon"></a>
  2175. <divclass="popup">
  2176. <divclass="card_detailcard_detail_blue">
  2177. <divclass="card_detail_inner">
  2178. <ulclass="cardinfo_head">
  2179. <liclass="cardno">BT16-020</li>
  2180. <li>C</li>
  2181. <liclass="cardtype">Digimon</li>
  2182. <liclass="cardlv">Lv.4</li>
  2183. </ul>
  2184. <divclass="card_name">GaoGamon</div>
  2185. <divclass="cardinfo_top">
  2186. <divclass="card_img">
  2187. <imgsrc="../images/cardlist/card/BT16-020.png"alt="BT16-020GaoGamon"></div>
  2188. <divclass="cardinfo_top_body">
  2189. <dl>
  2190. <dt>Color</dt>
  2191. <ddclass="cardColor">
  2192. <spanclass="cardColor_blue">Blue</span>
  2193. </dd>
  2194. </dl>
  2195. <dl>
  2196. <dt>Form</dt>
  2197. <dd>Champion</dd>
  2198. </dl>
  2199. <dl>
  2200. <dt>Attribute</dt>
  2201. <dd>Data</dd>
  2202. </dl>
  2203. <dl>
  2204. <dt>Type</dt>
  2205. <dd>Beast/NightClaw</dd>
  2206. </dl>
  2207. <divclass="cardinfo_flex">
  2208. <dlclass="cardinfo_dp">
  2209. <dt>DP</dt>
  2210. <dd>5000</dl>
  2211. <dl>
  2212. <dt>PlayCost</dt>
  2213. <dd>5</dd>
  2214. </dl>
  2215. </div>
  2216. <dl>
  2217. <dt>DigivolveCost1</dt>
  2218. <dd>2fromLv.3</dd>
  2219. </dl>
  2220. <dl>
  2221. <dt>DigivolveCost2</dt>
  2222. <dd>-</dd>
  2223. </dl>
  2224. </div>
  2225. </div>
  2226. <divclass="cardinfo_bottom">
  2227. <dl>
  2228. <dt>Effect</dt>
  2229. <dd>[Digivolve] Lv.3 w/[Night Claw]/[Light Fang] trait: Cost 2<br>[When Digivolving] Both players draw 1 card from their decks. Then, if your opponent has 8 or more cards in their hand or this Digimon has 3 or more digivolution cards, gain 1 memory.</dd>
  2230. </dl>
  2231. <dl>
  2232. <dt>InheritedEffect</dt>
  2233. <dd><Jamming> (This Digimon can't be deleted in battles against Security Digimon.)</dd>
  2234. </dl>
  2235. <dl>
  2236. <dt>SecurityEffect</dt>
  2237. <dd>-</dd>
  2238. </dl>
  2239. <dl>
  2240. <dt>Notes</dt>
  2241. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2242. </div>
  2243. </div>
  2244. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2245. </div>
  2246. </div>
  2247. </li>
  2248. <liclass="image_lists_itemdatapage-1">
  2249. <aclass="card_img">
  2250. <imgsrc="../images/cardlist/card/BT16-021.png"alt="BT16-021Togemogumon"></a>
  2251. <divclass="popup">
  2252. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2253. <divclass="card_detail_inner">
  2254. <ulclass="cardinfo_head">
  2255. <liclass="cardno">BT16-021</li>
  2256. <li>C</li>
  2257. <liclass="cardtype">Digimon</li>
  2258. <liclass="cardlv">Lv.4</li>
  2259. </ul>
  2260. <divclass="card_name">Togemogumon</div>
  2261. <divclass="cardinfo_top">
  2262. <divclass="card_img">
  2263. <imgsrc="../images/cardlist/card/BT16-021.png"alt="BT16-021Togemogumon"></div>
  2264. <divclass="cardinfo_top_body">
  2265. <dl>
  2266. <dt>Color</dt>
  2267. <ddclass="cardColor">
  2268. <spanclass="cardColor_blue">Blue</span>
  2269. <spanclass="cardColor_green">Green</span>
  2270. </dd>
  2271. </dl>
  2272. <dl>
  2273. <dt>Form</dt>
  2274. <dd>ArmorForm</dd>
  2275. </dl>
  2276. <dl>
  2277. <dt>Attribute</dt>
  2278. <dd>Free</dd>
  2279. </dl>
  2280. <dl>
  2281. <dt>Type</dt>
  2282. <dd>Mammal</dd>
  2283. </dl>
  2284. <divclass="cardinfo_flex">
  2285. <dlclass="cardinfo_dp">
  2286. <dt>DP</dt>
  2287. <dd>5000</dl>
  2288. <dl>
  2289. <dt>PlayCost</dt>
  2290. <dd>5</dd>
  2291. </dl>
  2292. </div>
  2293. <dl>
  2294. <dt>DigivolveCost1</dt>
  2295. <dd>3fromLv.3</dd>
  2296. </dl>
  2297. <dl>
  2298. <dt>DigivolveCost2</dt>
  2299. <dd>3fromLv.3</dd>
  2300. </dl>
  2301. </div>
  2302. </div>
  2303. <divclass="cardinfo_bottom">
  2304. <dl>
  2305. <dt>Effect</dt>
  2306. <dd>[Digivolve] [Wormmon]: Cost 2<br><Blocker><Armor Purge> <br>[All Turns] [Once Per Turn] When an opponent's Digimon becomes suspended, trash the top digivolution card of 1 of their Digimon. Then, 1 of their Digimon with no digivolution cards can't attack or block until the end of their turn.</dd>
  2307. </dl>
  2308. <dl>
  2309. <dt>InheritedEffect</dt>
  2310. <dd>-</dd>
  2311. </dl>
  2312. <dl>
  2313. <dt>SecurityEffect</dt>
  2314. <dd>-</dd>
  2315. </dl>
  2316. <dl>
  2317. <dt>Notes</dt>
  2318. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2319. </div>
  2320. </div>
  2321. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2322. </div>
  2323. </div>
  2324. </li>
  2325. <liclass="image_lists_itemdatapage-1">
  2326. <aclass="card_img">
  2327. <imgsrc="../images/cardlist/card/BT16-022.png"alt="BT16-022Mantaraymon"></a>
  2328. <divclass="popup">
  2329. <divclass="card_detailcard_detail_blue_yellowmulticolor">
  2330. <divclass="card_detail_inner">
  2331. <ulclass="cardinfo_head">
  2332. <liclass="cardno">BT16-022</li>
  2333. <li>C</li>
  2334. <liclass="cardtype">Digimon</li>
  2335. <liclass="cardlv">Lv.4</li>
  2336. </ul>
  2337. <divclass="card_name">Mantaraymon</div>
  2338. <divclass="cardinfo_top">
  2339. <divclass="card_img">
  2340. <imgsrc="../images/cardlist/card/BT16-022.png"alt="BT16-022Mantaraymon"></div>
  2341. <divclass="cardinfo_top_body">
  2342. <dl>
  2343. <dt>Color</dt>
  2344. <ddclass="cardColor">
  2345. <spanclass="cardColor_blue">Blue</span>
  2346. <spanclass="cardColor_yellow">Yellow</span>
  2347. </dd>
  2348. </dl>
  2349. <dl>
  2350. <dt>Form</dt>
  2351. <dd>ArmorForm</dd>
  2352. </dl>
  2353. <dl>
  2354. <dt>Attribute</dt>
  2355. <dd>Free</dd>
  2356. </dl>
  2357. <dl>
  2358. <dt>Type</dt>
  2359. <dd>Aquatic</dd>
  2360. </dl>
  2361. <divclass="cardinfo_flex">
  2362. <dlclass="cardinfo_dp">
  2363. <dt>DP</dt>
  2364. <dd>5000</dl>
  2365. <dl>
  2366. <dt>PlayCost</dt>
  2367. <dd>5</dd>
  2368. </dl>
  2369. </div>
  2370. <dl>
  2371. <dt>DigivolveCost1</dt>
  2372. <dd>3fromLv.3</dd>
  2373. </dl>
  2374. <dl>
  2375. <dt>DigivolveCost2</dt>
  2376. <dd>3fromLv.3</dd>
  2377. </dl>
  2378. </div>
  2379. </div>
  2380. <divclass="cardinfo_bottom">
  2381. <dl>
  2382. <dt>Effect</dt>
  2383. <dd>[Digivolve] [Patamon]: Cost 2<br><Armor Purge> <br>[When Attacking] Trash any 1 digivolution card of 1 of your opponent's Digimon. Then, 1 of their Digimon with no digivolution cards gains <Security A. -1> until the end of their turn.</dd>
  2384. </dl>
  2385. <dl>
  2386. <dt>InheritedEffect</dt>
  2387. <dd>-</dd>
  2388. </dl>
  2389. <dl>
  2390. <dt>SecurityEffect</dt>
  2391. <dd>-</dd>
  2392. </dl>
  2393. <dl>
  2394. <dt>Notes</dt>
  2395. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2396. </div>
  2397. </div>
  2398. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2399. </div>
  2400. </div>
  2401. </li>
  2402. <liclass="image_lists_itemdatapage-1">
  2403. <aclass="card_img">
  2404. <imgsrc="../images/cardlist/card/BT16-023.png"alt="BT16-023Divemon"></a>
  2405. <divclass="popup">
  2406. <divclass="card_detailcard_detail_blue">
  2407. <divclass="card_detail_inner">
  2408. <ulclass="cardinfo_head">
  2409. <liclass="cardno">BT16-023</li>
  2410. <li>C</li>
  2411. <liclass="cardtype">Digimon</li>
  2412. <liclass="cardlv">Lv.5</li>
  2413. </ul>
  2414. <divclass="card_name">Divemon</div>
  2415. <divclass="cardinfo_top">
  2416. <divclass="card_img">
  2417. <imgsrc="../images/cardlist/card/BT16-023.png"alt="BT16-023Divemon"></div>
  2418. <divclass="cardinfo_top_body">
  2419. <dl>
  2420. <dt>Color</dt>
  2421. <ddclass="cardColor">
  2422. <spanclass="cardColor_blue">Blue</span>
  2423. </dd>
  2424. </dl>
  2425. <dl>
  2426. <dt>Form</dt>
  2427. <dd>Ultimate</dd>
  2428. </dl>
  2429. <dl>
  2430. <dt>Attribute</dt>
  2431. <dd>Data</dd>
  2432. </dl>
  2433. <dl>
  2434. <dt>Type</dt>
  2435. <dd>Aquatic</dd>
  2436. </dl>
  2437. <divclass="cardinfo_flex">
  2438. <dlclass="cardinfo_dp">
  2439. <dt>DP</dt>
  2440. <dd>6000</dl>
  2441. <dl>
  2442. <dt>PlayCost</dt>
  2443. <dd>6</dd>
  2444. </dl>
  2445. </div>
  2446. <dl>
  2447. <dt>DigivolveCost1</dt>
  2448. <dd>3fromLv.4</dd>
  2449. </dl>
  2450. <dl>
  2451. <dt>DigivolveCost2</dt>
  2452. <dd>3fromLv.4</dd>
  2453. </dl>
  2454. </div>
  2455. </div>
  2456. <divclass="cardinfo_bottom">
  2457. <dl>
  2458. <dt>Effect</dt>
  2459. <dd>[Digivolve] Lv.4 w/[Pulsemon] in text: Cost 3<br>[On Play] [When Digivolving] If you have 3 or more security cards, unsuspend 1 of your Digimon. If you have 3 or fewer, return 1 of your opponent's level 4 or lower Digimon to the bottom of the deck.</dd>
  2460. </dl>
  2461. <dl>
  2462. <dt>InheritedEffect</dt>
  2463. <dd>[End of Attack] [Once Per Turn] If this Digimon has [Pulsemon] in its text, by trashing the top card of your security stack, unsuspend this Digimon.</dd>
  2464. </dl>
  2465. <dl>
  2466. <dt>SecurityEffect</dt>
  2467. <dd>-</dd>
  2468. </dl>
  2469. <dl>
  2470. <dt>Notes</dt>
  2471. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2472. <aclass="btn"href="/rule/?card_no=BT16-023"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2473. </div>
  2474. </div>
  2475. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2476. </div>
  2477. </div>
  2478. </li>
  2479. <liclass="image_lists_itemdatapage-1">
  2480. <aclass="card_img">
  2481. <imgsrc="../images/cardlist/card/BT16-024.png"alt="BT16-024MagnaAngemon"></a>
  2482. <divclass="popup">
  2483. <divclass="card_detailcard_detail_blue_yellowmulticolor">
  2484. <divclass="card_detail_inner">
  2485. <ulclass="cardinfo_head">
  2486. <liclass="cardno">BT16-024</li>
  2487. <li>U</li>
  2488. <liclass="cardtype">Digimon</li>
  2489. <liclass="cardlv">Lv.5</li>
  2490. </ul>
  2491. <divclass="card_name">MagnaAngemon</div>
  2492. <divclass="cardinfo_top">
  2493. <divclass="card_img">
  2494. <imgsrc="../images/cardlist/card/BT16-024.png"alt="BT16-024MagnaAngemon"></div>
  2495. <divclass="cardinfo_top_body">
  2496. <dl>
  2497. <dt>Color</dt>
  2498. <ddclass="cardColor">
  2499. <spanclass="cardColor_blue">Blue</span>
  2500. <spanclass="cardColor_yellow">Yellow</span>
  2501. </dd>
  2502. </dl>
  2503. <dl>
  2504. <dt>Form</dt>
  2505. <dd>Ultimate</dd>
  2506. </dl>
  2507. <dl>
  2508. <dt>Attribute</dt>
  2509. <dd>Vaccine</dd>
  2510. </dl>
  2511. <dl>
  2512. <dt>Type</dt>
  2513. <dd>Archangel</dd>
  2514. </dl>
  2515. <divclass="cardinfo_flex">
  2516. <dlclass="cardinfo_dp">
  2517. <dt>DP</dt>
  2518. <dd>6000</dl>
  2519. <dl>
  2520. <dt>PlayCost</dt>
  2521. <dd>6</dd>
  2522. </dl>
  2523. </div>
  2524. <dl>
  2525. <dt>DigivolveCost1</dt>
  2526. <dd>4fromLv.4</dd>
  2527. </dl>
  2528. <dl>
  2529. <dt>DigivolveCost2</dt>
  2530. <dd>4fromLv.4</dd>
  2531. </dl>
  2532. </div>
  2533. </div>
  2534. <divclass="cardinfo_bottom">
  2535. <dl>
  2536. <dt>Effect</dt>
  2537. <dd>[Digivolve] [Angemon]: Cost 3<br>[On Play] [When Digivolving] If it's your turn, search your security stack. This Digimon may digivolve into a Digimon card with the [Angel] or [Three Great Angels] trait among them with the digivolution cost reduced by 2. Then, shuffle your security stack. If this effect digivolved, you may place 1 Digimon card with the [Angel], [Archangel] or [Three Great Angels] trait from the hand at the bottom of your security stack.</dd>
  2538. </dl>
  2539. <dl>
  2540. <dt>InheritedEffect</dt>
  2541. <dd>[Opponent's Turn] All of your Digimon with the [Angel], [Archangel] or [Three Great Angels] trait gain <Blocker>.</dd>
  2542. </dl>
  2543. <dl>
  2544. <dt>SecurityEffect</dt>
  2545. <dd>-</dd>
  2546. </dl>
  2547. <dl>
  2548. <dt>Notes</dt>
  2549. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2550. <aclass="btn"href="/rule/?card_no=BT16-024"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2551. </div>
  2552. </div>
  2553. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2554. </div>
  2555. </div>
  2556. </li>
  2557. <liclass="image_lists_itemdatapage-1">
  2558. <aclass="card_img">
  2559. <imgsrc="../images/cardlist/card/BT16-025.png"alt="BT16-025Paildramon"></a>
  2560. <divclass="popup">
  2561. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2562. <divclass="card_detail_inner">
  2563. <ulclass="cardinfo_head">
  2564. <liclass="cardno">BT16-025</li>
  2565. <li>SR</li>
  2566. <liclass="cardtype">Digimon</li>
  2567. <liclass="cardlv">Lv.5</li>
  2568. </ul>
  2569. <divclass="card_name">Paildramon</div>
  2570. <divclass="cardinfo_top">
  2571. <divclass="card_img">
  2572. <imgsrc="../images/cardlist/card/BT16-025.png"alt="BT16-025Paildramon"></div>
  2573. <divclass="cardinfo_top_body">
  2574. <dl>
  2575. <dt>Color</dt>
  2576. <ddclass="cardColor">
  2577. <spanclass="cardColor_blue">Blue</span>
  2578. <spanclass="cardColor_green">Green</span>
  2579. </dd>
  2580. </dl>
  2581. <dl>
  2582. <dt>Form</dt>
  2583. <dd>Ultimate</dd>
  2584. </dl>
  2585. <dl>
  2586. <dt>Attribute</dt>
  2587. <dd>Free</dd>
  2588. </dl>
  2589. <dl>
  2590. <dt>Type</dt>
  2591. <dd>Dragonkin</dd>
  2592. </dl>
  2593. <divclass="cardinfo_flex">
  2594. <dlclass="cardinfo_dp">
  2595. <dt>DP</dt>
  2596. <dd>8000</dl>
  2597. <dl>
  2598. <dt>PlayCost</dt>
  2599. <dd>8</dd>
  2600. </dl>
  2601. </div>
  2602. <dl>
  2603. <dt>DigivolveCost1</dt>
  2604. <dd>4fromLv.4</dd>
  2605. </dl>
  2606. <dl>
  2607. <dt>DigivolveCost2</dt>
  2608. <dd>4fromLv.4</dd>
  2609. </dl>
  2610. </div>
  2611. </div>
  2612. <divclass="cardinfo_bottom">
  2613. <dl>
  2614. <dt>Effect</dt>
  2615. <dd>[DNA Digivolution] Blue Lv.4 + green Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (blue Lv.4 & green Lv.4)> <br>[When Digivolving] Suspend all of your opponent's Digimon with as many or fewer digivolution cards as this Digimon. Then, if DNA digivolving, none of their Digimon can unsuspend until the end of their turn. <br>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's unsuspended Digimon. If this effect didn't suspend, unsuspend this Digimon.</dd>
  2616. </dl>
  2617. <dl>
  2618. <dt>InheritedEffect</dt>
  2619. <dd><Partition (blue Lv.4 & green Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  2620. </dl>
  2621. <dl>
  2622. <dt>SecurityEffect</dt>
  2623. <dd>-</dd>
  2624. </dl>
  2625. <dl>
  2626. <dt>Notes</dt>
  2627. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2628. <aclass="btn"href="/rule/?card_no=BT16-025"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2629. </div>
  2630. </div>
  2631. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2632. </div>
  2633. </div>
  2634. </li>
  2635. <liclass="image_lists_itemdatapage-1">
  2636. <aclass="card_img">
  2637. <imgsrc="../images/cardlist/card/BT16-025_P1.png"alt="BT16-025Paildramon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  2638. </a>
  2639. <divclass="popup">
  2640. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2641. <divclass="card_detail_inner">
  2642. <ulclass="cardinfo_head">
  2643. <liclass="cardno">BT16-025</li>
  2644. <li>SR</li>
  2645. <liclass="cardtype">Digimon</li>
  2646. <liclass="cardlv">Lv.5</li>
  2647. <liclass="cardtypecardParallel">AlternativeArt</li>
  2648. </ul>
  2649. <divclass="card_name">Paildramon</div>
  2650. <divclass="cardinfo_top">
  2651. <divclass="card_img">
  2652. <imgsrc="../images/cardlist/card/BT16-025_P1.png"alt="BT16-025Paildramon"></div>
  2653. <divclass="cardinfo_top_body">
  2654. <dl>
  2655. <dt>Color</dt>
  2656. <ddclass="cardColor">
  2657. <spanclass="cardColor_blue">Blue</span>
  2658. <spanclass="cardColor_green">Green</span>
  2659. </dd>
  2660. </dl>
  2661. <dl>
  2662. <dt>Form</dt>
  2663. <dd>Ultimate</dd>
  2664. </dl>
  2665. <dl>
  2666. <dt>Attribute</dt>
  2667. <dd>Free</dd>
  2668. </dl>
  2669. <dl>
  2670. <dt>Type</dt>
  2671. <dd>Dragonkin</dd>
  2672. </dl>
  2673. <divclass="cardinfo_flex">
  2674. <dlclass="cardinfo_dp">
  2675. <dt>DP</dt>
  2676. <dd>8000</dl>
  2677. <dl>
  2678. <dt>PlayCost</dt>
  2679. <dd>8</dd>
  2680. </dl>
  2681. </div>
  2682. <dl>
  2683. <dt>DigivolveCost1</dt>
  2684. <dd>4fromLv.4</dd>
  2685. </dl>
  2686. <dl>
  2687. <dt>DigivolveCost2</dt>
  2688. <dd>4fromLv.4</dd>
  2689. </dl>
  2690. </div>
  2691. </div>
  2692. <divclass="cardinfo_bottom">
  2693. <dl>
  2694. <dt>Effect</dt>
  2695. <dd>[DNA Digivolution] Blue Lv.4 + green Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (blue Lv.4 & green Lv.4)> <br>[When Digivolving] Suspend all of your opponent's Digimon with as many or fewer digivolution cards as this Digimon. Then, if DNA digivolving, none of their Digimon can unsuspend until the end of their turn. <br>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's unsuspended Digimon. If this effect didn't suspend, unsuspend this Digimon.</dd>
  2696. </dl>
  2697. <dl>
  2698. <dt>InheritedEffect</dt>
  2699. <dd><Partition (blue Lv.4 & green Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  2700. </dl>
  2701. <dl>
  2702. <dt>SecurityEffect</dt>
  2703. <dd>-</dd>
  2704. </dl>
  2705. <dl>
  2706. <dt>Notes</dt>
  2707. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2708. <aclass="btn"href="/rule/?card_no=BT16-025"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  2709. </div>
  2710. </div>
  2711. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2712. </div>
  2713. </div>
  2714. </li>
  2715. <liclass="image_lists_itemdatapage-1">
  2716. <aclass="card_img">
  2717. <imgsrc="../images/cardlist/card/BT16-026.png"alt="BT16-026VikemonACE"></a>
  2718. <divclass="popup">
  2719. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2720. <divclass="card_detail_inner">
  2721. <ulclass="cardinfo_head">
  2722. <liclass="cardno">BT16-026</li>
  2723. <li>SR</li>
  2724. <liclass="cardtype">Digimon</li>
  2725. <liclass="cardlv">Lv.6</li>
  2726. </ul>
  2727. <divclass="card_name">VikemonACE</div>
  2728. <divclass="cardinfo_top">
  2729. <divclass="card_img">
  2730. <imgsrc="../images/cardlist/card/BT16-026.png"alt="BT16-026VikemonACE"></div>
  2731. <divclass="cardinfo_top_body">
  2732. <dl>
  2733. <dt>Color</dt>
  2734. <ddclass="cardColor">
  2735. <spanclass="cardColor_blue">Blue</span>
  2736. <spanclass="cardColor_black">Black</span>
  2737. </dd>
  2738. </dl>
  2739. <dl>
  2740. <dt>Form</dt>
  2741. <dd>Mega</dd>
  2742. </dl>
  2743. <dl>
  2744. <dt>Attribute</dt>
  2745. <dd>Free</dd>
  2746. </dl>
  2747. <dl>
  2748. <dt>Type</dt>
  2749. <dd>Beastkin</dd>
  2750. </dl>
  2751. <divclass="cardinfo_flex">
  2752. <dlclass="cardinfo_dp">
  2753. <dt>DP</dt>
  2754. <dd>12000</dl>
  2755. <dl>
  2756. <dt>PlayCost</dt>
  2757. <dd>7</dd>
  2758. </dl>
  2759. </div>
  2760. <dl>
  2761. <dt>DigivolveCost1</dt>
  2762. <dd>4fromLv.5</dd>
  2763. </dl>
  2764. <dl>
  2765. <dt>DigivolveCost2</dt>
  2766. <dd>4fromLv.5</dd>
  2767. </dl>
  2768. </div>
  2769. </div>
  2770. <divclass="cardinfo_bottom">
  2771. <dl>
  2772. <dt>Effect</dt>
  2773. <dd>[Digivolve] [Shakkoumon]/[Zudomon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] <De-Digivolve 2> 1 of your opponent's Digimon. Then, none of their Digimon with 1 or fewer digivolution cards can suspend until the end of their turn. <br>[When Attacking] Delete 1 of your opponent's Digimon with 1 or fewer digivolution cards.</dd>
  2774. </dl>
  2775. <dl>
  2776. <dt>InheritedEffect</dt>
  2777. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  2778. </dl>
  2779. <dl>
  2780. <dt>SecurityEffect</dt>
  2781. <dd>-</dd>
  2782. </dl>
  2783. <dl>
  2784. <dt>Notes</dt>
  2785. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2786. </div>
  2787. </div>
  2788. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2789. </div>
  2790. </div>
  2791. </li>
  2792. <liclass="image_lists_itemdatapage-1">
  2793. <aclass="card_img">
  2794. <imgsrc="../images/cardlist/card/BT16-026_P1.png"alt="BT16-026VikemonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  2795. </a>
  2796. <divclass="popup">
  2797. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2798. <divclass="card_detail_inner">
  2799. <ulclass="cardinfo_head">
  2800. <liclass="cardno">BT16-026</li>
  2801. <li>SR</li>
  2802. <liclass="cardtype">Digimon</li>
  2803. <liclass="cardlv">Lv.6</li>
  2804. <liclass="cardtypecardParallel">AlternativeArt</li>
  2805. </ul>
  2806. <divclass="card_name">VikemonACE</div>
  2807. <divclass="cardinfo_top">
  2808. <divclass="card_img">
  2809. <imgsrc="../images/cardlist/card/BT16-026_P1.png"alt="BT16-026VikemonACE"></div>
  2810. <divclass="cardinfo_top_body">
  2811. <dl>
  2812. <dt>Color</dt>
  2813. <ddclass="cardColor">
  2814. <spanclass="cardColor_blue">Blue</span>
  2815. <spanclass="cardColor_black">Black</span>
  2816. </dd>
  2817. </dl>
  2818. <dl>
  2819. <dt>Form</dt>
  2820. <dd>Mega</dd>
  2821. </dl>
  2822. <dl>
  2823. <dt>Attribute</dt>
  2824. <dd>Free</dd>
  2825. </dl>
  2826. <dl>
  2827. <dt>Type</dt>
  2828. <dd>Beastkin</dd>
  2829. </dl>
  2830. <divclass="cardinfo_flex">
  2831. <dlclass="cardinfo_dp">
  2832. <dt>DP</dt>
  2833. <dd>12000</dl>
  2834. <dl>
  2835. <dt>PlayCost</dt>
  2836. <dd>7</dd>
  2837. </dl>
  2838. </div>
  2839. <dl>
  2840. <dt>DigivolveCost1</dt>
  2841. <dd>4fromLv.5</dd>
  2842. </dl>
  2843. <dl>
  2844. <dt>DigivolveCost2</dt>
  2845. <dd>4fromLv.5</dd>
  2846. </dl>
  2847. </div>
  2848. </div>
  2849. <divclass="cardinfo_bottom">
  2850. <dl>
  2851. <dt>Effect</dt>
  2852. <dd>[Digivolve] [Shakkoumon]/[Zudomon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] <De-Digivolve 2> 1 of your opponent's Digimon. Then, none of their Digimon with 1 or fewer digivolution cards can suspend until the end of their turn. <br>[When Attacking] Delete 1 of your opponent's Digimon with 1 or fewer digivolution cards.</dd>
  2853. </dl>
  2854. <dl>
  2855. <dt>InheritedEffect</dt>
  2856. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  2857. </dl>
  2858. <dl>
  2859. <dt>SecurityEffect</dt>
  2860. <dd>-</dd>
  2861. </dl>
  2862. <dl>
  2863. <dt>Notes</dt>
  2864. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2865. </div>
  2866. </div>
  2867. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2868. </div>
  2869. </div>
  2870. </li>
  2871. <liclass="image_lists_itemdatapage-1">
  2872. <aclass="card_img">
  2873. <imgsrc="../images/cardlist/card/BT16-026_P2.png"alt="BT16-026VikemonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  2874. </a>
  2875. <divclass="popup">
  2876. <divclass="card_detailcard_detail_blue_blackmulticolor">
  2877. <divclass="card_detail_inner">
  2878. <ulclass="cardinfo_head">
  2879. <liclass="cardno">BT16-026</li>
  2880. <li>SR</li>
  2881. <liclass="cardtype">Digimon</li>
  2882. <liclass="cardlv">Lv.6</li>
  2883. <liclass="cardtypecardParallel">AlternativeArt</li>
  2884. </ul>
  2885. <divclass="card_name">VikemonACE</div>
  2886. <divclass="cardinfo_top">
  2887. <divclass="card_img">
  2888. <imgsrc="../images/cardlist/card/BT16-026_P2.png"alt="BT16-026VikemonACE"></div>
  2889. <divclass="cardinfo_top_body">
  2890. <dl>
  2891. <dt>Color</dt>
  2892. <ddclass="cardColor">
  2893. <spanclass="cardColor_blue">Blue</span>
  2894. <spanclass="cardColor_black">Black</span>
  2895. </dd>
  2896. </dl>
  2897. <dl>
  2898. <dt>Form</dt>
  2899. <dd>Mega</dd>
  2900. </dl>
  2901. <dl>
  2902. <dt>Attribute</dt>
  2903. <dd>Free</dd>
  2904. </dl>
  2905. <dl>
  2906. <dt>Type</dt>
  2907. <dd>Beastkin</dd>
  2908. </dl>
  2909. <divclass="cardinfo_flex">
  2910. <dlclass="cardinfo_dp">
  2911. <dt>DP</dt>
  2912. <dd>12000</dl>
  2913. <dl>
  2914. <dt>PlayCost</dt>
  2915. <dd>7</dd>
  2916. </dl>
  2917. </div>
  2918. <dl>
  2919. <dt>DigivolveCost1</dt>
  2920. <dd>4fromLv.5</dd>
  2921. </dl>
  2922. <dl>
  2923. <dt>DigivolveCost2</dt>
  2924. <dd>4fromLv.5</dd>
  2925. </dl>
  2926. </div>
  2927. </div>
  2928. <divclass="cardinfo_bottom">
  2929. <dl>
  2930. <dt>Effect</dt>
  2931. <dd>[Digivolve] [Shakkoumon]/[Zudomon]: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] <De-Digivolve 2> 1 of your opponent's Digimon. Then, none of their Digimon with 1 or fewer digivolution cards can suspend until the end of their turn. <br>[When Attacking] Delete 1 of your opponent's Digimon with 1 or fewer digivolution cards.</dd>
  2932. </dl>
  2933. <dl>
  2934. <dt>InheritedEffect</dt>
  2935. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  2936. </dl>
  2937. <dl>
  2938. <dt>SecurityEffect</dt>
  2939. <dd>-</dd>
  2940. </dl>
  2941. <dl>
  2942. <dt>Notes</dt>
  2943. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  2944. </div>
  2945. </div>
  2946. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  2947. </div>
  2948. </div>
  2949. </li>
  2950. <liclass="image_lists_itemdatapage-1">
  2951. <aclass="card_img">
  2952. <imgsrc="../images/cardlist/card/BT16-027.png"alt="BT16-027Imperialdramon:FighterModeACE"></a>
  2953. <divclass="popup">
  2954. <divclass="card_detailcard_detail_blue_greenmulticolor">
  2955. <divclass="card_detail_inner">
  2956. <ulclass="cardinfo_head">
  2957. <liclass="cardno">BT16-027</li>
  2958. <li>R</li>
  2959. <liclass="cardtype">Digimon</li>
  2960. <liclass="cardlv">Lv.6</li>
  2961. </ul>
  2962. <divclass="card_name">Imperialdramon:FighterModeACE</div>
  2963. <divclass="cardinfo_top">
  2964. <divclass="card_img">
  2965. <imgsrc="../images/cardlist/card/BT16-027.png"alt="BT16-027Imperialdramon:FighterModeACE"></div>
  2966. <divclass="cardinfo_top_body">
  2967. <dl>
  2968. <dt>Color</dt>
  2969. <ddclass="cardColor">
  2970. <spanclass="cardColor_blue">Blue</span>
  2971. <spanclass="cardColor_green">Green</span>
  2972. </dd>
  2973. </dl>
  2974. <dl>
  2975. <dt>Form</dt>
  2976. <dd>Mega</dd>
  2977. </dl>
  2978. <dl>
  2979. <dt>Attribute</dt>
  2980. <dd>Free</dd>
  2981. </dl>
  2982. <dl>
  2983. <dt>Type</dt>
  2984. <dd>AncientDragonkin</dd>
  2985. </dl>
  2986. <divclass="cardinfo_flex">
  2987. <dlclass="cardinfo_dp">
  2988. <dt>DP</dt>
  2989. <dd>13000</dl>
  2990. <dl>
  2991. <dt>PlayCost</dt>
  2992. <dd>8</dd>
  2993. </dl>
  2994. </div>
  2995. <dl>
  2996. <dt>DigivolveCost1</dt>
  2997. <dd>5fromLv.5</dd>
  2998. </dl>
  2999. <dl>
  3000. <dt>DigivolveCost2</dt>
  3001. <dd>5fromLv.5</dd>
  3002. </dl>
  3003. </div>
  3004. </div>
  3005. <divclass="cardinfo_bottom">
  3006. <dl>
  3007. <dt>Effect</dt>
  3008. <dd>[Digivolve] [Imperialdramon: Dragon Mode]: Cost 2<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] Return 1 of your opponent's Digimon with as many or fewer digivolution cards as this Digimon to the bottom of the deck. <br>[End of Attack] [Once Per Turn] Unsuspend this Digimon. Then, if [Imperialdramon: Dragon Mode] is in this Digimon's digivolution cards, return 1 of your opponent's suspended Digimon to the bottom of the deck.</dd>
  3009. </dl>
  3010. <dl>
  3011. <dt>InheritedEffect</dt>
  3012. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  3013. </dl>
  3014. <dl>
  3015. <dt>SecurityEffect</dt>
  3016. <dd>-</dd>
  3017. </dl>
  3018. <dl>
  3019. <dt>Notes</dt>
  3020. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3021. </div>
  3022. </div>
  3023. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3024. </div>
  3025. </div>
  3026. </li>
  3027. <liclass="image_lists_itemdatapage-1">
  3028. <aclass="card_img">
  3029. <imgsrc="../images/cardlist/card/BT16-027_P1.png"alt="BT16-027Imperialdramon:FighterModeACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3030. </a>
  3031. <divclass="popup">
  3032. <divclass="card_detailcard_detail_blue_greenmulticolor">
  3033. <divclass="card_detail_inner">
  3034. <ulclass="cardinfo_head">
  3035. <liclass="cardno">BT16-027</li>
  3036. <li>R</li>
  3037. <liclass="cardtype">Digimon</li>
  3038. <liclass="cardlv">Lv.6</li>
  3039. <liclass="cardtypecardParallel">AlternativeArt</li>
  3040. </ul>
  3041. <divclass="card_name">Imperialdramon:FighterModeACE</div>
  3042. <divclass="cardinfo_top">
  3043. <divclass="card_img">
  3044. <imgsrc="../images/cardlist/card/BT16-027_P1.png"alt="BT16-027Imperialdramon:FighterModeACE"></div>
  3045. <divclass="cardinfo_top_body">
  3046. <dl>
  3047. <dt>Color</dt>
  3048. <ddclass="cardColor">
  3049. <spanclass="cardColor_blue">Blue</span>
  3050. <spanclass="cardColor_green">Green</span>
  3051. </dd>
  3052. </dl>
  3053. <dl>
  3054. <dt>Form</dt>
  3055. <dd>Mega</dd>
  3056. </dl>
  3057. <dl>
  3058. <dt>Attribute</dt>
  3059. <dd>Free</dd>
  3060. </dl>
  3061. <dl>
  3062. <dt>Type</dt>
  3063. <dd>AncientDragonkin</dd>
  3064. </dl>
  3065. <divclass="cardinfo_flex">
  3066. <dlclass="cardinfo_dp">
  3067. <dt>DP</dt>
  3068. <dd>13000</dl>
  3069. <dl>
  3070. <dt>PlayCost</dt>
  3071. <dd>8</dd>
  3072. </dl>
  3073. </div>
  3074. <dl>
  3075. <dt>DigivolveCost1</dt>
  3076. <dd>5fromLv.5</dd>
  3077. </dl>
  3078. <dl>
  3079. <dt>DigivolveCost2</dt>
  3080. <dd>5fromLv.5</dd>
  3081. </dl>
  3082. </div>
  3083. </div>
  3084. <divclass="cardinfo_bottom">
  3085. <dl>
  3086. <dt>Effect</dt>
  3087. <dd>[Digivolve] [Imperialdramon: Dragon Mode]: Cost 2<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] Return 1 of your opponent's Digimon with as many or fewer digivolution cards as this Digimon to the bottom of the deck. <br>[End of Attack] [Once Per Turn] Unsuspend this Digimon. Then, if [Imperialdramon: Dragon Mode] is in this Digimon's digivolution cards, return 1 of your opponent's suspended Digimon to the bottom of the deck.</dd>
  3088. </dl>
  3089. <dl>
  3090. <dt>InheritedEffect</dt>
  3091. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  3092. </dl>
  3093. <dl>
  3094. <dt>SecurityEffect</dt>
  3095. <dd>-</dd>
  3096. </dl>
  3097. <dl>
  3098. <dt>Notes</dt>
  3099. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3100. </div>
  3101. </div>
  3102. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3103. </div>
  3104. </div>
  3105. </li>
  3106. <liclass="image_lists_itemdatapage-2">
  3107. <aclass="card_img">
  3108. <imgsrc="../images/cardlist/card/BT16-027_P2.png"alt="BT16-027Imperialdramon:FighterModeACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3109. </a>
  3110. <divclass="popup">
  3111. <divclass="card_detailcard_detail_blue_greenmulticolor">
  3112. <divclass="card_detail_inner">
  3113. <ulclass="cardinfo_head">
  3114. <liclass="cardno">BT16-027</li>
  3115. <li>R</li>
  3116. <liclass="cardtype">Digimon</li>
  3117. <liclass="cardlv">Lv.6</li>
  3118. <liclass="cardtypecardParallel">AlternativeArt</li>
  3119. </ul>
  3120. <divclass="card_name">Imperialdramon:FighterModeACE</div>
  3121. <divclass="cardinfo_top">
  3122. <divclass="card_img">
  3123. <imgsrc="../images/cardlist/card/BT16-027_P2.png"alt="BT16-027Imperialdramon:FighterModeACE"></div>
  3124. <divclass="cardinfo_top_body">
  3125. <dl>
  3126. <dt>Color</dt>
  3127. <ddclass="cardColor">
  3128. <spanclass="cardColor_blue">Blue</span>
  3129. <spanclass="cardColor_green">Green</span>
  3130. </dd>
  3131. </dl>
  3132. <dl>
  3133. <dt>Form</dt>
  3134. <dd>Mega</dd>
  3135. </dl>
  3136. <dl>
  3137. <dt>Attribute</dt>
  3138. <dd>Free</dd>
  3139. </dl>
  3140. <dl>
  3141. <dt>Type</dt>
  3142. <dd>AncientDragonkin</dd>
  3143. </dl>
  3144. <divclass="cardinfo_flex">
  3145. <dlclass="cardinfo_dp">
  3146. <dt>DP</dt>
  3147. <dd>13000</dl>
  3148. <dl>
  3149. <dt>PlayCost</dt>
  3150. <dd>8</dd>
  3151. </dl>
  3152. </div>
  3153. <dl>
  3154. <dt>DigivolveCost1</dt>
  3155. <dd>5fromLv.5</dd>
  3156. </dl>
  3157. <dl>
  3158. <dt>DigivolveCost2</dt>
  3159. <dd>5fromLv.5</dd>
  3160. </dl>
  3161. </div>
  3162. </div>
  3163. <divclass="cardinfo_bottom">
  3164. <dl>
  3165. <dt>Effect</dt>
  3166. <dd>[Digivolve] [Imperialdramon: Dragon Mode]: Cost 2<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] Return 1 of your opponent's Digimon with as many or fewer digivolution cards as this Digimon to the bottom of the deck. <br>[End of Attack] [Once Per Turn] Unsuspend this Digimon. Then, if [Imperialdramon: Dragon Mode] is in this Digimon's digivolution cards, return 1 of your opponent's suspended Digimon to the bottom of the deck.</dd>
  3167. </dl>
  3168. <dl>
  3169. <dt>InheritedEffect</dt>
  3170. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  3171. </dl>
  3172. <dl>
  3173. <dt>SecurityEffect</dt>
  3174. <dd>-</dd>
  3175. </dl>
  3176. <dl>
  3177. <dt>Notes</dt>
  3178. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3179. </div>
  3180. </div>
  3181. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3182. </div>
  3183. </div>
  3184. </li>
  3185. <liclass="image_lists_itemdatapage-2">
  3186. <aclass="card_img">
  3187. <imgsrc="../images/cardlist/card/BT16-028.png"alt="BT16-028Imperialdramon:DragonMode"></a>
  3188. <divclass="popup">
  3189. <divclass="card_detailcard_detail_blue_greenmulticolor">
  3190. <divclass="card_detail_inner">
  3191. <ulclass="cardinfo_head">
  3192. <liclass="cardno">BT16-028</li>
  3193. <li>R</li>
  3194. <liclass="cardtype">Digimon</li>
  3195. <liclass="cardlv">Lv.6</li>
  3196. </ul>
  3197. <divclass="card_name">Imperialdramon:DragonMode</div>
  3198. <divclass="cardinfo_top">
  3199. <divclass="card_img">
  3200. <imgsrc="../images/cardlist/card/BT16-028.png"alt="BT16-028Imperialdramon:DragonMode"></div>
  3201. <divclass="cardinfo_top_body">
  3202. <dl>
  3203. <dt>Color</dt>
  3204. <ddclass="cardColor">
  3205. <spanclass="cardColor_blue">Blue</span>
  3206. <spanclass="cardColor_green">Green</span>
  3207. </dd>
  3208. </dl>
  3209. <dl>
  3210. <dt>Form</dt>
  3211. <dd>Mega</dd>
  3212. </dl>
  3213. <dl>
  3214. <dt>Attribute</dt>
  3215. <dd>Free</dd>
  3216. </dl>
  3217. <dl>
  3218. <dt>Type</dt>
  3219. <dd>AncientDragon</dd>
  3220. </dl>
  3221. <divclass="cardinfo_flex">
  3222. <dlclass="cardinfo_dp">
  3223. <dt>DP</dt>
  3224. <dd>12000</dl>
  3225. <dl>
  3226. <dt>PlayCost</dt>
  3227. <dd>12</dd>
  3228. </dl>
  3229. </div>
  3230. <dl>
  3231. <dt>DigivolveCost1</dt>
  3232. <dd>4fromLv.5</dd>
  3233. </dl>
  3234. <dl>
  3235. <dt>DigivolveCost2</dt>
  3236. <dd>4fromLv.5</dd>
  3237. </dl>
  3238. </div>
  3239. </div>
  3240. <divclass="cardinfo_bottom">
  3241. <dl>
  3242. <dt>Effect</dt>
  3243. <dd>[Digivolve] [Paildramon]/[Dinobeemon]: Cost 3<br>[When Digivolving] 1 of your opponent's Digimon or Tamers can't unsuspend until the end of their turn. Then, by suspending 1 of their Digimon or Tamers, unsuspend 1 of your Digimon. <br>[All Turns] When an effect plays or digivolves an opponent's Digimon, if you have a Tamer, this Digimon may digivolve into [Imperialdramon: Fighter Mode] in the hand without paying the cost.</dd>
  3244. </dl>
  3245. <dl>
  3246. <dt>InheritedEffect</dt>
  3247. <dd>-</dd>
  3248. </dl>
  3249. <dl>
  3250. <dt>SecurityEffect</dt>
  3251. <dd>-</dd>
  3252. </dl>
  3253. <dl>
  3254. <dt>Notes</dt>
  3255. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3256. <aclass="btn"href="/rule/?card_no=BT16-028"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3257. </div>
  3258. </div>
  3259. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3260. </div>
  3261. </div>
  3262. </li>
  3263. <liclass="image_lists_itemdatapage-2">
  3264. <aclass="card_img">
  3265. <imgsrc="../images/cardlist/card/BT16-028_P1.png"alt="BT16-028Imperialdramon:DragonMode"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3266. </a>
  3267. <divclass="popup">
  3268. <divclass="card_detailcard_detail_blue_greenmulticolor">
  3269. <divclass="card_detail_inner">
  3270. <ulclass="cardinfo_head">
  3271. <liclass="cardno">BT16-028</li>
  3272. <li>R</li>
  3273. <liclass="cardtype">Digimon</li>
  3274. <liclass="cardlv">Lv.6</li>
  3275. <liclass="cardtypecardParallel">AlternativeArt</li>
  3276. </ul>
  3277. <divclass="card_name">Imperialdramon:DragonMode</div>
  3278. <divclass="cardinfo_top">
  3279. <divclass="card_img">
  3280. <imgsrc="../images/cardlist/card/BT16-028_P1.png"alt="BT16-028Imperialdramon:DragonMode"></div>
  3281. <divclass="cardinfo_top_body">
  3282. <dl>
  3283. <dt>Color</dt>
  3284. <ddclass="cardColor">
  3285. <spanclass="cardColor_blue">Blue</span>
  3286. <spanclass="cardColor_green">Green</span>
  3287. </dd>
  3288. </dl>
  3289. <dl>
  3290. <dt>Form</dt>
  3291. <dd>Mega</dd>
  3292. </dl>
  3293. <dl>
  3294. <dt>Attribute</dt>
  3295. <dd>Free</dd>
  3296. </dl>
  3297. <dl>
  3298. <dt>Type</dt>
  3299. <dd>AncientDragon</dd>
  3300. </dl>
  3301. <divclass="cardinfo_flex">
  3302. <dlclass="cardinfo_dp">
  3303. <dt>DP</dt>
  3304. <dd>12000</dl>
  3305. <dl>
  3306. <dt>PlayCost</dt>
  3307. <dd>12</dd>
  3308. </dl>
  3309. </div>
  3310. <dl>
  3311. <dt>DigivolveCost1</dt>
  3312. <dd>4fromLv.5</dd>
  3313. </dl>
  3314. <dl>
  3315. <dt>DigivolveCost2</dt>
  3316. <dd>4fromLv.5</dd>
  3317. </dl>
  3318. </div>
  3319. </div>
  3320. <divclass="cardinfo_bottom">
  3321. <dl>
  3322. <dt>Effect</dt>
  3323. <dd>[Digivolve] [Paildramon]/[Dinobeemon]: Cost 3<br>[When Digivolving] 1 of your opponent's Digimon or Tamers can't unsuspend until the end of their turn. Then, by suspending 1 of their Digimon or Tamers, unsuspend 1 of your Digimon. <br>[All Turns] When an effect plays or digivolves an opponent's Digimon, if you have a Tamer, this Digimon may digivolve into [Imperialdramon: Fighter Mode] in the hand without paying the cost.</dd>
  3324. </dl>
  3325. <dl>
  3326. <dt>InheritedEffect</dt>
  3327. <dd>-</dd>
  3328. </dl>
  3329. <dl>
  3330. <dt>SecurityEffect</dt>
  3331. <dd>-</dd>
  3332. </dl>
  3333. <dl>
  3334. <dt>Notes</dt>
  3335. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3336. <aclass="btn"href="/rule/?card_no=BT16-028"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3337. </div>
  3338. </div>
  3339. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3340. </div>
  3341. </div>
  3342. </li>
  3343. <liclass="image_lists_itemdatapage-2">
  3344. <aclass="card_img">
  3345. <imgsrc="../images/cardlist/card/BT16-029.png"alt="BT16-029Agumon"></a>
  3346. <divclass="popup">
  3347. <divclass="card_detailcard_detail_yellow">
  3348. <divclass="card_detail_inner">
  3349. <ulclass="cardinfo_head">
  3350. <liclass="cardno">BT16-029</li>
  3351. <li>C</li>
  3352. <liclass="cardtype">Digimon</li>
  3353. <liclass="cardlv">Lv.3</li>
  3354. </ul>
  3355. <divclass="card_name">Agumon</div>
  3356. <divclass="cardinfo_top">
  3357. <divclass="card_img">
  3358. <imgsrc="../images/cardlist/card/BT16-029.png"alt="BT16-029Agumon"></div>
  3359. <divclass="cardinfo_top_body">
  3360. <dl>
  3361. <dt>Color</dt>
  3362. <ddclass="cardColor">
  3363. <spanclass="cardColor_yellow">Yellow</span>
  3364. </dd>
  3365. </dl>
  3366. <dl>
  3367. <dt>Form</dt>
  3368. <dd>Rookie</dd>
  3369. </dl>
  3370. <dl>
  3371. <dt>Attribute</dt>
  3372. <dd>Vaccine</dd>
  3373. </dl>
  3374. <dl>
  3375. <dt>Type</dt>
  3376. <dd>Dinosaur/LightFang</dd>
  3377. </dl>
  3378. <divclass="cardinfo_flex">
  3379. <dlclass="cardinfo_dp">
  3380. <dt>DP</dt>
  3381. <dd>1000</dl>
  3382. <dl>
  3383. <dt>PlayCost</dt>
  3384. <dd>3</dd>
  3385. </dl>
  3386. </div>
  3387. <dl>
  3388. <dt>DigivolveCost1</dt>
  3389. <dd>0fromLv.2</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>[Digivolve] Lv.2 w/[Light Fang]/[Night Claw] trait: Cost 0<br>[On Play] Reveal the top 3 cards of your deck. Add 1 [Light Fang] trait card and 1 [Night Claw] trait or 1 2-color card among them to the hand. Return the rest to the bottom of the deck.</dd>
  3401. </dl>
  3402. <dl>
  3403. <dt>InheritedEffect</dt>
  3404. <dd>[Your Turn] All of your opponent's Security Digimon get -3000 DP.</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/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3413. <aclass="btn"href="/rule/?card_no=BT16-029"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3414. </div>
  3415. </div>
  3416. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3417. </div>
  3418. </div>
  3419. </li>
  3420. <liclass="image_lists_itemdatapage-2">
  3421. <aclass="card_img">
  3422. <imgsrc="../images/cardlist/card/BT16-030.png"alt="BT16-030Salamon"></a>
  3423. <divclass="popup">
  3424. <divclass="card_detailcard_detail_yellow_purplemulticolor">
  3425. <divclass="card_detail_inner">
  3426. <ulclass="cardinfo_head">
  3427. <liclass="cardno">BT16-030</li>
  3428. <li>R</li>
  3429. <liclass="cardtype">Digimon</li>
  3430. <liclass="cardlv">Lv.3</li>
  3431. </ul>
  3432. <divclass="card_name">Salamon</div>
  3433. <divclass="cardinfo_top">
  3434. <divclass="card_img">
  3435. <imgsrc="../images/cardlist/card/BT16-030.png"alt="BT16-030Salamon"></div>
  3436. <divclass="cardinfo_top_body">
  3437. <dl>
  3438. <dt>Color</dt>
  3439. <ddclass="cardColor">
  3440. <spanclass="cardColor_yellow">Yellow</span>
  3441. <spanclass="cardColor_purple">Purple</span>
  3442. </dd>
  3443. </dl>
  3444. <dl>
  3445. <dt>Form</dt>
  3446. <dd>Rookie</dd>
  3447. </dl>
  3448. <dl>
  3449. <dt>Attribute</dt>
  3450. <dd>Vaccine</dd>
  3451. </dl>
  3452. <dl>
  3453. <dt>Type</dt>
  3454. <dd>Mammal</dd>
  3455. </dl>
  3456. <divclass="cardinfo_flex">
  3457. <dlclass="cardinfo_dp">
  3458. <dt>DP</dt>
  3459. <dd>1000</dl>
  3460. <dl>
  3461. <dt>PlayCost</dt>
  3462. <dd>3</dd>
  3463. </dl>
  3464. </div>
  3465. <dl>
  3466. <dt>DigivolveCost1</dt>
  3467. <dd>1fromLv.2</dd>
  3468. </dl>
  3469. <dl>
  3470. <dt>DigivolveCost2</dt>
  3471. <dd>1fromLv.2</dd>
  3472. </dl>
  3473. </div>
  3474. </div>
  3475. <divclass="cardinfo_bottom">
  3476. <dl>
  3477. <dt>Effect</dt>
  3478. <dd>[Digivolve] [Nyaromon]: Cost 0<br>[Start of Your Main Phase] [On Play] If it's your turn, 1 of your Digimon may digivolve into a level 4 Digimon card with the [Holy Beast] or [Free] trait in the trash with the digivolution cost reduced by 1.</dd>
  3479. </dl>
  3480. <dl>
  3481. <dt>InheritedEffect</dt>
  3482. <dd>[Your Turn] All of your opponent's Security Digimon get -3000 DP.</dd>
  3483. </dl>
  3484. <dl>
  3485. <dt>SecurityEffect</dt>
  3486. <dd>-</dd>
  3487. </dl>
  3488. <dl>
  3489. <dt>Notes</dt>
  3490. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3491. <aclass="btn"href="/rule/?card_no=BT16-030"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3492. </div>
  3493. </div>
  3494. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3495. </div>
  3496. </div>
  3497. </li>
  3498. <liclass="image_lists_itemdatapage-2">
  3499. <aclass="card_img">
  3500. <imgsrc="../images/cardlist/card/BT16-031.png"alt="BT16-031Gatomon"></a>
  3501. <divclass="popup">
  3502. <divclass="card_detailcard_detail_yellow_purplemulticolor">
  3503. <divclass="card_detail_inner">
  3504. <ulclass="cardinfo_head">
  3505. <liclass="cardno">BT16-031</li>
  3506. <li>U</li>
  3507. <liclass="cardtype">Digimon</li>
  3508. <liclass="cardlv">Lv.4</li>
  3509. </ul>
  3510. <divclass="card_name">Gatomon</div>
  3511. <divclass="cardinfo_top">
  3512. <divclass="card_img">
  3513. <imgsrc="../images/cardlist/card/BT16-031.png"alt="BT16-031Gatomon"></div>
  3514. <divclass="cardinfo_top_body">
  3515. <dl>
  3516. <dt>Color</dt>
  3517. <ddclass="cardColor">
  3518. <spanclass="cardColor_yellow">Yellow</span>
  3519. <spanclass="cardColor_purple">Purple</span>
  3520. </dd>
  3521. </dl>
  3522. <dl>
  3523. <dt>Form</dt>
  3524. <dd>Champion</dd>
  3525. </dl>
  3526. <dl>
  3527. <dt>Attribute</dt>
  3528. <dd>Vaccine</dd>
  3529. </dl>
  3530. <dl>
  3531. <dt>Type</dt>
  3532. <dd>HolyBeast</dd>
  3533. </dl>
  3534. <divclass="cardinfo_flex">
  3535. <dlclass="cardinfo_dp">
  3536. <dt>DP</dt>
  3537. <dd>4000</dl>
  3538. <dl>
  3539. <dt>PlayCost</dt>
  3540. <dd>4</dd>
  3541. </dl>
  3542. </div>
  3543. <dl>
  3544. <dt>DigivolveCost1</dt>
  3545. <dd>3fromLv.3</dd>
  3546. </dl>
  3547. <dl>
  3548. <dt>DigivolveCost2</dt>
  3549. <dd>3fromLv.3</dd>
  3550. </dl>
  3551. </div>
  3552. </div>
  3553. <divclass="cardinfo_bottom">
  3554. <dl>
  3555. <dt>Effect</dt>
  3556. <dd>[Digivolve] [Salamon]: Cost 2<br><Barrier> <br>[On Play] [When Digivolving] By trashing 1 card in your hand, return 1 level 6 or lower 2-color Digimon card that's red or purple from your trash to the hand.</dd>
  3557. </dl>
  3558. <dl>
  3559. <dt>InheritedEffect</dt>
  3560. <dd>[Your Turn] All of your opponent's Security Digimon get -3000 DP.</dd>
  3561. </dl>
  3562. <dl>
  3563. <dt>SecurityEffect</dt>
  3564. <dd>-</dd>
  3565. </dl>
  3566. <dl>
  3567. <dt>Notes</dt>
  3568. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3569. </div>
  3570. </div>
  3571. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3572. </div>
  3573. </div>
  3574. </li>
  3575. <liclass="image_lists_itemdatapage-2">
  3576. <aclass="card_img">
  3577. <imgsrc="../images/cardlist/card/BT16-032.png"alt="BT16-032Sheepmon"></a>
  3578. <divclass="popup">
  3579. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3580. <divclass="card_detail_inner">
  3581. <ulclass="cardinfo_head">
  3582. <liclass="cardno">BT16-032</li>
  3583. <li>C</li>
  3584. <liclass="cardtype">Digimon</li>
  3585. <liclass="cardlv">Lv.4</li>
  3586. </ul>
  3587. <divclass="card_name">Sheepmon</div>
  3588. <divclass="cardinfo_top">
  3589. <divclass="card_img">
  3590. <imgsrc="../images/cardlist/card/BT16-032.png"alt="BT16-032Sheepmon"></div>
  3591. <divclass="cardinfo_top_body">
  3592. <dl>
  3593. <dt>Color</dt>
  3594. <ddclass="cardColor">
  3595. <spanclass="cardColor_yellow">Yellow</span>
  3596. <spanclass="cardColor_black">Black</span>
  3597. </dd>
  3598. </dl>
  3599. <dl>
  3600. <dt>Form</dt>
  3601. <dd>ArmorForm</dd>
  3602. </dl>
  3603. <dl>
  3604. <dt>Attribute</dt>
  3605. <dd>Free</dd>
  3606. </dl>
  3607. <dl>
  3608. <dt>Type</dt>
  3609. <dd>Mammal</dd>
  3610. </dl>
  3611. <divclass="cardinfo_flex">
  3612. <dlclass="cardinfo_dp">
  3613. <dt>DP</dt>
  3614. <dd>5000</dl>
  3615. <dl>
  3616. <dt>PlayCost</dt>
  3617. <dd>5</dd>
  3618. </dl>
  3619. </div>
  3620. <dl>
  3621. <dt>DigivolveCost1</dt>
  3622. <dd>3fromLv.3</dd>
  3623. </dl>
  3624. <dl>
  3625. <dt>DigivolveCost2</dt>
  3626. <dd>3fromLv.3</dd>
  3627. </dl>
  3628. </div>
  3629. </div>
  3630. <divclass="cardinfo_bottom">
  3631. <dl>
  3632. <dt>Effect</dt>
  3633. <dd>[Digivolve] [Armadillomon]: Cost 2<br><Armor Purge> <br><Collision> (During this Digimon's attack, all of your opponent's Digimon gain <Blocker>, and the opponent blocks if able.) <br>[All Turns] [Once Per Turn] When an attack target is switched, you may end the attack.</dd>
  3634. </dl>
  3635. <dl>
  3636. <dt>InheritedEffect</dt>
  3637. <dd>-</dd>
  3638. </dl>
  3639. <dl>
  3640. <dt>SecurityEffect</dt>
  3641. <dd>-</dd>
  3642. </dl>
  3643. <dl>
  3644. <dt>Notes</dt>
  3645. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3646. <aclass="btn"href="/rule/?card_no=BT16-032"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3647. </div>
  3648. </div>
  3649. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3650. </div>
  3651. </div>
  3652. </li>
  3653. <liclass="image_lists_itemdatapage-2">
  3654. <aclass="card_img">
  3655. <imgsrc="../images/cardlist/card/BT16-033.png"alt="BT16-033Harpymon"></a>
  3656. <divclass="popup">
  3657. <divclass="card_detailcard_detail_yellow_redmulticolor">
  3658. <divclass="card_detail_inner">
  3659. <ulclass="cardinfo_head">
  3660. <liclass="cardno">BT16-033</li>
  3661. <li>C</li>
  3662. <liclass="cardtype">Digimon</li>
  3663. <liclass="cardlv">Lv.4</li>
  3664. </ul>
  3665. <divclass="card_name">Harpymon</div>
  3666. <divclass="cardinfo_top">
  3667. <divclass="card_img">
  3668. <imgsrc="../images/cardlist/card/BT16-033.png"alt="BT16-033Harpymon"></div>
  3669. <divclass="cardinfo_top_body">
  3670. <dl>
  3671. <dt>Color</dt>
  3672. <ddclass="cardColor">
  3673. <spanclass="cardColor_yellow">Yellow</span>
  3674. <spanclass="cardColor_red">Red</span>
  3675. </dd>
  3676. </dl>
  3677. <dl>
  3678. <dt>Form</dt>
  3679. <dd>ArmorForm</dd>
  3680. </dl>
  3681. <dl>
  3682. <dt>Attribute</dt>
  3683. <dd>Free</dd>
  3684. </dl>
  3685. <dl>
  3686. <dt>Type</dt>
  3687. <dd>MythicalBeast</dd>
  3688. </dl>
  3689. <divclass="cardinfo_flex">
  3690. <dlclass="cardinfo_dp">
  3691. <dt>DP</dt>
  3692. <dd>5000</dl>
  3693. <dl>
  3694. <dt>PlayCost</dt>
  3695. <dd>5</dd>
  3696. </dl>
  3697. </div>
  3698. <dl>
  3699. <dt>DigivolveCost1</dt>
  3700. <dd>3fromLv.3</dd>
  3701. </dl>
  3702. <dl>
  3703. <dt>DigivolveCost2</dt>
  3704. <dd>3fromLv.3</dd>
  3705. </dl>
  3706. </div>
  3707. </div>
  3708. <divclass="cardinfo_bottom">
  3709. <dl>
  3710. <dt>Effect</dt>
  3711. <dd>[Digivolve] [Hawkmon]: Cost 2<br><Armor Purge> <br>[Your Turn] When this Digimon checks your opponent's security stack, if you have 3 or more security cards, gain 1 memory. If you have 2 or fewer, <Recovery +1 (Deck)>.</dd>
  3712. </dl>
  3713. <dl>
  3714. <dt>InheritedEffect</dt>
  3715. <dd>-</dd>
  3716. </dl>
  3717. <dl>
  3718. <dt>SecurityEffect</dt>
  3719. <dd>-</dd>
  3720. </dl>
  3721. <dl>
  3722. <dt>Notes</dt>
  3723. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3724. <aclass="btn"href="/rule/?card_no=BT16-033"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3725. </div>
  3726. </div>
  3727. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3728. </div>
  3729. </div>
  3730. </li>
  3731. <liclass="image_lists_itemdatapage-2">
  3732. <aclass="card_img">
  3733. <imgsrc="../images/cardlist/card/BT16-034.png"alt="BT16-034Tempomon"></a>
  3734. <divclass="popup">
  3735. <divclass="card_detailcard_detail_yellow">
  3736. <divclass="card_detail_inner">
  3737. <ulclass="cardinfo_head">
  3738. <liclass="cardno">BT16-034</li>
  3739. <li>C</li>
  3740. <liclass="cardtype">Digimon</li>
  3741. <liclass="cardlv">Lv.5</li>
  3742. </ul>
  3743. <divclass="card_name">Tempomon</div>
  3744. <divclass="cardinfo_top">
  3745. <divclass="card_img">
  3746. <imgsrc="../images/cardlist/card/BT16-034.png"alt="BT16-034Tempomon"></div>
  3747. <divclass="cardinfo_top_body">
  3748. <dl>
  3749. <dt>Color</dt>
  3750. <ddclass="cardColor">
  3751. <spanclass="cardColor_yellow">Yellow</span>
  3752. </dd>
  3753. </dl>
  3754. <dl>
  3755. <dt>Form</dt>
  3756. <dd>Ultimate</dd>
  3757. </dl>
  3758. <dl>
  3759. <dt>Attribute</dt>
  3760. <dd>Data</dd>
  3761. </dl>
  3762. <dl>
  3763. <dt>Type</dt>
  3764. <dd>Birdkin</dd>
  3765. </dl>
  3766. <divclass="cardinfo_flex">
  3767. <dlclass="cardinfo_dp">
  3768. <dt>DP</dt>
  3769. <dd>6000</dl>
  3770. <dl>
  3771. <dt>PlayCost</dt>
  3772. <dd>6</dd>
  3773. </dl>
  3774. </div>
  3775. <dl>
  3776. <dt>DigivolveCost1</dt>
  3777. <dd>3fromLv.4</dd>
  3778. </dl>
  3779. <dl>
  3780. <dt>DigivolveCost2</dt>
  3781. <dd>-</dd>
  3782. </dl>
  3783. </div>
  3784. </div>
  3785. <divclass="cardinfo_bottom">
  3786. <dl>
  3787. <dt>Effect</dt>
  3788. <dd>[Digivolve] Lv.4 w/[Pulsemon] in text: Cost 3<br>[On Play] [When Digivolving] If you have 3 or more security cards, 1 of your opponent's Digimon gets -4000 DP until the end of their turn. If you have 3 or fewer, 1 of their Digimon gains <Security A. -2> until the end of their turn.</dd>
  3789. </dl>
  3790. <dl>
  3791. <dt>InheritedEffect</dt>
  3792. <dd>[End of Attack] [Once Per Turn] If this Digimon has [Pulsemon] in its text, by trashing the top card of your security stack, unsuspend this Digimon.</dd>
  3793. </dl>
  3794. <dl>
  3795. <dt>SecurityEffect</dt>
  3796. <dd>-</dd>
  3797. </dl>
  3798. <dl>
  3799. <dt>Notes</dt>
  3800. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3801. <aclass="btn"href="/rule/?card_no=BT16-034"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3802. </div>
  3803. </div>
  3804. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3805. </div>
  3806. </div>
  3807. </li>
  3808. <liclass="image_lists_itemdatapage-2">
  3809. <aclass="card_img">
  3810. <imgsrc="../images/cardlist/card/BT16-035.png"alt="BT16-035SlashAngemon"></a>
  3811. <divclass="popup">
  3812. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3813. <divclass="card_detail_inner">
  3814. <ulclass="cardinfo_head">
  3815. <liclass="cardno">BT16-035</li>
  3816. <li>U</li>
  3817. <liclass="cardtype">Digimon</li>
  3818. <liclass="cardlv">Lv.6</li>
  3819. </ul>
  3820. <divclass="card_name">SlashAngemon</div>
  3821. <divclass="cardinfo_top">
  3822. <divclass="card_img">
  3823. <imgsrc="../images/cardlist/card/BT16-035.png"alt="BT16-035SlashAngemon"></div>
  3824. <divclass="cardinfo_top_body">
  3825. <dl>
  3826. <dt>Color</dt>
  3827. <ddclass="cardColor">
  3828. <spanclass="cardColor_yellow">Yellow</span>
  3829. <spanclass="cardColor_black">Black</span>
  3830. </dd>
  3831. </dl>
  3832. <dl>
  3833. <dt>Form</dt>
  3834. <dd>Mega</dd>
  3835. </dl>
  3836. <dl>
  3837. <dt>Attribute</dt>
  3838. <dd>Vaccine</dd>
  3839. </dl>
  3840. <dl>
  3841. <dt>Type</dt>
  3842. <dd>Authority</dd>
  3843. </dl>
  3844. <divclass="cardinfo_flex">
  3845. <dlclass="cardinfo_dp">
  3846. <dt>DP</dt>
  3847. <dd>11000</dl>
  3848. <dl>
  3849. <dt>PlayCost</dt>
  3850. <dd>11</dd>
  3851. </dl>
  3852. </div>
  3853. <dl>
  3854. <dt>DigivolveCost1</dt>
  3855. <dd>3fromLv.5</dd>
  3856. </dl>
  3857. <dl>
  3858. <dt>DigivolveCost2</dt>
  3859. <dd>3fromLv.5</dd>
  3860. </dl>
  3861. </div>
  3862. </div>
  3863. <divclass="cardinfo_bottom">
  3864. <dl>
  3865. <dt>Effect</dt>
  3866. <dd><Barrier><Reboot><br>[All Turns] [Once Per Turn] When a card is removed from your security stack, you may unsuspend this Digimon. <br>(Rule) Trait: Has [Angel] type.</dd>
  3867. </dl>
  3868. <dl>
  3869. <dt>InheritedEffect</dt>
  3870. <dd>-</dd>
  3871. </dl>
  3872. <dl>
  3873. <dt>SecurityEffect</dt>
  3874. <dd>-</dd>
  3875. </dl>
  3876. <dl>
  3877. <dt>Notes</dt>
  3878. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3879. </div>
  3880. </div>
  3881. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3882. </div>
  3883. </div>
  3884. </li>
  3885. <liclass="image_lists_itemdatapage-2">
  3886. <aclass="card_img">
  3887. <imgsrc="../images/cardlist/card/BT16-036.png"alt="BT16-036Chaosmon"></a>
  3888. <divclass="popup">
  3889. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3890. <divclass="card_detail_inner">
  3891. <ulclass="cardinfo_head">
  3892. <liclass="cardno">BT16-036</li>
  3893. <li>SR</li>
  3894. <liclass="cardtype">Digimon</li>
  3895. <liclass="cardlv">Lv.7</li>
  3896. </ul>
  3897. <divclass="card_name">Chaosmon</div>
  3898. <divclass="cardinfo_top">
  3899. <divclass="card_img">
  3900. <imgsrc="../images/cardlist/card/BT16-036.png"alt="BT16-036Chaosmon"></div>
  3901. <divclass="cardinfo_top_body">
  3902. <dl>
  3903. <dt>Color</dt>
  3904. <ddclass="cardColor">
  3905. <spanclass="cardColor_yellow">Yellow</span>
  3906. <spanclass="cardColor_black">Black</span>
  3907. </dd>
  3908. </dl>
  3909. <dl>
  3910. <dt>Form</dt>
  3911. <dd>Mega</dd>
  3912. </dl>
  3913. <dl>
  3914. <dt>Attribute</dt>
  3915. <dd>Vaccine</dd>
  3916. </dl>
  3917. <dl>
  3918. <dt>Type</dt>
  3919. <dd>Unique</dd>
  3920. </dl>
  3921. <divclass="cardinfo_flex">
  3922. <dlclass="cardinfo_dp">
  3923. <dt>DP</dt>
  3924. <dd>15000</dl>
  3925. <dl>
  3926. <dt>PlayCost</dt>
  3927. <dd>15</dd>
  3928. </dl>
  3929. </div>
  3930. <dl>
  3931. <dt>DigivolveCost1</dt>
  3932. <dd>5fromLv.6</dd>
  3933. </dl>
  3934. <dl>
  3935. <dt>DigivolveCost2</dt>
  3936. <dd>5fromLv.6</dd>
  3937. </dl>
  3938. </div>
  3939. </div>
  3940. <divclass="cardinfo_bottom">
  3941. <dl>
  3942. <dt>Effect</dt>
  3943. <dd>[DNA Digivolution] Yellow Lv.6 + black Lv.6: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Barrier> <Blocker> <Partition (yellow Lv.6 & black Lv.6)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)<br>[When Digivolving] <De-Digivolve 3> 1 of your opponent's Digimon. Then, 1 of their Digimon gets -8000 DP for the turn. <br>[End of Opponent’s Turn] Trash the top card of both players' security stacks. <br>(Rule) Trait: Has [Boss] and [D-Brigade].</dd>
  3944. </dl>
  3945. <dl>
  3946. <dt>InheritedEffect</dt>
  3947. <dd>-</dd>
  3948. </dl>
  3949. <dl>
  3950. <dt>SecurityEffect</dt>
  3951. <dd>-</dd>
  3952. </dl>
  3953. <dl>
  3954. <dt>Notes</dt>
  3955. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  3956. <aclass="btn"href="/rule/?card_no=BT16-036"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  3957. </div>
  3958. </div>
  3959. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  3960. </div>
  3961. </div>
  3962. </li>
  3963. <liclass="image_lists_itemdatapage-2">
  3964. <aclass="card_img">
  3965. <imgsrc="../images/cardlist/card/BT16-036_P1.png"alt="BT16-036Chaosmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  3966. </a>
  3967. <divclass="popup">
  3968. <divclass="card_detailcard_detail_yellow_blackmulticolor">
  3969. <divclass="card_detail_inner">
  3970. <ulclass="cardinfo_head">
  3971. <liclass="cardno">BT16-036</li>
  3972. <li>SR</li>
  3973. <liclass="cardtype">Digimon</li>
  3974. <liclass="cardlv">Lv.7</li>
  3975. <liclass="cardtypecardParallel">AlternativeArt</li>
  3976. </ul>
  3977. <divclass="card_name">Chaosmon</div>
  3978. <divclass="cardinfo_top">
  3979. <divclass="card_img">
  3980. <imgsrc="../images/cardlist/card/BT16-036_P1.png"alt="BT16-036Chaosmon"></div>
  3981. <divclass="cardinfo_top_body">
  3982. <dl>
  3983. <dt>Color</dt>
  3984. <ddclass="cardColor">
  3985. <spanclass="cardColor_yellow">Yellow</span>
  3986. <spanclass="cardColor_black">Black</span>
  3987. </dd>
  3988. </dl>
  3989. <dl>
  3990. <dt>Form</dt>
  3991. <dd>Mega</dd>
  3992. </dl>
  3993. <dl>
  3994. <dt>Attribute</dt>
  3995. <dd>Vaccine</dd>
  3996. </dl>
  3997. <dl>
  3998. <dt>Type</dt>
  3999. <dd>Unique</dd>
  4000. </dl>
  4001. <divclass="cardinfo_flex">
  4002. <dlclass="cardinfo_dp">
  4003. <dt>DP</dt>
  4004. <dd>15000</dl>
  4005. <dl>
  4006. <dt>PlayCost</dt>
  4007. <dd>15</dd>
  4008. </dl>
  4009. </div>
  4010. <dl>
  4011. <dt>DigivolveCost1</dt>
  4012. <dd>5fromLv.6</dd>
  4013. </dl>
  4014. <dl>
  4015. <dt>DigivolveCost2</dt>
  4016. <dd>5fromLv.6</dd>
  4017. </dl>
  4018. </div>
  4019. </div>
  4020. <divclass="cardinfo_bottom">
  4021. <dl>
  4022. <dt>Effect</dt>
  4023. <dd>[DNA Digivolution] Yellow Lv.6 + black Lv.6: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Barrier> <Blocker> <Partition (yellow Lv.6 & black Lv.6)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)<br>[When Digivolving] <De-Digivolve 3> 1 of your opponent's Digimon. Then, 1 of their Digimon gets -8000 DP for the turn. <br>[End of Opponent’s Turn] Trash the top card of both players' security stacks. <br>(Rule) Trait: Has [Boss] and [D-Brigade].</dd>
  4024. </dl>
  4025. <dl>
  4026. <dt>InheritedEffect</dt>
  4027. <dd>-</dd>
  4028. </dl>
  4029. <dl>
  4030. <dt>SecurityEffect</dt>
  4031. <dd>-</dd>
  4032. </dl>
  4033. <dl>
  4034. <dt>Notes</dt>
  4035. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4036. <aclass="btn"href="/rule/?card_no=BT16-036"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4037. </div>
  4038. </div>
  4039. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4040. </div>
  4041. </div>
  4042. </li>
  4043. <liclass="image_lists_itemdatapage-2">
  4044. <aclass="card_img">
  4045. <imgsrc="../images/cardlist/card/BT16-037.png"alt="BT16-037KoKabuterimon"></a>
  4046. <divclass="popup">
  4047. <divclass="card_detailcard_detail_green">
  4048. <divclass="card_detail_inner">
  4049. <ulclass="cardinfo_head">
  4050. <liclass="cardno">BT16-037</li>
  4051. <li>C</li>
  4052. <liclass="cardtype">Digimon</li>
  4053. <liclass="cardlv">Lv.3</li>
  4054. </ul>
  4055. <divclass="card_name">KoKabuterimon</div>
  4056. <divclass="cardinfo_top">
  4057. <divclass="card_img">
  4058. <imgsrc="../images/cardlist/card/BT16-037.png"alt="BT16-037KoKabuterimon"></div>
  4059. <divclass="cardinfo_top_body">
  4060. <dl>
  4061. <dt>Color</dt>
  4062. <ddclass="cardColor">
  4063. <spanclass="cardColor_green">Green</span>
  4064. </dd>
  4065. </dl>
  4066. <dl>
  4067. <dt>Form</dt>
  4068. <dd>Rookie</dd>
  4069. </dl>
  4070. <dl>
  4071. <dt>Attribute</dt>
  4072. <dd>Virus</dd>
  4073. </dl>
  4074. <dl>
  4075. <dt>Type</dt>
  4076. <dd>Insectoid</dd>
  4077. </dl>
  4078. <divclass="cardinfo_flex">
  4079. <dlclass="cardinfo_dp">
  4080. <dt>DP</dt>
  4081. <dd>1000</dl>
  4082. <dl>
  4083. <dt>PlayCost</dt>
  4084. <dd>3</dd>
  4085. </dl>
  4086. </div>
  4087. <dl>
  4088. <dt>DigivolveCost1</dt>
  4089. <dd>0fromLv.2</dd>
  4090. </dl>
  4091. <dl>
  4092. <dt>DigivolveCost2</dt>
  4093. <dd>-</dd>
  4094. </dl>
  4095. </div>
  4096. </div>
  4097. <divclass="cardinfo_bottom">
  4098. <dl>
  4099. <dt>Effect</dt>
  4100. <dd>[On Play] Reveal the top 4 cards of your deck. Add 1 card with the [Insectoid] trait among them to the hand. Return the rest to the bottom of the deck.</dd>
  4101. </dl>
  4102. <dl>
  4103. <dt>InheritedEffect</dt>
  4104. <dd>[All Turns] While this Digimon is suspended, it gets +1000 DP.</dd>
  4105. </dl>
  4106. <dl>
  4107. <dt>SecurityEffect</dt>
  4108. <dd>-</dd>
  4109. </dl>
  4110. <dl>
  4111. <dt>Notes</dt>
  4112. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4113. </div>
  4114. </div>
  4115. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4116. </div>
  4117. </div>
  4118. </li>
  4119. <liclass="image_lists_itemdatapage-2">
  4120. <aclass="card_img">
  4121. <imgsrc="../images/cardlist/card/BT16-038.png"alt="BT16-038Terriermon(XAntibody)"></a>
  4122. <divclass="popup">
  4123. <divclass="card_detailcard_detail_green">
  4124. <divclass="card_detail_inner">
  4125. <ulclass="cardinfo_head">
  4126. <liclass="cardno">BT16-038</li>
  4127. <li>U</li>
  4128. <liclass="cardtype">Digimon</li>
  4129. <liclass="cardlv">Lv.3</li>
  4130. </ul>
  4131. <divclass="card_name">Terriermon(XAntibody)</div>
  4132. <divclass="cardinfo_top">
  4133. <divclass="card_img">
  4134. <imgsrc="../images/cardlist/card/BT16-038.png"alt="BT16-038Terriermon(XAntibody)"></div>
  4135. <divclass="cardinfo_top_body">
  4136. <dl>
  4137. <dt>Color</dt>
  4138. <ddclass="cardColor">
  4139. <spanclass="cardColor_green">Green</span>
  4140. </dd>
  4141. </dl>
  4142. <dl>
  4143. <dt>Form</dt>
  4144. <dd>Rookie</dd>
  4145. </dl>
  4146. <dl>
  4147. <dt>Attribute</dt>
  4148. <dd>Vaccine</dd>
  4149. </dl>
  4150. <dl>
  4151. <dt>Type</dt>
  4152. <dd>Beast/XAntibody</dd>
  4153. </dl>
  4154. <divclass="cardinfo_flex">
  4155. <dlclass="cardinfo_dp">
  4156. <dt>DP</dt>
  4157. <dd>1000</dl>
  4158. <dl>
  4159. <dt>PlayCost</dt>
  4160. <dd>3</dd>
  4161. </dl>
  4162. </div>
  4163. <dl>
  4164. <dt>DigivolveCost1</dt>
  4165. <dd>0fromLv.2</dd>
  4166. </dl>
  4167. <dl>
  4168. <dt>DigivolveCost2</dt>
  4169. <dd>-</dd>
  4170. </dl>
  4171. </div>
  4172. </div>
  4173. <divclass="cardinfo_bottom">
  4174. <dl>
  4175. <dt>Effect</dt>
  4176. <dd>[Digivolve] [Gummymon]/[Terriermon]: Cost 0<br>[Your Turn] When this Digimon would digivolve into a card with [Gargomon] or [Rapidmon] in its name, reduce the digivolution cost by 1.</dd>
  4177. </dl>
  4178. <dl>
  4179. <dt>InheritedEffect</dt>
  4180. <dd>[Your Turn] While this Digimon has [Gargomon] or [Rapidmon] in its name, it gains <Piercing>.</dd>
  4181. </dl>
  4182. <dl>
  4183. <dt>SecurityEffect</dt>
  4184. <dd>-</dd>
  4185. </dl>
  4186. <dl>
  4187. <dt>Notes</dt>
  4188. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4189. </div>
  4190. </div>
  4191. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4192. </div>
  4193. </div>
  4194. </li>
  4195. <liclass="image_lists_itemdatapage-2">
  4196. <aclass="card_img">
  4197. <imgsrc="../images/cardlist/card/BT16-039.png"alt="BT16-039Pulsemon"></a>
  4198. <divclass="popup">
  4199. <divclass="card_detailcard_detail_green">
  4200. <divclass="card_detail_inner">
  4201. <ulclass="cardinfo_head">
  4202. <liclass="cardno">BT16-039</li>
  4203. <li>C</li>
  4204. <liclass="cardtype">Digimon</li>
  4205. <liclass="cardlv">Lv.3</li>
  4206. </ul>
  4207. <divclass="card_name">Pulsemon</div>
  4208. <divclass="cardinfo_top">
  4209. <divclass="card_img">
  4210. <imgsrc="../images/cardlist/card/BT16-039.png"alt="BT16-039Pulsemon"></div>
  4211. <divclass="cardinfo_top_body">
  4212. <dl>
  4213. <dt>Color</dt>
  4214. <ddclass="cardColor">
  4215. <spanclass="cardColor_green">Green</span>
  4216. </dd>
  4217. </dl>
  4218. <dl>
  4219. <dt>Form</dt>
  4220. <dd>Rookie</dd>
  4221. </dl>
  4222. <dl>
  4223. <dt>Attribute</dt>
  4224. <dd>Vaccine</dd>
  4225. </dl>
  4226. <dl>
  4227. <dt>Type</dt>
  4228. <dd>Beastkin/AbadinElectronics</dd>
  4229. </dl>
  4230. <divclass="cardinfo_flex">
  4231. <dlclass="cardinfo_dp">
  4232. <dt>DP</dt>
  4233. <dd>1000</dl>
  4234. <dl>
  4235. <dt>PlayCost</dt>
  4236. <dd>3</dd>
  4237. </dl>
  4238. </div>
  4239. <dl>
  4240. <dt>DigivolveCost1</dt>
  4241. <dd>0fromLv.2</dd>
  4242. </dl>
  4243. <dl>
  4244. <dt>DigivolveCost2</dt>
  4245. <dd>-</dd>
  4246. </dl>
  4247. </div>
  4248. </div>
  4249. <divclass="cardinfo_bottom">
  4250. <dl>
  4251. <dt>Effect</dt>
  4252. <dd>[Digivolve] [Bibimon]: Cost 0<br>[On Play] Reveal the top 4 cards of your deck. Add 1 card with [Pulsemon] in its text and 1 card with the [Abadin Electronics] trait among them to the hand. Return the rest to the bottom of the deck.</dd>
  4253. </dl>
  4254. <dl>
  4255. <dt>InheritedEffect</dt>
  4256. <dd>[All Turns] While this Digimon has [Pulsemon] in its text, it gets +1000 DP.</dd>
  4257. </dl>
  4258. <dl>
  4259. <dt>SecurityEffect</dt>
  4260. <dd>-</dd>
  4261. </dl>
  4262. <dl>
  4263. <dt>Notes</dt>
  4264. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4265. <aclass="btn"href="/rule/?card_no=BT16-039"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4266. </div>
  4267. </div>
  4268. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4269. </div>
  4270. </div>
  4271. </li>
  4272. <liclass="image_lists_itemdatapage-2">
  4273. <aclass="card_img">
  4274. <imgsrc="../images/cardlist/card/BT16-040.png"alt="BT16-040Wormmon"></a>
  4275. <divclass="popup">
  4276. <divclass="card_detailcard_detail_green_purplemulticolor">
  4277. <divclass="card_detail_inner">
  4278. <ulclass="cardinfo_head">
  4279. <liclass="cardno">BT16-040</li>
  4280. <li>R</li>
  4281. <liclass="cardtype">Digimon</li>
  4282. <liclass="cardlv">Lv.3</li>
  4283. </ul>
  4284. <divclass="card_name">Wormmon</div>
  4285. <divclass="cardinfo_top">
  4286. <divclass="card_img">
  4287. <imgsrc="../images/cardlist/card/BT16-040.png"alt="BT16-040Wormmon"></div>
  4288. <divclass="cardinfo_top_body">
  4289. <dl>
  4290. <dt>Color</dt>
  4291. <ddclass="cardColor">
  4292. <spanclass="cardColor_green">Green</span>
  4293. <spanclass="cardColor_purple">Purple</span>
  4294. </dd>
  4295. </dl>
  4296. <dl>
  4297. <dt>Form</dt>
  4298. <dd>Rookie</dd>
  4299. </dl>
  4300. <dl>
  4301. <dt>Attribute</dt>
  4302. <dd>Free</dd>
  4303. </dl>
  4304. <dl>
  4305. <dt>Type</dt>
  4306. <dd>Larva</dd>
  4307. </dl>
  4308. <divclass="cardinfo_flex">
  4309. <dlclass="cardinfo_dp">
  4310. <dt>DP</dt>
  4311. <dd>2000</dl>
  4312. <dl>
  4313. <dt>PlayCost</dt>
  4314. <dd>3</dd>
  4315. </dl>
  4316. </div>
  4317. <dl>
  4318. <dt>DigivolveCost1</dt>
  4319. <dd>1fromLv.2</dd>
  4320. </dl>
  4321. <dl>
  4322. <dt>DigivolveCost2</dt>
  4323. <dd>1fromLv.2</dd>
  4324. </dl>
  4325. </div>
  4326. </div>
  4327. <divclass="cardinfo_bottom">
  4328. <dl>
  4329. <dt>Effect</dt>
  4330. <dd>[Digivolve] [Minomon]: Cost 0<br>[Start of Your Main Phase] [On Play] If it's your turn, 1 of your Digimon may digivolve into a level 4 Digimon card with the [Insectoid] or [Free] trait in your trash with the digivolution cost reduced by 1.</dd>
  4331. </dl>
  4332. <dl>
  4333. <dt>InheritedEffect</dt>
  4334. <dd>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's Digimon.</dd>
  4335. </dl>
  4336. <dl>
  4337. <dt>SecurityEffect</dt>
  4338. <dd>-</dd>
  4339. </dl>
  4340. <dl>
  4341. <dt>Notes</dt>
  4342. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4343. <aclass="btn"href="/rule/?card_no=BT16-040"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4344. </div>
  4345. </div>
  4346. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4347. </div>
  4348. </div>
  4349. </li>
  4350. <liclass="image_lists_itemdatapage-2">
  4351. <aclass="card_img">
  4352. <imgsrc="../images/cardlist/card/BT16-041.png"alt="BT16-041Stingmon"></a>
  4353. <divclass="popup">
  4354. <divclass="card_detailcard_detail_green_purplemulticolor">
  4355. <divclass="card_detail_inner">
  4356. <ulclass="cardinfo_head">
  4357. <liclass="cardno">BT16-041</li>
  4358. <li>U</li>
  4359. <liclass="cardtype">Digimon</li>
  4360. <liclass="cardlv">Lv.4</li>
  4361. </ul>
  4362. <divclass="card_name">Stingmon</div>
  4363. <divclass="cardinfo_top">
  4364. <divclass="card_img">
  4365. <imgsrc="../images/cardlist/card/BT16-041.png"alt="BT16-041Stingmon"></div>
  4366. <divclass="cardinfo_top_body">
  4367. <dl>
  4368. <dt>Color</dt>
  4369. <ddclass="cardColor">
  4370. <spanclass="cardColor_green">Green</span>
  4371. <spanclass="cardColor_purple">Purple</span>
  4372. </dd>
  4373. </dl>
  4374. <dl>
  4375. <dt>Form</dt>
  4376. <dd>Champion</dd>
  4377. </dl>
  4378. <dl>
  4379. <dt>Attribute</dt>
  4380. <dd>Free</dd>
  4381. </dl>
  4382. <dl>
  4383. <dt>Type</dt>
  4384. <dd>Insectoid</dd>
  4385. </dl>
  4386. <divclass="cardinfo_flex">
  4387. <dlclass="cardinfo_dp">
  4388. <dt>DP</dt>
  4389. <dd>4000</dl>
  4390. <dl>
  4391. <dt>PlayCost</dt>
  4392. <dd>4</dd>
  4393. </dl>
  4394. </div>
  4395. <dl>
  4396. <dt>DigivolveCost1</dt>
  4397. <dd>3fromLv.3</dd>
  4398. </dl>
  4399. <dl>
  4400. <dt>DigivolveCost2</dt>
  4401. <dd>3fromLv.3</dd>
  4402. </dl>
  4403. </div>
  4404. </div>
  4405. <divclass="cardinfo_bottom">
  4406. <dl>
  4407. <dt>Effect</dt>
  4408. <dd>[Digivolve] [Wormmon]: Cost 2<br><Retaliation> <br>[On Play] [When Digivolving] Suspend 1 of your opponent's Digimon.</dd>
  4409. </dl>
  4410. <dl>
  4411. <dt>InheritedEffect</dt>
  4412. <dd>[When Attacking] [Once Per Turn] Suspend 1 of your opponent's Digimon.</dd>
  4413. </dl>
  4414. <dl>
  4415. <dt>SecurityEffect</dt>
  4416. <dd>-</dd>
  4417. </dl>
  4418. <dl>
  4419. <dt>Notes</dt>
  4420. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4421. </div>
  4422. </div>
  4423. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4424. </div>
  4425. </div>
  4426. </li>
  4427. <liclass="image_lists_itemdatapage-2">
  4428. <aclass="card_img">
  4429. <imgsrc="../images/cardlist/card/BT16-042.png"alt="BT16-042BladeKuwagamon"></a>
  4430. <divclass="popup">
  4431. <divclass="card_detailcard_detail_green">
  4432. <divclass="card_detail_inner">
  4433. <ulclass="cardinfo_head">
  4434. <liclass="cardno">BT16-042</li>
  4435. <li>C</li>
  4436. <liclass="cardtype">Digimon</li>
  4437. <liclass="cardlv">Lv.4</li>
  4438. </ul>
  4439. <divclass="card_name">BladeKuwagamon</div>
  4440. <divclass="cardinfo_top">
  4441. <divclass="card_img">
  4442. <imgsrc="../images/cardlist/card/BT16-042.png"alt="BT16-042BladeKuwagamon"></div>
  4443. <divclass="cardinfo_top_body">
  4444. <dl>
  4445. <dt>Color</dt>
  4446. <ddclass="cardColor">
  4447. <spanclass="cardColor_green">Green</span>
  4448. </dd>
  4449. </dl>
  4450. <dl>
  4451. <dt>Form</dt>
  4452. <dd>Champion</dd>
  4453. </dl>
  4454. <dl>
  4455. <dt>Attribute</dt>
  4456. <dd>Virus</dd>
  4457. </dl>
  4458. <dl>
  4459. <dt>Type</dt>
  4460. <dd>Machine</dd>
  4461. </dl>
  4462. <divclass="cardinfo_flex">
  4463. <dlclass="cardinfo_dp">
  4464. <dt>DP</dt>
  4465. <dd>4000</dl>
  4466. <dl>
  4467. <dt>PlayCost</dt>
  4468. <dd>4</dd>
  4469. </dl>
  4470. </div>
  4471. <dl>
  4472. <dt>DigivolveCost1</dt>
  4473. <dd>2fromLv.3</dd>
  4474. </dl>
  4475. <dl>
  4476. <dt>DigivolveCost2</dt>
  4477. <dd>-</dd>
  4478. </dl>
  4479. </div>
  4480. </div>
  4481. <divclass="cardinfo_bottom">
  4482. <dl>
  4483. <dt>Effect</dt>
  4484. <dd>[On Play] [When Digivolving] 1 of your Digimon gets +3000 DP until the end of your opponent's turn. <br>(Rule) Trait: Has [Insectoid] type.</dd>
  4485. </dl>
  4486. <dl>
  4487. <dt>InheritedEffect</dt>
  4488. <dd>[All Turns] While this Digimon is suspended, it gets +1000 DP.</dd>
  4489. </dl>
  4490. <dl>
  4491. <dt>SecurityEffect</dt>
  4492. <dd>-</dd>
  4493. </dl>
  4494. <dl>
  4495. <dt>Notes</dt>
  4496. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4497. </div>
  4498. </div>
  4499. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4500. </div>
  4501. </div>
  4502. </li>
  4503. <liclass="image_lists_itemdatapage-2">
  4504. <aclass="card_img">
  4505. <imgsrc="../images/cardlist/card/BT16-043.png"alt="BT16-043Runnermon"></a>
  4506. <divclass="popup">
  4507. <divclass="card_detailcard_detail_green">
  4508. <divclass="card_detail_inner">
  4509. <ulclass="cardinfo_head">
  4510. <liclass="cardno">BT16-043</li>
  4511. <li>C</li>
  4512. <liclass="cardtype">Digimon</li>
  4513. <liclass="cardlv">Lv.4</li>
  4514. </ul>
  4515. <divclass="card_name">Runnermon</div>
  4516. <divclass="cardinfo_top">
  4517. <divclass="card_img">
  4518. <imgsrc="../images/cardlist/card/BT16-043.png"alt="BT16-043Runnermon"></div>
  4519. <divclass="cardinfo_top_body">
  4520. <dl>
  4521. <dt>Color</dt>
  4522. <ddclass="cardColor">
  4523. <spanclass="cardColor_green">Green</span>
  4524. </dd>
  4525. </dl>
  4526. <dl>
  4527. <dt>Form</dt>
  4528. <dd>Champion</dd>
  4529. </dl>
  4530. <dl>
  4531. <dt>Attribute</dt>
  4532. <dd>Virus</dd>
  4533. </dl>
  4534. <dl>
  4535. <dt>Type</dt>
  4536. <dd>Beast</dd>
  4537. </dl>
  4538. <divclass="cardinfo_flex">
  4539. <dlclass="cardinfo_dp">
  4540. <dt>DP</dt>
  4541. <dd>4000</dl>
  4542. <dl>
  4543. <dt>PlayCost</dt>
  4544. <dd>4</dd>
  4545. </dl>
  4546. </div>
  4547. <dl>
  4548. <dt>DigivolveCost1</dt>
  4549. <dd>2fromLv.3</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>[Digivolve] [Pulsemon]: Cost 2<br>[On Play] [When Digivolving] If you have 3 or more security cards, suspend 1 of your opponent's Digimon. If you have 3 or fewer, gain 1 memory.</dd>
  4561. </dl>
  4562. <dl>
  4563. <dt>InheritedEffect</dt>
  4564. <dd>[All Turns] While this Digimon has [Pulsemon] in its text, it gets +1000 DP.</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/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4573. <aclass="btn"href="/rule/?card_no=BT16-043"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4574. </div>
  4575. </div>
  4576. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4577. </div>
  4578. </div>
  4579. </li>
  4580. <liclass="image_lists_itemdatapage-2">
  4581. <aclass="card_img">
  4582. <imgsrc="../images/cardlist/card/BT16-044.png"alt="BT16-044Pistmon"></a>
  4583. <divclass="popup">
  4584. <divclass="card_detailcard_detail_green">
  4585. <divclass="card_detail_inner">
  4586. <ulclass="cardinfo_head">
  4587. <liclass="cardno">BT16-044</li>
  4588. <li>U</li>
  4589. <liclass="cardtype">Digimon</li>
  4590. <liclass="cardlv">Lv.5</li>
  4591. </ul>
  4592. <divclass="card_name">Pistmon</div>
  4593. <divclass="cardinfo_top">
  4594. <divclass="card_img">
  4595. <imgsrc="../images/cardlist/card/BT16-044.png"alt="BT16-044Pistmon"></div>
  4596. <divclass="cardinfo_top_body">
  4597. <dl>
  4598. <dt>Color</dt>
  4599. <ddclass="cardColor">
  4600. <spanclass="cardColor_green">Green</span>
  4601. </dd>
  4602. </dl>
  4603. <dl>
  4604. <dt>Form</dt>
  4605. <dd>Ultimate</dd>
  4606. </dl>
  4607. <dl>
  4608. <dt>Attribute</dt>
  4609. <dd>Virus</dd>
  4610. </dl>
  4611. <dl>
  4612. <dt>Type</dt>
  4613. <dd>Vegetation</dd>
  4614. </dl>
  4615. <divclass="cardinfo_flex">
  4616. <dlclass="cardinfo_dp">
  4617. <dt>DP</dt>
  4618. <dd>6000</dl>
  4619. <dl>
  4620. <dt>PlayCost</dt>
  4621. <dd>6</dd>
  4622. </dl>
  4623. </div>
  4624. <dl>
  4625. <dt>DigivolveCost1</dt>
  4626. <dd>3fromLv.4</dd>
  4627. </dl>
  4628. <dl>
  4629. <dt>DigivolveCost2</dt>
  4630. <dd>3fromLv.4</dd>
  4631. </dl>
  4632. </div>
  4633. </div>
  4634. <divclass="cardinfo_bottom">
  4635. <dl>
  4636. <dt>Effect</dt>
  4637. <dd>[Digivolve] Lv.4 w/[Pulsemon] in text: Cost 3<br>[On Play] [When Digivolving] If you have 3 or more security cards, suspend 1 of your opponent's Digimon. It can't unsuspend during your opponent's next unsuspend phase. If you have 3 or fewer security cards, gain 2 memory.</dd>
  4638. </dl>
  4639. <dl>
  4640. <dt>InheritedEffect</dt>
  4641. <dd>[End of Attack] [Once Per Turn] If this Digimon has [Pulsemon] in its text, by trashing the top card of your security stack, unsuspend this Digimon.</dd>
  4642. </dl>
  4643. <dl>
  4644. <dt>SecurityEffect</dt>
  4645. <dd>-</dd>
  4646. </dl>
  4647. <dl>
  4648. <dt>Notes</dt>
  4649. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4650. <aclass="btn"href="/rule/?card_no=BT16-044"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4651. </div>
  4652. </div>
  4653. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4654. </div>
  4655. </div>
  4656. </li>
  4657. <liclass="image_lists_itemdatapage-2">
  4658. <aclass="card_img">
  4659. <imgsrc="../images/cardlist/card/BT16-045.png"alt="BT16-045MetallifeKuwagamon"></a>
  4660. <divclass="popup">
  4661. <divclass="card_detailcard_detail_green">
  4662. <divclass="card_detail_inner">
  4663. <ulclass="cardinfo_head">
  4664. <liclass="cardno">BT16-045</li>
  4665. <li>U</li>
  4666. <liclass="cardtype">Digimon</li>
  4667. <liclass="cardlv">Lv.5</li>
  4668. </ul>
  4669. <divclass="card_name">MetallifeKuwagamon</div>
  4670. <divclass="cardinfo_top">
  4671. <divclass="card_img">
  4672. <imgsrc="../images/cardlist/card/BT16-045.png"alt="BT16-045MetallifeKuwagamon"></div>
  4673. <divclass="cardinfo_top_body">
  4674. <dl>
  4675. <dt>Color</dt>
  4676. <ddclass="cardColor">
  4677. <spanclass="cardColor_green">Green</span>
  4678. </dd>
  4679. </dl>
  4680. <dl>
  4681. <dt>Form</dt>
  4682. <dd>Ultimate</dd>
  4683. </dl>
  4684. <dl>
  4685. <dt>Attribute</dt>
  4686. <dd>Virus</dd>
  4687. </dl>
  4688. <dl>
  4689. <dt>Type</dt>
  4690. <dd>Insectoid</dd>
  4691. </dl>
  4692. <divclass="cardinfo_flex">
  4693. <dlclass="cardinfo_dp">
  4694. <dt>DP</dt>
  4695. <dd>7000</dl>
  4696. <dl>
  4697. <dt>PlayCost</dt>
  4698. <dd>7</dd>
  4699. </dl>
  4700. </div>
  4701. <dl>
  4702. <dt>DigivolveCost1</dt>
  4703. <dd>3fromLv.4</dd>
  4704. </dl>
  4705. <dl>
  4706. <dt>DigivolveCost2</dt>
  4707. <dd>-</dd>
  4708. </dl>
  4709. </div>
  4710. </div>
  4711. <divclass="cardinfo_bottom">
  4712. <dl>
  4713. <dt>Effect</dt>
  4714. <dd>[On Play] [When Digivolving] You may suspend 1 Digimon. Then, 1 of your Digimon gets +3000 DP until the end of your opponent's turn.</dd>
  4715. </dl>
  4716. <dl>
  4717. <dt>InheritedEffect</dt>
  4718. <dd>[Opponent's Turn] [Once Per Turn] When an opponent's Digimon attacks, you may switch the target of attack to 1 of your suspended Digimon with the [Insectoid] trait.</dd>
  4719. </dl>
  4720. <dl>
  4721. <dt>SecurityEffect</dt>
  4722. <dd>-</dd>
  4723. </dl>
  4724. <dl>
  4725. <dt>Notes</dt>
  4726. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4727. <aclass="btn"href="/rule/?card_no=BT16-045"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4728. </div>
  4729. </div>
  4730. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4731. </div>
  4732. </div>
  4733. </li>
  4734. <liclass="image_lists_itemdatapage-2">
  4735. <aclass="card_img">
  4736. <imgsrc="../images/cardlist/card/BT16-046.png"alt="BT16-046GranKuwagamonACE"></a>
  4737. <divclass="popup">
  4738. <divclass="card_detailcard_detail_green_purplemulticolor">
  4739. <divclass="card_detail_inner">
  4740. <ulclass="cardinfo_head">
  4741. <liclass="cardno">BT16-046</li>
  4742. <li>R</li>
  4743. <liclass="cardtype">Digimon</li>
  4744. <liclass="cardlv">Lv.6</li>
  4745. </ul>
  4746. <divclass="card_name">GranKuwagamonACE</div>
  4747. <divclass="cardinfo_top">
  4748. <divclass="card_img">
  4749. <imgsrc="../images/cardlist/card/BT16-046.png"alt="BT16-046GranKuwagamonACE"></div>
  4750. <divclass="cardinfo_top_body">
  4751. <dl>
  4752. <dt>Color</dt>
  4753. <ddclass="cardColor">
  4754. <spanclass="cardColor_green">Green</span>
  4755. <spanclass="cardColor_purple">Purple</span>
  4756. </dd>
  4757. </dl>
  4758. <dl>
  4759. <dt>Form</dt>
  4760. <dd>Mega</dd>
  4761. </dl>
  4762. <dl>
  4763. <dt>Attribute</dt>
  4764. <dd>Free</dd>
  4765. </dl>
  4766. <dl>
  4767. <dt>Type</dt>
  4768. <dd>Insectoid</dd>
  4769. </dl>
  4770. <divclass="cardinfo_flex">
  4771. <dlclass="cardinfo_dp">
  4772. <dt>DP</dt>
  4773. <dd>12000</dl>
  4774. <dl>
  4775. <dt>PlayCost</dt>
  4776. <dd>7</dd>
  4777. </dl>
  4778. </div>
  4779. <dl>
  4780. <dt>DigivolveCost1</dt>
  4781. <dd>4fromLv.5</dd>
  4782. </dl>
  4783. <dl>
  4784. <dt>DigivolveCost2</dt>
  4785. <dd>4fromLv.5</dd>
  4786. </dl>
  4787. </div>
  4788. </div>
  4789. <divclass="cardinfo_bottom">
  4790. <dl>
  4791. <dt>Effect</dt>
  4792. <dd>[Digivolve] [Dinobeemon] or Lv.5 w/[Insectoid] trait: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] Suspend 2 of your opponent's Digimon or Tamers. Cards this effect suspended can't unsuspend during your opponent's next unsuspend phase. Then, delete 1 of their suspended Tamers. <br>[Your Turn] [Once Per Turn] When this Digimon becomes suspended, 1 of your Digimon gains <Security A. +1> for the turn.</dd>
  4793. </dl>
  4794. <dl>
  4795. <dt>InheritedEffect</dt>
  4796. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  4797. </dl>
  4798. <dl>
  4799. <dt>SecurityEffect</dt>
  4800. <dd>-</dd>
  4801. </dl>
  4802. <dl>
  4803. <dt>Notes</dt>
  4804. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4805. <aclass="btn"href="/rule/?card_no=BT16-046"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4806. </div>
  4807. </div>
  4808. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4809. </div>
  4810. </div>
  4811. </li>
  4812. <liclass="image_lists_itemdatapage-2">
  4813. <aclass="card_img">
  4814. <imgsrc="../images/cardlist/card/BT16-046_P1.png"alt="BT16-046GranKuwagamonACE"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  4815. </a>
  4816. <divclass="popup">
  4817. <divclass="card_detailcard_detail_green_purplemulticolor">
  4818. <divclass="card_detail_inner">
  4819. <ulclass="cardinfo_head">
  4820. <liclass="cardno">BT16-046</li>
  4821. <li>R</li>
  4822. <liclass="cardtype">Digimon</li>
  4823. <liclass="cardlv">Lv.6</li>
  4824. <liclass="cardtypecardParallel">AlternativeArt</li>
  4825. </ul>
  4826. <divclass="card_name">GranKuwagamonACE</div>
  4827. <divclass="cardinfo_top">
  4828. <divclass="card_img">
  4829. <imgsrc="../images/cardlist/card/BT16-046_P1.png"alt="BT16-046GranKuwagamonACE"></div>
  4830. <divclass="cardinfo_top_body">
  4831. <dl>
  4832. <dt>Color</dt>
  4833. <ddclass="cardColor">
  4834. <spanclass="cardColor_green">Green</span>
  4835. <spanclass="cardColor_purple">Purple</span>
  4836. </dd>
  4837. </dl>
  4838. <dl>
  4839. <dt>Form</dt>
  4840. <dd>Mega</dd>
  4841. </dl>
  4842. <dl>
  4843. <dt>Attribute</dt>
  4844. <dd>Free</dd>
  4845. </dl>
  4846. <dl>
  4847. <dt>Type</dt>
  4848. <dd>Insectoid</dd>
  4849. </dl>
  4850. <divclass="cardinfo_flex">
  4851. <dlclass="cardinfo_dp">
  4852. <dt>DP</dt>
  4853. <dd>12000</dl>
  4854. <dl>
  4855. <dt>PlayCost</dt>
  4856. <dd>7</dd>
  4857. </dl>
  4858. </div>
  4859. <dl>
  4860. <dt>DigivolveCost1</dt>
  4861. <dd>4fromLv.5</dd>
  4862. </dl>
  4863. <dl>
  4864. <dt>DigivolveCost2</dt>
  4865. <dd>4fromLv.5</dd>
  4866. </dl>
  4867. </div>
  4868. </div>
  4869. <divclass="cardinfo_bottom">
  4870. <dl>
  4871. <dt>Effect</dt>
  4872. <dd>[Digivolve] [Dinobeemon] or Lv.5 w/[Insectoid] trait: Cost 3<br>[Hand] [Counter] <Blast Digivolve> (One of your Digimon may digivolve into this card without paying the cost.) <br>[On Play] [When Digivolving] Suspend 2 of your opponent's Digimon or Tamers. Cards this effect suspended can't unsuspend during your opponent's next unsuspend phase. Then, delete 1 of their suspended Tamers. <br>[Your Turn] [Once Per Turn] When this Digimon becomes suspended, 1 of your Digimon gains <Security A. +1> for the turn.</dd>
  4873. </dl>
  4874. <dl>
  4875. <dt>InheritedEffect</dt>
  4876. <dd><Overflow (-4)> (As this card moves from the battle area or under a card to another area, lose 4 memory.)</dd>
  4877. </dl>
  4878. <dl>
  4879. <dt>SecurityEffect</dt>
  4880. <dd>-</dd>
  4881. </dl>
  4882. <dl>
  4883. <dt>Notes</dt>
  4884. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4885. <aclass="btn"href="/rule/?card_no=BT16-046"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4886. </div>
  4887. </div>
  4888. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4889. </div>
  4890. </div>
  4891. </li>
  4892. <liclass="image_lists_itemdatapage-2">
  4893. <aclass="card_img">
  4894. <imgsrc="../images/cardlist/card/BT16-047.png"alt="BT16-047Achillesmon"></a>
  4895. <divclass="popup">
  4896. <divclass="card_detailcard_detail_green">
  4897. <divclass="card_detail_inner">
  4898. <ulclass="cardinfo_head">
  4899. <liclass="cardno">BT16-047</li>
  4900. <li>U</li>
  4901. <liclass="cardtype">Digimon</li>
  4902. <liclass="cardlv">Lv.6</li>
  4903. </ul>
  4904. <divclass="card_name">Achillesmon</div>
  4905. <divclass="cardinfo_top">
  4906. <divclass="card_img">
  4907. <imgsrc="../images/cardlist/card/BT16-047.png"alt="BT16-047Achillesmon"></div>
  4908. <divclass="cardinfo_top_body">
  4909. <dl>
  4910. <dt>Color</dt>
  4911. <ddclass="cardColor">
  4912. <spanclass="cardColor_green">Green</span>
  4913. </dd>
  4914. </dl>
  4915. <dl>
  4916. <dt>Form</dt>
  4917. <dd>Mega</dd>
  4918. </dl>
  4919. <dl>
  4920. <dt>Attribute</dt>
  4921. <dd>Virus</dd>
  4922. </dl>
  4923. <dl>
  4924. <dt>Type</dt>
  4925. <dd>Beastkin</dd>
  4926. </dl>
  4927. <divclass="cardinfo_flex">
  4928. <dlclass="cardinfo_dp">
  4929. <dt>DP</dt>
  4930. <dd>11000</dl>
  4931. <dl>
  4932. <dt>PlayCost</dt>
  4933. <dd>11</dd>
  4934. </dl>
  4935. </div>
  4936. <dl>
  4937. <dt>DigivolveCost1</dt>
  4938. <dd>3fromLv.5</dd>
  4939. </dl>
  4940. <dl>
  4941. <dt>DigivolveCost2</dt>
  4942. <dd>-</dd>
  4943. </dl>
  4944. </div>
  4945. </div>
  4946. <divclass="cardinfo_bottom">
  4947. <dl>
  4948. <dt>Effect</dt>
  4949. <dd>[Digivolve] Lv.5 w/[Pulsemon] in text: Cost 3<br>[When Digivolving] Suspend 1 of your opponent’s Digimon. Then, 1 of their Digimon can't unsuspend until the end of their turn. <br>[All Turns] When this Digimon deletes an opponent's Digimon in battle, if you have 3 or more security cards, trash the top card of your opponent's security stack. If you have 3 or fewer, gain 2 memory.</dd>
  4950. </dl>
  4951. <dl>
  4952. <dt>InheritedEffect</dt>
  4953. <dd>-</dd>
  4954. </dl>
  4955. <dl>
  4956. <dt>SecurityEffect</dt>
  4957. <dd>-</dd>
  4958. </dl>
  4959. <dl>
  4960. <dt>Notes</dt>
  4961. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  4962. <aclass="btn"href="/rule/?card_no=BT16-047"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  4963. </div>
  4964. </div>
  4965. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  4966. </div>
  4967. </div>
  4968. </li>
  4969. <liclass="image_lists_itemdatapage-2">
  4970. <aclass="card_img">
  4971. <imgsrc="../images/cardlist/card/BT16-048.png"alt="BT16-048TyrantKabuterimon"></a>
  4972. <divclass="popup">
  4973. <divclass="card_detailcard_detail_green">
  4974. <divclass="card_detail_inner">
  4975. <ulclass="cardinfo_head">
  4976. <liclass="cardno">BT16-048</li>
  4977. <li>SR</li>
  4978. <liclass="cardtype">Digimon</li>
  4979. <liclass="cardlv">Lv.6</li>
  4980. </ul>
  4981. <divclass="card_name">TyrantKabuterimon</div>
  4982. <divclass="cardinfo_top">
  4983. <divclass="card_img">
  4984. <imgsrc="../images/cardlist/card/BT16-048.png"alt="BT16-048TyrantKabuterimon"></div>
  4985. <divclass="cardinfo_top_body">
  4986. <dl>
  4987. <dt>Color</dt>
  4988. <ddclass="cardColor">
  4989. <spanclass="cardColor_green">Green</span>
  4990. </dd>
  4991. </dl>
  4992. <dl>
  4993. <dt>Form</dt>
  4994. <dd>Mega</dd>
  4995. </dl>
  4996. <dl>
  4997. <dt>Attribute</dt>
  4998. <dd>Virus</dd>
  4999. </dl>
  5000. <dl>
  5001. <dt>Type</dt>
  5002. <dd>Insectoid</dd>
  5003. </dl>
  5004. <divclass="cardinfo_flex">
  5005. <dlclass="cardinfo_dp">
  5006. <dt>DP</dt>
  5007. <dd>14000</dl>
  5008. <dl>
  5009. <dt>PlayCost</dt>
  5010. <dd>14</dd>
  5011. </dl>
  5012. </div>
  5013. <dl>
  5014. <dt>DigivolveCost1</dt>
  5015. <dd>6fromLv.5</dd>
  5016. </dl>
  5017. <dl>
  5018. <dt>DigivolveCost2</dt>
  5019. <dd>-</dd>
  5020. </dl>
  5021. </div>
  5022. </div>
  5023. <divclass="cardinfo_bottom">
  5024. <dl>
  5025. <dt>Effect</dt>
  5026. <dd>[Digivolve] Lv.6 w/[Insectoid] trait and play cost 13 or less: Cost 2<br>[When Digivolving] You may play 1 Digimon card with the [Insectoid] or [Larva] trait from your hand with the play cost reduced by 8. <br>[All Turns] While this Digimon is suspended, it isn't affected by the effects of your opponent's Digimon. <br>[End of Your Turn] [Once Per Turn] By suspending 1 of your other Digimon, return 1 of your opponent's Digimon with as much or less DP as the Digimon this effect suspended to the bottom of the deck.</dd>
  5027. </dl>
  5028. <dl>
  5029. <dt>InheritedEffect</dt>
  5030. <dd>-</dd>
  5031. </dl>
  5032. <dl>
  5033. <dt>SecurityEffect</dt>
  5034. <dd>-</dd>
  5035. </dl>
  5036. <dl>
  5037. <dt>Notes</dt>
  5038. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5039. <aclass="btn"href="/rule/?card_no=BT16-048"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5040. </div>
  5041. </div>
  5042. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5043. </div>
  5044. </div>
  5045. </li>
  5046. <liclass="image_lists_itemdatapage-2">
  5047. <aclass="card_img">
  5048. <imgsrc="../images/cardlist/card/BT16-048_P1.png"alt="BT16-048TyrantKabuterimon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_green.png">
  5049. </a>
  5050. <divclass="popup">
  5051. <divclass="card_detailcard_detail_green">
  5052. <divclass="card_detail_inner">
  5053. <ulclass="cardinfo_head">
  5054. <liclass="cardno">BT16-048</li>
  5055. <li>SR</li>
  5056. <liclass="cardtype">Digimon</li>
  5057. <liclass="cardlv">Lv.6</li>
  5058. <liclass="cardtypecardParallel">AlternativeArt</li>
  5059. </ul>
  5060. <divclass="card_name">TyrantKabuterimon</div>
  5061. <divclass="cardinfo_top">
  5062. <divclass="card_img">
  5063. <imgsrc="../images/cardlist/card/BT16-048_P1.png"alt="BT16-048TyrantKabuterimon"></div>
  5064. <divclass="cardinfo_top_body">
  5065. <dl>
  5066. <dt>Color</dt>
  5067. <ddclass="cardColor">
  5068. <spanclass="cardColor_green">Green</span>
  5069. </dd>
  5070. </dl>
  5071. <dl>
  5072. <dt>Form</dt>
  5073. <dd>Mega</dd>
  5074. </dl>
  5075. <dl>
  5076. <dt>Attribute</dt>
  5077. <dd>Virus</dd>
  5078. </dl>
  5079. <dl>
  5080. <dt>Type</dt>
  5081. <dd>Insectoid</dd>
  5082. </dl>
  5083. <divclass="cardinfo_flex">
  5084. <dlclass="cardinfo_dp">
  5085. <dt>DP</dt>
  5086. <dd>14000</dl>
  5087. <dl>
  5088. <dt>PlayCost</dt>
  5089. <dd>14</dd>
  5090. </dl>
  5091. </div>
  5092. <dl>
  5093. <dt>DigivolveCost1</dt>
  5094. <dd>6fromLv.5</dd>
  5095. </dl>
  5096. <dl>
  5097. <dt>DigivolveCost2</dt>
  5098. <dd>-</dd>
  5099. </dl>
  5100. </div>
  5101. </div>
  5102. <divclass="cardinfo_bottom">
  5103. <dl>
  5104. <dt>Effect</dt>
  5105. <dd>[Digivolve] Lv.6 w/[Insectoid] trait and play cost 13 or less: Cost 2<br>[When Digivolving] You may play 1 Digimon card with the [Insectoid] or [Larva] trait from your hand with the play cost reduced by 8. <br>[All Turns] While this Digimon is suspended, it isn't affected by the effects of your opponent's Digimon. <br>[End of Your Turn] [Once Per Turn] By suspending 1 of your other Digimon, return 1 of your opponent's Digimon with as much or less DP as the Digimon this effect suspended to the bottom of the deck.</dd>
  5106. </dl>
  5107. <dl>
  5108. <dt>InheritedEffect</dt>
  5109. <dd>-</dd>
  5110. </dl>
  5111. <dl>
  5112. <dt>SecurityEffect</dt>
  5113. <dd>-</dd>
  5114. </dl>
  5115. <dl>
  5116. <dt>Notes</dt>
  5117. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5118. <aclass="btn"href="/rule/?card_no=BT16-048"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5119. </div>
  5120. </div>
  5121. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5122. </div>
  5123. </div>
  5124. </li>
  5125. <liclass="image_lists_itemdatapage-2">
  5126. <aclass="card_img">
  5127. <imgsrc="../images/cardlist/card/BT16-049.png"alt="BT16-049Armadillomon"></a>
  5128. <divclass="popup">
  5129. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5130. <divclass="card_detail_inner">
  5131. <ulclass="cardinfo_head">
  5132. <liclass="cardno">BT16-049</li>
  5133. <li>C</li>
  5134. <liclass="cardtype">Digimon</li>
  5135. <liclass="cardlv">Lv.3</li>
  5136. </ul>
  5137. <divclass="card_name">Armadillomon</div>
  5138. <divclass="cardinfo_top">
  5139. <divclass="card_img">
  5140. <imgsrc="../images/cardlist/card/BT16-049.png"alt="BT16-049Armadillomon"></div>
  5141. <divclass="cardinfo_top_body">
  5142. <dl>
  5143. <dt>Color</dt>
  5144. <ddclass="cardColor">
  5145. <spanclass="cardColor_black">Black</span>
  5146. <spanclass="cardColor_yellow">Yellow</span>
  5147. </dd>
  5148. </dl>
  5149. <dl>
  5150. <dt>Form</dt>
  5151. <dd>Rookie</dd>
  5152. </dl>
  5153. <dl>
  5154. <dt>Attribute</dt>
  5155. <dd>Free</dd>
  5156. </dl>
  5157. <dl>
  5158. <dt>Type</dt>
  5159. <dd>Mammal</dd>
  5160. </dl>
  5161. <divclass="cardinfo_flex">
  5162. <dlclass="cardinfo_dp">
  5163. <dt>DP</dt>
  5164. <dd>2000</dl>
  5165. <dl>
  5166. <dt>PlayCost</dt>
  5167. <dd>3</dd>
  5168. </dl>
  5169. </div>
  5170. <dl>
  5171. <dt>DigivolveCost1</dt>
  5172. <dd>1fromLv.2</dd>
  5173. </dl>
  5174. <dl>
  5175. <dt>DigivolveCost2</dt>
  5176. <dd>1fromLv.2</dd>
  5177. </dl>
  5178. </div>
  5179. </div>
  5180. <divclass="cardinfo_bottom">
  5181. <dl>
  5182. <dt>Effect</dt>
  5183. <dd>[Digivolve] [Upamon]: Cost 0<br>[Your Turn][Once Per Turn] When one of your other Digimon is played or digivolves, if it has the [Free] trait or is yellow, gain 1 memory.</dd>
  5184. </dl>
  5185. <dl>
  5186. <dt>InheritedEffect</dt>
  5187. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5188. </dl>
  5189. <dl>
  5190. <dt>SecurityEffect</dt>
  5191. <dd>-</dd>
  5192. </dl>
  5193. <dl>
  5194. <dt>Notes</dt>
  5195. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5196. <aclass="btn"href="/rule/?card_no=BT16-049"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5197. </div>
  5198. </div>
  5199. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5200. </div>
  5201. </div>
  5202. </li>
  5203. <liclass="image_lists_itemdatapage-2">
  5204. <aclass="card_img">
  5205. <imgsrc="../images/cardlist/card/BT16-050.png"alt="BT16-050Commandramon"></a>
  5206. <divclass="popup">
  5207. <divclass="card_detailcard_detail_black">
  5208. <divclass="card_detail_inner">
  5209. <ulclass="cardinfo_head">
  5210. <liclass="cardno">BT16-050</li>
  5211. <li>C</li>
  5212. <liclass="cardtype">Digimon</li>
  5213. <liclass="cardlv">Lv.3</li>
  5214. </ul>
  5215. <divclass="card_name">Commandramon</div>
  5216. <divclass="cardinfo_top">
  5217. <divclass="card_img">
  5218. <imgsrc="../images/cardlist/card/BT16-050.png"alt="BT16-050Commandramon"></div>
  5219. <divclass="cardinfo_top_body">
  5220. <dl>
  5221. <dt>Color</dt>
  5222. <ddclass="cardColor">
  5223. <spanclass="cardColor_black">Black</span>
  5224. </dd>
  5225. </dl>
  5226. <dl>
  5227. <dt>Form</dt>
  5228. <dd>Rookie</dd>
  5229. </dl>
  5230. <dl>
  5231. <dt>Attribute</dt>
  5232. <dd>Virus</dd>
  5233. </dl>
  5234. <dl>
  5235. <dt>Type</dt>
  5236. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  5237. </dl>
  5238. <divclass="cardinfo_flex">
  5239. <dlclass="cardinfo_dp">
  5240. <dt>DP</dt>
  5241. <dd>1000</dl>
  5242. <dl>
  5243. <dt>PlayCost</dt>
  5244. <dd>3</dd>
  5245. </dl>
  5246. </div>
  5247. <dl>
  5248. <dt>DigivolveCost1</dt>
  5249. <dd>0fromLv.2</dd>
  5250. </dl>
  5251. <dl>
  5252. <dt>DigivolveCost2</dt>
  5253. <dd>-</dd>
  5254. </dl>
  5255. </div>
  5256. </div>
  5257. <divclass="cardinfo_bottom">
  5258. <dl>
  5259. <dt>Effect</dt>
  5260. <dd>[All Turns] All of your other Digimon with the [D-Brigade] or [DigiPolice] trait get +1000 DP.</dd>
  5261. </dl>
  5262. <dl>
  5263. <dt>InheritedEffect</dt>
  5264. <dd>[All Turns] All of your other Digimon with the [D-Brigade] or [DigiPolice] trait get +1000 DP.</dd>
  5265. </dl>
  5266. <dl>
  5267. <dt>SecurityEffect</dt>
  5268. <dd>-</dd>
  5269. </dl>
  5270. <dl>
  5271. <dt>Notes</dt>
  5272. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5273. </div>
  5274. </div>
  5275. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5276. </div>
  5277. </div>
  5278. </li>
  5279. <liclass="image_lists_itemdatapage-2">
  5280. <aclass="card_img">
  5281. <imgsrc="../images/cardlist/card/BT16-051.png"alt="BT16-051Dorumon"></a>
  5282. <divclass="popup">
  5283. <divclass="card_detailcard_detail_black_purplemulticolor">
  5284. <divclass="card_detail_inner">
  5285. <ulclass="cardinfo_head">
  5286. <liclass="cardno">BT16-051</li>
  5287. <li>SR</li>
  5288. <liclass="cardtype">Digimon</li>
  5289. <liclass="cardlv">Lv.3</li>
  5290. </ul>
  5291. <divclass="card_name">Dorumon</div>
  5292. <divclass="cardinfo_top">
  5293. <divclass="card_img">
  5294. <imgsrc="../images/cardlist/card/BT16-051.png"alt="BT16-051Dorumon"></div>
  5295. <divclass="cardinfo_top_body">
  5296. <dl>
  5297. <dt>Color</dt>
  5298. <ddclass="cardColor">
  5299. <spanclass="cardColor_black">Black</span>
  5300. <spanclass="cardColor_purple">Purple</span>
  5301. </dd>
  5302. </dl>
  5303. <dl>
  5304. <dt>Form</dt>
  5305. <dd>Rookie</dd>
  5306. </dl>
  5307. <dl>
  5308. <dt>Attribute</dt>
  5309. <dd>Data</dd>
  5310. </dl>
  5311. <dl>
  5312. <dt>Type</dt>
  5313. <dd>Beast/XAntibody/SoC</dd>
  5314. </dl>
  5315. <divclass="cardinfo_flex">
  5316. <dlclass="cardinfo_dp">
  5317. <dt>DP</dt>
  5318. <dd>2000</dl>
  5319. <dl>
  5320. <dt>PlayCost</dt>
  5321. <dd>3</dd>
  5322. </dl>
  5323. </div>
  5324. <dl>
  5325. <dt>DigivolveCost1</dt>
  5326. <dd>1fromLv.2</dd>
  5327. </dl>
  5328. <dl>
  5329. <dt>DigivolveCost2</dt>
  5330. <dd>1fromLv.2</dd>
  5331. </dl>
  5332. </div>
  5333. </div>
  5334. <divclass="cardinfo_bottom">
  5335. <dl>
  5336. <dt>Effect</dt>
  5337. <dd>[Digivolve] [Dorimon]: Cost 0<br>[Start of Your Main Phase] By placing 1 [Kosuke Kisakata] from your hand as this Digimon's bottom digivolution card, until the end of your opponent's turn, this Digimon can't leave the battle area other than by deletion.</dd>
  5338. </dl>
  5339. <dl>
  5340. <dt>InheritedEffect</dt>
  5341. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5342. </dl>
  5343. <dl>
  5344. <dt>SecurityEffect</dt>
  5345. <dd>-</dd>
  5346. </dl>
  5347. <dl>
  5348. <dt>Notes</dt>
  5349. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5350. <aclass="btn"href="/rule/?card_no=BT16-051"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5351. </div>
  5352. </div>
  5353. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5354. </div>
  5355. </div>
  5356. </li>
  5357. <liclass="image_lists_itemdatapage-2">
  5358. <aclass="card_img">
  5359. <imgsrc="../images/cardlist/card/BT16-051_P1.png"alt="BT16-051Dorumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  5360. </a>
  5361. <divclass="popup">
  5362. <divclass="card_detailcard_detail_black_purplemulticolor">
  5363. <divclass="card_detail_inner">
  5364. <ulclass="cardinfo_head">
  5365. <liclass="cardno">BT16-051</li>
  5366. <li>SR</li>
  5367. <liclass="cardtype">Digimon</li>
  5368. <liclass="cardlv">Lv.3</li>
  5369. <liclass="cardtypecardParallel">AlternativeArt</li>
  5370. </ul>
  5371. <divclass="card_name">Dorumon</div>
  5372. <divclass="cardinfo_top">
  5373. <divclass="card_img">
  5374. <imgsrc="../images/cardlist/card/BT16-051_P1.png"alt="BT16-051Dorumon"></div>
  5375. <divclass="cardinfo_top_body">
  5376. <dl>
  5377. <dt>Color</dt>
  5378. <ddclass="cardColor">
  5379. <spanclass="cardColor_black">Black</span>
  5380. <spanclass="cardColor_purple">Purple</span>
  5381. </dd>
  5382. </dl>
  5383. <dl>
  5384. <dt>Form</dt>
  5385. <dd>Rookie</dd>
  5386. </dl>
  5387. <dl>
  5388. <dt>Attribute</dt>
  5389. <dd>Data</dd>
  5390. </dl>
  5391. <dl>
  5392. <dt>Type</dt>
  5393. <dd>Beast/XAntibody/SoC</dd>
  5394. </dl>
  5395. <divclass="cardinfo_flex">
  5396. <dlclass="cardinfo_dp">
  5397. <dt>DP</dt>
  5398. <dd>2000</dl>
  5399. <dl>
  5400. <dt>PlayCost</dt>
  5401. <dd>3</dd>
  5402. </dl>
  5403. </div>
  5404. <dl>
  5405. <dt>DigivolveCost1</dt>
  5406. <dd>1fromLv.2</dd>
  5407. </dl>
  5408. <dl>
  5409. <dt>DigivolveCost2</dt>
  5410. <dd>1fromLv.2</dd>
  5411. </dl>
  5412. </div>
  5413. </div>
  5414. <divclass="cardinfo_bottom">
  5415. <dl>
  5416. <dt>Effect</dt>
  5417. <dd>[Digivolve] [Dorimon]: Cost 0<br>[Start of Your Main Phase] By placing 1 [Kosuke Kisakata] from your hand as this Digimon's bottom digivolution card, until the end of your opponent's turn, this Digimon can't leave the battle area other than by deletion.</dd>
  5418. </dl>
  5419. <dl>
  5420. <dt>InheritedEffect</dt>
  5421. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5422. </dl>
  5423. <dl>
  5424. <dt>SecurityEffect</dt>
  5425. <dd>-</dd>
  5426. </dl>
  5427. <dl>
  5428. <dt>Notes</dt>
  5429. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5430. <aclass="btn"href="/rule/?card_no=BT16-051"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5431. </div>
  5432. </div>
  5433. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5434. </div>
  5435. </div>
  5436. </li>
  5437. <liclass="image_lists_itemdatapage-2">
  5438. <aclass="card_img">
  5439. <imgsrc="../images/cardlist/card/BT16-052.png"alt="BT16-052Hagurumon(XAntibody)"></a>
  5440. <divclass="popup">
  5441. <divclass="card_detailcard_detail_black">
  5442. <divclass="card_detail_inner">
  5443. <ulclass="cardinfo_head">
  5444. <liclass="cardno">BT16-052</li>
  5445. <li>C</li>
  5446. <liclass="cardtype">Digimon</li>
  5447. <liclass="cardlv">Lv.3</li>
  5448. </ul>
  5449. <divclass="card_name">Hagurumon(XAntibody)</div>
  5450. <divclass="cardinfo_top">
  5451. <divclass="card_img">
  5452. <imgsrc="../images/cardlist/card/BT16-052.png"alt="BT16-052Hagurumon(XAntibody)"></div>
  5453. <divclass="cardinfo_top_body">
  5454. <dl>
  5455. <dt>Color</dt>
  5456. <ddclass="cardColor">
  5457. <spanclass="cardColor_black">Black</span>
  5458. </dd>
  5459. </dl>
  5460. <dl>
  5461. <dt>Form</dt>
  5462. <dd>Rookie</dd>
  5463. </dl>
  5464. <dl>
  5465. <dt>Attribute</dt>
  5466. <dd>Virus</dd>
  5467. </dl>
  5468. <dl>
  5469. <dt>Type</dt>
  5470. <dd>Machine/XAntibody</dd>
  5471. </dl>
  5472. <divclass="cardinfo_flex">
  5473. <dlclass="cardinfo_dp">
  5474. <dt>DP</dt>
  5475. <dd>2000</dl>
  5476. <dl>
  5477. <dt>PlayCost</dt>
  5478. <dd>3</dd>
  5479. </dl>
  5480. </div>
  5481. <dl>
  5482. <dt>DigivolveCost1</dt>
  5483. <dd>0fromLv.2</dd>
  5484. </dl>
  5485. <dl>
  5486. <dt>DigivolveCost2</dt>
  5487. <dd>-</dd>
  5488. </dl>
  5489. </div>
  5490. </div>
  5491. <divclass="cardinfo_bottom">
  5492. <dl>
  5493. <dt>Effect</dt>
  5494. <dd>[Digivolve] [Hagurumon]: Cost 0<br>[When Digivolving] You may play 1 [KoHagurumon] Token. (Digimon/Black/1000 DP/<Blocker><Decoy (Black)> [Your Turn] This Digimon can't attack.) </dd>
  5495. </dl>
  5496. <dl>
  5497. <dt>InheritedEffect</dt>
  5498. <dd><Blocker> (At blocker timing, by suspending this Digimon, it becomes the attack target.)</dd>
  5499. </dl>
  5500. <dl>
  5501. <dt>SecurityEffect</dt>
  5502. <dd>-</dd>
  5503. </dl>
  5504. <dl>
  5505. <dt>Notes</dt>
  5506. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5507. </div>
  5508. </div>
  5509. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5510. </div>
  5511. </div>
  5512. </li>
  5513. <liclass="image_lists_itemdatapage-2">
  5514. <aclass="card_img">
  5515. <imgsrc="../images/cardlist/card/BT16-053.png"alt="BT16-053Ankylomon"></a>
  5516. <divclass="popup">
  5517. <divclass="card_detailcard_detail_black_yellowmulticolor">
  5518. <divclass="card_detail_inner">
  5519. <ulclass="cardinfo_head">
  5520. <liclass="cardno">BT16-053</li>
  5521. <li>C</li>
  5522. <liclass="cardtype">Digimon</li>
  5523. <liclass="cardlv">Lv.4</li>
  5524. </ul>
  5525. <divclass="card_name">Ankylomon</div>
  5526. <divclass="cardinfo_top">
  5527. <divclass="card_img">
  5528. <imgsrc="../images/cardlist/card/BT16-053.png"alt="BT16-053Ankylomon"></div>
  5529. <divclass="cardinfo_top_body">
  5530. <dl>
  5531. <dt>Color</dt>
  5532. <ddclass="cardColor">
  5533. <spanclass="cardColor_black">Black</span>
  5534. <spanclass="cardColor_yellow">Yellow</span>
  5535. </dd>
  5536. </dl>
  5537. <dl>
  5538. <dt>Form</dt>
  5539. <dd>Champion</dd>
  5540. </dl>
  5541. <dl>
  5542. <dt>Attribute</dt>
  5543. <dd>Free</dd>
  5544. </dl>
  5545. <dl>
  5546. <dt>Type</dt>
  5547. <dd>Ankylosaur</dd>
  5548. </dl>
  5549. <divclass="cardinfo_flex">
  5550. <dlclass="cardinfo_dp">
  5551. <dt>DP</dt>
  5552. <dd>4000</dl>
  5553. <dl>
  5554. <dt>PlayCost</dt>
  5555. <dd>4</dd>
  5556. </dl>
  5557. </div>
  5558. <dl>
  5559. <dt>DigivolveCost1</dt>
  5560. <dd>3fromLv.3</dd>
  5561. </dl>
  5562. <dl>
  5563. <dt>DigivolveCost2</dt>
  5564. <dd>3fromLv.3</dd>
  5565. </dl>
  5566. </div>
  5567. </div>
  5568. <divclass="cardinfo_bottom">
  5569. <dl>
  5570. <dt>Effect</dt>
  5571. <dd>[Digivolve] [Armadillomon]: Cost 2<br><Barrier> <br>[On Play] [When Digivolving] 1 of your opponent's Digimon can't attack players until the end of their turn.</dd>
  5572. </dl>
  5573. <dl>
  5574. <dt>InheritedEffect</dt>
  5575. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5576. </dl>
  5577. <dl>
  5578. <dt>SecurityEffect</dt>
  5579. <dd>-</dd>
  5580. </dl>
  5581. <dl>
  5582. <dt>Notes</dt>
  5583. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5584. </div>
  5585. </div>
  5586. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5587. </div>
  5588. </div>
  5589. </li>
  5590. <liclass="image_lists_itemdatapage-2">
  5591. <aclass="card_img">
  5592. <imgsrc="../images/cardlist/card/BT16-054.png"alt="BT16-054Sealsdramon"></a>
  5593. <divclass="popup">
  5594. <divclass="card_detailcard_detail_black">
  5595. <divclass="card_detail_inner">
  5596. <ulclass="cardinfo_head">
  5597. <liclass="cardno">BT16-054</li>
  5598. <li>C</li>
  5599. <liclass="cardtype">Digimon</li>
  5600. <liclass="cardlv">Lv.4</li>
  5601. </ul>
  5602. <divclass="card_name">Sealsdramon</div>
  5603. <divclass="cardinfo_top">
  5604. <divclass="card_img">
  5605. <imgsrc="../images/cardlist/card/BT16-054.png"alt="BT16-054Sealsdramon"></div>
  5606. <divclass="cardinfo_top_body">
  5607. <dl>
  5608. <dt>Color</dt>
  5609. <ddclass="cardColor">
  5610. <spanclass="cardColor_black">Black</span>
  5611. </dd>
  5612. </dl>
  5613. <dl>
  5614. <dt>Form</dt>
  5615. <dd>Champion</dd>
  5616. </dl>
  5617. <dl>
  5618. <dt>Attribute</dt>
  5619. <dd>Virus</dd>
  5620. </dl>
  5621. <dl>
  5622. <dt>Type</dt>
  5623. <dd>Cyborg/D-Brigade/DigiPolice</dd>
  5624. </dl>
  5625. <divclass="cardinfo_flex">
  5626. <dlclass="cardinfo_dp">
  5627. <dt>DP</dt>
  5628. <dd>4000</dl>
  5629. <dl>
  5630. <dt>PlayCost</dt>
  5631. <dd>4</dd>
  5632. </dl>
  5633. </div>
  5634. <dl>
  5635. <dt>DigivolveCost1</dt>
  5636. <dd>2fromLv.3</dd>
  5637. </dl>
  5638. <dl>
  5639. <dt>DigivolveCost2</dt>
  5640. <dd>-</dd>
  5641. </dl>
  5642. </div>
  5643. </div>
  5644. <divclass="cardinfo_bottom">
  5645. <dl>
  5646. <dt>Effect</dt>
  5647. <dd>[On Play] [When Digivolving] By returning 3 cards with the [D-Brigade] or [DigiPolice] trait from your trash to the top of the deck, for the turn, this Digimon gains <Rush> and can't be blocked.</dd>
  5648. </dl>
  5649. <dl>
  5650. <dt>InheritedEffect</dt>
  5651. <dd>[All Turns] All of your other Digimon with the [D-Brigade] or [DigiPolice] trait get +1000 DP.</dd>
  5652. </dl>
  5653. <dl>
  5654. <dt>SecurityEffect</dt>
  5655. <dd>-</dd>
  5656. </dl>
  5657. <dl>
  5658. <dt>Notes</dt>
  5659. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5660. </div>
  5661. </div>
  5662. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5663. </div>
  5664. </div>
  5665. </li>
  5666. <liclass="image_lists_itemdatapage-2">
  5667. <aclass="card_img">
  5668. <imgsrc="../images/cardlist/card/BT16-055.png"alt="BT16-055Namakemon"></a>
  5669. <divclass="popup">
  5670. <divclass="card_detailcard_detail_black">
  5671. <divclass="card_detail_inner">
  5672. <ulclass="cardinfo_head">
  5673. <liclass="cardno">BT16-055</li>
  5674. <li>U</li>
  5675. <liclass="cardtype">Digimon</li>
  5676. <liclass="cardlv">Lv.4</li>
  5677. </ul>
  5678. <divclass="card_name">Namakemon</div>
  5679. <divclass="cardinfo_top">
  5680. <divclass="card_img">
  5681. <imgsrc="../images/cardlist/card/BT16-055.png"alt="BT16-055Namakemon"></div>
  5682. <divclass="cardinfo_top_body">
  5683. <dl>
  5684. <dt>Color</dt>
  5685. <ddclass="cardColor">
  5686. <spanclass="cardColor_black">Black</span>
  5687. </dd>
  5688. </dl>
  5689. <dl>
  5690. <dt>Form</dt>
  5691. <dd>Champion</dd>
  5692. </dl>
  5693. <dl>
  5694. <dt>Attribute</dt>
  5695. <dd>Virus</dd>
  5696. </dl>
  5697. <dl>
  5698. <dt>Type</dt>
  5699. <dd>Puppet</dd>
  5700. </dl>
  5701. <divclass="cardinfo_flex">
  5702. <dlclass="cardinfo_dp">
  5703. <dt>DP</dt>
  5704. <dd>4000</dl>
  5705. <dl>
  5706. <dt>PlayCost</dt>
  5707. <dd>4</dd>
  5708. </dl>
  5709. </div>
  5710. <dl>
  5711. <dt>DigivolveCost1</dt>
  5712. <dd>2fromLv.3</dd>
  5713. </dl>
  5714. <dl>
  5715. <dt>DigivolveCost2</dt>
  5716. <dd>-</dd>
  5717. </dl>
  5718. </div>
  5719. </div>
  5720. <divclass="cardinfo_bottom">
  5721. <dl>
  5722. <dt>Effect</dt>
  5723. <dd>[Digivolve] [Pulsemon]: Cost 2<br>[On Play] [When Digivolving] If you have 3 or more security cards, until the end of your opponent's turn, 1 of your Digimon can't have its DP reduced by your opponent's effects and isn't affected by <De-Digivolve> effects. If you have 3 or fewer, 1 of your Digimon gains <Blocker> and <Reboot> until the end of your opponent's turn.</dd>
  5724. </dl>
  5725. <dl>
  5726. <dt>InheritedEffect</dt>
  5727. <dd>[All Turns] While this Digimon has [Pulsemon] in its text, it gets +1000 DP.</dd>
  5728. </dl>
  5729. <dl>
  5730. <dt>SecurityEffect</dt>
  5731. <dd>-</dd>
  5732. </dl>
  5733. <dl>
  5734. <dt>Notes</dt>
  5735. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5736. <aclass="btn"href="/rule/?card_no=BT16-055"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  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-2">
  5744. <aclass="card_img">
  5745. <imgsrc="../images/cardlist/card/BT16-056.png"alt="BT16-056Publimon"></a>
  5746. <divclass="popup">
  5747. <divclass="card_detailcard_detail_black">
  5748. <divclass="card_detail_inner">
  5749. <ulclass="cardinfo_head">
  5750. <liclass="cardno">BT16-056</li>
  5751. <li>C</li>
  5752. <liclass="cardtype">Digimon</li>
  5753. <liclass="cardlv">Lv.4</li>
  5754. </ul>
  5755. <divclass="card_name">Publimon</div>
  5756. <divclass="cardinfo_top">
  5757. <divclass="card_img">
  5758. <imgsrc="../images/cardlist/card/BT16-056.png"alt="BT16-056Publimon"></div>
  5759. <divclass="cardinfo_top_body">
  5760. <dl>
  5761. <dt>Color</dt>
  5762. <ddclass="cardColor">
  5763. <spanclass="cardColor_black">Black</span>
  5764. </dd>
  5765. </dl>
  5766. <dl>
  5767. <dt>Form</dt>
  5768. <dd>Champion</dd>
  5769. </dl>
  5770. <dl>
  5771. <dt>Attribute</dt>
  5772. <dd>Data</dd>
  5773. </dl>
  5774. <dl>
  5775. <dt>Type</dt>
  5776. <dd>Mutant</dd>
  5777. </dl>
  5778. <divclass="cardinfo_flex">
  5779. <dlclass="cardinfo_dp">
  5780. <dt>DP</dt>
  5781. <dd>4000</dl>
  5782. <dl>
  5783. <dt>PlayCost</dt>
  5784. <dd>4</dd>
  5785. </dl>
  5786. </div>
  5787. <dl>
  5788. <dt>DigivolveCost1</dt>
  5789. <dd>2fromLv.3</dd>
  5790. </dl>
  5791. <dl>
  5792. <dt>DigivolveCost2</dt>
  5793. <dd>-</dd>
  5794. </dl>
  5795. </div>
  5796. </div>
  5797. <divclass="cardinfo_bottom">
  5798. <dl>
  5799. <dt>Effect</dt>
  5800. <dd>[On Play] [When Digivolving] You may place the top card of 1 of your opponent's [Vaccine] trait Digimon on top of their security stack. <br>[All Turns] [Once Per Turn] When a card is added to your opponent's security stack, if they have 3 or more security cards, trash the top or bottom card of their security stack.</dd>
  5801. </dl>
  5802. <dl>
  5803. <dt>InheritedEffect</dt>
  5804. <dd>-</dd>
  5805. </dl>
  5806. <dl>
  5807. <dt>SecurityEffect</dt>
  5808. <dd>-</dd>
  5809. </dl>
  5810. <dl>
  5811. <dt>Notes</dt>
  5812. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5813. <aclass="btn"href="/rule/?card_no=BT16-056"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  5814. </div>
  5815. </div>
  5816. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5817. </div>
  5818. </div>
  5819. </li>
  5820. <liclass="image_lists_itemdatapage-2">
  5821. <aclass="card_img">
  5822. <imgsrc="../images/cardlist/card/BT16-057.png"alt="BT16-057Mekanorimon"></a>
  5823. <divclass="popup">
  5824. <divclass="card_detailcard_detail_black">
  5825. <divclass="card_detail_inner">
  5826. <ulclass="cardinfo_head">
  5827. <liclass="cardno">BT16-057</li>
  5828. <li>C</li>
  5829. <liclass="cardtype">Digimon</li>
  5830. <liclass="cardlv">Lv.4</li>
  5831. </ul>
  5832. <divclass="card_name">Mekanorimon</div>
  5833. <divclass="cardinfo_top">
  5834. <divclass="card_img">
  5835. <imgsrc="../images/cardlist/card/BT16-057.png"alt="BT16-057Mekanorimon"></div>
  5836. <divclass="cardinfo_top_body">
  5837. <dl>
  5838. <dt>Color</dt>
  5839. <ddclass="cardColor">
  5840. <spanclass="cardColor_black">Black</span>
  5841. </dd>
  5842. </dl>
  5843. <dl>
  5844. <dt>Form</dt>
  5845. <dd>Champion</dd>
  5846. </dl>
  5847. <dl>
  5848. <dt>Attribute</dt>
  5849. <dd>Virus</dd>
  5850. </dl>
  5851. <dl>
  5852. <dt>Type</dt>
  5853. <dd>Machine/DigiPolice</dd>
  5854. </dl>
  5855. <divclass="cardinfo_flex">
  5856. <dlclass="cardinfo_dp">
  5857. <dt>DP</dt>
  5858. <dd>5000</dl>
  5859. <dl>
  5860. <dt>PlayCost</dt>
  5861. <dd>4</dd>
  5862. </dl>
  5863. </div>
  5864. <dl>
  5865. <dt>DigivolveCost1</dt>
  5866. <dd>3fromLv.3</dd>
  5867. </dl>
  5868. <dl>
  5869. <dt>DigivolveCost2</dt>
  5870. <dd>-</dd>
  5871. </dl>
  5872. </div>
  5873. </div>
  5874. <divclass="cardinfo_bottom">
  5875. <dl>
  5876. <dt>Effect</dt>
  5877. <dd><Blocker><Armor Purge><br> [On Play] By placing 1 of your other Digimon with the [DigiPolice] trait as this Digimon's bottom digivolution card, <De-Digivolve 1> 1 of your opponent's Digimon. <br>[Your Turn] This Digimon with no digivolution cards can't attack.</dd>
  5878. </dl>
  5879. <dl>
  5880. <dt>InheritedEffect</dt>
  5881. <dd>-</dd>
  5882. </dl>
  5883. <dl>
  5884. <dt>SecurityEffect</dt>
  5885. <dd>-</dd>
  5886. </dl>
  5887. <dl>
  5888. <dt>Notes</dt>
  5889. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5890. </div>
  5891. </div>
  5892. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5893. </div>
  5894. </div>
  5895. </li>
  5896. <liclass="image_lists_itemdatapage-2">
  5897. <aclass="card_img">
  5898. <imgsrc="../images/cardlist/card/BT16-058.png"alt="BT16-058Dorugamon"></a>
  5899. <divclass="popup">
  5900. <divclass="card_detailcard_detail_black_purplemulticolor">
  5901. <divclass="card_detail_inner">
  5902. <ulclass="cardinfo_head">
  5903. <liclass="cardno">BT16-058</li>
  5904. <li>C</li>
  5905. <liclass="cardtype">Digimon</li>
  5906. <liclass="cardlv">Lv.4</li>
  5907. </ul>
  5908. <divclass="card_name">Dorugamon</div>
  5909. <divclass="cardinfo_top">
  5910. <divclass="card_img">
  5911. <imgsrc="../images/cardlist/card/BT16-058.png"alt="BT16-058Dorugamon"></div>
  5912. <divclass="cardinfo_top_body">
  5913. <dl>
  5914. <dt>Color</dt>
  5915. <ddclass="cardColor">
  5916. <spanclass="cardColor_black">Black</span>
  5917. <spanclass="cardColor_purple">Purple</span>
  5918. </dd>
  5919. </dl>
  5920. <dl>
  5921. <dt>Form</dt>
  5922. <dd>Champion</dd>
  5923. </dl>
  5924. <dl>
  5925. <dt>Attribute</dt>
  5926. <dd>Data</dd>
  5927. </dl>
  5928. <dl>
  5929. <dt>Type</dt>
  5930. <dd>BeastDragon/XAntibody/SoC</dd>
  5931. </dl>
  5932. <divclass="cardinfo_flex">
  5933. <dlclass="cardinfo_dp">
  5934. <dt>DP</dt>
  5935. <dd>5000</dl>
  5936. <dl>
  5937. <dt>PlayCost</dt>
  5938. <dd>5</dd>
  5939. </dl>
  5940. </div>
  5941. <dl>
  5942. <dt>DigivolveCost1</dt>
  5943. <dd>3fromLv.3</dd>
  5944. </dl>
  5945. <dl>
  5946. <dt>DigivolveCost2</dt>
  5947. <dd>3fromLv.3</dd>
  5948. </dl>
  5949. </div>
  5950. </div>
  5951. <divclass="cardinfo_bottom">
  5952. <dl>
  5953. <dt>Effect</dt>
  5954. <dd>[Digivolve] [Dorumon] or Lv.3 w/[SoC] trait: Cost 2<br><Collision> (During this Digimon's attack, all of your opponent's Digimon gain <Blocker>, and the opponent blocks if able.) <br>[On Play] [When Digivolving] By trashing 1 card in your hand, <Draw 1>. Then, if a Tamer card with the [SoC] trait is in this Digimon's digivolution cards, until the end of your opponent's turn, 1 of their Digimon gains "[Start of Your Main Phase] This Digimon attacks."</dd>
  5955. </dl>
  5956. <dl>
  5957. <dt>InheritedEffect</dt>
  5958. <dd>[All Turns] This Digimon gets +1000 DP.</dd>
  5959. </dl>
  5960. <dl>
  5961. <dt>SecurityEffect</dt>
  5962. <dd>-</dd>
  5963. </dl>
  5964. <dl>
  5965. <dt>Notes</dt>
  5966. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  5967. </div>
  5968. </div>
  5969. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  5970. </div>
  5971. </div>
  5972. </li>
  5973. <liclass="image_lists_itemdatapage-2">
  5974. <aclass="card_img">
  5975. <imgsrc="../images/cardlist/card/BT16-059.png"alt="BT16-059Shootmon"></a>
  5976. <divclass="popup">
  5977. <divclass="card_detailcard_detail_black">
  5978. <divclass="card_detail_inner">
  5979. <ulclass="cardinfo_head">
  5980. <liclass="cardno">BT16-059</li>
  5981. <li>C</li>
  5982. <liclass="cardtype">Digimon</li>
  5983. <liclass="cardlv">Lv.5</li>
  5984. </ul>
  5985. <divclass="card_name">Shootmon</div>
  5986. <divclass="cardinfo_top">
  5987. <divclass="card_img">
  5988. <imgsrc="../images/cardlist/card/BT16-059.png"alt="BT16-059Shootmon"></div>
  5989. <divclass="cardinfo_top_body">
  5990. <dl>
  5991. <dt>Color</dt>
  5992. <ddclass="cardColor">
  5993. <spanclass="cardColor_black">Black</span>
  5994. </dd>
  5995. </dl>
  5996. <dl>
  5997. <dt>Form</dt>
  5998. <dd>Ultimate</dd>
  5999. </dl>
  6000. <dl>
  6001. <dt>Attribute</dt>
  6002. <dd>Vaccine</dd>
  6003. </dl>
  6004. <dl>
  6005. <dt>Type</dt>
  6006. <dd>Machine</dd>
  6007. </dl>
  6008. <divclass="cardinfo_flex">
  6009. <dlclass="cardinfo_dp">
  6010. <dt>DP</dt>
  6011. <dd>6000</dl>
  6012. <dl>
  6013. <dt>PlayCost</dt>
  6014. <dd>6</dd>
  6015. </dl>
  6016. </div>
  6017. <dl>
  6018. <dt>DigivolveCost1</dt>
  6019. <dd>3fromLv.4</dd>
  6020. </dl>
  6021. <dl>
  6022. <dt>DigivolveCost2</dt>
  6023. <dd>3fromLv.4</dd>
  6024. </dl>
  6025. </div>
  6026. </div>
  6027. <divclass="cardinfo_bottom">
  6028. <dl>
  6029. <dt>Effect</dt>
  6030. <dd>[Digivolve] Lv.4 w/[Pulsemon] in text: Cost 3<br>[On Play] [When Digivolving] If you have 3 or more security cards, <De-Digivolve 1> 1 of your opponent's Digimon. If you have 3 or fewer, delete 1 of their Digimon with a play cost of 6 or less.</dd>
  6031. </dl>
  6032. <dl>
  6033. <dt>InheritedEffect</dt>
  6034. <dd>[End of Attack] [Once Per Turn] If this Digimon has [Pulsemon] in its text, by trashing the top card of your security stack, unsuspend this Digimon.</dd>
  6035. </dl>
  6036. <dl>
  6037. <dt>SecurityEffect</dt>
  6038. <dd>-</dd>
  6039. </dl>
  6040. <dl>
  6041. <dt>Notes</dt>
  6042. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6043. <aclass="btn"href="/rule/?card_no=BT16-059"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6044. </div>
  6045. </div>
  6046. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6047. </div>
  6048. </div>
  6049. </li>
  6050. <liclass="image_lists_itemdatapage-2">
  6051. <aclass="card_img">
  6052. <imgsrc="../images/cardlist/card/BT16-060.png"alt="BT16-060Tankdramon"></a>
  6053. <divclass="popup">
  6054. <divclass="card_detailcard_detail_black">
  6055. <divclass="card_detail_inner">
  6056. <ulclass="cardinfo_head">
  6057. <liclass="cardno">BT16-060</li>
  6058. <li>C</li>
  6059. <liclass="cardtype">Digimon</li>
  6060. <liclass="cardlv">Lv.5</li>
  6061. </ul>
  6062. <divclass="card_name">Tankdramon</div>
  6063. <divclass="cardinfo_top">
  6064. <divclass="card_img">
  6065. <imgsrc="../images/cardlist/card/BT16-060.png"alt="BT16-060Tankdramon"></div>
  6066. <divclass="cardinfo_top_body">
  6067. <dl>
  6068. <dt>Color</dt>
  6069. <ddclass="cardColor">
  6070. <spanclass="cardColor_black">Black</span>
  6071. </dd>
  6072. </dl>
  6073. <dl>
  6074. <dt>Form</dt>
  6075. <dd>Ultimate</dd>
  6076. </dl>
  6077. <dl>
  6078. <dt>Attribute</dt>
  6079. <dd>Virus</dd>
  6080. </dl>
  6081. <dl>
  6082. <dt>Type</dt>
  6083. <dd>Machine/D-Brigade/DigiPolice</dd>
  6084. </dl>
  6085. <divclass="cardinfo_flex">
  6086. <dlclass="cardinfo_dp">
  6087. <dt>DP</dt>
  6088. <dd>7000</dl>
  6089. <dl>
  6090. <dt>PlayCost</dt>
  6091. <dd>7</dd>
  6092. </dl>
  6093. </div>
  6094. <dl>
  6095. <dt>DigivolveCost1</dt>
  6096. <dd>3fromLv.4</dd>
  6097. </dl>
  6098. <dl>
  6099. <dt>DigivolveCost2</dt>
  6100. <dd>-</dd>
  6101. </dl>
  6102. </div>
  6103. </div>
  6104. <divclass="cardinfo_bottom">
  6105. <dl>
  6106. <dt>Effect</dt>
  6107. <dd>[On Play] [When Digivolving] Reveal the top 3 cards of your deck. For each [D-Brigade] or [DigiPolice] trait card among them, reduce the play costs of all of your opponent's Digimon by 1 until the end of their turn. Return the revealed cards to the top or the bottom of the deck. Then, delete 1 of your opponent's Digimon with a play cost of 4 or less.</dd>
  6108. </dl>
  6109. <dl>
  6110. <dt>InheritedEffect</dt>
  6111. <dd>[All Turns] [Once Per Turn] When one of your other Digimon with the [D-Brigade] or [DigiPolice] trait is played, <De-Digivolve 1> 1 of your opponent's Digimon.</dd>
  6112. </dl>
  6113. <dl>
  6114. <dt>SecurityEffect</dt>
  6115. <dd>-</dd>
  6116. </dl>
  6117. <dl>
  6118. <dt>Notes</dt>
  6119. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6120. <aclass="btn"href="/rule/?card_no=BT16-060"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6121. </div>
  6122. </div>
  6123. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6124. </div>
  6125. </div>
  6126. </li>
  6127. <liclass="image_lists_itemdatapage-2">
  6128. <aclass="card_img">
  6129. <imgsrc="../images/cardlist/card/BT16-061.png"alt="BT16-061DoruGreymon"></a>
  6130. <divclass="popup">
  6131. <divclass="card_detailcard_detail_black_purplemulticolor">
  6132. <divclass="card_detail_inner">
  6133. <ulclass="cardinfo_head">
  6134. <liclass="cardno">BT16-061</li>
  6135. <li>U</li>
  6136. <liclass="cardtype">Digimon</li>
  6137. <liclass="cardlv">Lv.5</li>
  6138. </ul>
  6139. <divclass="card_name">DoruGreymon</div>
  6140. <divclass="cardinfo_top">
  6141. <divclass="card_img">
  6142. <imgsrc="../images/cardlist/card/BT16-061.png"alt="BT16-061DoruGreymon"></div>
  6143. <divclass="cardinfo_top_body">
  6144. <dl>
  6145. <dt>Color</dt>
  6146. <ddclass="cardColor">
  6147. <spanclass="cardColor_black">Black</span>
  6148. <spanclass="cardColor_purple">Purple</span>
  6149. </dd>
  6150. </dl>
  6151. <dl>
  6152. <dt>Form</dt>
  6153. <dd>Ultimate</dd>
  6154. </dl>
  6155. <dl>
  6156. <dt>Attribute</dt>
  6157. <dd>Data</dd>
  6158. </dl>
  6159. <dl>
  6160. <dt>Type</dt>
  6161. <dd>BeastDragon/XAntibody/SoC</dd>
  6162. </dl>
  6163. <divclass="cardinfo_flex">
  6164. <dlclass="cardinfo_dp">
  6165. <dt>DP</dt>
  6166. <dd>7000</dl>
  6167. <dl>
  6168. <dt>PlayCost</dt>
  6169. <dd>7</dd>
  6170. </dl>
  6171. </div>
  6172. <dl>
  6173. <dt>DigivolveCost1</dt>
  6174. <dd>4fromLv.4</dd>
  6175. </dl>
  6176. <dl>
  6177. <dt>DigivolveCost2</dt>
  6178. <dd>4fromLv.4</dd>
  6179. </dl>
  6180. </div>
  6181. </div>
  6182. <divclass="cardinfo_bottom">
  6183. <dl>
  6184. <dt>Effect</dt>
  6185. <dd>[Digivolve] Lv.4 w/[Dorugamon] in name or w/[SoC] trait: Cost 3<br><Collision> (During this Digimon's attack, all of your opponent's Digimon gain <Blocker>, and the opponent blocks if able.) <br>[All Turns] When an attack target is switched, this Digimon with an [SoC] trait Tamer card in its digivolution cards may digivolve into a Digimon card with the [Beast Dragon], [Undead] or [SoC] trait in the hand without paying the cost.</dd>
  6186. </dl>
  6187. <dl>
  6188. <dt>InheritedEffect</dt>
  6189. <dd>[All Turns] [Once Per Turn] When this Digimon deletes another Digimon, you may play 1 card with the [X Antibody] or [SoC] trait and a play cost of 5 or less from your trash without paying the cost.</dd>
  6190. </dl>
  6191. <dl>
  6192. <dt>SecurityEffect</dt>
  6193. <dd>-</dd>
  6194. </dl>
  6195. <dl>
  6196. <dt>Notes</dt>
  6197. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6198. <aclass="btn"href="/rule/?card_no=BT16-061"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6199. </div>
  6200. </div>
  6201. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6202. </div>
  6203. </div>
  6204. </li>
  6205. <liclass="image_lists_itemdatapage-3">
  6206. <aclass="card_img">
  6207. <imgsrc="../images/cardlist/card/BT16-062.png"alt="BT16-062Zanmetsumon"></a>
  6208. <divclass="popup">
  6209. <divclass="card_detailcard_detail_black">
  6210. <divclass="card_detail_inner">
  6211. <ulclass="cardinfo_head">
  6212. <liclass="cardno">BT16-062</li>
  6213. <li>C</li>
  6214. <liclass="cardtype">Digimon</li>
  6215. <liclass="cardlv">Lv.5</li>
  6216. </ul>
  6217. <divclass="card_name">Zanmetsumon</div>
  6218. <divclass="cardinfo_top">
  6219. <divclass="card_img">
  6220. <imgsrc="../images/cardlist/card/BT16-062.png"alt="BT16-062Zanmetsumon"></div>
  6221. <divclass="cardinfo_top_body">
  6222. <dl>
  6223. <dt>Color</dt>
  6224. <ddclass="cardColor">
  6225. <spanclass="cardColor_black">Black</span>
  6226. </dd>
  6227. </dl>
  6228. <dl>
  6229. <dt>Form</dt>
  6230. <dd>Ultimate</dd>
  6231. </dl>
  6232. <dl>
  6233. <dt>Attribute</dt>
  6234. <dd>Virus</dd>
  6235. </dl>
  6236. <dl>
  6237. <dt>Type</dt>
  6238. <dd>BeastDragon</dd>
  6239. </dl>
  6240. <divclass="cardinfo_flex">
  6241. <dlclass="cardinfo_dp">
  6242. <dt>DP</dt>
  6243. <dd>8000</dl>
  6244. <dl>
  6245. <dt>PlayCost</dt>
  6246. <dd>8</dd>
  6247. </dl>
  6248. </div>
  6249. <dl>
  6250. <dt>DigivolveCost1</dt>
  6251. <dd>3fromLv.4</dd>
  6252. </dl>
  6253. <dl>
  6254. <dt>DigivolveCost2</dt>
  6255. <dd>-</dd>
  6256. </dl>
  6257. </div>
  6258. </div>
  6259. <divclass="cardinfo_bottom">
  6260. <dl>
  6261. <dt>Effect</dt>
  6262. <dd>[Digivolve] Lv.4 w/[Gammamon] in text: Cost 3<br>[On Play] [When Digivolving] <De-Digivolve 1> 1 of your opponent's Digimon with as much or less DP as this Digimon. Then, delete 1 Digimon with a play cost of 3 or less. <br>[All Turns] This Digimon gains all of the effects on cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  6263. </dl>
  6264. <dl>
  6265. <dt>InheritedEffect</dt>
  6266. <dd>[All Turns] This Digimon gains all of the effects on cards with [Gammamon] in their names in this Digimon's digivolution cards.</dd>
  6267. </dl>
  6268. <dl>
  6269. <dt>SecurityEffect</dt>
  6270. <dd>-</dd>
  6271. </dl>
  6272. <dl>
  6273. <dt>Notes</dt>
  6274. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6275. <aclass="btn"href="/rule/?card_no=BT16-062"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6276. </div>
  6277. </div>
  6278. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6279. </div>
  6280. </div>
  6281. </li>
  6282. <liclass="image_lists_itemdatapage-3">
  6283. <aclass="card_img">
  6284. <imgsrc="../images/cardlist/card/BT16-063.png"alt="BT16-063Shakkoumon"></a>
  6285. <divclass="popup">
  6286. <divclass="card_detailcard_detail_black_yellowmulticolor">
  6287. <divclass="card_detail_inner">
  6288. <ulclass="cardinfo_head">
  6289. <liclass="cardno">BT16-063</li>
  6290. <li>SR</li>
  6291. <liclass="cardtype">Digimon</li>
  6292. <liclass="cardlv">Lv.5</li>
  6293. </ul>
  6294. <divclass="card_name">Shakkoumon</div>
  6295. <divclass="cardinfo_top">
  6296. <divclass="card_img">
  6297. <imgsrc="../images/cardlist/card/BT16-063.png"alt="BT16-063Shakkoumon"></div>
  6298. <divclass="cardinfo_top_body">
  6299. <dl>
  6300. <dt>Color</dt>
  6301. <ddclass="cardColor">
  6302. <spanclass="cardColor_black">Black</span>
  6303. <spanclass="cardColor_yellow">Yellow</span>
  6304. </dd>
  6305. </dl>
  6306. <dl>
  6307. <dt>Form</dt>
  6308. <dd>Ultimate</dd>
  6309. </dl>
  6310. <dl>
  6311. <dt>Attribute</dt>
  6312. <dd>Free</dd>
  6313. </dl>
  6314. <dl>
  6315. <dt>Type</dt>
  6316. <dd>Mutant</dd>
  6317. </dl>
  6318. <divclass="cardinfo_flex">
  6319. <dlclass="cardinfo_dp">
  6320. <dt>DP</dt>
  6321. <dd>8000</dl>
  6322. <dl>
  6323. <dt>PlayCost</dt>
  6324. <dd>8</dd>
  6325. </dl>
  6326. </div>
  6327. <dl>
  6328. <dt>DigivolveCost1</dt>
  6329. <dd>4fromLv.4</dd>
  6330. </dl>
  6331. <dl>
  6332. <dt>DigivolveCost2</dt>
  6333. <dd>4fromLv.4</dd>
  6334. </dl>
  6335. </div>
  6336. </div>
  6337. <divclass="cardinfo_bottom">
  6338. <dl>
  6339. <dt>Effect</dt>
  6340. <dd>[DNA Digivolution] Black Lv.4 + yellow Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (black Lv.4 & yellow Lv.4)> <br>[When Digivolving] Until the end of your opponent's turn, this Digimon isn't affected by the effects of their Digimon. Then, if DNA digivolving, place 1 of your opponent's Digimon with as high or lower a level as the number of cards in your or their security stack at the bottom of their security stack.<br>(Rule) Trait: Has [Angel] type.</dd>
  6341. </dl>
  6342. <dl>
  6343. <dt>InheritedEffect</dt>
  6344. <dd><Partition (black Lv.4 & yellow Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  6345. </dl>
  6346. <dl>
  6347. <dt>SecurityEffect</dt>
  6348. <dd>-</dd>
  6349. </dl>
  6350. <dl>
  6351. <dt>Notes</dt>
  6352. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6353. <aclass="btn"href="/rule/?card_no=BT16-063"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6354. </div>
  6355. </div>
  6356. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6357. </div>
  6358. </div>
  6359. </li>
  6360. <liclass="image_lists_itemdatapage-3">
  6361. <aclass="card_img">
  6362. <imgsrc="../images/cardlist/card/BT16-063_P1.png"alt="BT16-063Shakkoumon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  6363. </a>
  6364. <divclass="popup">
  6365. <divclass="card_detailcard_detail_black_yellowmulticolor">
  6366. <divclass="card_detail_inner">
  6367. <ulclass="cardinfo_head">
  6368. <liclass="cardno">BT16-063</li>
  6369. <li>SR</li>
  6370. <liclass="cardtype">Digimon</li>
  6371. <liclass="cardlv">Lv.5</li>
  6372. <liclass="cardtypecardParallel">AlternativeArt</li>
  6373. </ul>
  6374. <divclass="card_name">Shakkoumon</div>
  6375. <divclass="cardinfo_top">
  6376. <divclass="card_img">
  6377. <imgsrc="../images/cardlist/card/BT16-063_P1.png"alt="BT16-063Shakkoumon"></div>
  6378. <divclass="cardinfo_top_body">
  6379. <dl>
  6380. <dt>Color</dt>
  6381. <ddclass="cardColor">
  6382. <spanclass="cardColor_black">Black</span>
  6383. <spanclass="cardColor_yellow">Yellow</span>
  6384. </dd>
  6385. </dl>
  6386. <dl>
  6387. <dt>Form</dt>
  6388. <dd>Ultimate</dd>
  6389. </dl>
  6390. <dl>
  6391. <dt>Attribute</dt>
  6392. <dd>Free</dd>
  6393. </dl>
  6394. <dl>
  6395. <dt>Type</dt>
  6396. <dd>Mutant</dd>
  6397. </dl>
  6398. <divclass="cardinfo_flex">
  6399. <dlclass="cardinfo_dp">
  6400. <dt>DP</dt>
  6401. <dd>8000</dl>
  6402. <dl>
  6403. <dt>PlayCost</dt>
  6404. <dd>8</dd>
  6405. </dl>
  6406. </div>
  6407. <dl>
  6408. <dt>DigivolveCost1</dt>
  6409. <dd>4fromLv.4</dd>
  6410. </dl>
  6411. <dl>
  6412. <dt>DigivolveCost2</dt>
  6413. <dd>4fromLv.4</dd>
  6414. </dl>
  6415. </div>
  6416. </div>
  6417. <divclass="cardinfo_bottom">
  6418. <dl>
  6419. <dt>Effect</dt>
  6420. <dd>[DNA Digivolution] Black Lv.4 + yellow Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Partition (black Lv.4 & yellow Lv.4)> <br>[When Digivolving] Until the end of your opponent's turn, this Digimon isn't affected by the effects of their Digimon. Then, if DNA digivolving, place 1 of your opponent's Digimon with as high or lower a level as the number of cards in your or their security stack at the bottom of their security stack.<br>(Rule) Trait: Has [Angel] type.</dd>
  6421. </dl>
  6422. <dl>
  6423. <dt>InheritedEffect</dt>
  6424. <dd><Partition (black Lv.4 & yellow Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  6425. </dl>
  6426. <dl>
  6427. <dt>SecurityEffect</dt>
  6428. <dd>-</dd>
  6429. </dl>
  6430. <dl>
  6431. <dt>Notes</dt>
  6432. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6433. <aclass="btn"href="/rule/?card_no=BT16-063"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6434. </div>
  6435. </div>
  6436. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6437. </div>
  6438. </div>
  6439. </li>
  6440. <liclass="image_lists_itemdatapage-3">
  6441. <aclass="card_img">
  6442. <imgsrc="../images/cardlist/card/BT16-064.png"alt="BT16-064Dorugoramon"></a>
  6443. <divclass="popup">
  6444. <divclass="card_detailcard_detail_black_purplemulticolor">
  6445. <divclass="card_detail_inner">
  6446. <ulclass="cardinfo_head">
  6447. <liclass="cardno">BT16-064</li>
  6448. <li>R</li>
  6449. <liclass="cardtype">Digimon</li>
  6450. <liclass="cardlv">Lv.6</li>
  6451. </ul>
  6452. <divclass="card_name">Dorugoramon</div>
  6453. <divclass="cardinfo_top">
  6454. <divclass="card_img">
  6455. <imgsrc="../images/cardlist/card/BT16-064.png"alt="BT16-064Dorugoramon"></div>
  6456. <divclass="cardinfo_top_body">
  6457. <dl>
  6458. <dt>Color</dt>
  6459. <ddclass="cardColor">
  6460. <spanclass="cardColor_black">Black</span>
  6461. <spanclass="cardColor_purple">Purple</span>
  6462. </dd>
  6463. </dl>
  6464. <dl>
  6465. <dt>Form</dt>
  6466. <dd>Mega</dd>
  6467. </dl>
  6468. <dl>
  6469. <dt>Attribute</dt>
  6470. <dd>Data</dd>
  6471. </dl>
  6472. <dl>
  6473. <dt>Type</dt>
  6474. <dd>BeastDragon/XAntibody/SoC</dd>
  6475. </dl>
  6476. <divclass="cardinfo_flex">
  6477. <dlclass="cardinfo_dp">
  6478. <dt>DP</dt>
  6479. <dd>12000</dl>
  6480. <dl>
  6481. <dt>PlayCost</dt>
  6482. <dd>12</dd>
  6483. </dl>
  6484. </div>
  6485. <dl>
  6486. <dt>DigivolveCost1</dt>
  6487. <dd>4fromLv.5</dd>
  6488. </dl>
  6489. <dl>
  6490. <dt>DigivolveCost2</dt>
  6491. <dd>4fromLv.5</dd>
  6492. </dl>
  6493. </div>
  6494. </div>
  6495. <divclass="cardinfo_bottom">
  6496. <dl>
  6497. <dt>Effect</dt>
  6498. <dd>[Digivolve] Lv.5 w/[DoruGreymon] in name or w/[SoC] trait: Cost 3<br><Collision> (During this Digimon's attack, all of your opponent's Digimon gain <Blocker>, and the opponent blocks if able.) <br>[When Digivolving] If a Tamer card with the [SoC] trait is in this Digimon's digivolution cards, delete 1 of your opponent's unsuspended Digimon or Tamers. <br>[All Turns] [Once Per Turn] When another Digimon is deleted, you may unsuspend this Digimon.</dd>
  6499. </dl>
  6500. <dl>
  6501. <dt>InheritedEffect</dt>
  6502. <dd>-</dd>
  6503. </dl>
  6504. <dl>
  6505. <dt>SecurityEffect</dt>
  6506. <dd>-</dd>
  6507. </dl>
  6508. <dl>
  6509. <dt>Notes</dt>
  6510. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6511. </div>
  6512. </div>
  6513. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6514. </div>
  6515. </div>
  6516. </li>
  6517. <liclass="image_lists_itemdatapage-3">
  6518. <aclass="card_img">
  6519. <imgsrc="../images/cardlist/card/BT16-065.png"alt="BT16-065Darkdramon"></a>
  6520. <divclass="popup">
  6521. <divclass="card_detailcard_detail_black">
  6522. <divclass="card_detail_inner">
  6523. <ulclass="cardinfo_head">
  6524. <liclass="cardno">BT16-065</li>
  6525. <li>R</li>
  6526. <liclass="cardtype">Digimon</li>
  6527. <liclass="cardlv">Lv.6</li>
  6528. </ul>
  6529. <divclass="card_name">Darkdramon</div>
  6530. <divclass="cardinfo_top">
  6531. <divclass="card_img">
  6532. <imgsrc="../images/cardlist/card/BT16-065.png"alt="BT16-065Darkdramon"></div>
  6533. <divclass="cardinfo_top_body">
  6534. <dl>
  6535. <dt>Color</dt>
  6536. <ddclass="cardColor">
  6537. <spanclass="cardColor_black">Black</span>
  6538. </dd>
  6539. </dl>
  6540. <dl>
  6541. <dt>Form</dt>
  6542. <dd>Mega</dd>
  6543. </dl>
  6544. <dl>
  6545. <dt>Attribute</dt>
  6546. <dd>Virus</dd>
  6547. </dl>
  6548. <dl>
  6549. <dt>Type</dt>
  6550. <dd>Cyborg/D-Brigade</dd>
  6551. </dl>
  6552. <divclass="cardinfo_flex">
  6553. <dlclass="cardinfo_dp">
  6554. <dt>DP</dt>
  6555. <dd>13000</dl>
  6556. <dl>
  6557. <dt>PlayCost</dt>
  6558. <dd>13</dd>
  6559. </dl>
  6560. </div>
  6561. <dl>
  6562. <dt>DigivolveCost1</dt>
  6563. <dd>5fromLv.5</dd>
  6564. </dl>
  6565. <dl>
  6566. <dt>DigivolveCost2</dt>
  6567. <dd>-</dd>
  6568. </dl>
  6569. </div>
  6570. </div>
  6571. <divclass="cardinfo_bottom">
  6572. <dl>
  6573. <dt>Effect</dt>
  6574. <dd>When this card would be played, if there is a Digimon with the [Boss] trait, reduce the play cost by 6. By returning 6 cards with the [D-Brigade] trait from your trash to the top of the deck, reduce the play cost by 6. <br>[On Play] [When Digivolving] Reveal the top 3 cards of your deck. Delete 1 of your opponent's Digimon with as high or lower a play cost as 1 Digimon card among them. Trash the revealed cards. <br>[End of Your Turn] 2 of your Digimon may DNA digivolve into [Chaosmon] in the hand.</dd>
  6575. </dl>
  6576. <dl>
  6577. <dt>InheritedEffect</dt>
  6578. <dd>-</dd>
  6579. </dl>
  6580. <dl>
  6581. <dt>SecurityEffect</dt>
  6582. <dd>-</dd>
  6583. </dl>
  6584. <dl>
  6585. <dt>Notes</dt>
  6586. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6587. <aclass="btn"href="/rule/?card_no=BT16-065"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6588. </div>
  6589. </div>
  6590. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6591. </div>
  6592. </div>
  6593. </li>
  6594. <liclass="image_lists_itemdatapage-3">
  6595. <aclass="card_img">
  6596. <imgsrc="../images/cardlist/card/BT16-066.png"alt="BT16-066Syakomon(XAntibody)"></a>
  6597. <divclass="popup">
  6598. <divclass="card_detailcard_detail_purple_bluemulticolor">
  6599. <divclass="card_detail_inner">
  6600. <ulclass="cardinfo_head">
  6601. <liclass="cardno">BT16-066</li>
  6602. <li>U</li>
  6603. <liclass="cardtype">Digimon</li>
  6604. <liclass="cardlv">Lv.3</li>
  6605. </ul>
  6606. <divclass="card_name">Syakomon(XAntibody)</div>
  6607. <divclass="cardinfo_top">
  6608. <divclass="card_img">
  6609. <imgsrc="../images/cardlist/card/BT16-066.png"alt="BT16-066Syakomon(XAntibody)"></div>
  6610. <divclass="cardinfo_top_body">
  6611. <dl>
  6612. <dt>Color</dt>
  6613. <ddclass="cardColor">
  6614. <spanclass="cardColor_purple">Purple</span>
  6615. <spanclass="cardColor_blue">Blue</span>
  6616. </dd>
  6617. </dl>
  6618. <dl>
  6619. <dt>Form</dt>
  6620. <dd>Rookie</dd>
  6621. </dl>
  6622. <dl>
  6623. <dt>Attribute</dt>
  6624. <dd>Virus</dd>
  6625. </dl>
  6626. <dl>
  6627. <dt>Type</dt>
  6628. <dd>Crustacean/XAntibody</dd>
  6629. </dl>
  6630. <divclass="cardinfo_flex">
  6631. <dlclass="cardinfo_dp">
  6632. <dt>DP</dt>
  6633. <dd>2000</dl>
  6634. <dl>
  6635. <dt>PlayCost</dt>
  6636. <dd>3</dd>
  6637. </dl>
  6638. </div>
  6639. <dl>
  6640. <dt>DigivolveCost1</dt>
  6641. <dd>1fromLv.2</dd>
  6642. </dl>
  6643. <dl>
  6644. <dt>DigivolveCost2</dt>
  6645. <dd>1fromLv.2</dd>
  6646. </dl>
  6647. </div>
  6648. </div>
  6649. <divclass="cardinfo_bottom">
  6650. <dl>
  6651. <dt>Effect</dt>
  6652. <dd>[Digivolve] [Syakomon]: Cost 0<br>[Start of Your Main Phase] [When Digivolving] Your opponent may trash 1 Digimon card in their hand. If they didn't, gain 1 memory.</dd>
  6653. </dl>
  6654. <dl>
  6655. <dt>InheritedEffect</dt>
  6656. <dd>[When Attacking] [Once Per Turn] <Draw 1> and trash 1 card in your hand.</dd>
  6657. </dl>
  6658. <dl>
  6659. <dt>SecurityEffect</dt>
  6660. <dd>-</dd>
  6661. </dl>
  6662. <dl>
  6663. <dt>Notes</dt>
  6664. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6665. <aclass="btn"href="/rule/?card_no=BT16-066"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6666. </div>
  6667. </div>
  6668. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6669. </div>
  6670. </div>
  6671. </li>
  6672. <liclass="image_lists_itemdatapage-3">
  6673. <aclass="card_img">
  6674. <imgsrc="../images/cardlist/card/BT16-067.png"alt="BT16-067Lopmon(XAntibody)"></a>
  6675. <divclass="popup">
  6676. <divclass="card_detailcard_detail_purple_greenmulticolor">
  6677. <divclass="card_detail_inner">
  6678. <ulclass="cardinfo_head">
  6679. <liclass="cardno">BT16-067</li>
  6680. <li>C</li>
  6681. <liclass="cardtype">Digimon</li>
  6682. <liclass="cardlv">Lv.3</li>
  6683. </ul>
  6684. <divclass="card_name">Lopmon(XAntibody)</div>
  6685. <divclass="cardinfo_top">
  6686. <divclass="card_img">
  6687. <imgsrc="../images/cardlist/card/BT16-067.png"alt="BT16-067Lopmon(XAntibody)"></div>
  6688. <divclass="cardinfo_top_body">
  6689. <dl>
  6690. <dt>Color</dt>
  6691. <ddclass="cardColor">
  6692. <spanclass="cardColor_purple">Purple</span>
  6693. <spanclass="cardColor_green">Green</span>
  6694. </dd>
  6695. </dl>
  6696. <dl>
  6697. <dt>Form</dt>
  6698. <dd>Rookie</dd>
  6699. </dl>
  6700. <dl>
  6701. <dt>Attribute</dt>
  6702. <dd>Data</dd>
  6703. </dl>
  6704. <dl>
  6705. <dt>Type</dt>
  6706. <dd>Beast/XAntibody</dd>
  6707. </dl>
  6708. <divclass="cardinfo_flex">
  6709. <dlclass="cardinfo_dp">
  6710. <dt>DP</dt>
  6711. <dd>1000</dl>
  6712. <dl>
  6713. <dt>PlayCost</dt>
  6714. <dd>3</dd>
  6715. </dl>
  6716. </div>
  6717. <dl>
  6718. <dt>DigivolveCost1</dt>
  6719. <dd>1fromLv.2</dd>
  6720. </dl>
  6721. <dl>
  6722. <dt>DigivolveCost2</dt>
  6723. <dd>1fromLv.2</dd>
  6724. </dl>
  6725. </div>
  6726. </div>
  6727. <divclass="cardinfo_bottom">
  6728. <dl>
  6729. <dt>Effect</dt>
  6730. <dd>[Digivolve] [Kokomon]/[Lopmon]: Cost 0<br>[On Play] [When Digivolving] By trashing 1 card in your hand, 1 of your Digimon gets +3000 DP for the turn.</dd>
  6731. </dl>
  6732. <dl>
  6733. <dt>InheritedEffect</dt>
  6734. <dd>[Your Turn] [Once Per Turn] When an effect plays one of your Digimon, <Draw 1>.</dd>
  6735. </dl>
  6736. <dl>
  6737. <dt>SecurityEffect</dt>
  6738. <dd>-</dd>
  6739. </dl>
  6740. <dl>
  6741. <dt>Notes</dt>
  6742. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6743. </div>
  6744. </div>
  6745. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6746. </div>
  6747. </div>
  6748. </li>
  6749. <liclass="image_lists_itemdatapage-3">
  6750. <aclass="card_img">
  6751. <imgsrc="../images/cardlist/card/BT16-068.png"alt="BT16-068Dobermon"></a>
  6752. <divclass="popup">
  6753. <divclass="card_detailcard_detail_purple">
  6754. <divclass="card_detail_inner">
  6755. <ulclass="cardinfo_head">
  6756. <liclass="cardno">BT16-068</li>
  6757. <li>C</li>
  6758. <liclass="cardtype">Digimon</li>
  6759. <liclass="cardlv">Lv.4</li>
  6760. </ul>
  6761. <divclass="card_name">Dobermon</div>
  6762. <divclass="cardinfo_top">
  6763. <divclass="card_img">
  6764. <imgsrc="../images/cardlist/card/BT16-068.png"alt="BT16-068Dobermon"></div>
  6765. <divclass="cardinfo_top_body">
  6766. <dl>
  6767. <dt>Color</dt>
  6768. <ddclass="cardColor">
  6769. <spanclass="cardColor_purple">Purple</span>
  6770. </dd>
  6771. </dl>
  6772. <dl>
  6773. <dt>Form</dt>
  6774. <dd>Champion</dd>
  6775. </dl>
  6776. <dl>
  6777. <dt>Attribute</dt>
  6778. <dd>Vaccine</dd>
  6779. </dl>
  6780. <dl>
  6781. <dt>Type</dt>
  6782. <dd>DarkAnimal</dd>
  6783. </dl>
  6784. <divclass="cardinfo_flex">
  6785. <dlclass="cardinfo_dp">
  6786. <dt>DP</dt>
  6787. <dd>4000</dl>
  6788. <dl>
  6789. <dt>PlayCost</dt>
  6790. <dd>4</dd>
  6791. </dl>
  6792. </div>
  6793. <dl>
  6794. <dt>DigivolveCost1</dt>
  6795. <dd>2fromLv.3</dd>
  6796. </dl>
  6797. <dl>
  6798. <dt>DigivolveCost2</dt>
  6799. <dd>-</dd>
  6800. </dl>
  6801. </div>
  6802. </div>
  6803. <divclass="cardinfo_bottom">
  6804. <dl>
  6805. <dt>Effect</dt>
  6806. <dd>[On Play] [When Digivolving] 1 of your Digimon gains <Blocker> until the end of your opponent's turn.</dd>
  6807. </dl>
  6808. <dl>
  6809. <dt>InheritedEffect</dt>
  6810. <dd>[Your Turn] [Once Per Turn] When an effect plays one of your Digimon, <Draw 1>.</dd>
  6811. </dl>
  6812. <dl>
  6813. <dt>SecurityEffect</dt>
  6814. <dd>-</dd>
  6815. </dl>
  6816. <dl>
  6817. <dt>Notes</dt>
  6818. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6819. </div>
  6820. </div>
  6821. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6822. </div>
  6823. </div>
  6824. </li>
  6825. <liclass="image_lists_itemdatapage-3">
  6826. <aclass="card_img">
  6827. <imgsrc="../images/cardlist/card/BT16-069.png"alt="BT16-069Gesomon(XAntibody)"></a>
  6828. <divclass="popup">
  6829. <divclass="card_detailcard_detail_purple_bluemulticolor">
  6830. <divclass="card_detail_inner">
  6831. <ulclass="cardinfo_head">
  6832. <liclass="cardno">BT16-069</li>
  6833. <li>C</li>
  6834. <liclass="cardtype">Digimon</li>
  6835. <liclass="cardlv">Lv.4</li>
  6836. </ul>
  6837. <divclass="card_name">Gesomon(XAntibody)</div>
  6838. <divclass="cardinfo_top">
  6839. <divclass="card_img">
  6840. <imgsrc="../images/cardlist/card/BT16-069.png"alt="BT16-069Gesomon(XAntibody)"></div>
  6841. <divclass="cardinfo_top_body">
  6842. <dl>
  6843. <dt>Color</dt>
  6844. <ddclass="cardColor">
  6845. <spanclass="cardColor_purple">Purple</span>
  6846. <spanclass="cardColor_blue">Blue</span>
  6847. </dd>
  6848. </dl>
  6849. <dl>
  6850. <dt>Form</dt>
  6851. <dd>Champion</dd>
  6852. </dl>
  6853. <dl>
  6854. <dt>Attribute</dt>
  6855. <dd>Virus</dd>
  6856. </dl>
  6857. <dl>
  6858. <dt>Type</dt>
  6859. <dd>Mollusk/XAntibody</dd>
  6860. </dl>
  6861. <divclass="cardinfo_flex">
  6862. <dlclass="cardinfo_dp">
  6863. <dt>DP</dt>
  6864. <dd>6000</dl>
  6865. <dl>
  6866. <dt>PlayCost</dt>
  6867. <dd>5</dd>
  6868. </dl>
  6869. </div>
  6870. <dl>
  6871. <dt>DigivolveCost1</dt>
  6872. <dd>3fromLv.3</dd>
  6873. </dl>
  6874. <dl>
  6875. <dt>DigivolveCost2</dt>
  6876. <dd>3fromLv.3</dd>
  6877. </dl>
  6878. </div>
  6879. </div>
  6880. <divclass="cardinfo_bottom">
  6881. <dl>
  6882. <dt>Effect</dt>
  6883. <dd>[Digivolve] [Gesomon]: Cost 0<br>[On Play] [When Digivolving] If [Gesomon] or [X Antibody] is in this Digimon's digivolution cards, trash any 3 cards under 1 of your opponent's Digimon or Tamers. Then, 1 of your opponent's Digimon or Tamers without cards under it can't suspend until the end of their turn.</dd>
  6884. </dl>
  6885. <dl>
  6886. <dt>InheritedEffect</dt>
  6887. <dd>[When Attacking] [Once Per Turn] <Draw 1> and trash 1 card in your hand.</dd>
  6888. </dl>
  6889. <dl>
  6890. <dt>SecurityEffect</dt>
  6891. <dd>-</dd>
  6892. </dl>
  6893. <dl>
  6894. <dt>Notes</dt>
  6895. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6896. </div>
  6897. </div>
  6898. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6899. </div>
  6900. </div>
  6901. </li>
  6902. <liclass="image_lists_itemdatapage-3">
  6903. <aclass="card_img">
  6904. <imgsrc="../images/cardlist/card/BT16-070.png"alt="BT16-070Sethmon"></a>
  6905. <divclass="popup">
  6906. <divclass="card_detailcard_detail_purple_redmulticolor">
  6907. <divclass="card_detail_inner">
  6908. <ulclass="cardinfo_head">
  6909. <liclass="cardno">BT16-070</li>
  6910. <li>C</li>
  6911. <liclass="cardtype">Digimon</li>
  6912. <liclass="cardlv">Lv.4</li>
  6913. </ul>
  6914. <divclass="card_name">Sethmon</div>
  6915. <divclass="cardinfo_top">
  6916. <divclass="card_img">
  6917. <imgsrc="../images/cardlist/card/BT16-070.png"alt="BT16-070Sethmon"></div>
  6918. <divclass="cardinfo_top_body">
  6919. <dl>
  6920. <dt>Color</dt>
  6921. <ddclass="cardColor">
  6922. <spanclass="cardColor_purple">Purple</span>
  6923. <spanclass="cardColor_red">Red</span>
  6924. </dd>
  6925. </dl>
  6926. <dl>
  6927. <dt>Form</dt>
  6928. <dd>ArmorForm</dd>
  6929. </dl>
  6930. <dl>
  6931. <dt>Attribute</dt>
  6932. <dd>Free</dd>
  6933. </dl>
  6934. <dl>
  6935. <dt>Type</dt>
  6936. <dd>DarkAnimal</dd>
  6937. </dl>
  6938. <divclass="cardinfo_flex">
  6939. <dlclass="cardinfo_dp">
  6940. <dt>DP</dt>
  6941. <dd>5000</dl>
  6942. <dl>
  6943. <dt>PlayCost</dt>
  6944. <dd>5</dd>
  6945. </dl>
  6946. </div>
  6947. <dl>
  6948. <dt>DigivolveCost1</dt>
  6949. <dd>3fromLv.3</dd>
  6950. </dl>
  6951. <dl>
  6952. <dt>DigivolveCost2</dt>
  6953. <dd>-</dd>
  6954. </dl>
  6955. </div>
  6956. </div>
  6957. <divclass="cardinfo_bottom">
  6958. <dl>
  6959. <dt>Effect</dt>
  6960. <dd>[Digivolve] [Veemon]: Cost 2<br><Armor Purge> <br>[When Digivolving] [When Attacking] You may choose 1 of your Digimon. Delete it and 1 of your opponent's Digimon with as much or less DP as it.</dd>
  6961. </dl>
  6962. <dl>
  6963. <dt>InheritedEffect</dt>
  6964. <dd>-</dd>
  6965. </dl>
  6966. <dl>
  6967. <dt>SecurityEffect</dt>
  6968. <dd>-</dd>
  6969. </dl>
  6970. <dl>
  6971. <dt>Notes</dt>
  6972. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  6973. <aclass="btn"href="/rule/?card_no=BT16-070"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  6974. </div>
  6975. </div>
  6976. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  6977. </div>
  6978. </div>
  6979. </li>
  6980. <liclass="image_lists_itemdatapage-3">
  6981. <aclass="card_img">
  6982. <imgsrc="../images/cardlist/card/BT16-071.png"alt="BT16-071MadLeomon"></a>
  6983. <divclass="popup">
  6984. <divclass="card_detailcard_detail_purple_greenmulticolor">
  6985. <divclass="card_detail_inner">
  6986. <ulclass="cardinfo_head">
  6987. <liclass="cardno">BT16-071</li>
  6988. <li>C</li>
  6989. <liclass="cardtype">Digimon</li>
  6990. <liclass="cardlv">Lv.4</li>
  6991. </ul>
  6992. <divclass="card_name">MadLeomon</div>
  6993. <divclass="cardinfo_top">
  6994. <divclass="card_img">
  6995. <imgsrc="../images/cardlist/card/BT16-071.png"alt="BT16-071MadLeomon"></div>
  6996. <divclass="cardinfo_top_body">
  6997. <dl>
  6998. <dt>Color</dt>
  6999. <ddclass="cardColor">
  7000. <spanclass="cardColor_purple">Purple</span>
  7001. <spanclass="cardColor_green">Green</span>
  7002. </dd>
  7003. </dl>
  7004. <dl>
  7005. <dt>Form</dt>
  7006. <dd>Champion</dd>
  7007. </dl>
  7008. <dl>
  7009. <dt>Attribute</dt>
  7010. <dd>Virus</dd>
  7011. </dl>
  7012. <dl>
  7013. <dt>Type</dt>
  7014. <dd>Undead/BagraArmy</dd>
  7015. </dl>
  7016. <divclass="cardinfo_flex">
  7017. <dlclass="cardinfo_dp">
  7018. <dt>DP</dt>
  7019. <dd>4000</dl>
  7020. <dl>
  7021. <dt>PlayCost</dt>
  7022. <dd>5</dd>
  7023. </dl>
  7024. </div>
  7025. <dl>
  7026. <dt>DigivolveCost1</dt>
  7027. <dd>3fromLv.3</dd>
  7028. </dl>
  7029. <dl>
  7030. <dt>DigivolveCost2</dt>
  7031. <dd>3fromLv.3</dd>
  7032. </dl>
  7033. </div>
  7034. </div>
  7035. <divclass="cardinfo_bottom">
  7036. <dl>
  7037. <dt>Effect</dt>
  7038. <dd>[Digivolve] [Liollmon]/[Elecmon]: Cost 2<br>[When Attacking] This Digimon may digivolve into a Digimon card with [Leomon] in its name in the hand or trash.</dd>
  7039. </dl>
  7040. <dl>
  7041. <dt>InheritedEffect</dt>
  7042. <dd>[End of Attack] By deleting this Digimon, you may play 1 level 4 or lower Digimon card from your trash without paying the cost.</dd>
  7043. </dl>
  7044. <dl>
  7045. <dt>SecurityEffect</dt>
  7046. <dd>-</dd>
  7047. </dl>
  7048. <dl>
  7049. <dt>Notes</dt>
  7050. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7051. <aclass="btn"href="/rule/?card_no=BT16-071"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7052. </div>
  7053. </div>
  7054. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7055. </div>
  7056. </div>
  7057. </li>
  7058. <liclass="image_lists_itemdatapage-3">
  7059. <aclass="card_img">
  7060. <imgsrc="../images/cardlist/card/BT16-072.png"alt="BT16-072Arukenimon"></a>
  7061. <divclass="popup">
  7062. <divclass="card_detailcard_detail_purple">
  7063. <divclass="card_detail_inner">
  7064. <ulclass="cardinfo_head">
  7065. <liclass="cardno">BT16-072</li>
  7066. <li>C</li>
  7067. <liclass="cardtype">Digimon</li>
  7068. <liclass="cardlv">Lv.5</li>
  7069. </ul>
  7070. <divclass="card_name">Arukenimon</div>
  7071. <divclass="cardinfo_top">
  7072. <divclass="card_img">
  7073. <imgsrc="../images/cardlist/card/BT16-072.png"alt="BT16-072Arukenimon"></div>
  7074. <divclass="cardinfo_top_body">
  7075. <dl>
  7076. <dt>Color</dt>
  7077. <ddclass="cardColor">
  7078. <spanclass="cardColor_purple">Purple</span>
  7079. </dd>
  7080. </dl>
  7081. <dl>
  7082. <dt>Form</dt>
  7083. <dd>Ultimate</dd>
  7084. </dl>
  7085. <dl>
  7086. <dt>Attribute</dt>
  7087. <dd>Virus</dd>
  7088. </dl>
  7089. <dl>
  7090. <dt>Type</dt>
  7091. <dd>DarkAnimal</dd>
  7092. </dl>
  7093. <divclass="cardinfo_flex">
  7094. <dlclass="cardinfo_dp">
  7095. <dt>DP</dt>
  7096. <dd>6000</dl>
  7097. <dl>
  7098. <dt>PlayCost</dt>
  7099. <dd>6</dd>
  7100. </dl>
  7101. </div>
  7102. <dl>
  7103. <dt>DigivolveCost1</dt>
  7104. <dd>3fromLv.4</dd>
  7105. </dl>
  7106. <dl>
  7107. <dt>DigivolveCost2</dt>
  7108. <dd>-</dd>
  7109. </dl>
  7110. </div>
  7111. </div>
  7112. <divclass="cardinfo_bottom">
  7113. <dl>
  7114. <dt>Effect</dt>
  7115. <dd><Blocker><br>[On Play] Reveal the top 5 cards of your deck. Trash 2 purple cards among them. Return the rest to the bottom of the deck. <br>[On Deletion] From your trash and without paying the cost, you may play 1 Tamer card with [Myotismon] in its text and without the same name as any of your Tamers.</dd>
  7116. </dl>
  7117. <dl>
  7118. <dt>InheritedEffect</dt>
  7119. <dd>-</dd>
  7120. </dl>
  7121. <dl>
  7122. <dt>SecurityEffect</dt>
  7123. <dd>-</dd>
  7124. </dl>
  7125. <dl>
  7126. <dt>Notes</dt>
  7127. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7128. <aclass="btn"href="/rule/?card_no=BT16-072"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7129. </div>
  7130. </div>
  7131. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7132. </div>
  7133. </div>
  7134. </li>
  7135. <liclass="image_lists_itemdatapage-3">
  7136. <aclass="card_img">
  7137. <imgsrc="../images/cardlist/card/BT16-073.png"alt="BT16-073Mummymon"></a>
  7138. <divclass="popup">
  7139. <divclass="card_detailcard_detail_purple">
  7140. <divclass="card_detail_inner">
  7141. <ulclass="cardinfo_head">
  7142. <liclass="cardno">BT16-073</li>
  7143. <li>C</li>
  7144. <liclass="cardtype">Digimon</li>
  7145. <liclass="cardlv">Lv.5</li>
  7146. </ul>
  7147. <divclass="card_name">Mummymon</div>
  7148. <divclass="cardinfo_top">
  7149. <divclass="card_img">
  7150. <imgsrc="../images/cardlist/card/BT16-073.png"alt="BT16-073Mummymon"></div>
  7151. <divclass="cardinfo_top_body">
  7152. <dl>
  7153. <dt>Color</dt>
  7154. <ddclass="cardColor">
  7155. <spanclass="cardColor_purple">Purple</span>
  7156. </dd>
  7157. </dl>
  7158. <dl>
  7159. <dt>Form</dt>
  7160. <dd>Ultimate</dd>
  7161. </dl>
  7162. <dl>
  7163. <dt>Attribute</dt>
  7164. <dd>Virus</dd>
  7165. </dl>
  7166. <dl>
  7167. <dt>Type</dt>
  7168. <dd>Undead</dd>
  7169. </dl>
  7170. <divclass="cardinfo_flex">
  7171. <dlclass="cardinfo_dp">
  7172. <dt>DP</dt>
  7173. <dd>6000</dl>
  7174. <dl>
  7175. <dt>PlayCost</dt>
  7176. <dd>6</dd>
  7177. </dl>
  7178. </div>
  7179. <dl>
  7180. <dt>DigivolveCost1</dt>
  7181. <dd>3fromLv.4</dd>
  7182. </dl>
  7183. <dl>
  7184. <dt>DigivolveCost2</dt>
  7185. <dd>-</dd>
  7186. </dl>
  7187. </div>
  7188. </div>
  7189. <divclass="cardinfo_bottom">
  7190. <dl>
  7191. <dt>Effect</dt>
  7192. <dd><Retaliation><br>[On Play] <Draw 2> and trash 2 cards in your hand. <br>[On Deletion] From your trash and without paying the cost, you may play 1 Tamer card with [Myotismon] in its text and without the same name as any of your Tamers.</dd>
  7193. </dl>
  7194. <dl>
  7195. <dt>InheritedEffect</dt>
  7196. <dd>-</dd>
  7197. </dl>
  7198. <dl>
  7199. <dt>SecurityEffect</dt>
  7200. <dd>-</dd>
  7201. </dl>
  7202. <dl>
  7203. <dt>Notes</dt>
  7204. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7205. <aclass="btn"href="/rule/?card_no=BT16-073"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7206. </div>
  7207. </div>
  7208. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7209. </div>
  7210. </div>
  7211. </li>
  7212. <liclass="image_lists_itemdatapage-3">
  7213. <aclass="card_img">
  7214. <imgsrc="../images/cardlist/card/BT16-074.png"alt="BT16-074Climbmon"></a>
  7215. <divclass="popup">
  7216. <divclass="card_detailcard_detail_purple">
  7217. <divclass="card_detail_inner">
  7218. <ulclass="cardinfo_head">
  7219. <liclass="cardno">BT16-074</li>
  7220. <li>R</li>
  7221. <liclass="cardtype">Digimon</li>
  7222. <liclass="cardlv">Lv.5</li>
  7223. </ul>
  7224. <divclass="card_name">Climbmon</div>
  7225. <divclass="cardinfo_top">
  7226. <divclass="card_img">
  7227. <imgsrc="../images/cardlist/card/BT16-074.png"alt="BT16-074Climbmon"></div>
  7228. <divclass="cardinfo_top_body">
  7229. <dl>
  7230. <dt>Color</dt>
  7231. <ddclass="cardColor">
  7232. <spanclass="cardColor_purple">Purple</span>
  7233. </dd>
  7234. </dl>
  7235. <dl>
  7236. <dt>Form</dt>
  7237. <dd>Ultimate</dd>
  7238. </dl>
  7239. <dl>
  7240. <dt>Attribute</dt>
  7241. <dd>Virus</dd>
  7242. </dl>
  7243. <dl>
  7244. <dt>Type</dt>
  7245. <dd>Insectoid</dd>
  7246. </dl>
  7247. <divclass="cardinfo_flex">
  7248. <dlclass="cardinfo_dp">
  7249. <dt>DP</dt>
  7250. <dd>7000</dl>
  7251. <dl>
  7252. <dt>PlayCost</dt>
  7253. <dd>7</dd>
  7254. </dl>
  7255. </div>
  7256. <dl>
  7257. <dt>DigivolveCost1</dt>
  7258. <dd>3fromLv.4</dd>
  7259. </dl>
  7260. <dl>
  7261. <dt>DigivolveCost2</dt>
  7262. <dd>3fromLv.4</dd>
  7263. </dl>
  7264. </div>
  7265. </div>
  7266. <divclass="cardinfo_bottom">
  7267. <dl>
  7268. <dt>Effect</dt>
  7269. <dd>[Digivolve] Lv.4 w/[Pulsemon] in text: Cost 3<br>[When Digivolving] If you have 3 or more security cards, <Draw 2> and trash 1 card in your hand. If you have 3 or fewer, you may play 1 Digimon card with [Pulsemon] in its text and 6000 DP or less from your trash without paying the cost. At the next end of your opponent’s turn, delete it.</dd>
  7270. </dl>
  7271. <dl>
  7272. <dt>InheritedEffect</dt>
  7273. <dd>[End of Attack] [Once Per Turn] If this Digimon has [Pulsemon] in its text, by trashing the top card of your security stack, unsuspend this Digimon.</dd>
  7274. </dl>
  7275. <dl>
  7276. <dt>SecurityEffect</dt>
  7277. <dd>-</dd>
  7278. </dl>
  7279. <dl>
  7280. <dt>Notes</dt>
  7281. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7282. <aclass="btn"href="/rule/?card_no=BT16-074"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7283. </div>
  7284. </div>
  7285. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7286. </div>
  7287. </div>
  7288. </li>
  7289. <liclass="image_lists_itemdatapage-3">
  7290. <aclass="card_img">
  7291. <imgsrc="../images/cardlist/card/BT16-075.png"alt="BT16-075Cerberusmon"></a>
  7292. <divclass="popup">
  7293. <divclass="card_detailcard_detail_purple">
  7294. <divclass="card_detail_inner">
  7295. <ulclass="cardinfo_head">
  7296. <liclass="cardno">BT16-075</li>
  7297. <li>U</li>
  7298. <liclass="cardtype">Digimon</li>
  7299. <liclass="cardlv">Lv.5</li>
  7300. </ul>
  7301. <divclass="card_name">Cerberusmon</div>
  7302. <divclass="cardinfo_top">
  7303. <divclass="card_img">
  7304. <imgsrc="../images/cardlist/card/BT16-075.png"alt="BT16-075Cerberusmon"></div>
  7305. <divclass="cardinfo_top_body">
  7306. <dl>
  7307. <dt>Color</dt>
  7308. <ddclass="cardColor">
  7309. <spanclass="cardColor_purple">Purple</span>
  7310. </dd>
  7311. </dl>
  7312. <dl>
  7313. <dt>Form</dt>
  7314. <dd>Ultimate</dd>
  7315. </dl>
  7316. <dl>
  7317. <dt>Attribute</dt>
  7318. <dd>Vaccine</dd>
  7319. </dl>
  7320. <dl>
  7321. <dt>Type</dt>
  7322. <dd>DarkAnimal</dd>
  7323. </dl>
  7324. <divclass="cardinfo_flex">
  7325. <dlclass="cardinfo_dp">
  7326. <dt>DP</dt>
  7327. <dd>7000</dl>
  7328. <dl>
  7329. <dt>PlayCost</dt>
  7330. <dd>7</dd>
  7331. </dl>
  7332. </div>
  7333. <dl>
  7334. <dt>DigivolveCost1</dt>
  7335. <dd>3fromLv.4</dd>
  7336. </dl>
  7337. <dl>
  7338. <dt>DigivolveCost2</dt>
  7339. <dd>-</dd>
  7340. </dl>
  7341. </div>
  7342. </div>
  7343. <divclass="cardinfo_bottom">
  7344. <dl>
  7345. <dt>Effect</dt>
  7346. <dd>[On Play] [When Digivolving] You may return 1 Digimon card with the [Dark Animal] or [Shaman] trait from your trash to the hand.</dd>
  7347. </dl>
  7348. <dl>
  7349. <dt>InheritedEffect</dt>
  7350. <dd>[Your Turn] [Once Per Turn] When an effect plays one of your Digimon, 1 of your Digimon gains <Rush> for the turn.</dd>
  7351. </dl>
  7352. <dl>
  7353. <dt>SecurityEffect</dt>
  7354. <dd>-</dd>
  7355. </dl>
  7356. <dl>
  7357. <dt>Notes</dt>
  7358. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7359. </div>
  7360. </div>
  7361. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7362. </div>
  7363. </div>
  7364. </li>
  7365. <liclass="image_lists_itemdatapage-3">
  7366. <aclass="card_img">
  7367. <imgsrc="../images/cardlist/card/BT16-076.png"alt="BT16-076Soloogarmon"></a>
  7368. <divclass="popup">
  7369. <divclass="card_detailcard_detail_purple_redmulticolor">
  7370. <divclass="card_detail_inner">
  7371. <ulclass="cardinfo_head">
  7372. <liclass="cardno">BT16-076</li>
  7373. <li>U</li>
  7374. <liclass="cardtype">Digimon</li>
  7375. <liclass="cardlv">Lv.5</li>
  7376. </ul>
  7377. <divclass="card_name">Soloogarmon</div>
  7378. <divclass="cardinfo_top">
  7379. <divclass="card_img">
  7380. <imgsrc="../images/cardlist/card/BT16-076.png"alt="BT16-076Soloogarmon"></div>
  7381. <divclass="cardinfo_top_body">
  7382. <dl>
  7383. <dt>Color</dt>
  7384. <ddclass="cardColor">
  7385. <spanclass="cardColor_purple">Purple</span>
  7386. <spanclass="cardColor_red">Red</span>
  7387. </dd>
  7388. </dl>
  7389. <dl>
  7390. <dt>Form</dt>
  7391. <dd>Ultimate</dd>
  7392. </dl>
  7393. <dl>
  7394. <dt>Attribute</dt>
  7395. <dd>Virus</dd>
  7396. </dl>
  7397. <dl>
  7398. <dt>Type</dt>
  7399. <dd>DarkAnimal/XAntibody/SoC</dd>
  7400. </dl>
  7401. <divclass="cardinfo_flex">
  7402. <dlclass="cardinfo_dp">
  7403. <dt>DP</dt>
  7404. <dd>7000</dl>
  7405. <dl>
  7406. <dt>PlayCost</dt>
  7407. <dd>7</dd>
  7408. </dl>
  7409. </div>
  7410. <dl>
  7411. <dt>DigivolveCost1</dt>
  7412. <dd>4fromLv.4</dd>
  7413. </dl>
  7414. <dl>
  7415. <dt>DigivolveCost2</dt>
  7416. <dd>4fromLv.4</dd>
  7417. </dl>
  7418. </div>
  7419. </div>
  7420. <divclass="cardinfo_bottom">
  7421. <dl>
  7422. <dt>Effect</dt>
  7423. <dd>[Digivolve] Lv.4 w/[SoC] trait: Cost 3<br>[When Digivolving] By trashing 2 cards in your hand, delete 1 of your opponent's 6000 DP or lower Digimon. If this effect didn't delete, you may play 1 level 4 or lower [SoC] trait Digimon card from your trash without paying the cost. <br>[All Turns] When one of your other [SoC] trait Digimon is deleted, this Digimon with an [SoC] trait Tamer card in its digivolution cards may digivolve into [Fenriloogamon] in the trash without paying the cost.</dd>
  7424. </dl>
  7425. <dl>
  7426. <dt>InheritedEffect</dt>
  7427. <dd>[End of Attack] [Once Per Turn] If your opponent has 1 or more memory, unsuspend this Digimon.</dd>
  7428. </dl>
  7429. <dl>
  7430. <dt>SecurityEffect</dt>
  7431. <dd>-</dd>
  7432. </dl>
  7433. <dl>
  7434. <dt>Notes</dt>
  7435. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7436. <aclass="btn"href="/rule/?card_no=BT16-076"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7437. </div>
  7438. </div>
  7439. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7440. </div>
  7441. </div>
  7442. </li>
  7443. <liclass="image_lists_itemdatapage-3">
  7444. <aclass="card_img">
  7445. <imgsrc="../images/cardlist/card/BT16-077.png"alt="BT16-077Dinobeemon"></a>
  7446. <divclass="popup">
  7447. <divclass="card_detailcard_detail_purple_redmulticolor">
  7448. <divclass="card_detail_inner">
  7449. <ulclass="cardinfo_head">
  7450. <liclass="cardno">BT16-077</li>
  7451. <li>SR</li>
  7452. <liclass="cardtype">Digimon</li>
  7453. <liclass="cardlv">Lv.5</li>
  7454. </ul>
  7455. <divclass="card_name">Dinobeemon</div>
  7456. <divclass="cardinfo_top">
  7457. <divclass="card_img">
  7458. <imgsrc="../images/cardlist/card/BT16-077.png"alt="BT16-077Dinobeemon"></div>
  7459. <divclass="cardinfo_top_body">
  7460. <dl>
  7461. <dt>Color</dt>
  7462. <ddclass="cardColor">
  7463. <spanclass="cardColor_purple">Purple</span>
  7464. <spanclass="cardColor_red">Red</span>
  7465. </dd>
  7466. </dl>
  7467. <dl>
  7468. <dt>Form</dt>
  7469. <dd>Ultimate</dd>
  7470. </dl>
  7471. <dl>
  7472. <dt>Attribute</dt>
  7473. <dd>Free</dd>
  7474. </dl>
  7475. <dl>
  7476. <dt>Type</dt>
  7477. <dd>Mutant</dd>
  7478. </dl>
  7479. <divclass="cardinfo_flex">
  7480. <dlclass="cardinfo_dp">
  7481. <dt>DP</dt>
  7482. <dd>8000</dl>
  7483. <dl>
  7484. <dt>PlayCost</dt>
  7485. <dd>8</dd>
  7486. </dl>
  7487. </div>
  7488. <dl>
  7489. <dt>DigivolveCost1</dt>
  7490. <dd>4fromLv.4</dd>
  7491. </dl>
  7492. <dl>
  7493. <dt>DigivolveCost2</dt>
  7494. <dd>4fromLv.4</dd>
  7495. </dl>
  7496. </div>
  7497. </div>
  7498. <divclass="cardinfo_bottom">
  7499. <dl>
  7500. <dt>Effect</dt>
  7501. <dd>[DNA Digivolution] Purple Lv.4 + red Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Raid> <Partition (purple Lv.4 & red Lv.4)> <br>[When Digivolving] If DNA digivolving, you may play 1 level 5 or lower Digimon card with the [Free] trait from your trash without paying the cost. Then, 1 of your Digimon may gain <Rush> for the turn and attack a player.</dd>
  7502. </dl>
  7503. <dl>
  7504. <dt>InheritedEffect</dt>
  7505. <dd><Partition (purple Lv.4 & red Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  7506. </dl>
  7507. <dl>
  7508. <dt>SecurityEffect</dt>
  7509. <dd>-</dd>
  7510. </dl>
  7511. <dl>
  7512. <dt>Notes</dt>
  7513. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7514. <aclass="btn"href="/rule/?card_no=BT16-077"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7515. </div>
  7516. </div>
  7517. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7518. </div>
  7519. </div>
  7520. </li>
  7521. <liclass="image_lists_itemdatapage-3">
  7522. <aclass="card_img">
  7523. <imgsrc="../images/cardlist/card/BT16-077_P1.png"alt="BT16-077Dinobeemon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7524. </a>
  7525. <divclass="popup">
  7526. <divclass="card_detailcard_detail_purple_redmulticolor">
  7527. <divclass="card_detail_inner">
  7528. <ulclass="cardinfo_head">
  7529. <liclass="cardno">BT16-077</li>
  7530. <li>SR</li>
  7531. <liclass="cardtype">Digimon</li>
  7532. <liclass="cardlv">Lv.5</li>
  7533. <liclass="cardtypecardParallel">AlternativeArt</li>
  7534. </ul>
  7535. <divclass="card_name">Dinobeemon</div>
  7536. <divclass="cardinfo_top">
  7537. <divclass="card_img">
  7538. <imgsrc="../images/cardlist/card/BT16-077_P1.png"alt="BT16-077Dinobeemon"></div>
  7539. <divclass="cardinfo_top_body">
  7540. <dl>
  7541. <dt>Color</dt>
  7542. <ddclass="cardColor">
  7543. <spanclass="cardColor_purple">Purple</span>
  7544. <spanclass="cardColor_red">Red</span>
  7545. </dd>
  7546. </dl>
  7547. <dl>
  7548. <dt>Form</dt>
  7549. <dd>Ultimate</dd>
  7550. </dl>
  7551. <dl>
  7552. <dt>Attribute</dt>
  7553. <dd>Free</dd>
  7554. </dl>
  7555. <dl>
  7556. <dt>Type</dt>
  7557. <dd>Mutant</dd>
  7558. </dl>
  7559. <divclass="cardinfo_flex">
  7560. <dlclass="cardinfo_dp">
  7561. <dt>DP</dt>
  7562. <dd>8000</dl>
  7563. <dl>
  7564. <dt>PlayCost</dt>
  7565. <dd>8</dd>
  7566. </dl>
  7567. </div>
  7568. <dl>
  7569. <dt>DigivolveCost1</dt>
  7570. <dd>4fromLv.4</dd>
  7571. </dl>
  7572. <dl>
  7573. <dt>DigivolveCost2</dt>
  7574. <dd>4fromLv.4</dd>
  7575. </dl>
  7576. </div>
  7577. </div>
  7578. <divclass="cardinfo_bottom">
  7579. <dl>
  7580. <dt>Effect</dt>
  7581. <dd>[DNA Digivolution] Purple Lv.4 + red Lv.4: Cost 0 Digivolve unsuspended with the 2 specified Digimon stacked on top of each other.<br><Raid> <Partition (purple Lv.4 & red Lv.4)> <br>[When Digivolving] If DNA digivolving, you may play 1 level 5 or lower Digimon card with the [Free] trait from your trash without paying the cost. Then, 1 of your Digimon may gain <Rush> for the turn and attack a player.</dd>
  7582. </dl>
  7583. <dl>
  7584. <dt>InheritedEffect</dt>
  7585. <dd><Partition (purple Lv.4 & red Lv.4)> (When this Digimon with each of the specified digivolution cards would leave the battle area other than by your effects or a battle, you may play 1 each of the specified cards without paying the costs.)</dd>
  7586. </dl>
  7587. <dl>
  7588. <dt>SecurityEffect</dt>
  7589. <dd>-</dd>
  7590. </dl>
  7591. <dl>
  7592. <dt>Notes</dt>
  7593. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7594. <aclass="btn"href="/rule/?card_no=BT16-077"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7595. </div>
  7596. </div>
  7597. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7598. </div>
  7599. </div>
  7600. </li>
  7601. <liclass="image_lists_itemdatapage-3">
  7602. <aclass="card_img">
  7603. <imgsrc="../images/cardlist/card/BT16-078.png"alt="BT16-078Pharaohmon"></a>
  7604. <divclass="popup">
  7605. <divclass="card_detailcard_detail_purple">
  7606. <divclass="card_detail_inner">
  7607. <ulclass="cardinfo_head">
  7608. <liclass="cardno">BT16-078</li>
  7609. <li>U</li>
  7610. <liclass="cardtype">Digimon</li>
  7611. <liclass="cardlv">Lv.6</li>
  7612. </ul>
  7613. <divclass="card_name">Pharaohmon</div>
  7614. <divclass="cardinfo_top">
  7615. <divclass="card_img">
  7616. <imgsrc="../images/cardlist/card/BT16-078.png"alt="BT16-078Pharaohmon"></div>
  7617. <divclass="cardinfo_top_body">
  7618. <dl>
  7619. <dt>Color</dt>
  7620. <ddclass="cardColor">
  7621. <spanclass="cardColor_purple">Purple</span>
  7622. </dd>
  7623. </dl>
  7624. <dl>
  7625. <dt>Form</dt>
  7626. <dd>Mega</dd>
  7627. </dl>
  7628. <dl>
  7629. <dt>Attribute</dt>
  7630. <dd>Virus</dd>
  7631. </dl>
  7632. <dl>
  7633. <dt>Type</dt>
  7634. <dd>Wizard</dd>
  7635. </dl>
  7636. <divclass="cardinfo_flex">
  7637. <dlclass="cardinfo_dp">
  7638. <dt>DP</dt>
  7639. <dd>12000</dl>
  7640. <dl>
  7641. <dt>PlayCost</dt>
  7642. <dd>12</dd>
  7643. </dl>
  7644. </div>
  7645. <dl>
  7646. <dt>DigivolveCost1</dt>
  7647. <dd>4fromLv.5</dd>
  7648. </dl>
  7649. <dl>
  7650. <dt>DigivolveCost2</dt>
  7651. <dd>-</dd>
  7652. </dl>
  7653. </div>
  7654. </div>
  7655. <divclass="cardinfo_bottom">
  7656. <dl>
  7657. <dt>Effect</dt>
  7658. <dd>[On Play] [When Digivolving] Delete 1 level 4 or lower Digimon.<br>[Your Turn] [Once Per Turn] When an effect deletes another Digimon, you may play 1 level 5 or lower Digimon card with the [Undead] or [Dark Animal] trait from your trash without paying the cost.</dd>
  7659. </dl>
  7660. <dl>
  7661. <dt>InheritedEffect</dt>
  7662. <dd>-</dd>
  7663. </dl>
  7664. <dl>
  7665. <dt>SecurityEffect</dt>
  7666. <dd>-</dd>
  7667. </dl>
  7668. <dl>
  7669. <dt>Notes</dt>
  7670. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7671. <aclass="btn"href="/rule/?card_no=BT16-078"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7672. </div>
  7673. </div>
  7674. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7675. </div>
  7676. </div>
  7677. </li>
  7678. <liclass="image_lists_itemdatapage-3">
  7679. <aclass="card_img">
  7680. <imgsrc="../images/cardlist/card/BT16-079.png"alt="BT16-079Cherubimon(XAntibody)"></a>
  7681. <divclass="popup">
  7682. <divclass="card_detailcard_detail_purple_greenmulticolor">
  7683. <divclass="card_detail_inner">
  7684. <ulclass="cardinfo_head">
  7685. <liclass="cardno">BT16-079</li>
  7686. <li>R</li>
  7687. <liclass="cardtype">Digimon</li>
  7688. <liclass="cardlv">Lv.6</li>
  7689. </ul>
  7690. <divclass="card_name">Cherubimon(XAntibody)</div>
  7691. <divclass="cardinfo_top">
  7692. <divclass="card_img">
  7693. <imgsrc="../images/cardlist/card/BT16-079.png"alt="BT16-079Cherubimon(XAntibody)"></div>
  7694. <divclass="cardinfo_top_body">
  7695. <dl>
  7696. <dt>Color</dt>
  7697. <ddclass="cardColor">
  7698. <spanclass="cardColor_purple">Purple</span>
  7699. <spanclass="cardColor_green">Green</span>
  7700. </dd>
  7701. </dl>
  7702. <dl>
  7703. <dt>Form</dt>
  7704. <dd>Mega</dd>
  7705. </dl>
  7706. <dl>
  7707. <dt>Attribute</dt>
  7708. <dd>Vaccine</dd>
  7709. </dl>
  7710. <dl>
  7711. <dt>Type</dt>
  7712. <dd>Cherub/XAntibody</dd>
  7713. </dl>
  7714. <divclass="cardinfo_flex">
  7715. <dlclass="cardinfo_dp">
  7716. <dt>DP</dt>
  7717. <dd>13000</dl>
  7718. <dl>
  7719. <dt>PlayCost</dt>
  7720. <dd>13</dd>
  7721. </dl>
  7722. </div>
  7723. <dl>
  7724. <dt>DigivolveCost1</dt>
  7725. <dd>5fromLv.5</dd>
  7726. </dl>
  7727. <dl>
  7728. <dt>DigivolveCost2</dt>
  7729. <dd>5fromLv.5</dd>
  7730. </dl>
  7731. </div>
  7732. </div>
  7733. <divclass="cardinfo_bottom">
  7734. <dl>
  7735. <dt>Effect</dt>
  7736. <dd>[Digivolve] [Cherubimon]: Cost 2<br><Alliance> <br>[When Digivolving] [When Attacking] [Once Per Turn] You may play 1 level 4 or lower yellow or green Digimon card from your hand or trash without paying the cost. <br>[End of Your Turn] [Once Per Turn] If [Cherubimon] or [X Antibody] is in this Digimon's digivolution cards, you may delete 1 of your opponent's level 4 or lower Digimon. For each of your other Digimon, add 1 to this effect's choosable levels.</dd>
  7737. </dl>
  7738. <dl>
  7739. <dt>InheritedEffect</dt>
  7740. <dd>-</dd>
  7741. </dl>
  7742. <dl>
  7743. <dt>SecurityEffect</dt>
  7744. <dd>-</dd>
  7745. </dl>
  7746. <dl>
  7747. <dt>Notes</dt>
  7748. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7749. </div>
  7750. </div>
  7751. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7752. </div>
  7753. </div>
  7754. </li>
  7755. <liclass="image_lists_itemdatapage-3">
  7756. <aclass="card_img">
  7757. <imgsrc="../images/cardlist/card/BT16-080.png"alt="BT16-080Shroudmon"></a>
  7758. <divclass="popup">
  7759. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  7760. <divclass="card_detail_inner">
  7761. <ulclass="cardinfo_head">
  7762. <liclass="cardno">BT16-080</li>
  7763. <li>SR</li>
  7764. <liclass="cardtype">Digimon</li>
  7765. <liclass="cardlv">Lv.6</li>
  7766. </ul>
  7767. <divclass="card_name">Shroudmon</div>
  7768. <divclass="cardinfo_top">
  7769. <divclass="card_img">
  7770. <imgsrc="../images/cardlist/card/BT16-080.png"alt="BT16-080Shroudmon"></div>
  7771. <divclass="cardinfo_top_body">
  7772. <dl>
  7773. <dt>Color</dt>
  7774. <ddclass="cardColor">
  7775. <spanclass="cardColor_purple">Purple</span>
  7776. <spanclass="cardColor_yellow">Yellow</span>
  7777. </dd>
  7778. </dl>
  7779. <dl>
  7780. <dt>Form</dt>
  7781. <dd>Mega</dd>
  7782. </dl>
  7783. <dl>
  7784. <dt>Attribute</dt>
  7785. <dd>Virus</dd>
  7786. </dl>
  7787. <dl>
  7788. <dt>Type</dt>
  7789. <dd>Wizard</dd>
  7790. </dl>
  7791. <divclass="cardinfo_flex">
  7792. <dlclass="cardinfo_dp">
  7793. <dt>DP</dt>
  7794. <dd>13000</dl>
  7795. <dl>
  7796. <dt>PlayCost</dt>
  7797. <dd>13</dd>
  7798. </dl>
  7799. </div>
  7800. <dl>
  7801. <dt>DigivolveCost1</dt>
  7802. <dd>5fromLv.5</dd>
  7803. </dl>
  7804. <dl>
  7805. <dt>DigivolveCost2</dt>
  7806. <dd>5fromLv.5</dd>
  7807. </dl>
  7808. </div>
  7809. </div>
  7810. <divclass="cardinfo_bottom">
  7811. <dl>
  7812. <dt>Effect</dt>
  7813. <dd>[Digivolve] Lv.5 w/[Pulsemon] in text: Cost 5<br>[When Digivolving] [End of Attack] [Once Per Turn] If you have 3 or more security cards, 1 of your opponent's Digimon gets -7000 DP for the turn. If you have 3 or fewer, delete 1 of their unsuspended Digimon. <br>[All Turns] When this Digimon would leave the battle area by an opponent's effect, if you have 3 or more security cards, by trashing the top card of your security stack, prevent it from leaving. <br>[On Deletion] <Recovery +1 (Deck)> until there are 3 cards in your security stack.</dd>
  7814. </dl>
  7815. <dl>
  7816. <dt>InheritedEffect</dt>
  7817. <dd>-</dd>
  7818. </dl>
  7819. <dl>
  7820. <dt>SecurityEffect</dt>
  7821. <dd>-</dd>
  7822. </dl>
  7823. <dl>
  7824. <dt>Notes</dt>
  7825. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7826. <aclass="btn"href="/rule/?card_no=BT16-080"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7827. </div>
  7828. </div>
  7829. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7830. </div>
  7831. </div>
  7832. </li>
  7833. <liclass="image_lists_itemdatapage-3">
  7834. <aclass="card_img">
  7835. <imgsrc="../images/cardlist/card/BT16-080_P1.png"alt="BT16-080Shroudmon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  7836. </a>
  7837. <divclass="popup">
  7838. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  7839. <divclass="card_detail_inner">
  7840. <ulclass="cardinfo_head">
  7841. <liclass="cardno">BT16-080</li>
  7842. <li>SR</li>
  7843. <liclass="cardtype">Digimon</li>
  7844. <liclass="cardlv">Lv.6</li>
  7845. <liclass="cardtypecardParallel">AlternativeArt</li>
  7846. </ul>
  7847. <divclass="card_name">Shroudmon</div>
  7848. <divclass="cardinfo_top">
  7849. <divclass="card_img">
  7850. <imgsrc="../images/cardlist/card/BT16-080_P1.png"alt="BT16-080Shroudmon"></div>
  7851. <divclass="cardinfo_top_body">
  7852. <dl>
  7853. <dt>Color</dt>
  7854. <ddclass="cardColor">
  7855. <spanclass="cardColor_purple">Purple</span>
  7856. <spanclass="cardColor_yellow">Yellow</span>
  7857. </dd>
  7858. </dl>
  7859. <dl>
  7860. <dt>Form</dt>
  7861. <dd>Mega</dd>
  7862. </dl>
  7863. <dl>
  7864. <dt>Attribute</dt>
  7865. <dd>Virus</dd>
  7866. </dl>
  7867. <dl>
  7868. <dt>Type</dt>
  7869. <dd>Wizard</dd>
  7870. </dl>
  7871. <divclass="cardinfo_flex">
  7872. <dlclass="cardinfo_dp">
  7873. <dt>DP</dt>
  7874. <dd>13000</dl>
  7875. <dl>
  7876. <dt>PlayCost</dt>
  7877. <dd>13</dd>
  7878. </dl>
  7879. </div>
  7880. <dl>
  7881. <dt>DigivolveCost1</dt>
  7882. <dd>5fromLv.5</dd>
  7883. </dl>
  7884. <dl>
  7885. <dt>DigivolveCost2</dt>
  7886. <dd>5fromLv.5</dd>
  7887. </dl>
  7888. </div>
  7889. </div>
  7890. <divclass="cardinfo_bottom">
  7891. <dl>
  7892. <dt>Effect</dt>
  7893. <dd>[Digivolve] Lv.5 w/[Pulsemon] in text: Cost 5<br>[When Digivolving] [End of Attack] [Once Per Turn] If you have 3 or more security cards, 1 of your opponent's Digimon gets -7000 DP for the turn. If you have 3 or fewer, delete 1 of their unsuspended Digimon. <br>[All Turns] When this Digimon would leave the battle area by an opponent's effect, if you have 3 or more security cards, by trashing the top card of your security stack, prevent it from leaving. <br>[On Deletion] <Recovery +1 (Deck)> until there are 3 cards in your security stack.</dd>
  7894. </dl>
  7895. <dl>
  7896. <dt>InheritedEffect</dt>
  7897. <dd>-</dd>
  7898. </dl>
  7899. <dl>
  7900. <dt>SecurityEffect</dt>
  7901. <dd>-</dd>
  7902. </dl>
  7903. <dl>
  7904. <dt>Notes</dt>
  7905. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7906. <aclass="btn"href="/rule/?card_no=BT16-080"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  7907. </div>
  7908. </div>
  7909. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7910. </div>
  7911. </div>
  7912. </li>
  7913. <liclass="image_lists_itemdatapage-3">
  7914. <aclass="card_img">
  7915. <imgsrc="../images/cardlist/card/BT16-081.png"alt="BT16-081MaloMyotismon"></a>
  7916. <divclass="popup">
  7917. <divclass="card_detailcard_detail_purple">
  7918. <divclass="card_detail_inner">
  7919. <ulclass="cardinfo_head">
  7920. <liclass="cardno">BT16-081</li>
  7921. <li>SR</li>
  7922. <liclass="cardtype">Digimon</li>
  7923. <liclass="cardlv">Lv.6</li>
  7924. </ul>
  7925. <divclass="card_name">MaloMyotismon</div>
  7926. <divclass="cardinfo_top">
  7927. <divclass="card_img">
  7928. <imgsrc="../images/cardlist/card/BT16-081.png"alt="BT16-081MaloMyotismon"></div>
  7929. <divclass="cardinfo_top_body">
  7930. <dl>
  7931. <dt>Color</dt>
  7932. <ddclass="cardColor">
  7933. <spanclass="cardColor_purple">Purple</span>
  7934. </dd>
  7935. </dl>
  7936. <dl>
  7937. <dt>Form</dt>
  7938. <dd>Mega</dd>
  7939. </dl>
  7940. <dl>
  7941. <dt>Attribute</dt>
  7942. <dd>Virus</dd>
  7943. </dl>
  7944. <dl>
  7945. <dt>Type</dt>
  7946. <dd>DemonLord</dd>
  7947. </dl>
  7948. <divclass="cardinfo_flex">
  7949. <dlclass="cardinfo_dp">
  7950. <dt>DP</dt>
  7951. <dd>13000</dl>
  7952. <dl>
  7953. <dt>PlayCost</dt>
  7954. <dd>13</dd>
  7955. </dl>
  7956. </div>
  7957. <dl>
  7958. <dt>DigivolveCost1</dt>
  7959. <dd>5fromLv.5</dd>
  7960. </dl>
  7961. <dl>
  7962. <dt>DigivolveCost2</dt>
  7963. <dd>-</dd>
  7964. </dl>
  7965. </div>
  7966. </div>
  7967. <divclass="cardinfo_bottom">
  7968. <dl>
  7969. <dt>Effect</dt>
  7970. <dd>[When Digivolving] [When Attacking] By deleting 1 of your Digimon or Tamers, delete 1 of your opponent's unsuspended Digimon. If this effect didn't delete an opponent's Digimon, delete 1 of their Tamers. <br>[All Turns] [Once Per Turn] When an effect deletes one of your other Digimon or Tamers, trash the top card of your opponent's security stack.</dd>
  7971. </dl>
  7972. <dl>
  7973. <dt>InheritedEffect</dt>
  7974. <dd>-</dd>
  7975. </dl>
  7976. <dl>
  7977. <dt>SecurityEffect</dt>
  7978. <dd>-</dd>
  7979. </dl>
  7980. <dl>
  7981. <dt>Notes</dt>
  7982. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  7983. </div>
  7984. </div>
  7985. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  7986. </div>
  7987. </div>
  7988. </li>
  7989. <liclass="image_lists_itemdatapage-3">
  7990. <aclass="card_img">
  7991. <imgsrc="../images/cardlist/card/BT16-081_P1.png"alt="BT16-081MaloMyotismon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_purple.png">
  7992. </a>
  7993. <divclass="popup">
  7994. <divclass="card_detailcard_detail_purple">
  7995. <divclass="card_detail_inner">
  7996. <ulclass="cardinfo_head">
  7997. <liclass="cardno">BT16-081</li>
  7998. <li>SR</li>
  7999. <liclass="cardtype">Digimon</li>
  8000. <liclass="cardlv">Lv.6</li>
  8001. <liclass="cardtypecardParallel">AlternativeArt</li>
  8002. </ul>
  8003. <divclass="card_name">MaloMyotismon</div>
  8004. <divclass="cardinfo_top">
  8005. <divclass="card_img">
  8006. <imgsrc="../images/cardlist/card/BT16-081_P1.png"alt="BT16-081MaloMyotismon"></div>
  8007. <divclass="cardinfo_top_body">
  8008. <dl>
  8009. <dt>Color</dt>
  8010. <ddclass="cardColor">
  8011. <spanclass="cardColor_purple">Purple</span>
  8012. </dd>
  8013. </dl>
  8014. <dl>
  8015. <dt>Form</dt>
  8016. <dd>Mega</dd>
  8017. </dl>
  8018. <dl>
  8019. <dt>Attribute</dt>
  8020. <dd>Virus</dd>
  8021. </dl>
  8022. <dl>
  8023. <dt>Type</dt>
  8024. <dd>DemonLord</dd>
  8025. </dl>
  8026. <divclass="cardinfo_flex">
  8027. <dlclass="cardinfo_dp">
  8028. <dt>DP</dt>
  8029. <dd>13000</dl>
  8030. <dl>
  8031. <dt>PlayCost</dt>
  8032. <dd>13</dd>
  8033. </dl>
  8034. </div>
  8035. <dl>
  8036. <dt>DigivolveCost1</dt>
  8037. <dd>5fromLv.5</dd>
  8038. </dl>
  8039. <dl>
  8040. <dt>DigivolveCost2</dt>
  8041. <dd>-</dd>
  8042. </dl>
  8043. </div>
  8044. </div>
  8045. <divclass="cardinfo_bottom">
  8046. <dl>
  8047. <dt>Effect</dt>
  8048. <dd>[When Digivolving] [When Attacking] By deleting 1 of your Digimon or Tamers, delete 1 of your opponent's unsuspended Digimon. If this effect didn't delete an opponent's Digimon, delete 1 of their Tamers. <br>[All Turns] [Once Per Turn] When an effect deletes one of your other Digimon or Tamers, trash the top card of your opponent's security stack.</dd>
  8049. </dl>
  8050. <dl>
  8051. <dt>InheritedEffect</dt>
  8052. <dd>-</dd>
  8053. </dl>
  8054. <dl>
  8055. <dt>SecurityEffect</dt>
  8056. <dd>-</dd>
  8057. </dl>
  8058. <dl>
  8059. <dt>Notes</dt>
  8060. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8061. </div>
  8062. </div>
  8063. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8064. </div>
  8065. </div>
  8066. </li>
  8067. <liclass="image_lists_itemdatapage-3">
  8068. <aclass="card_img">
  8069. <imgsrc="../images/cardlist/card/BT16-082.png"alt="BT16-082Ukkomon"></a>
  8070. <divclass="popup">
  8071. <divclass="card_detailcard_detail_white">
  8072. <divclass="card_detail_inner">
  8073. <ulclass="cardinfo_head">
  8074. <liclass="cardno">BT16-082</li>
  8075. <li>R</li>
  8076. <liclass="cardtype">Digimon</li>
  8077. <liclass="cardlv">Lv.3</li>
  8078. </ul>
  8079. <divclass="card_name">Ukkomon</div>
  8080. <divclass="cardinfo_top">
  8081. <divclass="card_img">
  8082. <imgsrc="../images/cardlist/card/BT16-082.png"alt="BT16-082Ukkomon"></div>
  8083. <divclass="cardinfo_top_body">
  8084. <dl>
  8085. <dt>Color</dt>
  8086. <ddclass="cardColor">
  8087. <spanclass="cardColor_white">White</span>
  8088. </dd>
  8089. </dl>
  8090. <dl>
  8091. <dt>Form</dt>
  8092. <dd>Rookie</dd>
  8093. </dl>
  8094. <dl>
  8095. <dt>Attribute</dt>
  8096. <dd>Free</dd>
  8097. </dl>
  8098. <dl>
  8099. <dt>Type</dt>
  8100. <dd>AncientFairy</dd>
  8101. </dl>
  8102. <divclass="cardinfo_flex">
  8103. <dlclass="cardinfo_dp">
  8104. <dt>DP</dt>
  8105. <dd>2000</dl>
  8106. <dl>
  8107. <dt>PlayCost</dt>
  8108. <dd>3</dd>
  8109. </dl>
  8110. </div>
  8111. <dl>
  8112. <dt>DigivolveCost1</dt>
  8113. <dd>1fromLv.2</dd>
  8114. </dl>
  8115. <dl>
  8116. <dt>DigivolveCost2</dt>
  8117. <dd>-</dd>
  8118. </dl>
  8119. </div>
  8120. </div>
  8121. <divclass="cardinfo_bottom">
  8122. <dl>
  8123. <dt>Effect</dt>
  8124. <dd>[Your Turn] [Once Per Turn] When one of your Digimon moves from the breeding area to the battle area, reveal the top 3 cards of your deck. Add 1 Digimon card or Tamer card among them to the hand. Return the rest to the bottom of the deck. Then, you may hatch in your breeding area.</dd>
  8125. </dl>
  8126. <dl>
  8127. <dt>InheritedEffect</dt>
  8128. <dd>-</dd>
  8129. </dl>
  8130. <dl>
  8131. <dt>SecurityEffect</dt>
  8132. <dd>-</dd>
  8133. </dl>
  8134. <dl>
  8135. <dt>Notes</dt>
  8136. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8137. <aclass="btn"href="/rule/?card_no=BT16-082"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8138. </div>
  8139. </div>
  8140. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8141. </div>
  8142. </div>
  8143. </li>
  8144. <liclass="image_lists_itemdatapage-3">
  8145. <aclass="card_img">
  8146. <imgsrc="../images/cardlist/card/BT16-082_P1.png"alt="BT16-082Ukkomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8147. </a>
  8148. <divclass="popup">
  8149. <divclass="card_detailcard_detail_white">
  8150. <divclass="card_detail_inner">
  8151. <ulclass="cardinfo_head">
  8152. <liclass="cardno">BT16-082</li>
  8153. <li>R</li>
  8154. <liclass="cardtype">Digimon</li>
  8155. <liclass="cardlv">Lv.3</li>
  8156. <liclass="cardtypecardParallel">AlternativeArt</li>
  8157. </ul>
  8158. <divclass="card_name">Ukkomon</div>
  8159. <divclass="cardinfo_top">
  8160. <divclass="card_img">
  8161. <imgsrc="../images/cardlist/card/BT16-082_P1.png"alt="BT16-082Ukkomon"></div>
  8162. <divclass="cardinfo_top_body">
  8163. <dl>
  8164. <dt>Color</dt>
  8165. <ddclass="cardColor">
  8166. <spanclass="cardColor_white">White</span>
  8167. </dd>
  8168. </dl>
  8169. <dl>
  8170. <dt>Form</dt>
  8171. <dd>Rookie</dd>
  8172. </dl>
  8173. <dl>
  8174. <dt>Attribute</dt>
  8175. <dd>Free</dd>
  8176. </dl>
  8177. <dl>
  8178. <dt>Type</dt>
  8179. <dd>AncientFairy</dd>
  8180. </dl>
  8181. <divclass="cardinfo_flex">
  8182. <dlclass="cardinfo_dp">
  8183. <dt>DP</dt>
  8184. <dd>2000</dl>
  8185. <dl>
  8186. <dt>PlayCost</dt>
  8187. <dd>3</dd>
  8188. </dl>
  8189. </div>
  8190. <dl>
  8191. <dt>DigivolveCost1</dt>
  8192. <dd>1fromLv.2</dd>
  8193. </dl>
  8194. <dl>
  8195. <dt>DigivolveCost2</dt>
  8196. <dd>-</dd>
  8197. </dl>
  8198. </div>
  8199. </div>
  8200. <divclass="cardinfo_bottom">
  8201. <dl>
  8202. <dt>Effect</dt>
  8203. <dd>[Your Turn] [Once Per Turn] When one of your Digimon moves from the breeding area to the battle area, reveal the top 3 cards of your deck. Add 1 Digimon card or Tamer card among them to the hand. Return the rest to the bottom of the deck. Then, you may hatch in your breeding area.</dd>
  8204. </dl>
  8205. <dl>
  8206. <dt>InheritedEffect</dt>
  8207. <dd>-</dd>
  8208. </dl>
  8209. <dl>
  8210. <dt>SecurityEffect</dt>
  8211. <dd>-</dd>
  8212. </dl>
  8213. <dl>
  8214. <dt>Notes</dt>
  8215. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8216. <aclass="btn"href="/rule/?card_no=BT16-082"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8217. </div>
  8218. </div>
  8219. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8220. </div>
  8221. </div>
  8222. </li>
  8223. <liclass="image_lists_itemdatapage-3">
  8224. <aclass="card_img">
  8225. <imgsrc="../images/cardlist/card/BT16-083.png"alt="BT16-083BigUkkomon"></a>
  8226. <divclass="popup">
  8227. <divclass="card_detailcard_detail_white">
  8228. <divclass="card_detail_inner">
  8229. <ulclass="cardinfo_head">
  8230. <liclass="cardno">BT16-083</li>
  8231. <li>SR</li>
  8232. <liclass="cardtype">Digimon</li>
  8233. <liclass="cardlv">Lv.6</li>
  8234. </ul>
  8235. <divclass="card_name">BigUkkomon</div>
  8236. <divclass="cardinfo_top">
  8237. <divclass="card_img">
  8238. <imgsrc="../images/cardlist/card/BT16-083.png"alt="BT16-083BigUkkomon"></div>
  8239. <divclass="cardinfo_top_body">
  8240. <dl>
  8241. <dt>Color</dt>
  8242. <ddclass="cardColor">
  8243. <spanclass="cardColor_white">White</span>
  8244. </dd>
  8245. </dl>
  8246. <dl>
  8247. <dt>Form</dt>
  8248. <dd>Mega</dd>
  8249. </dl>
  8250. <dl>
  8251. <dt>Attribute</dt>
  8252. <dd>Free</dd>
  8253. </dl>
  8254. <dl>
  8255. <dt>Type</dt>
  8256. <dd>AncientFairy</dd>
  8257. </dl>
  8258. <divclass="cardinfo_flex">
  8259. <dlclass="cardinfo_dp">
  8260. <dt>DP</dt>
  8261. <dd>13000</dl>
  8262. <dl>
  8263. <dt>PlayCost</dt>
  8264. <dd>12</dd>
  8265. </dl>
  8266. </div>
  8267. <dl>
  8268. <dt>DigivolveCost1</dt>
  8269. <dd>5fromLv.5</dd>
  8270. </dl>
  8271. <dl>
  8272. <dt>DigivolveCost2</dt>
  8273. <dd>-</dd>
  8274. </dl>
  8275. </div>
  8276. </div>
  8277. <divclass="cardinfo_bottom">
  8278. <dl>
  8279. <dt>Effect</dt>
  8280. <dd>[On Deletion] Return all Tamers to their owners' hands. Then, you may play 1 Tamer card from your hand and 1 [Ukkomon] from your trash without paying the costs. <br>[End of Your Turn] [Once Per Turn] By returning 1 Digi-Egg card from your trash to the bottom of the Digi-Egg deck, delete 1 of your opponent's Digimon with the lowest level. Then, you may play 1 level 4 or lower Digimon card from your hand to an empty space in your breeding area without paying the cost.</dd>
  8281. </dl>
  8282. <dl>
  8283. <dt>InheritedEffect</dt>
  8284. <dd>-</dd>
  8285. </dl>
  8286. <dl>
  8287. <dt>SecurityEffect</dt>
  8288. <dd>-</dd>
  8289. </dl>
  8290. <dl>
  8291. <dt>Notes</dt>
  8292. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8293. <aclass="btn"href="/rule/?card_no=BT16-083"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8294. </div>
  8295. </div>
  8296. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8297. </div>
  8298. </div>
  8299. </li>
  8300. <liclass="image_lists_itemdatapage-3">
  8301. <aclass="card_img">
  8302. <imgsrc="../images/cardlist/card/BT16-083_P1.png"alt="BT16-083BigUkkomon"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  8303. </a>
  8304. <divclass="popup">
  8305. <divclass="card_detailcard_detail_white">
  8306. <divclass="card_detail_inner">
  8307. <ulclass="cardinfo_head">
  8308. <liclass="cardno">BT16-083</li>
  8309. <li>SR</li>
  8310. <liclass="cardtype">Digimon</li>
  8311. <liclass="cardlv">Lv.6</li>
  8312. <liclass="cardtypecardParallel">AlternativeArt</li>
  8313. </ul>
  8314. <divclass="card_name">BigUkkomon</div>
  8315. <divclass="cardinfo_top">
  8316. <divclass="card_img">
  8317. <imgsrc="../images/cardlist/card/BT16-083_P1.png"alt="BT16-083BigUkkomon"></div>
  8318. <divclass="cardinfo_top_body">
  8319. <dl>
  8320. <dt>Color</dt>
  8321. <ddclass="cardColor">
  8322. <spanclass="cardColor_white">White</span>
  8323. </dd>
  8324. </dl>
  8325. <dl>
  8326. <dt>Form</dt>
  8327. <dd>Mega</dd>
  8328. </dl>
  8329. <dl>
  8330. <dt>Attribute</dt>
  8331. <dd>Free</dd>
  8332. </dl>
  8333. <dl>
  8334. <dt>Type</dt>
  8335. <dd>AncientFairy</dd>
  8336. </dl>
  8337. <divclass="cardinfo_flex">
  8338. <dlclass="cardinfo_dp">
  8339. <dt>DP</dt>
  8340. <dd>13000</dl>
  8341. <dl>
  8342. <dt>PlayCost</dt>
  8343. <dd>12</dd>
  8344. </dl>
  8345. </div>
  8346. <dl>
  8347. <dt>DigivolveCost1</dt>
  8348. <dd>5fromLv.5</dd>
  8349. </dl>
  8350. <dl>
  8351. <dt>DigivolveCost2</dt>
  8352. <dd>-</dd>
  8353. </dl>
  8354. </div>
  8355. </div>
  8356. <divclass="cardinfo_bottom">
  8357. <dl>
  8358. <dt>Effect</dt>
  8359. <dd>[On Deletion] Return all Tamers to their owners' hands. Then, you may play 1 Tamer card from your hand and 1 [Ukkomon] from your trash without paying the costs. <br>[End of Your Turn] [Once Per Turn] By returning 1 Digi-Egg card from your trash to the bottom of the Digi-Egg deck, delete 1 of your opponent's Digimon with the lowest level. Then, you may play 1 level 4 or lower Digimon card from your hand to an empty space in your breeding area without paying the cost.</dd>
  8360. </dl>
  8361. <dl>
  8362. <dt>InheritedEffect</dt>
  8363. <dd>-</dd>
  8364. </dl>
  8365. <dl>
  8366. <dt>SecurityEffect</dt>
  8367. <dd>-</dd>
  8368. </dl>
  8369. <dl>
  8370. <dt>Notes</dt>
  8371. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8372. <aclass="btn"href="/rule/?card_no=BT16-083"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8373. </div>
  8374. </div>
  8375. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8376. </div>
  8377. </div>
  8378. </li>
  8379. <liclass="image_lists_itemdatapage-3">
  8380. <aclass="card_img">
  8381. <imgsrc="../images/cardlist/card/BT16-084.png"alt="BT16-084YoleiInoue&KariKamiya"></a>
  8382. <divclass="popup">
  8383. <divclass="card_detailcard_detail_red_yellowmulticolor">
  8384. <divclass="card_detail_inner">
  8385. <ulclass="cardinfo_head">
  8386. <liclass="cardno">BT16-084</li>
  8387. <li>R</li>
  8388. <liclass="cardtype">Tamer</li>
  8389. </ul>
  8390. <divclass="card_name">YoleiInoue&KariKamiya</div>
  8391. <divclass="cardinfo_top">
  8392. <divclass="card_img">
  8393. <imgsrc="../images/cardlist/card/BT16-084.png"alt="BT16-084YoleiInoue&KariKamiya"></div>
  8394. <divclass="cardinfo_top_body">
  8395. <dl>
  8396. <dt>Color</dt>
  8397. <ddclass="cardColor">
  8398. <spanclass="cardColor_red">Red</span>
  8399. <spanclass="cardColor_yellow">Yellow</span>
  8400. </dd>
  8401. </dl>
  8402. <dl>
  8403. <dt>Form</dt>
  8404. <dd>-</dd>
  8405. </dl>
  8406. <dl>
  8407. <dt>Attribute</dt>
  8408. <dd>-</dd>
  8409. </dl>
  8410. <dl>
  8411. <dt>Type</dt>
  8412. <dd>-</dd>
  8413. </dl>
  8414. <divclass="cardinfo_flex">
  8415. <dlclass="cardinfo_dp">
  8416. <dt>DP</dt>
  8417. <dd>-</dl>
  8418. <dl>
  8419. <dt>PlayCost</dt>
  8420. <dd>4</dd>
  8421. </dl>
  8422. </div>
  8423. <dl>
  8424. <dt>DigivolveCost1</dt>
  8425. <dd>-</dd>
  8426. </dl>
  8427. <dl>
  8428. <dt>DigivolveCost2</dt>
  8429. <dd>-</dd>
  8430. </dl>
  8431. </div>
  8432. </div>
  8433. <divclass="cardinfo_bottom">
  8434. <dl>
  8435. <dt>Effect</dt>
  8436. <dd>[Start of Your Main Phase] You may play 1 [Hawkmon] or [Salamon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a red or yellow Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  8437. </dl>
  8438. <dl>
  8439. <dt>InheritedEffect</dt>
  8440. <dd>-</dd>
  8441. </dl>
  8442. <dl>
  8443. <dt>SecurityEffect</dt>
  8444. <dd>[Security] Play this card without paying the cost.</dd>
  8445. </dl>
  8446. <dl>
  8447. <dt>Notes</dt>
  8448. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8449. <aclass="btn"href="/rule/?card_no=BT16-084"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8450. </div>
  8451. </div>
  8452. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8453. </div>
  8454. </div>
  8455. </li>
  8456. <liclass="image_lists_itemdatapage-3">
  8457. <aclass="card_img">
  8458. <imgsrc="../images/cardlist/card/BT16-084_P1.png"alt="BT16-084YoleiInoue&KariKamiya"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  8459. </a>
  8460. <divclass="popup">
  8461. <divclass="card_detailcard_detail_red_yellowmulticolor">
  8462. <divclass="card_detail_inner">
  8463. <ulclass="cardinfo_head">
  8464. <liclass="cardno">BT16-084</li>
  8465. <li>R</li>
  8466. <liclass="cardtype">Tamer</li>
  8467. <liclass="cardtypecardParallel">AlternativeArt</li>
  8468. </ul>
  8469. <divclass="card_name">YoleiInoue&KariKamiya</div>
  8470. <divclass="cardinfo_top">
  8471. <divclass="card_img">
  8472. <imgsrc="../images/cardlist/card/BT16-084_P1.png"alt="BT16-084YoleiInoue&KariKamiya"></div>
  8473. <divclass="cardinfo_top_body">
  8474. <dl>
  8475. <dt>Color</dt>
  8476. <ddclass="cardColor">
  8477. <spanclass="cardColor_red">Red</span>
  8478. <spanclass="cardColor_yellow">Yellow</span>
  8479. </dd>
  8480. </dl>
  8481. <dl>
  8482. <dt>Form</dt>
  8483. <dd>-</dd>
  8484. </dl>
  8485. <dl>
  8486. <dt>Attribute</dt>
  8487. <dd>-</dd>
  8488. </dl>
  8489. <dl>
  8490. <dt>Type</dt>
  8491. <dd>-</dd>
  8492. </dl>
  8493. <divclass="cardinfo_flex">
  8494. <dlclass="cardinfo_dp">
  8495. <dt>DP</dt>
  8496. <dd>-</dl>
  8497. <dl>
  8498. <dt>PlayCost</dt>
  8499. <dd>4</dd>
  8500. </dl>
  8501. </div>
  8502. <dl>
  8503. <dt>DigivolveCost1</dt>
  8504. <dd>-</dd>
  8505. </dl>
  8506. <dl>
  8507. <dt>DigivolveCost2</dt>
  8508. <dd>-</dd>
  8509. </dl>
  8510. </div>
  8511. </div>
  8512. <divclass="cardinfo_bottom">
  8513. <dl>
  8514. <dt>Effect</dt>
  8515. <dd>[Start of Your Main Phase] You may play 1 [Hawkmon] or [Salamon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a red or yellow Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, 1 of your opponent's Digimon gets -3000 DP for the turn.</dd>
  8516. </dl>
  8517. <dl>
  8518. <dt>InheritedEffect</dt>
  8519. <dd>-</dd>
  8520. </dl>
  8521. <dl>
  8522. <dt>SecurityEffect</dt>
  8523. <dd>[Security] Play this card without paying the cost.</dd>
  8524. </dl>
  8525. <dl>
  8526. <dt>Notes</dt>
  8527. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8528. <aclass="btn"href="/rule/?card_no=BT16-084"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8529. </div>
  8530. </div>
  8531. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8532. </div>
  8533. </div>
  8534. </li>
  8535. <liclass="image_lists_itemdatapage-3">
  8536. <aclass="card_img">
  8537. <imgsrc="../images/cardlist/card/BT16-085.png"alt="BT16-085DavisMotomiya&KenIchijoji"></a>
  8538. <divclass="popup">
  8539. <divclass="card_detailcard_detail_blue_greenmulticolor">
  8540. <divclass="card_detail_inner">
  8541. <ulclass="cardinfo_head">
  8542. <liclass="cardno">BT16-085</li>
  8543. <li>R</li>
  8544. <liclass="cardtype">Tamer</li>
  8545. </ul>
  8546. <divclass="card_name">DavisMotomiya&KenIchijoji</div>
  8547. <divclass="cardinfo_top">
  8548. <divclass="card_img">
  8549. <imgsrc="../images/cardlist/card/BT16-085.png"alt="BT16-085DavisMotomiya&KenIchijoji"></div>
  8550. <divclass="cardinfo_top_body">
  8551. <dl>
  8552. <dt>Color</dt>
  8553. <ddclass="cardColor">
  8554. <spanclass="cardColor_blue">Blue</span>
  8555. <spanclass="cardColor_green">Green</span>
  8556. </dd>
  8557. </dl>
  8558. <dl>
  8559. <dt>Form</dt>
  8560. <dd>-</dd>
  8561. </dl>
  8562. <dl>
  8563. <dt>Attribute</dt>
  8564. <dd>-</dd>
  8565. </dl>
  8566. <dl>
  8567. <dt>Type</dt>
  8568. <dd>-</dd>
  8569. </dl>
  8570. <divclass="cardinfo_flex">
  8571. <dlclass="cardinfo_dp">
  8572. <dt>DP</dt>
  8573. <dd>-</dl>
  8574. <dl>
  8575. <dt>PlayCost</dt>
  8576. <dd>4</dd>
  8577. </dl>
  8578. </div>
  8579. <dl>
  8580. <dt>DigivolveCost1</dt>
  8581. <dd>-</dd>
  8582. </dl>
  8583. <dl>
  8584. <dt>DigivolveCost2</dt>
  8585. <dd>-</dd>
  8586. </dl>
  8587. </div>
  8588. </div>
  8589. <divclass="cardinfo_bottom">
  8590. <dl>
  8591. <dt>Effect</dt>
  8592. <dd>[Start of Your Main Phase] You may play 1 [Veemon] or [Wormmon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a blue or green Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, trash any 3 digivolution cards under your opponent's Digimon.</dd>
  8593. </dl>
  8594. <dl>
  8595. <dt>InheritedEffect</dt>
  8596. <dd>-</dd>
  8597. </dl>
  8598. <dl>
  8599. <dt>SecurityEffect</dt>
  8600. <dd>[Security] Play this card without paying the cost.</dd>
  8601. </dl>
  8602. <dl>
  8603. <dt>Notes</dt>
  8604. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8605. <aclass="btn"href="/rule/?card_no=BT16-085"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8606. </div>
  8607. </div>
  8608. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8609. </div>
  8610. </div>
  8611. </li>
  8612. <liclass="image_lists_itemdatapage-3">
  8613. <aclass="card_img">
  8614. <imgsrc="../images/cardlist/card/BT16-085_P1.png"alt="BT16-085DavisMotomiya&KenIchijoji"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  8615. </a>
  8616. <divclass="popup">
  8617. <divclass="card_detailcard_detail_blue_greenmulticolor">
  8618. <divclass="card_detail_inner">
  8619. <ulclass="cardinfo_head">
  8620. <liclass="cardno">BT16-085</li>
  8621. <li>R</li>
  8622. <liclass="cardtype">Tamer</li>
  8623. <liclass="cardtypecardParallel">AlternativeArt</li>
  8624. </ul>
  8625. <divclass="card_name">DavisMotomiya&KenIchijoji</div>
  8626. <divclass="cardinfo_top">
  8627. <divclass="card_img">
  8628. <imgsrc="../images/cardlist/card/BT16-085_P1.png"alt="BT16-085DavisMotomiya&KenIchijoji"></div>
  8629. <divclass="cardinfo_top_body">
  8630. <dl>
  8631. <dt>Color</dt>
  8632. <ddclass="cardColor">
  8633. <spanclass="cardColor_blue">Blue</span>
  8634. <spanclass="cardColor_green">Green</span>
  8635. </dd>
  8636. </dl>
  8637. <dl>
  8638. <dt>Form</dt>
  8639. <dd>-</dd>
  8640. </dl>
  8641. <dl>
  8642. <dt>Attribute</dt>
  8643. <dd>-</dd>
  8644. </dl>
  8645. <dl>
  8646. <dt>Type</dt>
  8647. <dd>-</dd>
  8648. </dl>
  8649. <divclass="cardinfo_flex">
  8650. <dlclass="cardinfo_dp">
  8651. <dt>DP</dt>
  8652. <dd>-</dl>
  8653. <dl>
  8654. <dt>PlayCost</dt>
  8655. <dd>4</dd>
  8656. </dl>
  8657. </div>
  8658. <dl>
  8659. <dt>DigivolveCost1</dt>
  8660. <dd>-</dd>
  8661. </dl>
  8662. <dl>
  8663. <dt>DigivolveCost2</dt>
  8664. <dd>-</dd>
  8665. </dl>
  8666. </div>
  8667. </div>
  8668. <divclass="cardinfo_bottom">
  8669. <dl>
  8670. <dt>Effect</dt>
  8671. <dd>[Start of Your Main Phase] You may play 1 [Veemon] or [Wormmon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a blue or green Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, trash any 3 digivolution cards under your opponent's Digimon.</dd>
  8672. </dl>
  8673. <dl>
  8674. <dt>InheritedEffect</dt>
  8675. <dd>-</dd>
  8676. </dl>
  8677. <dl>
  8678. <dt>SecurityEffect</dt>
  8679. <dd>[Security] Play this card without paying the cost.</dd>
  8680. </dl>
  8681. <dl>
  8682. <dt>Notes</dt>
  8683. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8684. <aclass="btn"href="/rule/?card_no=BT16-085"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8685. </div>
  8686. </div>
  8687. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8688. </div>
  8689. </div>
  8690. </li>
  8691. <liclass="image_lists_itemdatapage-3">
  8692. <aclass="card_img">
  8693. <imgsrc="../images/cardlist/card/BT16-086.png"alt="BT16-086HackerJudge"></a>
  8694. <divclass="popup">
  8695. <divclass="card_detailcard_detail_yellow">
  8696. <divclass="card_detail_inner">
  8697. <ulclass="cardinfo_head">
  8698. <liclass="cardno">BT16-086</li>
  8699. <li>R</li>
  8700. <liclass="cardtype">Tamer</li>
  8701. </ul>
  8702. <divclass="card_name">HackerJudge</div>
  8703. <divclass="cardinfo_top">
  8704. <divclass="card_img">
  8705. <imgsrc="../images/cardlist/card/BT16-086.png"alt="BT16-086HackerJudge"></div>
  8706. <divclass="cardinfo_top_body">
  8707. <dl>
  8708. <dt>Color</dt>
  8709. <ddclass="cardColor">
  8710. <spanclass="cardColor_yellow">Yellow</span>
  8711. </dd>
  8712. </dl>
  8713. <dl>
  8714. <dt>Form</dt>
  8715. <dd>-</dd>
  8716. </dl>
  8717. <dl>
  8718. <dt>Attribute</dt>
  8719. <dd>-</dd>
  8720. </dl>
  8721. <dl>
  8722. <dt>Type</dt>
  8723. <dd>AbadinElectronics</dd>
  8724. </dl>
  8725. <divclass="cardinfo_flex">
  8726. <dlclass="cardinfo_dp">
  8727. <dt>DP</dt>
  8728. <dd>-</dl>
  8729. <dl>
  8730. <dt>PlayCost</dt>
  8731. <dd>4</dd>
  8732. </dl>
  8733. </div>
  8734. <dl>
  8735. <dt>DigivolveCost1</dt>
  8736. <dd>-</dd>
  8737. </dl>
  8738. <dl>
  8739. <dt>DigivolveCost2</dt>
  8740. <dd>-</dd>
  8741. </dl>
  8742. </div>
  8743. </div>
  8744. <divclass="cardinfo_bottom">
  8745. <dl>
  8746. <dt>Effect</dt>
  8747. <dd>[Security] Play this card without paying the cost. <br>[Start of Your Turn] If you have 2 or less memory, set it to 3. <br>[Main] <Mind Link> with 1 of your Digimon with [Pulsemon] in its text. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)<br>(Rule) Name: Also treated as [Leon Alexander].</dd>
  8748. </dl>
  8749. <dl>
  8750. <dt>InheritedEffect</dt>
  8751. <dd>[All Turns] While this Digimon has [Pulsemon] in its text, it gains <Blocker> and <Barrier>.<br>[End of All Turns] You may play 1 [Hacker Judge] from this Digimon's digivolution cards without paying the cost.</dd>
  8752. </dl>
  8753. <dl>
  8754. <dt>SecurityEffect</dt>
  8755. <dd>-</dd>
  8756. </dl>
  8757. <dl>
  8758. <dt>Notes</dt>
  8759. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8760. <aclass="btn"href="/rule/?card_no=BT16-086"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8761. </div>
  8762. </div>
  8763. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8764. </div>
  8765. </div>
  8766. </li>
  8767. <liclass="image_lists_itemdatapage-3">
  8768. <aclass="card_img">
  8769. <imgsrc="../images/cardlist/card/BT16-087.png"alt="BT16-087KosukeKisakata"></a>
  8770. <divclass="popup">
  8771. <divclass="card_detailcard_detail_black">
  8772. <divclass="card_detail_inner">
  8773. <ulclass="cardinfo_head">
  8774. <liclass="cardno">BT16-087</li>
  8775. <li>R</li>
  8776. <liclass="cardtype">Tamer</li>
  8777. </ul>
  8778. <divclass="card_name">KosukeKisakata</div>
  8779. <divclass="cardinfo_top">
  8780. <divclass="card_img">
  8781. <imgsrc="../images/cardlist/card/BT16-087.png"alt="BT16-087KosukeKisakata"></div>
  8782. <divclass="cardinfo_top_body">
  8783. <dl>
  8784. <dt>Color</dt>
  8785. <ddclass="cardColor">
  8786. <spanclass="cardColor_black">Black</span>
  8787. </dd>
  8788. </dl>
  8789. <dl>
  8790. <dt>Form</dt>
  8791. <dd>-</dd>
  8792. </dl>
  8793. <dl>
  8794. <dt>Attribute</dt>
  8795. <dd>-</dd>
  8796. </dl>
  8797. <dl>
  8798. <dt>Type</dt>
  8799. <dd>SoC</dd>
  8800. </dl>
  8801. <divclass="cardinfo_flex">
  8802. <dlclass="cardinfo_dp">
  8803. <dt>DP</dt>
  8804. <dd>-</dl>
  8805. <dl>
  8806. <dt>PlayCost</dt>
  8807. <dd>4</dd>
  8808. </dl>
  8809. </div>
  8810. <dl>
  8811. <dt>DigivolveCost1</dt>
  8812. <dd>-</dd>
  8813. </dl>
  8814. <dl>
  8815. <dt>DigivolveCost2</dt>
  8816. <dd>-</dd>
  8817. </dl>
  8818. </div>
  8819. </div>
  8820. <divclass="cardinfo_bottom">
  8821. <dl>
  8822. <dt>Effect</dt>
  8823. <dd>[Security] Play this card without paying the cost. <br>[Start of Your Turn] If you have 2 or less memory, set it to 3. <br>[Main] <Mind Link> with 1 of your Digimon with the [X Antibody] or [SoC] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  8824. </dl>
  8825. <dl>
  8826. <dt>InheritedEffect</dt>
  8827. <dd>[All Turns] While this Digimon has the [X Antibody] or [SoC] trait, it gains <Piercing> and <Blocker>.<br>[End of All Turns] You may play 1 [Kosuke Kisakata] from this Digimon's digivolution cards without paying the cost.</dd>
  8828. </dl>
  8829. <dl>
  8830. <dt>SecurityEffect</dt>
  8831. <dd>-</dd>
  8832. </dl>
  8833. <dl>
  8834. <dt>Notes</dt>
  8835. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8836. <aclass="btn"href="/rule/?card_no=BT16-087"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8837. </div>
  8838. </div>
  8839. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8840. </div>
  8841. </div>
  8842. </li>
  8843. <liclass="image_lists_itemdatapage-3">
  8844. <aclass="card_img">
  8845. <imgsrc="../images/cardlist/card/BT16-087_P1.png"alt="BT16-087KosukeKisakata"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_black.png">
  8846. </a>
  8847. <divclass="popup">
  8848. <divclass="card_detailcard_detail_black">
  8849. <divclass="card_detail_inner">
  8850. <ulclass="cardinfo_head">
  8851. <liclass="cardno">BT16-087</li>
  8852. <li>R</li>
  8853. <liclass="cardtype">Tamer</li>
  8854. <liclass="cardtypecardParallel">AlternativeArt</li>
  8855. </ul>
  8856. <divclass="card_name">KosukeKisakata</div>
  8857. <divclass="cardinfo_top">
  8858. <divclass="card_img">
  8859. <imgsrc="../images/cardlist/card/BT16-087_P1.png"alt="BT16-087KosukeKisakata"></div>
  8860. <divclass="cardinfo_top_body">
  8861. <dl>
  8862. <dt>Color</dt>
  8863. <ddclass="cardColor">
  8864. <spanclass="cardColor_black">Black</span>
  8865. </dd>
  8866. </dl>
  8867. <dl>
  8868. <dt>Form</dt>
  8869. <dd>-</dd>
  8870. </dl>
  8871. <dl>
  8872. <dt>Attribute</dt>
  8873. <dd>-</dd>
  8874. </dl>
  8875. <dl>
  8876. <dt>Type</dt>
  8877. <dd>SoC</dd>
  8878. </dl>
  8879. <divclass="cardinfo_flex">
  8880. <dlclass="cardinfo_dp">
  8881. <dt>DP</dt>
  8882. <dd>-</dl>
  8883. <dl>
  8884. <dt>PlayCost</dt>
  8885. <dd>4</dd>
  8886. </dl>
  8887. </div>
  8888. <dl>
  8889. <dt>DigivolveCost1</dt>
  8890. <dd>-</dd>
  8891. </dl>
  8892. <dl>
  8893. <dt>DigivolveCost2</dt>
  8894. <dd>-</dd>
  8895. </dl>
  8896. </div>
  8897. </div>
  8898. <divclass="cardinfo_bottom">
  8899. <dl>
  8900. <dt>Effect</dt>
  8901. <dd>[Security] Play this card without paying the cost. <br>[Start of Your Turn] If you have 2 or less memory, set it to 3. <br>[Main] <Mind Link> with 1 of your Digimon with the [X Antibody] or [SoC] trait. (Place this Tamer as that Digimon's bottom digivolution card if there are no Tamer cards in its digivolution cards.)</dd>
  8902. </dl>
  8903. <dl>
  8904. <dt>InheritedEffect</dt>
  8905. <dd>[All Turns] While this Digimon has the [X Antibody] or [SoC] trait, it gains <Piercing> and <Blocker>.<br>[End of All Turns] You may play 1 [Kosuke Kisakata] from this Digimon's digivolution cards without paying the cost.</dd>
  8906. </dl>
  8907. <dl>
  8908. <dt>SecurityEffect</dt>
  8909. <dd>-</dd>
  8910. </dl>
  8911. <dl>
  8912. <dt>Notes</dt>
  8913. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8914. <aclass="btn"href="/rule/?card_no=BT16-087"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8915. </div>
  8916. </div>
  8917. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8918. </div>
  8919. </div>
  8920. </li>
  8921. <liclass="image_lists_itemdatapage-3">
  8922. <aclass="card_img">
  8923. <imgsrc="../images/cardlist/card/BT16-088.png"alt="BT16-088CodyHida&T.K.Takaishi"></a>
  8924. <divclass="popup">
  8925. <divclass="card_detailcard_detail_black_yellowmulticolor">
  8926. <divclass="card_detail_inner">
  8927. <ulclass="cardinfo_head">
  8928. <liclass="cardno">BT16-088</li>
  8929. <li>R</li>
  8930. <liclass="cardtype">Tamer</li>
  8931. </ul>
  8932. <divclass="card_name">CodyHida&T.K.Takaishi</div>
  8933. <divclass="cardinfo_top">
  8934. <divclass="card_img">
  8935. <imgsrc="../images/cardlist/card/BT16-088.png"alt="BT16-088CodyHida&T.K.Takaishi"></div>
  8936. <divclass="cardinfo_top_body">
  8937. <dl>
  8938. <dt>Color</dt>
  8939. <ddclass="cardColor">
  8940. <spanclass="cardColor_black">Black</span>
  8941. <spanclass="cardColor_yellow">Yellow</span>
  8942. </dd>
  8943. </dl>
  8944. <dl>
  8945. <dt>Form</dt>
  8946. <dd>-</dd>
  8947. </dl>
  8948. <dl>
  8949. <dt>Attribute</dt>
  8950. <dd>-</dd>
  8951. </dl>
  8952. <dl>
  8953. <dt>Type</dt>
  8954. <dd>-</dd>
  8955. </dl>
  8956. <divclass="cardinfo_flex">
  8957. <dlclass="cardinfo_dp">
  8958. <dt>DP</dt>
  8959. <dd>-</dl>
  8960. <dl>
  8961. <dt>PlayCost</dt>
  8962. <dd>4</dd>
  8963. </dl>
  8964. </div>
  8965. <dl>
  8966. <dt>DigivolveCost1</dt>
  8967. <dd>-</dd>
  8968. </dl>
  8969. <dl>
  8970. <dt>DigivolveCost2</dt>
  8971. <dd>-</dd>
  8972. </dl>
  8973. </div>
  8974. </div>
  8975. <divclass="cardinfo_bottom">
  8976. <dl>
  8977. <dt>Effect</dt>
  8978. <dd>[Start of Your Main Phase] You may play 1 [Armadillomon] or [Patamon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a black or yellow Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, <De-Digivolve 1> 1 of your opponent's Digimon.</dd>
  8979. </dl>
  8980. <dl>
  8981. <dt>InheritedEffect</dt>
  8982. <dd>-</dd>
  8983. </dl>
  8984. <dl>
  8985. <dt>SecurityEffect</dt>
  8986. <dd>[Security] Play this card without paying the cost.</dd>
  8987. </dl>
  8988. <dl>
  8989. <dt>Notes</dt>
  8990. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  8991. <aclass="btn"href="/rule/?card_no=BT16-088"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  8992. </div>
  8993. </div>
  8994. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  8995. </div>
  8996. </div>
  8997. </li>
  8998. <liclass="image_lists_itemdatapage-3">
  8999. <aclass="card_img">
  9000. <imgsrc="../images/cardlist/card/BT16-088_P1.png"alt="BT16-088CodyHida&T.K.Takaishi"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  9001. </a>
  9002. <divclass="popup">
  9003. <divclass="card_detailcard_detail_black_yellowmulticolor">
  9004. <divclass="card_detail_inner">
  9005. <ulclass="cardinfo_head">
  9006. <liclass="cardno">BT16-088</li>
  9007. <li>R</li>
  9008. <liclass="cardtype">Tamer</li>
  9009. <liclass="cardtypecardParallel">AlternativeArt</li>
  9010. </ul>
  9011. <divclass="card_name">CodyHida&T.K.Takaishi</div>
  9012. <divclass="cardinfo_top">
  9013. <divclass="card_img">
  9014. <imgsrc="../images/cardlist/card/BT16-088_P1.png"alt="BT16-088CodyHida&T.K.Takaishi"></div>
  9015. <divclass="cardinfo_top_body">
  9016. <dl>
  9017. <dt>Color</dt>
  9018. <ddclass="cardColor">
  9019. <spanclass="cardColor_black">Black</span>
  9020. <spanclass="cardColor_yellow">Yellow</span>
  9021. </dd>
  9022. </dl>
  9023. <dl>
  9024. <dt>Form</dt>
  9025. <dd>-</dd>
  9026. </dl>
  9027. <dl>
  9028. <dt>Attribute</dt>
  9029. <dd>-</dd>
  9030. </dl>
  9031. <dl>
  9032. <dt>Type</dt>
  9033. <dd>-</dd>
  9034. </dl>
  9035. <divclass="cardinfo_flex">
  9036. <dlclass="cardinfo_dp">
  9037. <dt>DP</dt>
  9038. <dd>-</dl>
  9039. <dl>
  9040. <dt>PlayCost</dt>
  9041. <dd>4</dd>
  9042. </dl>
  9043. </div>
  9044. <dl>
  9045. <dt>DigivolveCost1</dt>
  9046. <dd>-</dd>
  9047. </dl>
  9048. <dl>
  9049. <dt>DigivolveCost2</dt>
  9050. <dd>-</dd>
  9051. </dl>
  9052. </div>
  9053. </div>
  9054. <divclass="cardinfo_bottom">
  9055. <dl>
  9056. <dt>Effect</dt>
  9057. <dd>[Start of Your Main Phase] You may play 1 [Armadillomon] or [Patamon] from your hand without paying the cost. At the next end of your opponent’s turn, return it to the hand. <br>[Your Turn] When one of your Digimon digivolves into a black or yellow Digimon, by suspending this Tamer, gain 1 memory. If DNA digivolving, <De-Digivolve 1> 1 of your opponent's Digimon.</dd>
  9058. </dl>
  9059. <dl>
  9060. <dt>InheritedEffect</dt>
  9061. <dd>-</dd>
  9062. </dl>
  9063. <dl>
  9064. <dt>SecurityEffect</dt>
  9065. <dd>[Security] Play this card without paying the cost.</dd>
  9066. </dl>
  9067. <dl>
  9068. <dt>Notes</dt>
  9069. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9070. <aclass="btn"href="/rule/?card_no=BT16-088"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9071. </div>
  9072. </div>
  9073. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9074. </div>
  9075. </div>
  9076. </li>
  9077. <liclass="image_lists_itemdatapage-3">
  9078. <aclass="card_img">
  9079. <imgsrc="../images/cardlist/card/BT16-089.png"alt="BT16-089Arukenimon&Mummymon"></a>
  9080. <divclass="popup">
  9081. <divclass="card_detailcard_detail_purple">
  9082. <divclass="card_detail_inner">
  9083. <ulclass="cardinfo_head">
  9084. <liclass="cardno">BT16-089</li>
  9085. <li>R</li>
  9086. <liclass="cardtype">Tamer</li>
  9087. </ul>
  9088. <divclass="card_name">Arukenimon&Mummymon</div>
  9089. <divclass="cardinfo_top">
  9090. <divclass="card_img">
  9091. <imgsrc="../images/cardlist/card/BT16-089.png"alt="BT16-089Arukenimon&Mummymon"></div>
  9092. <divclass="cardinfo_top_body">
  9093. <dl>
  9094. <dt>Color</dt>
  9095. <ddclass="cardColor">
  9096. <spanclass="cardColor_purple">Purple</span>
  9097. </dd>
  9098. </dl>
  9099. <dl>
  9100. <dt>Form</dt>
  9101. <dd>-</dd>
  9102. </dl>
  9103. <dl>
  9104. <dt>Attribute</dt>
  9105. <dd>-</dd>
  9106. </dl>
  9107. <dl>
  9108. <dt>Type</dt>
  9109. <dd>-</dd>
  9110. </dl>
  9111. <divclass="cardinfo_flex">
  9112. <dlclass="cardinfo_dp">
  9113. <dt>DP</dt>
  9114. <dd>-</dl>
  9115. <dl>
  9116. <dt>PlayCost</dt>
  9117. <dd>4</dd>
  9118. </dl>
  9119. </div>
  9120. <dl>
  9121. <dt>DigivolveCost1</dt>
  9122. <dd>-</dd>
  9123. </dl>
  9124. <dl>
  9125. <dt>DigivolveCost2</dt>
  9126. <dd>-</dd>
  9127. </dl>
  9128. </div>
  9129. </div>
  9130. <divclass="cardinfo_bottom">
  9131. <dl>
  9132. <dt>Effect</dt>
  9133. <dd>[Your Turn] When [Arukenimon] or [Mummymon] would be played from your hand, by deleting this Tamer, reduce the play cost by 3. <br>[On Deletion] You may play 1 level 5 or lower Digimon card with [Myotismon] in its text from your trash without paying the cost. At the next end of your opponent’s turn, delete it.</dd>
  9134. </dl>
  9135. <dl>
  9136. <dt>InheritedEffect</dt>
  9137. <dd>-</dd>
  9138. </dl>
  9139. <dl>
  9140. <dt>SecurityEffect</dt>
  9141. <dd>[Security] Play this card without paying the cost.</dd>
  9142. </dl>
  9143. <dl>
  9144. <dt>Notes</dt>
  9145. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9146. <aclass="btn"href="/rule/?card_no=BT16-089"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9147. </div>
  9148. </div>
  9149. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9150. </div>
  9151. </div>
  9152. </li>
  9153. <liclass="image_lists_itemdatapage-3">
  9154. <aclass="card_img">
  9155. <imgsrc="../images/cardlist/card/BT16-090.png"alt="BT16-090LuiOhwada"></a>
  9156. <divclass="popup">
  9157. <divclass="card_detailcard_detail_white">
  9158. <divclass="card_detail_inner">
  9159. <ulclass="cardinfo_head">
  9160. <liclass="cardno">BT16-090</li>
  9161. <li>R</li>
  9162. <liclass="cardtype">Tamer</li>
  9163. </ul>
  9164. <divclass="card_name">LuiOhwada</div>
  9165. <divclass="cardinfo_top">
  9166. <divclass="card_img">
  9167. <imgsrc="../images/cardlist/card/BT16-090.png"alt="BT16-090LuiOhwada"></div>
  9168. <divclass="cardinfo_top_body">
  9169. <dl>
  9170. <dt>Color</dt>
  9171. <ddclass="cardColor">
  9172. <spanclass="cardColor_white">White</span>
  9173. </dd>
  9174. </dl>
  9175. <dl>
  9176. <dt>Form</dt>
  9177. <dd>-</dd>
  9178. </dl>
  9179. <dl>
  9180. <dt>Attribute</dt>
  9181. <dd>-</dd>
  9182. </dl>
  9183. <dl>
  9184. <dt>Type</dt>
  9185. <dd>-</dd>
  9186. </dl>
  9187. <divclass="cardinfo_flex">
  9188. <dlclass="cardinfo_dp">
  9189. <dt>DP</dt>
  9190. <dd>-</dl>
  9191. <dl>
  9192. <dt>PlayCost</dt>
  9193. <dd>4</dd>
  9194. </dl>
  9195. </div>
  9196. <dl>
  9197. <dt>DigivolveCost1</dt>
  9198. <dd>-</dd>
  9199. </dl>
  9200. <dl>
  9201. <dt>DigivolveCost2</dt>
  9202. <dd>-</dd>
  9203. </dl>
  9204. </div>
  9205. </div>
  9206. <divclass="cardinfo_bottom">
  9207. <dl>
  9208. <dt>Effect</dt>
  9209. <dd>[Start of Your Turn] If you have 2 or less memory, set it to 3. <br>[Main] [Once Per Turn] By deleting 1 of your [Ukkomon] and trashing 1 of your Digimon in the breeding area, you may play 1 [BigUkkomon] from your hand to an empty space in your breeding area for a play cost of 3.</dd>
  9210. </dl>
  9211. <dl>
  9212. <dt>InheritedEffect</dt>
  9213. <dd>-</dd>
  9214. </dl>
  9215. <dl>
  9216. <dt>SecurityEffect</dt>
  9217. <dd>[Security] Play this card without paying the cost.</dd>
  9218. </dl>
  9219. <dl>
  9220. <dt>Notes</dt>
  9221. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9222. <aclass="btn"href="/rule/?card_no=BT16-090"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9223. </div>
  9224. </div>
  9225. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9226. </div>
  9227. </div>
  9228. </li>
  9229. <liclass="image_lists_itemdatapage-3">
  9230. <aclass="card_img">
  9231. <imgsrc="../images/cardlist/card/BT16-090_P1.png"alt="BT16-090LuiOhwada"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_white.png">
  9232. </a>
  9233. <divclass="popup">
  9234. <divclass="card_detailcard_detail_white">
  9235. <divclass="card_detail_inner">
  9236. <ulclass="cardinfo_head">
  9237. <liclass="cardno">BT16-090</li>
  9238. <li>R</li>
  9239. <liclass="cardtype">Tamer</li>
  9240. <liclass="cardtypecardParallel">AlternativeArt</li>
  9241. </ul>
  9242. <divclass="card_name">LuiOhwada</div>
  9243. <divclass="cardinfo_top">
  9244. <divclass="card_img">
  9245. <imgsrc="../images/cardlist/card/BT16-090_P1.png"alt="BT16-090LuiOhwada"></div>
  9246. <divclass="cardinfo_top_body">
  9247. <dl>
  9248. <dt>Color</dt>
  9249. <ddclass="cardColor">
  9250. <spanclass="cardColor_white">White</span>
  9251. </dd>
  9252. </dl>
  9253. <dl>
  9254. <dt>Form</dt>
  9255. <dd>-</dd>
  9256. </dl>
  9257. <dl>
  9258. <dt>Attribute</dt>
  9259. <dd>-</dd>
  9260. </dl>
  9261. <dl>
  9262. <dt>Type</dt>
  9263. <dd>-</dd>
  9264. </dl>
  9265. <divclass="cardinfo_flex">
  9266. <dlclass="cardinfo_dp">
  9267. <dt>DP</dt>
  9268. <dd>-</dl>
  9269. <dl>
  9270. <dt>PlayCost</dt>
  9271. <dd>4</dd>
  9272. </dl>
  9273. </div>
  9274. <dl>
  9275. <dt>DigivolveCost1</dt>
  9276. <dd>-</dd>
  9277. </dl>
  9278. <dl>
  9279. <dt>DigivolveCost2</dt>
  9280. <dd>-</dd>
  9281. </dl>
  9282. </div>
  9283. </div>
  9284. <divclass="cardinfo_bottom">
  9285. <dl>
  9286. <dt>Effect</dt>
  9287. <dd>[Start of Your Turn] If you have 2 or less memory, set it to 3. <br>[Main] [Once Per Turn] By deleting 1 of your [Ukkomon] and trashing 1 of your Digimon in the breeding area, you may play 1 [BigUkkomon] from your hand to an empty space in your breeding area for a play cost of 3.</dd>
  9288. </dl>
  9289. <dl>
  9290. <dt>InheritedEffect</dt>
  9291. <dd>-</dd>
  9292. </dl>
  9293. <dl>
  9294. <dt>SecurityEffect</dt>
  9295. <dd>[Security] Play this card without paying the cost.</dd>
  9296. </dl>
  9297. <dl>
  9298. <dt>Notes</dt>
  9299. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9300. <aclass="btn"href="/rule/?card_no=BT16-090"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9301. </div>
  9302. </div>
  9303. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9304. </div>
  9305. </div>
  9306. </li>
  9307. <liclass="image_lists_itemdatapage-4">
  9308. <aclass="card_img">
  9309. <imgsrc="../images/cardlist/card/BT16-091.png"alt="BT16-091BeastlyStormDanceofAffection"></a>
  9310. <divclass="popup">
  9311. <divclass="card_detailcard_detail_red_yellowmulticolor">
  9312. <divclass="card_detail_inner">
  9313. <ulclass="cardinfo_head">
  9314. <liclass="cardno">BT16-091</li>
  9315. <li>U</li>
  9316. <liclass="cardtype">Option</li>
  9317. </ul>
  9318. <divclass="card_name">BeastlyStormDanceofAffection</div>
  9319. <divclass="cardinfo_top">
  9320. <divclass="card_img">
  9321. <imgsrc="../images/cardlist/card/BT16-091.png"alt="BT16-091BeastlyStormDanceofAffection"></div>
  9322. <divclass="cardinfo_top_body">
  9323. <dl>
  9324. <dt>Color</dt>
  9325. <ddclass="cardColor">
  9326. <spanclass="cardColor_red">Red</span>
  9327. <spanclass="cardColor_yellow">Yellow</span>
  9328. </dd>
  9329. </dl>
  9330. <dl>
  9331. <dt>Form</dt>
  9332. <dd>-</dd>
  9333. </dl>
  9334. <dl>
  9335. <dt>Attribute</dt>
  9336. <dd>-</dd>
  9337. </dl>
  9338. <dl>
  9339. <dt>Type</dt>
  9340. <dd>-</dd>
  9341. </dl>
  9342. <divclass="cardinfo_flex">
  9343. <dlclass="cardinfo_dp">
  9344. <dt>DP</dt>
  9345. <dd>-</dl>
  9346. <dl>
  9347. <dt>PlayCost</dt>
  9348. <dd>3</dd>
  9349. </dl>
  9350. </div>
  9351. <dl>
  9352. <dt>DigivolveCost1</dt>
  9353. <dd>-</dd>
  9354. </dl>
  9355. <dl>
  9356. <dt>DigivolveCost2</dt>
  9357. <dd>-</dd>
  9358. </dl>
  9359. </div>
  9360. </div>
  9361. <divclass="cardinfo_bottom">
  9362. <dl>
  9363. <dt>Effect</dt>
  9364. <dd>[Main] You may play 1 [Aquilamon] or [Gatomon] from your hand without paying the cost. Then, 2 of your Digimon may DNA digivolve into a Digimon card in your hand. The Digimon this effect DNA digivolved may gain <Security A. +1> for the turn and attack a player.</dd>
  9365. </dl>
  9366. <dl>
  9367. <dt>InheritedEffect</dt>
  9368. <dd>-</dd>
  9369. </dl>
  9370. <dl>
  9371. <dt>SecurityEffect</dt>
  9372. <dd>[Security] You may play 1 [Hawkmon] or [Salamon] from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  9373. </dl>
  9374. <dl>
  9375. <dt>Notes</dt>
  9376. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9377. <aclass="btn"href="/rule/?card_no=BT16-091"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9378. </div>
  9379. </div>
  9380. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9381. </div>
  9382. </div>
  9383. </li>
  9384. <liclass="image_lists_itemdatapage-4">
  9385. <aclass="card_img">
  9386. <imgsrc="../images/cardlist/card/BT16-092.png"alt="BT16-092InvincibleDragon-InsectFusion"></a>
  9387. <divclass="popup">
  9388. <divclass="card_detailcard_detail_blue_greenmulticolor">
  9389. <divclass="card_detail_inner">
  9390. <ulclass="cardinfo_head">
  9391. <liclass="cardno">BT16-092</li>
  9392. <li>U</li>
  9393. <liclass="cardtype">Option</li>
  9394. </ul>
  9395. <divclass="card_name">InvincibleDragon-InsectFusion</div>
  9396. <divclass="cardinfo_top">
  9397. <divclass="card_img">
  9398. <imgsrc="../images/cardlist/card/BT16-092.png"alt="BT16-092InvincibleDragon-InsectFusion"></div>
  9399. <divclass="cardinfo_top_body">
  9400. <dl>
  9401. <dt>Color</dt>
  9402. <ddclass="cardColor">
  9403. <spanclass="cardColor_blue">Blue</span>
  9404. <spanclass="cardColor_green">Green</span>
  9405. </dd>
  9406. </dl>
  9407. <dl>
  9408. <dt>Form</dt>
  9409. <dd>-</dd>
  9410. </dl>
  9411. <dl>
  9412. <dt>Attribute</dt>
  9413. <dd>-</dd>
  9414. </dl>
  9415. <dl>
  9416. <dt>Type</dt>
  9417. <dd>-</dd>
  9418. </dl>
  9419. <divclass="cardinfo_flex">
  9420. <dlclass="cardinfo_dp">
  9421. <dt>DP</dt>
  9422. <dd>-</dl>
  9423. <dl>
  9424. <dt>PlayCost</dt>
  9425. <dd>3</dd>
  9426. </dl>
  9427. </div>
  9428. <dl>
  9429. <dt>DigivolveCost1</dt>
  9430. <dd>-</dd>
  9431. </dl>
  9432. <dl>
  9433. <dt>DigivolveCost2</dt>
  9434. <dd>-</dd>
  9435. </dl>
  9436. </div>
  9437. </div>
  9438. <divclass="cardinfo_bottom">
  9439. <dl>
  9440. <dt>Effect</dt>
  9441. <dd>[Main] You may play 1 [ExVeemon] or [Stingmon] from your hand without paying the cost. Then, 2 of your Digimon may DNA digivolve into a Digimon card in your hand. Until the end of your opponent's turn, the Digimon this effect DNA digivolved can't be deleted in battle and gains <Blocker>.</dd>
  9442. </dl>
  9443. <dl>
  9444. <dt>InheritedEffect</dt>
  9445. <dd>-</dd>
  9446. </dl>
  9447. <dl>
  9448. <dt>SecurityEffect</dt>
  9449. <dd>[Security] You may play 1 [Veemon] or [Wormmon] from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  9450. </dl>
  9451. <dl>
  9452. <dt>Notes</dt>
  9453. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9454. <aclass="btn"href="/rule/?card_no=BT16-092"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9455. </div>
  9456. </div>
  9457. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9458. </div>
  9459. </div>
  9460. </li>
  9461. <liclass="image_lists_itemdatapage-4">
  9462. <aclass="card_img">
  9463. <imgsrc="../images/cardlist/card/BT16-093.png"alt="BT16-093TheSparkleofFate!"></a>
  9464. <divclass="popup">
  9465. <divclass="card_detailcard_detail_yellow">
  9466. <divclass="card_detail_inner">
  9467. <ulclass="cardinfo_head">
  9468. <liclass="cardno">BT16-093</li>
  9469. <li>R</li>
  9470. <liclass="cardtype">Option</li>
  9471. </ul>
  9472. <divclass="card_name">TheSparkleofFate!</div>
  9473. <divclass="cardinfo_top">
  9474. <divclass="card_img">
  9475. <imgsrc="../images/cardlist/card/BT16-093.png"alt="BT16-093TheSparkleofFate!"></div>
  9476. <divclass="cardinfo_top_body">
  9477. <dl>
  9478. <dt>Color</dt>
  9479. <ddclass="cardColor">
  9480. <spanclass="cardColor_yellow">Yellow</span>
  9481. </dd>
  9482. </dl>
  9483. <dl>
  9484. <dt>Form</dt>
  9485. <dd>-</dd>
  9486. </dl>
  9487. <dl>
  9488. <dt>Attribute</dt>
  9489. <dd>-</dd>
  9490. </dl>
  9491. <dl>
  9492. <dt>Type</dt>
  9493. <dd>-</dd>
  9494. </dl>
  9495. <divclass="cardinfo_flex">
  9496. <dlclass="cardinfo_dp">
  9497. <dt>DP</dt>
  9498. <dd>-</dl>
  9499. <dl>
  9500. <dt>PlayCost</dt>
  9501. <dd>3</dd>
  9502. </dl>
  9503. </div>
  9504. <dl>
  9505. <dt>DigivolveCost1</dt>
  9506. <dd>-</dd>
  9507. </dl>
  9508. <dl>
  9509. <dt>DigivolveCost2</dt>
  9510. <dd>-</dd>
  9511. </dl>
  9512. </div>
  9513. </div>
  9514. <divclass="cardinfo_bottom">
  9515. <dl>
  9516. <dt>Effect</dt>
  9517. <dd>While you have a green Digimon, you may ignore this card's color requirements.<br>[Main] 1 of your Digimon with [Gargomon] or [Rapidmon] in its name may digivolve into a card with [Rapidmon] in its name in your hand, ignoring its digivolution requirements and without paying the cost. Until the end of your opponent's turn, their effects can't reduce the DP of the Digimon this effect digivolved.</dd>
  9518. </dl>
  9519. <dl>
  9520. <dt>InheritedEffect</dt>
  9521. <dd>-</dd>
  9522. </dl>
  9523. <dl>
  9524. <dt>SecurityEffect</dt>
  9525. <dd>[Security] You may play 1 level 3 Digimon card with [Terriermon] in its name from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  9526. </dl>
  9527. <dl>
  9528. <dt>Notes</dt>
  9529. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9530. </div>
  9531. </div>
  9532. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9533. </div>
  9534. </div>
  9535. </li>
  9536. <liclass="image_lists_itemdatapage-4">
  9537. <aclass="card_img">
  9538. <imgsrc="../images/cardlist/card/BT16-094.png"alt="BT16-094Dragon'sBreath"></a>
  9539. <divclass="popup">
  9540. <divclass="card_detailcard_detail_yellow">
  9541. <divclass="card_detail_inner">
  9542. <ulclass="cardinfo_head">
  9543. <liclass="cardno">BT16-094</li>
  9544. <li>C</li>
  9545. <liclass="cardtype">Option</li>
  9546. </ul>
  9547. <divclass="card_name">Dragon'sBreath</div>
  9548. <divclass="cardinfo_top">
  9549. <divclass="card_img">
  9550. <imgsrc="../images/cardlist/card/BT16-094.png"alt="BT16-094Dragon'sBreath"></div>
  9551. <divclass="cardinfo_top_body">
  9552. <dl>
  9553. <dt>Color</dt>
  9554. <ddclass="cardColor">
  9555. <spanclass="cardColor_yellow">Yellow</span>
  9556. </dd>
  9557. </dl>
  9558. <dl>
  9559. <dt>Form</dt>
  9560. <dd>-</dd>
  9561. </dl>
  9562. <dl>
  9563. <dt>Attribute</dt>
  9564. <dd>-</dd>
  9565. </dl>
  9566. <dl>
  9567. <dt>Type</dt>
  9568. <dd>FourGreatDragons</dd>
  9569. </dl>
  9570. <divclass="cardinfo_flex">
  9571. <dlclass="cardinfo_dp">
  9572. <dt>DP</dt>
  9573. <dd>-</dl>
  9574. <dl>
  9575. <dt>PlayCost</dt>
  9576. <dd>4</dd>
  9577. </dl>
  9578. </div>
  9579. <dl>
  9580. <dt>DigivolveCost1</dt>
  9581. <dd>-</dd>
  9582. </dl>
  9583. <dl>
  9584. <dt>DigivolveCost2</dt>
  9585. <dd>-</dd>
  9586. </dl>
  9587. </div>
  9588. </div>
  9589. <divclass="cardinfo_bottom">
  9590. <dl>
  9591. <dt>Effect</dt>
  9592. <dd>[Main] Reveal the top 4 cards of your deck. Add 1 [Four Great Dragons] trait or 1 yellow card among them to the hand. Return the rest to the bottom of the deck. Then, place this card in the battle area.<br>[Main] <Delay><br>・Place 1 [Trial of the Four Great Dragons] from your hand in the battle area, or you may trash 1 [Four Great Dragons] trait card in your hand. If you did either, 1 of your opponent's Digimon gets -7000 DP for the turn.</dd>
  9593. </dl>
  9594. <dl>
  9595. <dt>InheritedEffect</dt>
  9596. <dd>-</dd>
  9597. </dl>
  9598. <dl>
  9599. <dt>SecurityEffect</dt>
  9600. <dd>[Security] 1 of your opponent's Digimon gets -7000 DP for the turn. Then, place this card in the battle area.</dd>
  9601. </dl>
  9602. <dl>
  9603. <dt>Notes</dt>
  9604. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9605. </div>
  9606. </div>
  9607. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9608. </div>
  9609. </div>
  9610. </li>
  9611. <liclass="image_lists_itemdatapage-4">
  9612. <aclass="card_img">
  9613. <imgsrc="../images/cardlist/card/BT16-095.png"alt="BT16-095ShineofBee"></a>
  9614. <divclass="popup">
  9615. <divclass="card_detailcard_detail_green">
  9616. <divclass="card_detail_inner">
  9617. <ulclass="cardinfo_head">
  9618. <liclass="cardno">BT16-095</li>
  9619. <li>C</li>
  9620. <liclass="cardtype">Option</li>
  9621. </ul>
  9622. <divclass="card_name">ShineofBee</div>
  9623. <divclass="cardinfo_top">
  9624. <divclass="card_img">
  9625. <imgsrc="../images/cardlist/card/BT16-095.png"alt="BT16-095ShineofBee"></div>
  9626. <divclass="cardinfo_top_body">
  9627. <dl>
  9628. <dt>Color</dt>
  9629. <ddclass="cardColor">
  9630. <spanclass="cardColor_green">Green</span>
  9631. </dd>
  9632. </dl>
  9633. <dl>
  9634. <dt>Form</dt>
  9635. <dd>-</dd>
  9636. </dl>
  9637. <dl>
  9638. <dt>Attribute</dt>
  9639. <dd>-</dd>
  9640. </dl>
  9641. <dl>
  9642. <dt>Type</dt>
  9643. <dd>-</dd>
  9644. </dl>
  9645. <divclass="cardinfo_flex">
  9646. <dlclass="cardinfo_dp">
  9647. <dt>DP</dt>
  9648. <dd>-</dl>
  9649. <dl>
  9650. <dt>PlayCost</dt>
  9651. <dd>7</dd>
  9652. </dl>
  9653. </div>
  9654. <dl>
  9655. <dt>DigivolveCost1</dt>
  9656. <dd>-</dd>
  9657. </dl>
  9658. <dl>
  9659. <dt>DigivolveCost2</dt>
  9660. <dd>-</dd>
  9661. </dl>
  9662. </div>
  9663. </div>
  9664. <divclass="cardinfo_bottom">
  9665. <dl>
  9666. <dt>Effect</dt>
  9667. <dd>[Main] Suspend 2 of your opponent's Digimon. Then, return all of your opponent's suspended Digimon with the lowest DP to the bottom of the deck. All of your Digimon get +3000 DP until the end of your opponent's turn.</dd>
  9668. </dl>
  9669. <dl>
  9670. <dt>InheritedEffect</dt>
  9671. <dd>-</dd>
  9672. </dl>
  9673. <dl>
  9674. <dt>SecurityEffect</dt>
  9675. <dd>[Security] Activate this card's [Main] effect.</dd>
  9676. </dl>
  9677. <dl>
  9678. <dt>Notes</dt>
  9679. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9680. </div>
  9681. </div>
  9682. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9683. </div>
  9684. </div>
  9685. </li>
  9686. <liclass="image_lists_itemdatapage-4">
  9687. <aclass="card_img">
  9688. <imgsrc="../images/cardlist/card/BT16-096.png"alt="BT16-096MetropolitanPoliceDepartment,CommunitySafetyBureau,CyberCrimeDivision,InvestigationUnit11,DigimonCrimeResponseTeam"></a>
  9689. <divclass="popup">
  9690. <divclass="card_detailcard_detail_black">
  9691. <divclass="card_detail_inner">
  9692. <ulclass="cardinfo_head">
  9693. <liclass="cardno">BT16-096</li>
  9694. <li>R</li>
  9695. <liclass="cardtype">Option</li>
  9696. </ul>
  9697. <divclass="card_name">MetropolitanPoliceDepartment,CommunitySafetyBureau,CyberCrimeDivision,InvestigationUnit11,DigimonCrimeResponseTeam</div>
  9698. <divclass="cardinfo_top">
  9699. <divclass="card_img">
  9700. <imgsrc="../images/cardlist/card/BT16-096.png"alt="BT16-096MetropolitanPoliceDepartment,CommunitySafetyBureau,CyberCrimeDivision,InvestigationUnit11,DigimonCrimeResponseTeam"></div>
  9701. <divclass="cardinfo_top_body">
  9702. <dl>
  9703. <dt>Color</dt>
  9704. <ddclass="cardColor">
  9705. <spanclass="cardColor_black">Black</span>
  9706. </dd>
  9707. </dl>
  9708. <dl>
  9709. <dt>Form</dt>
  9710. <dd>-</dd>
  9711. </dl>
  9712. <dl>
  9713. <dt>Attribute</dt>
  9714. <dd>-</dd>
  9715. </dl>
  9716. <dl>
  9717. <dt>Type</dt>
  9718. <dd>DigiPolice</dd>
  9719. </dl>
  9720. <divclass="cardinfo_flex">
  9721. <dlclass="cardinfo_dp">
  9722. <dt>DP</dt>
  9723. <dd>-</dl>
  9724. <dl>
  9725. <dt>PlayCost</dt>
  9726. <dd>3</dd>
  9727. </dl>
  9728. </div>
  9729. <dl>
  9730. <dt>DigivolveCost1</dt>
  9731. <dd>-</dd>
  9732. </dl>
  9733. <dl>
  9734. <dt>DigivolveCost2</dt>
  9735. <dd>-</dd>
  9736. </dl>
  9737. </div>
  9738. </div>
  9739. <divclass="cardinfo_bottom">
  9740. <dl>
  9741. <dt>Effect</dt>
  9742. <dd>[Main] Reveal the top 3 cards of your deck. Add 1 card with the [D-Brigade] or [DigiPolice] trait among them to the hand. Return the rest to the top of the deck. Then, place this card in the battle area.<br>[Main] <Delay><br>・Reveal the top 3 cards of your deck. You may play 1 card with the [D-Brigade] or [DigiPolice] trait and a play cost of 4 or less among them without paying the cost. Trash the rest.</dd>
  9743. </dl>
  9744. <dl>
  9745. <dt>InheritedEffect</dt>
  9746. <dd>-</dd>
  9747. </dl>
  9748. <dl>
  9749. <dt>SecurityEffect</dt>
  9750. <dd>[Security] Reveal the top 3 cards of your deck. Add 1 card with the [D-Brigade] or [DigiPolice] trait among them to the hand. Return the rest to the top of the deck. Then, place this card in the battle area.</dd>
  9751. </dl>
  9752. <dl>
  9753. <dt>Notes</dt>
  9754. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9755. </div>
  9756. </div>
  9757. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9758. </div>
  9759. </div>
  9760. </li>
  9761. <liclass="image_lists_itemdatapage-4">
  9762. <aclass="card_img">
  9763. <imgsrc="../images/cardlist/card/BT16-097.png"alt="BT16-097AdventoftheAncientSteelAngel"></a>
  9764. <divclass="popup">
  9765. <divclass="card_detailcard_detail_black_yellowmulticolor">
  9766. <divclass="card_detail_inner">
  9767. <ulclass="cardinfo_head">
  9768. <liclass="cardno">BT16-097</li>
  9769. <li>U</li>
  9770. <liclass="cardtype">Option</li>
  9771. </ul>
  9772. <divclass="card_name">AdventoftheAncientSteelAngel</div>
  9773. <divclass="cardinfo_top">
  9774. <divclass="card_img">
  9775. <imgsrc="../images/cardlist/card/BT16-097.png"alt="BT16-097AdventoftheAncientSteelAngel"></div>
  9776. <divclass="cardinfo_top_body">
  9777. <dl>
  9778. <dt>Color</dt>
  9779. <ddclass="cardColor">
  9780. <spanclass="cardColor_black">Black</span>
  9781. <spanclass="cardColor_yellow">Yellow</span>
  9782. </dd>
  9783. </dl>
  9784. <dl>
  9785. <dt>Form</dt>
  9786. <dd>-</dd>
  9787. </dl>
  9788. <dl>
  9789. <dt>Attribute</dt>
  9790. <dd>-</dd>
  9791. </dl>
  9792. <dl>
  9793. <dt>Type</dt>
  9794. <dd>-</dd>
  9795. </dl>
  9796. <divclass="cardinfo_flex">
  9797. <dlclass="cardinfo_dp">
  9798. <dt>DP</dt>
  9799. <dd>-</dl>
  9800. <dl>
  9801. <dt>PlayCost</dt>
  9802. <dd>3</dd>
  9803. </dl>
  9804. </div>
  9805. <dl>
  9806. <dt>DigivolveCost1</dt>
  9807. <dd>-</dd>
  9808. </dl>
  9809. <dl>
  9810. <dt>DigivolveCost2</dt>
  9811. <dd>-</dd>
  9812. </dl>
  9813. </div>
  9814. </div>
  9815. <divclass="cardinfo_bottom">
  9816. <dl>
  9817. <dt>Effect</dt>
  9818. <dd>[Main] You may play 1 [Ankylomon] or [Angemon] from your hand without paying the cost. Then, 2 of your Digimon may DNA digivolve into a Digimon card in your hand. If this effect DNA digivolved, <Recovery +1 (Deck)>.</dd>
  9819. </dl>
  9820. <dl>
  9821. <dt>InheritedEffect</dt>
  9822. <dd>-</dd>
  9823. </dl>
  9824. <dl>
  9825. <dt>SecurityEffect</dt>
  9826. <dd>[Security] You may play 1 [Armadillomon] or [Patamon] from your hand or trash without paying the cost. Then, add this card to the hand.</dd>
  9827. </dl>
  9828. <dl>
  9829. <dt>Notes</dt>
  9830. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9831. <aclass="btn"href="/rule/?card_no=BT16-097"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9832. </div>
  9833. </div>
  9834. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9835. </div>
  9836. </div>
  9837. </li>
  9838. <liclass="image_lists_itemdatapage-4">
  9839. <aclass="card_img">
  9840. <imgsrc="../images/cardlist/card/BT16-098.png"alt="BT16-098DORU-Din"></a>
  9841. <divclass="popup">
  9842. <divclass="card_detailcard_detail_black">
  9843. <divclass="card_detail_inner">
  9844. <ulclass="cardinfo_head">
  9845. <liclass="cardno">BT16-098</li>
  9846. <li>C</li>
  9847. <liclass="cardtype">Option</li>
  9848. </ul>
  9849. <divclass="card_name">DORU-Din</div>
  9850. <divclass="cardinfo_top">
  9851. <divclass="card_img">
  9852. <imgsrc="../images/cardlist/card/BT16-098.png"alt="BT16-098DORU-Din"></div>
  9853. <divclass="cardinfo_top_body">
  9854. <dl>
  9855. <dt>Color</dt>
  9856. <ddclass="cardColor">
  9857. <spanclass="cardColor_black">Black</span>
  9858. </dd>
  9859. </dl>
  9860. <dl>
  9861. <dt>Form</dt>
  9862. <dd>-</dd>
  9863. </dl>
  9864. <dl>
  9865. <dt>Attribute</dt>
  9866. <dd>-</dd>
  9867. </dl>
  9868. <dl>
  9869. <dt>Type</dt>
  9870. <dd>XAntibody</dd>
  9871. </dl>
  9872. <divclass="cardinfo_flex">
  9873. <dlclass="cardinfo_dp">
  9874. <dt>DP</dt>
  9875. <dd>-</dl>
  9876. <dl>
  9877. <dt>PlayCost</dt>
  9878. <dd>6</dd>
  9879. </dl>
  9880. </div>
  9881. <dl>
  9882. <dt>DigivolveCost1</dt>
  9883. <dd>-</dd>
  9884. </dl>
  9885. <dl>
  9886. <dt>DigivolveCost2</dt>
  9887. <dd>-</dd>
  9888. </dl>
  9889. </div>
  9890. </div>
  9891. <divclass="cardinfo_bottom">
  9892. <dl>
  9893. <dt>Effect</dt>
  9894. <dd>[Main] If you have a Digimon with [Dorugoramon] in its name, delete 1 of your opponent's Digimon or Tamers with a play cost of 4 or less. Then, delete all of your opponent's Digimon with the lowest play cost.</dd>
  9895. </dl>
  9896. <dl>
  9897. <dt>InheritedEffect</dt>
  9898. <dd>-</dd>
  9899. </dl>
  9900. <dl>
  9901. <dt>SecurityEffect</dt>
  9902. <dd>[Security] Activate this card's [Main] effect.</dd>
  9903. </dl>
  9904. <dl>
  9905. <dt>Notes</dt>
  9906. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9907. <aclass="btn"href="/rule/?card_no=BT16-098"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  9908. </div>
  9909. </div>
  9910. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9911. </div>
  9912. </div>
  9913. </li>
  9914. <liclass="image_lists_itemdatapage-4">
  9915. <aclass="card_img">
  9916. <imgsrc="../images/cardlist/card/BT16-099.png"alt="BT16-099TheDemonWolfoftheCastleofNineWolves"></a>
  9917. <divclass="popup">
  9918. <divclass="card_detailcard_detail_purple">
  9919. <divclass="card_detail_inner">
  9920. <ulclass="cardinfo_head">
  9921. <liclass="cardno">BT16-099</li>
  9922. <li>R</li>
  9923. <liclass="cardtype">Option</li>
  9924. </ul>
  9925. <divclass="card_name">TheDemonWolfoftheCastleofNineWolves</div>
  9926. <divclass="cardinfo_top">
  9927. <divclass="card_img">
  9928. <imgsrc="../images/cardlist/card/BT16-099.png"alt="BT16-099TheDemonWolfoftheCastleofNineWolves"></div>
  9929. <divclass="cardinfo_top_body">
  9930. <dl>
  9931. <dt>Color</dt>
  9932. <ddclass="cardColor">
  9933. <spanclass="cardColor_purple">Purple</span>
  9934. </dd>
  9935. </dl>
  9936. <dl>
  9937. <dt>Form</dt>
  9938. <dd>-</dd>
  9939. </dl>
  9940. <dl>
  9941. <dt>Attribute</dt>
  9942. <dd>-</dd>
  9943. </dl>
  9944. <dl>
  9945. <dt>Type</dt>
  9946. <dd>SoC</dd>
  9947. </dl>
  9948. <divclass="cardinfo_flex">
  9949. <dlclass="cardinfo_dp">
  9950. <dt>DP</dt>
  9951. <dd>-</dl>
  9952. <dl>
  9953. <dt>PlayCost</dt>
  9954. <dd>3</dd>
  9955. </dl>
  9956. </div>
  9957. <dl>
  9958. <dt>DigivolveCost1</dt>
  9959. <dd>-</dd>
  9960. </dl>
  9961. <dl>
  9962. <dt>DigivolveCost2</dt>
  9963. <dd>-</dd>
  9964. </dl>
  9965. </div>
  9966. </div>
  9967. <divclass="cardinfo_bottom">
  9968. <dl>
  9969. <dt>Effect</dt>
  9970. <dd>[Main] Reveal the top 3 cards of your deck. Add 1 card with the [SoC] trait among them to the hand. Return the rest to the bottom of the deck. If this effect added to a hand, trash 1 card in your hand. Then, place this card in the battle area.<br>[Main] <Delay><br>・You may play 1 card with the [SoC] trait from your trash with the play cost reduced by 2.</dd>
  9971. </dl>
  9972. <dl>
  9973. <dt>InheritedEffect</dt>
  9974. <dd>-</dd>
  9975. </dl>
  9976. <dl>
  9977. <dt>SecurityEffect</dt>
  9978. <dd>[Security] Reveal the top 3 cards of your deck. Add 1 card with the [SoC] trait among them to the hand. Return the rest to the bottom of the deck. If this effect added to a hand, trash 1 card in your hand. Then, place this card in the battle area.</dd>
  9979. </dl>
  9980. <dl>
  9981. <dt>Notes</dt>
  9982. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  9983. </div>
  9984. </div>
  9985. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  9986. </div>
  9987. </div>
  9988. </li>
  9989. <liclass="image_lists_itemdatapage-4">
  9990. <aclass="card_img">
  9991. <imgsrc="../images/cardlist/card/BT16-100.png"alt="BT16-100ThunderflameCrusher"></a>
  9992. <divclass="popup">
  9993. <divclass="card_detailcard_detail_purple_yellowmulticolor">
  9994. <divclass="card_detail_inner">
  9995. <ulclass="cardinfo_head">
  9996. <liclass="cardno">BT16-100</li>
  9997. <li>C</li>
  9998. <liclass="cardtype">Option</li>
  9999. </ul>
  10000. <divclass="card_name">ThunderflameCrusher</div>
  10001. <divclass="cardinfo_top">
  10002. <divclass="card_img">
  10003. <imgsrc="../images/cardlist/card/BT16-100.png"alt="BT16-100ThunderflameCrusher"></div>
  10004. <divclass="cardinfo_top_body">
  10005. <dl>
  10006. <dt>Color</dt>
  10007. <ddclass="cardColor">
  10008. <spanclass="cardColor_purple">Purple</span>
  10009. <spanclass="cardColor_yellow">Yellow</span>
  10010. </dd>
  10011. </dl>
  10012. <dl>
  10013. <dt>Form</dt>
  10014. <dd>-</dd>
  10015. </dl>
  10016. <dl>
  10017. <dt>Attribute</dt>
  10018. <dd>-</dd>
  10019. </dl>
  10020. <dl>
  10021. <dt>Type</dt>
  10022. <dd>-</dd>
  10023. </dl>
  10024. <divclass="cardinfo_flex">
  10025. <dlclass="cardinfo_dp">
  10026. <dt>DP</dt>
  10027. <dd>-</dl>
  10028. <dl>
  10029. <dt>PlayCost</dt>
  10030. <dd>6</dd>
  10031. </dl>
  10032. </div>
  10033. <dl>
  10034. <dt>DigivolveCost1</dt>
  10035. <dd>-</dd>
  10036. </dl>
  10037. <dl>
  10038. <dt>DigivolveCost2</dt>
  10039. <dd>-</dd>
  10040. </dl>
  10041. </div>
  10042. </div>
  10043. <divclass="cardinfo_bottom">
  10044. <dl>
  10045. <dt>Effect</dt>
  10046. <dd>While you have a Digimon or Tamer with [Pulsemon] in its text, you may ignore this card's color requirements.<br>When this card would be used, by trashing cards from the top of your security stack, up to having 3 left, reduce the cost by 2 for each card trashed.<br>[Main] Delete 1 of your opponent's level 5 or lower Digimon. Then, if you have 2 or fewer security cards, place this card at the bottom of your security stack.</dd>
  10047. </dl>
  10048. <dl>
  10049. <dt>InheritedEffect</dt>
  10050. <dd>-</dd>
  10051. </dl>
  10052. <dl>
  10053. <dt>SecurityEffect</dt>
  10054. <dd>[Security] 1 of your opponent's Digimon gets -15000 DP for the turn.</dd>
  10055. </dl>
  10056. <dl>
  10057. <dt>Notes</dt>
  10058. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10059. <aclass="btn"href="/rule/?card_no=BT16-100"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10060. </div>
  10061. </div>
  10062. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10063. </div>
  10064. </div>
  10065. </li>
  10066. <liclass="image_lists_itemdatapage-4">
  10067. <aclass="card_img">
  10068. <imgsrc="../images/cardlist/card/BT16-101.png"alt="BT16-101Rapidmon(XAntibody)"></a>
  10069. <divclass="popup">
  10070. <divclass="card_detailcard_detail_yellow_greenmulticolor">
  10071. <divclass="card_detail_inner">
  10072. <ulclass="cardinfo_head">
  10073. <liclass="cardno">BT16-101</li>
  10074. <li>SEC</li>
  10075. <liclass="cardtype">Digimon</li>
  10076. <liclass="cardlv">Lv.6</li>
  10077. </ul>
  10078. <divclass="card_name">Rapidmon(XAntibody)</div>
  10079. <divclass="cardinfo_top">
  10080. <divclass="card_img">
  10081. <imgsrc="../images/cardlist/card/BT16-101.png"alt="BT16-101Rapidmon(XAntibody)"></div>
  10082. <divclass="cardinfo_top_body">
  10083. <dl>
  10084. <dt>Color</dt>
  10085. <ddclass="cardColor">
  10086. <spanclass="cardColor_yellow">Yellow</span>
  10087. <spanclass="cardColor_green">Green</span>
  10088. </dd>
  10089. </dl>
  10090. <dl>
  10091. <dt>Form</dt>
  10092. <dd>Mega</dd>
  10093. </dl>
  10094. <dl>
  10095. <dt>Attribute</dt>
  10096. <dd>Vaccine</dd>
  10097. </dl>
  10098. <dl>
  10099. <dt>Type</dt>
  10100. <dd>HolyWarrior/XAntibody</dd>
  10101. </dl>
  10102. <divclass="cardinfo_flex">
  10103. <dlclass="cardinfo_dp">
  10104. <dt>DP</dt>
  10105. <dd>11000</dl>
  10106. <dl>
  10107. <dt>PlayCost</dt>
  10108. <dd>11</dd>
  10109. </dl>
  10110. </div>
  10111. <dl>
  10112. <dt>DigivolveCost1</dt>
  10113. <dd>3fromLv.5</dd>
  10114. </dl>
  10115. <dl>
  10116. <dt>DigivolveCost2</dt>
  10117. <dd>3fromLv.5</dd>
  10118. </dl>
  10119. </div>
  10120. </div>
  10121. <divclass="cardinfo_bottom">
  10122. <dl>
  10123. <dt>Effect</dt>
  10124. <dd>[Digivolve] [Rapidmon]: Cost 4<br><Armor Purge> <br>[When Digivolving] Suspend all of your opponent’s Digimon. Then, this Digimon may attack. <br>[All Turns] While [Rapidmon] or [X Antibody] is in this Digimon's digivolution cards, all of your opponent's suspended Digimon get -4000 DP. <br>[All Turns] [Once Per Turn] When an opponent's Digimon is deleted in battle or by having 0 DP, gain 2 memory.</dd>
  10125. </dl>
  10126. <dl>
  10127. <dt>InheritedEffect</dt>
  10128. <dd>-</dd>
  10129. </dl>
  10130. <dl>
  10131. <dt>SecurityEffect</dt>
  10132. <dd>-</dd>
  10133. </dl>
  10134. <dl>
  10135. <dt>Notes</dt>
  10136. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10137. <aclass="btn"href="/rule/?card_no=BT16-101"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10138. </div>
  10139. </div>
  10140. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10141. </div>
  10142. </div>
  10143. </li>
  10144. <liclass="image_lists_itemdatapage-4">
  10145. <aclass="card_img">
  10146. <imgsrc="../images/cardlist/card/BT16-101_P1.png"alt="BT16-101Rapidmon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  10147. </a>
  10148. <divclass="popup">
  10149. <divclass="card_detailcard_detail_yellow_greenmulticolor">
  10150. <divclass="card_detail_inner">
  10151. <ulclass="cardinfo_head">
  10152. <liclass="cardno">BT16-101</li>
  10153. <li>SEC</li>
  10154. <liclass="cardtype">Digimon</li>
  10155. <liclass="cardlv">Lv.6</li>
  10156. <liclass="cardtypecardParallel">AlternativeArt</li>
  10157. </ul>
  10158. <divclass="card_name">Rapidmon(XAntibody)</div>
  10159. <divclass="cardinfo_top">
  10160. <divclass="card_img">
  10161. <imgsrc="../images/cardlist/card/BT16-101_P1.png"alt="BT16-101Rapidmon(XAntibody)"></div>
  10162. <divclass="cardinfo_top_body">
  10163. <dl>
  10164. <dt>Color</dt>
  10165. <ddclass="cardColor">
  10166. <spanclass="cardColor_yellow">Yellow</span>
  10167. <spanclass="cardColor_green">Green</span>
  10168. </dd>
  10169. </dl>
  10170. <dl>
  10171. <dt>Form</dt>
  10172. <dd>Mega</dd>
  10173. </dl>
  10174. <dl>
  10175. <dt>Attribute</dt>
  10176. <dd>Vaccine</dd>
  10177. </dl>
  10178. <dl>
  10179. <dt>Type</dt>
  10180. <dd>HolyWarrior/XAntibody</dd>
  10181. </dl>
  10182. <divclass="cardinfo_flex">
  10183. <dlclass="cardinfo_dp">
  10184. <dt>DP</dt>
  10185. <dd>11000</dl>
  10186. <dl>
  10187. <dt>PlayCost</dt>
  10188. <dd>11</dd>
  10189. </dl>
  10190. </div>
  10191. <dl>
  10192. <dt>DigivolveCost1</dt>
  10193. <dd>3fromLv.5</dd>
  10194. </dl>
  10195. <dl>
  10196. <dt>DigivolveCost2</dt>
  10197. <dd>3fromLv.5</dd>
  10198. </dl>
  10199. </div>
  10200. </div>
  10201. <divclass="cardinfo_bottom">
  10202. <dl>
  10203. <dt>Effect</dt>
  10204. <dd>[Digivolve] [Rapidmon]: Cost 4<br><Armor Purge> <br>[When Digivolving] Suspend all of your opponent’s Digimon. Then, this Digimon may attack. <br>[All Turns] While [Rapidmon] or [X Antibody] is in this Digimon's digivolution cards, all of your opponent's suspended Digimon get -4000 DP. <br>[All Turns] [Once Per Turn] When an opponent's Digimon is deleted in battle or by having 0 DP, gain 2 memory.</dd>
  10205. </dl>
  10206. <dl>
  10207. <dt>InheritedEffect</dt>
  10208. <dd>-</dd>
  10209. </dl>
  10210. <dl>
  10211. <dt>SecurityEffect</dt>
  10212. <dd>-</dd>
  10213. </dl>
  10214. <dl>
  10215. <dt>Notes</dt>
  10216. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10217. <aclass="btn"href="/rule/?card_no=BT16-101"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10218. </div>
  10219. </div>
  10220. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10221. </div>
  10222. </div>
  10223. </li>
  10224. <liclass="image_lists_itemdatapage-4">
  10225. <aclass="card_img">
  10226. <imgsrc="../images/cardlist/card/BT16-102.png"alt="BT16-102Magnamon(XAntibody)"></a>
  10227. <divclass="popup">
  10228. <divclass="card_detailcard_detail_yellow_bluemulticolortriplecolor">
  10229. <divclass="card_detail_inner">
  10230. <ulclass="cardinfo_head">
  10231. <liclass="cardno">BT16-102</li>
  10232. <li>SEC</li>
  10233. <liclass="cardtype">Digimon</li>
  10234. <liclass="cardlv">Lv.6</li>
  10235. </ul>
  10236. <divclass="card_name">Magnamon(XAntibody)</div>
  10237. <divclass="cardinfo_top">
  10238. <divclass="card_img">
  10239. <imgsrc="../images/cardlist/card/BT16-102.png"alt="BT16-102Magnamon(XAntibody)"></div>
  10240. <divclass="cardinfo_top_body">
  10241. <dl>
  10242. <dt>Color</dt>
  10243. <ddclass="cardColor">
  10244. <spanclass="cardColor_yellow">Yellow</span>
  10245. <spanclass="cardColor_blue">Blue</span>
  10246. <spanclass="cardColor_black">Black</span>
  10247. </dd>
  10248. </dl>
  10249. <dl>
  10250. <dt>Form</dt>
  10251. <dd>Mega</dd>
  10252. </dl>
  10253. <dl>
  10254. <dt>Attribute</dt>
  10255. <dd>Vaccine</dd>
  10256. </dl>
  10257. <dl>
  10258. <dt>Type</dt>
  10259. <dd>HolyWarrior/XAntibody/RoyalKnight</dd>
  10260. </dl>
  10261. <divclass="cardinfo_flex">
  10262. <dlclass="cardinfo_dp">
  10263. <dt>DP</dt>
  10264. <dd>12000</dl>
  10265. <dl>
  10266. <dt>PlayCost</dt>
  10267. <dd>12</dd>
  10268. </dl>
  10269. </div>
  10270. <dl>
  10271. <dt>DigivolveCost1</dt>
  10272. <dd>4fromLv.5</dd>
  10273. </dl>
  10274. <dl>
  10275. <dt>DigivolveCost2</dt>
  10276. <dd>4fromLv.5</dd>
  10277. </dl>
  10278. </div>
  10279. </div>
  10280. <divclass="cardinfo_bottom">
  10281. <dl>
  10282. <dt>Effect</dt>
  10283. <dd>[Digivolve] 2-color w/[Magnamon] in name: Cost 5<br><Blocker><Armor Purge> <br>[When Digivolving] If [Magnamon (X Antibody)] or an [Armor Form] trait card is in this Digimon's digivolution cards, until the end of your opponent's turn, this Digimon gets +3000 DP and isn't affected by your opponent's effects. Then, unsuspend it.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, you may activate 1 of this Digimon's [When Digivolving] effects. <br>(Rule) Trait: Has [Free] attribute.</dd>
  10284. </dl>
  10285. <dl>
  10286. <dt>InheritedEffect</dt>
  10287. <dd>-</dd>
  10288. </dl>
  10289. <dl>
  10290. <dt>SecurityEffect</dt>
  10291. <dd>-</dd>
  10292. </dl>
  10293. <dl>
  10294. <dt>Notes</dt>
  10295. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10296. <aclass="btn"href="/rule/?card_no=BT16-102"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10297. </div>
  10298. </div>
  10299. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10300. </div>
  10301. </div>
  10302. </li>
  10303. <liclass="image_lists_itemdatapage-4">
  10304. <aclass="card_img">
  10305. <imgsrc="../images/cardlist/card/BT16-102_P1.png"alt="BT16-102Magnamon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  10306. </a>
  10307. <divclass="popup">
  10308. <divclass="card_detailcard_detail_yellow_bluemulticolortriplecolor">
  10309. <divclass="card_detail_inner">
  10310. <ulclass="cardinfo_head">
  10311. <liclass="cardno">BT16-102</li>
  10312. <li>SEC</li>
  10313. <liclass="cardtype">Digimon</li>
  10314. <liclass="cardlv">Lv.6</li>
  10315. <liclass="cardtypecardParallel">AlternativeArt</li>
  10316. </ul>
  10317. <divclass="card_name">Magnamon(XAntibody)</div>
  10318. <divclass="cardinfo_top">
  10319. <divclass="card_img">
  10320. <imgsrc="../images/cardlist/card/BT16-102_P1.png"alt="BT16-102Magnamon(XAntibody)"></div>
  10321. <divclass="cardinfo_top_body">
  10322. <dl>
  10323. <dt>Color</dt>
  10324. <ddclass="cardColor">
  10325. <spanclass="cardColor_yellow">Yellow</span>
  10326. <spanclass="cardColor_blue">Blue</span>
  10327. <spanclass="cardColor_black">Black</span>
  10328. </dd>
  10329. </dl>
  10330. <dl>
  10331. <dt>Form</dt>
  10332. <dd>Mega</dd>
  10333. </dl>
  10334. <dl>
  10335. <dt>Attribute</dt>
  10336. <dd>Vaccine</dd>
  10337. </dl>
  10338. <dl>
  10339. <dt>Type</dt>
  10340. <dd>HolyWarrior/XAntibody/RoyalKnight</dd>
  10341. </dl>
  10342. <divclass="cardinfo_flex">
  10343. <dlclass="cardinfo_dp">
  10344. <dt>DP</dt>
  10345. <dd>12000</dl>
  10346. <dl>
  10347. <dt>PlayCost</dt>
  10348. <dd>12</dd>
  10349. </dl>
  10350. </div>
  10351. <dl>
  10352. <dt>DigivolveCost1</dt>
  10353. <dd>4fromLv.5</dd>
  10354. </dl>
  10355. <dl>
  10356. <dt>DigivolveCost2</dt>
  10357. <dd>4fromLv.5</dd>
  10358. </dl>
  10359. </div>
  10360. </div>
  10361. <divclass="cardinfo_bottom">
  10362. <dl>
  10363. <dt>Effect</dt>
  10364. <dd>[Digivolve] 2-color w/[Magnamon] in name: Cost 5<br><Blocker><Armor Purge> <br>[When Digivolving] If [Magnamon (X Antibody)] or an [Armor Form] trait card is in this Digimon's digivolution cards, until the end of your opponent's turn, this Digimon gets +3000 DP and isn't affected by your opponent's effects. Then, unsuspend it.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, you may activate 1 of this Digimon's [When Digivolving] effects. <br>(Rule) Trait: Has [Free] attribute.</dd>
  10365. </dl>
  10366. <dl>
  10367. <dt>InheritedEffect</dt>
  10368. <dd>-</dd>
  10369. </dl>
  10370. <dl>
  10371. <dt>SecurityEffect</dt>
  10372. <dd>-</dd>
  10373. </dl>
  10374. <dl>
  10375. <dt>Notes</dt>
  10376. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10377. <aclass="btn"href="/rule/?card_no=BT16-102"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10378. </div>
  10379. </div>
  10380. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10381. </div>
  10382. </div>
  10383. </li>
  10384. <liclass="image_lists_itemdatapage-4">
  10385. <aclass="card_img">
  10386. <imgsrc="../images/cardlist/card/BT16-102_P2.png"alt="BT16-102Magnamon(XAntibody)"><imgclass="parallel_icon"src="/images/cardlist/parallel/ico_card_detail_multi.png">
  10387. </a>
  10388. <divclass="popup">
  10389. <divclass="card_detailcard_detail_yellow_bluemulticolortriplecolor">
  10390. <divclass="card_detail_inner">
  10391. <ulclass="cardinfo_head">
  10392. <liclass="cardno">BT16-102</li>
  10393. <li>SEC</li>
  10394. <liclass="cardtype">Digimon</li>
  10395. <liclass="cardlv">Lv.6</li>
  10396. <liclass="cardtypecardParallel">AlternativeArt</li>
  10397. </ul>
  10398. <divclass="card_name">Magnamon(XAntibody)</div>
  10399. <divclass="cardinfo_top">
  10400. <divclass="card_img">
  10401. <imgsrc="../images/cardlist/card/BT16-102_P2.png"alt="BT16-102Magnamon(XAntibody)"></div>
  10402. <divclass="cardinfo_top_body">
  10403. <dl>
  10404. <dt>Color</dt>
  10405. <ddclass="cardColor">
  10406. <spanclass="cardColor_yellow">Yellow</span>
  10407. <spanclass="cardColor_blue">Blue</span>
  10408. <spanclass="cardColor_black">Black</span>
  10409. </dd>
  10410. </dl>
  10411. <dl>
  10412. <dt>Form</dt>
  10413. <dd>Mega</dd>
  10414. </dl>
  10415. <dl>
  10416. <dt>Attribute</dt>
  10417. <dd>Vaccine</dd>
  10418. </dl>
  10419. <dl>
  10420. <dt>Type</dt>
  10421. <dd>HolyWarrior/XAntibody/RoyalKnight</dd>
  10422. </dl>
  10423. <divclass="cardinfo_flex">
  10424. <dlclass="cardinfo_dp">
  10425. <dt>DP</dt>
  10426. <dd>12000</dl>
  10427. <dl>
  10428. <dt>PlayCost</dt>
  10429. <dd>12</dd>
  10430. </dl>
  10431. </div>
  10432. <dl>
  10433. <dt>DigivolveCost1</dt>
  10434. <dd>4fromLv.5</dd>
  10435. </dl>
  10436. <dl>
  10437. <dt>DigivolveCost2</dt>
  10438. <dd>4fromLv.5</dd>
  10439. </dl>
  10440. </div>
  10441. </div>
  10442. <divclass="cardinfo_bottom">
  10443. <dl>
  10444. <dt>Effect</dt>
  10445. <dd>[Digivolve] 2-color w/[Magnamon] in name: Cost 5<br><Blocker><Armor Purge> <br>[When Digivolving] If [Magnamon (X Antibody)] or an [Armor Form] trait card is in this Digimon's digivolution cards, until the end of your opponent's turn, this Digimon gets +3000 DP and isn't affected by your opponent's effects. Then, unsuspend it.<br>[All Turns] [Once Per Turn] When a card is removed from a security stack, you may activate 1 of this Digimon's [When Digivolving] effects. <br>(Rule) Trait: Has [Free] attribute.</dd>
  10446. </dl>
  10447. <dl>
  10448. <dt>InheritedEffect</dt>
  10449. <dd>-</dd>
  10450. </dl>
  10451. <dl>
  10452. <dt>SecurityEffect</dt>
  10453. <dd>-</dd>
  10454. </dl>
  10455. <dl>
  10456. <dt>Notes</dt>
  10457. <dd><ahref="/products/pack/ver16/">&rtri;BOOSTERBEGINNINGOBSERVER[BT16]</a></dd></dl>
  10458. <aclass="btn"href="/rule/?card_no=BT16-102"target="_blank"rel="noopenernoreferrer"><spanclass="txtNormal"><i><p>CardQ&amp;A</p></i></span></a>
  10459. </div>
  10460. </div>
  10461. <divid="card_closebtn"class="popup_closebtn"><a>CLOSE</a><span>CLOSE</span></div>
  10462. </div>
  10463. </div>
  10464. </li>