doom.bm 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981
  1. brightmap sprite bar1a0
  2. {
  3. map "brightmaps/sprites/doom/bar1a0.png"
  4. iwad
  5. disablefullbright
  6. }
  7. brightmap sprite bar1b0
  8. {
  9. map "brightmaps/sprites/doom/bar1b0.png"
  10. iwad
  11. disablefullbright
  12. }
  13. brightmap sprite bexpa0
  14. {
  15. map "brightmaps/sprites/doom/bexpa0.png"
  16. iwad
  17. disablefullbright
  18. }
  19. brightmap sprite bexpb0
  20. {
  21. iwad
  22. disablefullbright
  23. }
  24. brightmap sprite bexpc0
  25. {
  26. map "brightmaps/sprites/doom/bexpc0.png"
  27. iwad
  28. disablefullbright
  29. }
  30. brightmap sprite bexpd0
  31. {
  32. map "brightmaps/sprites/doom/bexpd0.png"
  33. iwad
  34. disablefullbright
  35. }
  36. brightmap sprite bexpe0
  37. {
  38. map "brightmaps/sprites/doom/bexpe0.png"
  39. iwad
  40. disablefullbright
  41. }
  42. brightmap sprite bfgfa0
  43. {
  44. map "brightmaps/sprites/doom/bfgfa0.png"
  45. iwad
  46. disablefullbright
  47. }
  48. brightmap sprite bfgfb0
  49. {
  50. map "brightmaps/sprites/doom/bfgfb0.png"
  51. iwad
  52. disablefullbright
  53. }
  54. brightmap sprite bfgga0
  55. {
  56. map "brightmaps/sprites/doom/bfgga0.png"
  57. iwad
  58. disablefullbright
  59. }
  60. brightmap sprite bfggb0
  61. {
  62. map "brightmaps/sprites/doom/bfggb0.png"
  63. iwad
  64. disablefullbright
  65. }
  66. brightmap sprite bfggc0
  67. {
  68. map "brightmaps/sprites/doom/bfggc0.png"
  69. iwad
  70. disablefullbright
  71. }
  72. brightmap sprite bfuga0
  73. {
  74. map "brightmaps/sprites/doom/bfuga0.png"
  75. iwad
  76. disablefullbright
  77. }
  78. brightmap sprite bon1a0
  79. {
  80. iwad
  81. disablefullbright
  82. }
  83. brightmap sprite bon1b0
  84. {
  85. map "brightmaps/sprites/doom/bon1b0.png"
  86. iwad
  87. disablefullbright
  88. }
  89. brightmap sprite bon1c0
  90. {
  91. map "brightmaps/sprites/doom/bon1c0.png"
  92. iwad
  93. disablefullbright
  94. }
  95. brightmap sprite bon1d0
  96. {
  97. map "brightmaps/sprites/doom/bon1d0.png"
  98. iwad
  99. disablefullbright
  100. }
  101. brightmap sprite bon2a0
  102. {
  103. iwad
  104. disablefullbright
  105. }
  106. brightmap sprite bon2b0
  107. {
  108. map "brightmaps/sprites/doom/bon2b0.png"
  109. iwad
  110. disablefullbright
  111. }
  112. brightmap sprite bon2c0
  113. {
  114. map "brightmaps/sprites/doom/bon2c0.png"
  115. iwad
  116. disablefullbright
  117. }
  118. brightmap sprite bon2d0
  119. {
  120. map "brightmaps/sprites/doom/bon2d0.png"
  121. iwad
  122. disablefullbright
  123. }
  124. brightmap sprite bossa1
  125. {
  126. map "brightmaps/sprites/doom/bossa1.png"
  127. iwad
  128. disablefullbright
  129. }
  130. brightmap sprite bossa2a8
  131. {
  132. map "brightmaps/sprites/doom/bossa2a8.png"
  133. iwad
  134. disablefullbright
  135. }
  136. brightmap sprite bossa3a7
  137. {
  138. map "brightmaps/sprites/doom/bossa3a7.png"
  139. iwad
  140. disablefullbright
  141. }
  142. brightmap sprite bossa4a6
  143. {
  144. map "brightmaps/sprites/doom/bossa4a6.png"
  145. iwad
  146. disablefullbright
  147. }
  148. brightmap sprite bossa5
  149. {
  150. map "brightmaps/sprites/doom/bossa5.png"
  151. iwad
  152. disablefullbright
  153. }
  154. brightmap sprite bossb1
  155. {
  156. map "brightmaps/sprites/doom/bossb1.png"
  157. iwad
  158. disablefullbright
  159. }
  160. brightmap sprite bossb2b8
  161. {
  162. map "brightmaps/sprites/doom/bossb2b8.png"
  163. iwad
  164. disablefullbright
  165. }
  166. brightmap sprite bossb3b7
  167. {
  168. map "brightmaps/sprites/doom/bossb3b7.png"
  169. iwad
  170. disablefullbright
  171. }
  172. brightmap sprite bossb4b6
  173. {
  174. map "brightmaps/sprites/doom/bossb4b6.png"
  175. iwad
  176. disablefullbright
  177. }
  178. brightmap sprite bossb5
  179. {
  180. map "brightmaps/sprites/doom/bossb5.png"
  181. iwad
  182. disablefullbright
  183. }
  184. brightmap sprite bossc1
  185. {
  186. map "brightmaps/sprites/doom/bossc1.png"
  187. iwad
  188. disablefullbright
  189. }
  190. brightmap sprite bossc2c8
  191. {
  192. map "brightmaps/sprites/doom/bossc2c8.png"
  193. iwad
  194. disablefullbright
  195. }
  196. brightmap sprite bossc3c7
  197. {
  198. map "brightmaps/sprites/doom/bossc3c7.png"
  199. iwad
  200. disablefullbright
  201. }
  202. brightmap sprite bossc4c6
  203. {
  204. map "brightmaps/sprites/doom/bossc4c6.png"
  205. iwad
  206. disablefullbright
  207. }
  208. brightmap sprite bossc5
  209. {
  210. map "brightmaps/sprites/doom/bossc5.png"
  211. iwad
  212. disablefullbright
  213. }
  214. brightmap sprite bossd1
  215. {
  216. map "brightmaps/sprites/doom/bossd1.png"
  217. iwad
  218. disablefullbright
  219. }
  220. brightmap sprite bossd2d8
  221. {
  222. map "brightmaps/sprites/doom/bossd2d8.png"
  223. iwad
  224. disablefullbright
  225. }
  226. brightmap sprite bossd3d7
  227. {
  228. map "brightmaps/sprites/doom/bossd3d7.png"
  229. iwad
  230. disablefullbright
  231. }
  232. brightmap sprite bossd4d6
  233. {
  234. map "brightmaps/sprites/doom/bossd4d6.png"
  235. iwad
  236. disablefullbright
  237. }
  238. brightmap sprite bossd5
  239. {
  240. map "brightmaps/sprites/doom/bossd5.png"
  241. iwad
  242. disablefullbright
  243. }
  244. brightmap sprite bosse1
  245. {
  246. map "brightmaps/sprites/doom/bosse1.png"
  247. iwad
  248. disablefullbright
  249. }
  250. brightmap sprite bosse2
  251. {
  252. map "brightmaps/sprites/doom/bosse2.png"
  253. iwad
  254. disablefullbright
  255. }
  256. brightmap sprite bosse3
  257. {
  258. map "brightmaps/sprites/doom/bosse3.png"
  259. iwad
  260. disablefullbright
  261. }
  262. brightmap sprite bosse4
  263. {
  264. map "brightmaps/sprites/doom/bosse4.png"
  265. iwad
  266. disablefullbright
  267. }
  268. brightmap sprite bosse5
  269. {
  270. map "brightmaps/sprites/doom/bosse5.png"
  271. iwad
  272. disablefullbright
  273. }
  274. brightmap sprite bosse6
  275. {
  276. map "brightmaps/sprites/doom/bosse6.png"
  277. iwad
  278. disablefullbright
  279. }
  280. brightmap sprite bosse7
  281. {
  282. map "brightmaps/sprites/doom/bosse7.png"
  283. iwad
  284. disablefullbright
  285. }
  286. brightmap sprite bosse8
  287. {
  288. map "brightmaps/sprites/doom/bosse8.png"
  289. iwad
  290. disablefullbright
  291. }
  292. brightmap sprite bossf1
  293. {
  294. map "brightmaps/sprites/doom/bossf1.png"
  295. iwad
  296. disablefullbright
  297. }
  298. brightmap sprite bossf2
  299. {
  300. map "brightmaps/sprites/doom/bossf2.png"
  301. iwad
  302. disablefullbright
  303. }
  304. brightmap sprite bossf3
  305. {
  306. map "brightmaps/sprites/doom/bossf3.png"
  307. iwad
  308. disablefullbright
  309. }
  310. brightmap sprite bossf4
  311. {
  312. map "brightmaps/sprites/doom/bossf4.png"
  313. iwad
  314. disablefullbright
  315. }
  316. brightmap sprite bossf5
  317. {
  318. map "brightmaps/sprites/doom/bossf5.png"
  319. iwad
  320. disablefullbright
  321. }
  322. brightmap sprite bossf6
  323. {
  324. map "brightmaps/sprites/doom/bossf6.png"
  325. iwad
  326. disablefullbright
  327. }
  328. brightmap sprite bossf7
  329. {
  330. map "brightmaps/sprites/doom/bossf7.png"
  331. iwad
  332. disablefullbright
  333. }
  334. brightmap sprite bossf8
  335. {
  336. map "brightmaps/sprites/doom/bossf8.png"
  337. iwad
  338. disablefullbright
  339. }
  340. brightmap sprite bossg1
  341. {
  342. map "brightmaps/sprites/doom/bossg1.png"
  343. iwad
  344. disablefullbright
  345. }
  346. brightmap sprite bossg2
  347. {
  348. map "brightmaps/sprites/doom/bossg2.png"
  349. iwad
  350. disablefullbright
  351. }
  352. brightmap sprite bossg3
  353. {
  354. map "brightmaps/sprites/doom/bossg3.png"
  355. iwad
  356. disablefullbright
  357. }
  358. brightmap sprite bossg4
  359. {
  360. map "brightmaps/sprites/doom/bossg4.png"
  361. iwad
  362. disablefullbright
  363. }
  364. brightmap sprite bossg5
  365. {
  366. map "brightmaps/sprites/doom/bossg5.png"
  367. iwad
  368. disablefullbright
  369. }
  370. brightmap sprite bossg6
  371. {
  372. map "brightmaps/sprites/doom/bossg6.png"
  373. iwad
  374. disablefullbright
  375. }
  376. brightmap sprite bossg7
  377. {
  378. map "brightmaps/sprites/doom/bossg7.png"
  379. iwad
  380. disablefullbright
  381. }
  382. brightmap sprite bossg8
  383. {
  384. map "brightmaps/sprites/doom/bossg8.png"
  385. iwad
  386. disablefullbright
  387. }
  388. brightmap sprite bossh1
  389. {
  390. map "brightmaps/sprites/doom/bossh1.png"
  391. iwad
  392. disablefullbright
  393. }
  394. brightmap sprite bossh2
  395. {
  396. map "brightmaps/sprites/doom/bossh2.png"
  397. iwad
  398. disablefullbright
  399. }
  400. brightmap sprite bossh3
  401. {
  402. map "brightmaps/sprites/doom/bossh3.png"
  403. iwad
  404. disablefullbright
  405. }
  406. brightmap sprite bossh4
  407. {
  408. map "brightmaps/sprites/doom/bossh4.png"
  409. iwad
  410. disablefullbright
  411. }
  412. brightmap sprite bossh5
  413. {
  414. map "brightmaps/sprites/doom/bossh5.png"
  415. iwad
  416. disablefullbright
  417. }
  418. brightmap sprite bossh6
  419. {
  420. map "brightmaps/sprites/doom/bossh6.png"
  421. iwad
  422. disablefullbright
  423. }
  424. brightmap sprite bossh7
  425. {
  426. map "brightmaps/sprites/doom/bossh7.png"
  427. iwad
  428. disablefullbright
  429. }
  430. brightmap sprite bossh8
  431. {
  432. map "brightmaps/sprites/doom/bossh8.png"
  433. iwad
  434. disablefullbright
  435. }
  436. brightmap sprite bossi0
  437. {
  438. map "brightmaps/sprites/doom/bossi0.png"
  439. iwad
  440. disablefullbright
  441. }
  442. brightmap sprite bossj0
  443. {
  444. map "brightmaps/sprites/doom/bossj0.png"
  445. iwad
  446. disablefullbright
  447. }
  448. brightmap sprite bossk0
  449. {
  450. map "brightmaps/sprites/doom/bossk0.png"
  451. iwad
  452. disablefullbright
  453. }
  454. brightmap sprite bossl0
  455. {
  456. map "brightmaps/sprites/doom/bossl0.png"
  457. iwad
  458. disablefullbright
  459. }
  460. brightmap sprite bossm0
  461. {
  462. map "brightmaps/sprites/doom/bossm0.png"
  463. iwad
  464. disablefullbright
  465. }
  466. brightmap sprite bossn0
  467. {
  468. iwad
  469. disablefullbright
  470. }
  471. brightmap sprite bosso0
  472. {
  473. iwad
  474. disablefullbright
  475. }
  476. brightmap sprite canda0
  477. {
  478. map "brightmaps/sprites/doom/canda0.png"
  479. iwad
  480. disablefullbright
  481. }
  482. brightmap sprite cbraa0
  483. {
  484. map "brightmaps/sprites/doom/cbraa0.png"
  485. iwad
  486. disablefullbright
  487. }
  488. brightmap sprite cella0
  489. {
  490. map "brightmaps/sprites/doom/cella0.png"
  491. iwad
  492. disablefullbright
  493. }
  494. brightmap sprite celpa0
  495. {
  496. map "brightmaps/sprites/doom/celpa0.png"
  497. iwad
  498. disablefullbright
  499. }
  500. brightmap sprite ceyea0
  501. {
  502. map "brightmaps/sprites/doom/ceyea0.png"
  503. iwad
  504. disablefullbright
  505. }
  506. brightmap sprite ceyeb0
  507. {
  508. map "brightmaps/sprites/doom/ceyeb0.png"
  509. iwad
  510. disablefullbright
  511. }
  512. brightmap sprite ceyec0
  513. {
  514. map "brightmaps/sprites/doom/ceyec0.png"
  515. iwad
  516. disablefullbright
  517. }
  518. brightmap sprite chgfa0
  519. {
  520. map "brightmaps/sprites/doom/chgfa0.png"
  521. iwad
  522. disablefullbright
  523. }
  524. brightmap sprite chgfb0
  525. {
  526. map "brightmaps/sprites/doom/chgfb0.png"
  527. iwad
  528. disablefullbright
  529. }
  530. brightmap sprite colua0
  531. {
  532. map "brightmaps/sprites/doom/colua0.png"
  533. iwad
  534. disablefullbright
  535. }
  536. brightmap sprite cybra1
  537. {
  538. map "brightmaps/sprites/doom/cybra1.png"
  539. iwad
  540. disablefullbright
  541. }
  542. brightmap sprite cybra2
  543. {
  544. map "brightmaps/sprites/doom/cybra2.png"
  545. iwad
  546. disablefullbright
  547. }
  548. brightmap sprite cybra3
  549. {
  550. map "brightmaps/sprites/doom/cybra3.png"
  551. iwad
  552. disablefullbright
  553. }
  554. brightmap sprite cybra4
  555. {
  556. iwad
  557. disablefullbright
  558. }
  559. brightmap sprite cybra5
  560. {
  561. iwad
  562. disablefullbright
  563. }
  564. brightmap sprite cybra6
  565. {
  566. iwad
  567. disablefullbright
  568. }
  569. brightmap sprite cybra7
  570. {
  571. map "brightmaps/sprites/doom/cybra7.png"
  572. iwad
  573. disablefullbright
  574. }
  575. brightmap sprite cybra8
  576. {
  577. map "brightmaps/sprites/doom/cybra8.png"
  578. iwad
  579. disablefullbright
  580. }
  581. brightmap sprite cybrb1
  582. {
  583. map "brightmaps/sprites/doom/cybrb1.png"
  584. iwad
  585. disablefullbright
  586. }
  587. brightmap sprite cybrb2
  588. {
  589. map "brightmaps/sprites/doom/cybrb2.png"
  590. iwad
  591. disablefullbright
  592. }
  593. brightmap sprite cybrb3
  594. {
  595. map "brightmaps/sprites/doom/cybrb3.png"
  596. iwad
  597. disablefullbright
  598. }
  599. brightmap sprite cybrb4
  600. {
  601. iwad
  602. disablefullbright
  603. }
  604. brightmap sprite cybrb5
  605. {
  606. iwad
  607. disablefullbright
  608. }
  609. brightmap sprite cybrb6
  610. {
  611. iwad
  612. disablefullbright
  613. }
  614. brightmap sprite cybrb7
  615. {
  616. map "brightmaps/sprites/doom/cybrb7.png"
  617. iwad
  618. disablefullbright
  619. }
  620. brightmap sprite cybrb8
  621. {
  622. map "brightmaps/sprites/doom/cybrb8.png"
  623. iwad
  624. disablefullbright
  625. }
  626. brightmap sprite cybrc1
  627. {
  628. map "brightmaps/sprites/doom/cybrc1.png"
  629. iwad
  630. disablefullbright
  631. }
  632. brightmap sprite cybrc2
  633. {
  634. map "brightmaps/sprites/doom/cybrc2.png"
  635. iwad
  636. disablefullbright
  637. }
  638. brightmap sprite cybrc3
  639. {
  640. map "brightmaps/sprites/doom/cybrc3.png"
  641. iwad
  642. disablefullbright
  643. }
  644. brightmap sprite cybrc4
  645. {
  646. iwad
  647. disablefullbright
  648. }
  649. brightmap sprite cybrc5
  650. {
  651. iwad
  652. disablefullbright
  653. }
  654. brightmap sprite cybrc6
  655. {
  656. iwad
  657. disablefullbright
  658. }
  659. brightmap sprite cybrc7
  660. {
  661. map "brightmaps/sprites/doom/cybrc7.png"
  662. iwad
  663. disablefullbright
  664. }
  665. brightmap sprite cybrc8
  666. {
  667. map "brightmaps/sprites/doom/cybrc8.png"
  668. iwad
  669. disablefullbright
  670. }
  671. brightmap sprite cybrd1
  672. {
  673. map "brightmaps/sprites/doom/cybrd1.png"
  674. iwad
  675. disablefullbright
  676. }
  677. brightmap sprite cybrd2
  678. {
  679. map "brightmaps/sprites/doom/cybrd2.png"
  680. iwad
  681. disablefullbright
  682. }
  683. brightmap sprite cybrd3
  684. {
  685. map "brightmaps/sprites/doom/cybrd3.png"
  686. iwad
  687. disablefullbright
  688. }
  689. brightmap sprite cybrd4
  690. {
  691. iwad
  692. disablefullbright
  693. }
  694. brightmap sprite cybrd5
  695. {
  696. iwad
  697. disablefullbright
  698. }
  699. brightmap sprite cybrd6
  700. {
  701. iwad
  702. disablefullbright
  703. }
  704. brightmap sprite cybrd7
  705. {
  706. map "brightmaps/sprites/doom/cybrd7.png"
  707. iwad
  708. disablefullbright
  709. }
  710. brightmap sprite cybrd8
  711. {
  712. map "brightmaps/sprites/doom/cybrd8.png"
  713. iwad
  714. disablefullbright
  715. }
  716. brightmap sprite cybre1
  717. {
  718. map "brightmaps/sprites/doom/cybre1.png"
  719. iwad
  720. disablefullbright
  721. }
  722. brightmap sprite cybre2
  723. {
  724. map "brightmaps/sprites/doom/cybre2.png"
  725. iwad
  726. disablefullbright
  727. }
  728. brightmap sprite cybre3
  729. {
  730. map "brightmaps/sprites/doom/cybre3.png"
  731. iwad
  732. disablefullbright
  733. }
  734. brightmap sprite cybre4
  735. {
  736. iwad
  737. disablefullbright
  738. }
  739. brightmap sprite cybre5
  740. {
  741. iwad
  742. disablefullbright
  743. }
  744. brightmap sprite cybre6
  745. {
  746. iwad
  747. disablefullbright
  748. }
  749. brightmap sprite cybre7
  750. {
  751. map "brightmaps/sprites/doom/cybre7.png"
  752. iwad
  753. disablefullbright
  754. }
  755. brightmap sprite cybre8
  756. {
  757. map "brightmaps/sprites/doom/cybre8.png"
  758. iwad
  759. disablefullbright
  760. }
  761. brightmap sprite cybrf1
  762. {
  763. map "brightmaps/sprites/doom/cybrf1.png"
  764. iwad
  765. disablefullbright
  766. }
  767. brightmap sprite cybrf2
  768. {
  769. map "brightmaps/sprites/doom/cybrf2.png"
  770. iwad
  771. disablefullbright
  772. }
  773. brightmap sprite cybrf3
  774. {
  775. map "brightmaps/sprites/doom/cybrf3.png"
  776. iwad
  777. disablefullbright
  778. }
  779. brightmap sprite cybrf4
  780. {
  781. map "brightmaps/sprites/doom/cybrf4.png"
  782. iwad
  783. disablefullbright
  784. }
  785. brightmap sprite cybrf5
  786. {
  787. map "brightmaps/sprites/doom/cybrf5.png"
  788. iwad
  789. disablefullbright
  790. }
  791. brightmap sprite cybrf6
  792. {
  793. map "brightmaps/sprites/doom/cybrf6.png"
  794. iwad
  795. disablefullbright
  796. }
  797. brightmap sprite cybrf7
  798. {
  799. map "brightmaps/sprites/doom/cybrf7.png"
  800. iwad
  801. disablefullbright
  802. }
  803. brightmap sprite cybrf8
  804. {
  805. map "brightmaps/sprites/doom/cybrf8.png"
  806. iwad
  807. disablefullbright
  808. }
  809. brightmap sprite cybrg1
  810. {
  811. map "brightmaps/sprites/doom/cybrg1.png"
  812. iwad
  813. disablefullbright
  814. }
  815. brightmap sprite cybrg2
  816. {
  817. map "brightmaps/sprites/doom/cybrg2.png"
  818. iwad
  819. disablefullbright
  820. }
  821. brightmap sprite cybrg3
  822. {
  823. iwad
  824. disablefullbright
  825. }
  826. brightmap sprite cybrg4
  827. {
  828. iwad
  829. disablefullbright
  830. }
  831. brightmap sprite cybrg5
  832. {
  833. iwad
  834. disablefullbright
  835. }
  836. brightmap sprite cybrg6
  837. {
  838. iwad
  839. disablefullbright
  840. }
  841. brightmap sprite cybrg7
  842. {
  843. iwad
  844. disablefullbright
  845. }
  846. brightmap sprite cybrg8
  847. {
  848. map "brightmaps/sprites/doom/cybrg8.png"
  849. iwad
  850. disablefullbright
  851. }
  852. brightmap sprite cybrh0
  853. {
  854. map "brightmaps/sprites/doom/cybrh0.png"
  855. iwad
  856. disablefullbright
  857. }
  858. brightmap sprite cybri0
  859. {
  860. map "brightmaps/sprites/doom/cybri0.png"
  861. iwad
  862. disablefullbright
  863. }
  864. brightmap sprite cybrj0
  865. {
  866. map "brightmaps/sprites/doom/cybrj0.png"
  867. iwad
  868. disablefullbright
  869. }
  870. brightmap sprite cybrk0
  871. {
  872. map "brightmaps/sprites/doom/cybrk0.png"
  873. iwad
  874. disablefullbright
  875. }
  876. brightmap sprite cybrl0
  877. {
  878. map "brightmaps/sprites/doom/cybrl0.png"
  879. iwad
  880. disablefullbright
  881. }
  882. brightmap sprite cybrm0
  883. {
  884. map "brightmaps/sprites/doom/cybrm0.png"
  885. iwad
  886. disablefullbright
  887. }
  888. brightmap sprite cybrn0
  889. {
  890. map "brightmaps/sprites/doom/cybrn0.png"
  891. iwad
  892. disablefullbright
  893. }
  894. brightmap sprite cybro0
  895. {
  896. map "brightmaps/sprites/doom/cybro0.png"
  897. iwad
  898. disablefullbright
  899. }
  900. brightmap sprite cybrp0
  901. {
  902. iwad
  903. disablefullbright
  904. }
  905. brightmap sprite fcana0
  906. {
  907. map "brightmaps/sprites/doom/fcana0.png"
  908. iwad
  909. disablefullbright
  910. }
  911. brightmap sprite fcanb0
  912. {
  913. map "brightmaps/sprites/doom/fcanb0.png"
  914. iwad
  915. disablefullbright
  916. }
  917. brightmap sprite fcanc0
  918. {
  919. map "brightmaps/sprites/doom/fcanc0.png"
  920. iwad
  921. disablefullbright
  922. }
  923. brightmap sprite fskua0
  924. {
  925. map "brightmaps/sprites/doom/fskua0.png"
  926. iwad
  927. disablefullbright
  928. }
  929. brightmap sprite fskub0
  930. {
  931. map "brightmaps/sprites/doom/fskub0.png"
  932. iwad
  933. disablefullbright
  934. }
  935. brightmap sprite fskuc0
  936. {
  937. map "brightmaps/sprites/doom/fskuc0.png"
  938. iwad
  939. disablefullbright
  940. }
  941. brightmap sprite heada1
  942. {
  943. map "brightmaps/sprites/doom/heada1.png"
  944. iwad
  945. disablefullbright
  946. }
  947. brightmap sprite heada2a8
  948. {
  949. map "brightmaps/sprites/doom/heada2a8.png"
  950. iwad
  951. disablefullbright
  952. }
  953. brightmap sprite heada3a7
  954. {
  955. map "brightmaps/sprites/doom/heada3a7.png"
  956. iwad
  957. disablefullbright
  958. }
  959. brightmap sprite heada4a6
  960. {
  961. iwad
  962. disablefullbright
  963. }
  964. brightmap sprite heada5
  965. {
  966. iwad
  967. disablefullbright
  968. }
  969. brightmap sprite headb1
  970. {
  971. map "brightmaps/sprites/doom/headb1.png"
  972. iwad
  973. disablefullbright
  974. }
  975. brightmap sprite headb2b8
  976. {
  977. map "brightmaps/sprites/doom/headb2b8.png"
  978. iwad
  979. disablefullbright
  980. }
  981. brightmap sprite headb3b7
  982. {
  983. map "brightmaps/sprites/doom/headb3b7.png"
  984. iwad
  985. disablefullbright
  986. }
  987. brightmap sprite headb4b6
  988. {
  989. map "brightmaps/sprites/doom/headb4b6.png"
  990. iwad
  991. disablefullbright
  992. }
  993. brightmap sprite headb5
  994. {
  995. map "brightmaps/sprites/doom/headb5.png"
  996. iwad
  997. disablefullbright
  998. }
  999. brightmap sprite headc1
  1000. {
  1001. map "brightmaps/sprites/doom/headc1.png"
  1002. iwad
  1003. disablefullbright
  1004. }
  1005. brightmap sprite headc2c8
  1006. {
  1007. map "brightmaps/sprites/doom/headc2c8.png"
  1008. iwad
  1009. disablefullbright
  1010. }
  1011. brightmap sprite headc3c7
  1012. {
  1013. map "brightmaps/sprites/doom/headc3c7.png"
  1014. iwad
  1015. disablefullbright
  1016. }
  1017. brightmap sprite headc4c6
  1018. {
  1019. map "brightmaps/sprites/doom/headc4c6.png"
  1020. iwad
  1021. disablefullbright
  1022. }
  1023. brightmap sprite headc5
  1024. {
  1025. map "brightmaps/sprites/doom/headc5.png"
  1026. iwad
  1027. disablefullbright
  1028. }
  1029. brightmap sprite headd1
  1030. {
  1031. map "brightmaps/sprites/doom/headd1.png"
  1032. iwad
  1033. disablefullbright
  1034. }
  1035. brightmap sprite headd2d8
  1036. {
  1037. map "brightmaps/sprites/doom/headd2d8.png"
  1038. iwad
  1039. disablefullbright
  1040. }
  1041. brightmap sprite headd3d7
  1042. {
  1043. map "brightmaps/sprites/doom/headd3d7.png"
  1044. iwad
  1045. disablefullbright
  1046. }
  1047. brightmap sprite headd4d6
  1048. {
  1049. map "brightmaps/sprites/doom/headd4d6.png"
  1050. iwad
  1051. disablefullbright
  1052. }
  1053. brightmap sprite headd5
  1054. {
  1055. map "brightmaps/sprites/doom/headd5.png"
  1056. iwad
  1057. disablefullbright
  1058. }
  1059. brightmap sprite heade1
  1060. {
  1061. map "brightmaps/sprites/doom/heade1.png"
  1062. iwad
  1063. disablefullbright
  1064. }
  1065. brightmap sprite heade2e8
  1066. {
  1067. map "brightmaps/sprites/doom/heade2e8.png"
  1068. iwad
  1069. disablefullbright
  1070. }
  1071. brightmap sprite heade3e7
  1072. {
  1073. map "brightmaps/sprites/doom/heade3e7.png"
  1074. iwad
  1075. disablefullbright
  1076. }
  1077. brightmap sprite heade4e6
  1078. {
  1079. iwad
  1080. disablefullbright
  1081. }
  1082. brightmap sprite heade5
  1083. {
  1084. iwad
  1085. disablefullbright
  1086. }
  1087. brightmap sprite headf1
  1088. {
  1089. map "brightmaps/sprites/doom/headf1.png"
  1090. iwad
  1091. disablefullbright
  1092. }
  1093. brightmap sprite headf2f8
  1094. {
  1095. map "brightmaps/sprites/doom/headf2f8.png"
  1096. iwad
  1097. disablefullbright
  1098. }
  1099. brightmap sprite headf3f7
  1100. {
  1101. map "brightmaps/sprites/doom/headf3f7.png"
  1102. iwad
  1103. disablefullbright
  1104. }
  1105. brightmap sprite headf4f6
  1106. {
  1107. iwad
  1108. disablefullbright
  1109. }
  1110. brightmap sprite headf5
  1111. {
  1112. iwad
  1113. disablefullbright
  1114. }
  1115. brightmap sprite headg0
  1116. {
  1117. map "brightmaps/sprites/doom/headg0.png"
  1118. iwad
  1119. disablefullbright
  1120. }
  1121. brightmap sprite headh0
  1122. {
  1123. map "brightmaps/sprites/doom/headh0.png"
  1124. iwad
  1125. disablefullbright
  1126. }
  1127. brightmap sprite headi0
  1128. {
  1129. map "brightmaps/sprites/doom/headi0.png"
  1130. iwad
  1131. disablefullbright
  1132. }
  1133. brightmap sprite headj0
  1134. {
  1135. map "brightmaps/sprites/doom/headj0.png"
  1136. iwad
  1137. disablefullbright
  1138. }
  1139. brightmap sprite headk0
  1140. {
  1141. map "brightmaps/sprites/doom/headk0.png"
  1142. iwad
  1143. disablefullbright
  1144. }
  1145. brightmap sprite misfa0
  1146. {
  1147. map "brightmaps/sprites/doom/misfa0.png"
  1148. iwad
  1149. disablefullbright
  1150. }
  1151. brightmap sprite misfb0
  1152. {
  1153. map "brightmaps/sprites/doom/misfb0.png"
  1154. iwad
  1155. disablefullbright
  1156. }
  1157. brightmap sprite misfc0
  1158. {
  1159. map "brightmaps/sprites/doom/misfc0.png"
  1160. iwad
  1161. disablefullbright
  1162. }
  1163. brightmap sprite misfd0
  1164. {
  1165. map "brightmaps/sprites/doom/misfd0.png"
  1166. iwad
  1167. disablefullbright
  1168. }
  1169. brightmap sprite misla1
  1170. {
  1171. iwad
  1172. disablefullbright
  1173. }
  1174. brightmap sprite misla5
  1175. {
  1176. map "brightmaps/sprites/doom/misla5.png"
  1177. iwad
  1178. disablefullbright
  1179. }
  1180. brightmap sprite misla6a4
  1181. {
  1182. map "brightmaps/sprites/doom/misla6a4.png"
  1183. iwad
  1184. disablefullbright
  1185. }
  1186. brightmap sprite misla7a3
  1187. {
  1188. map "brightmaps/sprites/doom/misla7a3.png"
  1189. iwad
  1190. disablefullbright
  1191. }
  1192. brightmap sprite misla8a2
  1193. {
  1194. map "brightmaps/sprites/doom/misla8a2.png"
  1195. iwad
  1196. disablefullbright
  1197. }
  1198. brightmap sprite pinsa0
  1199. {
  1200. map "brightmaps/sprites/doom/pinsa0.png"
  1201. iwad
  1202. disablefullbright
  1203. }
  1204. brightmap sprite pinsb0
  1205. {
  1206. map "brightmaps/sprites/doom/pinsb0.png"
  1207. iwad
  1208. disablefullbright
  1209. }
  1210. brightmap sprite pinsc0
  1211. {
  1212. map "brightmaps/sprites/doom/pinsc0.png"
  1213. iwad
  1214. disablefullbright
  1215. }
  1216. brightmap sprite pinsd0
  1217. {
  1218. iwad
  1219. disablefullbright
  1220. }
  1221. brightmap sprite pinva0
  1222. {
  1223. map "brightmaps/sprites/doom/pinva0.png"
  1224. iwad
  1225. disablefullbright
  1226. }
  1227. brightmap sprite pinvb0
  1228. {
  1229. map "brightmaps/sprites/doom/pinvb0.png"
  1230. iwad
  1231. disablefullbright
  1232. }
  1233. brightmap sprite pinvc0
  1234. {
  1235. map "brightmaps/sprites/doom/pinvc0.png"
  1236. iwad
  1237. disablefullbright
  1238. }
  1239. brightmap sprite pinvd0
  1240. {
  1241. map "brightmaps/sprites/doom/pinvd0.png"
  1242. iwad
  1243. disablefullbright
  1244. }
  1245. brightmap sprite pisfa0
  1246. {
  1247. map "brightmaps/sprites/doom/pisfa0.png"
  1248. iwad
  1249. disablefullbright
  1250. }
  1251. brightmap sprite plasa0
  1252. {
  1253. map "brightmaps/sprites/doom/plasa0.png"
  1254. iwad
  1255. disablefullbright
  1256. }
  1257. brightmap sprite playa1
  1258. {
  1259. iwad
  1260. disablefullbright
  1261. }
  1262. brightmap sprite playa2a8
  1263. {
  1264. iwad
  1265. disablefullbright
  1266. }
  1267. brightmap sprite playa3a7
  1268. {
  1269. iwad
  1270. disablefullbright
  1271. }
  1272. brightmap sprite playa4a6
  1273. {
  1274. iwad
  1275. disablefullbright
  1276. }
  1277. brightmap sprite playa5
  1278. {
  1279. iwad
  1280. disablefullbright
  1281. }
  1282. brightmap sprite playb1
  1283. {
  1284. iwad
  1285. disablefullbright
  1286. }
  1287. brightmap sprite playb2b8
  1288. {
  1289. iwad
  1290. disablefullbright
  1291. }
  1292. brightmap sprite playb3b7
  1293. {
  1294. iwad
  1295. disablefullbright
  1296. }
  1297. brightmap sprite playb4b6
  1298. {
  1299. iwad
  1300. disablefullbright
  1301. }
  1302. brightmap sprite playb5
  1303. {
  1304. iwad
  1305. disablefullbright
  1306. }
  1307. brightmap sprite playc1
  1308. {
  1309. iwad
  1310. disablefullbright
  1311. }
  1312. brightmap sprite playc2c8
  1313. {
  1314. iwad
  1315. disablefullbright
  1316. }
  1317. brightmap sprite playc3c7
  1318. {
  1319. iwad
  1320. disablefullbright
  1321. }
  1322. brightmap sprite playc4c6
  1323. {
  1324. iwad
  1325. disablefullbright
  1326. }
  1327. brightmap sprite playc5
  1328. {
  1329. iwad
  1330. disablefullbright
  1331. }
  1332. brightmap sprite playd1
  1333. {
  1334. iwad
  1335. disablefullbright
  1336. }
  1337. brightmap sprite playd2d8
  1338. {
  1339. iwad
  1340. disablefullbright
  1341. }
  1342. brightmap sprite playd3d7
  1343. {
  1344. iwad
  1345. disablefullbright
  1346. }
  1347. brightmap sprite playd4d6
  1348. {
  1349. iwad
  1350. disablefullbright
  1351. }
  1352. brightmap sprite playd5
  1353. {
  1354. iwad
  1355. disablefullbright
  1356. }
  1357. brightmap sprite playe1
  1358. {
  1359. iwad
  1360. disablefullbright
  1361. }
  1362. brightmap sprite playe2e8
  1363. {
  1364. iwad
  1365. disablefullbright
  1366. }
  1367. brightmap sprite playe3e7
  1368. {
  1369. iwad
  1370. disablefullbright
  1371. }
  1372. brightmap sprite playe4e6
  1373. {
  1374. iwad
  1375. disablefullbright
  1376. }
  1377. brightmap sprite playe5
  1378. {
  1379. iwad
  1380. disablefullbright
  1381. }
  1382. brightmap sprite playf1
  1383. {
  1384. map "brightmaps/sprites/doom/playf1.png"
  1385. iwad
  1386. disablefullbright
  1387. }
  1388. brightmap sprite playf2f8
  1389. {
  1390. map "brightmaps/sprites/doom/playf2f8.png"
  1391. iwad
  1392. disablefullbright
  1393. }
  1394. brightmap sprite playf3f7
  1395. {
  1396. map "brightmaps/sprites/doom/playf3f7.png"
  1397. iwad
  1398. disablefullbright
  1399. }
  1400. brightmap sprite playf4f6
  1401. {
  1402. map "brightmaps/sprites/doom/playf4f6.png"
  1403. iwad
  1404. disablefullbright
  1405. }
  1406. brightmap sprite playf5
  1407. {
  1408. map "brightmaps/sprites/doom/playf5.png"
  1409. iwad
  1410. disablefullbright
  1411. }
  1412. brightmap sprite playg1
  1413. {
  1414. iwad
  1415. disablefullbright
  1416. }
  1417. brightmap sprite playg2g8
  1418. {
  1419. iwad
  1420. disablefullbright
  1421. }
  1422. brightmap sprite playg3g7
  1423. {
  1424. iwad
  1425. disablefullbright
  1426. }
  1427. brightmap sprite playg4g6
  1428. {
  1429. iwad
  1430. disablefullbright
  1431. }
  1432. brightmap sprite playg5
  1433. {
  1434. iwad
  1435. disablefullbright
  1436. }
  1437. brightmap sprite playh0
  1438. {
  1439. iwad
  1440. disablefullbright
  1441. }
  1442. brightmap sprite playi0
  1443. {
  1444. iwad
  1445. disablefullbright
  1446. }
  1447. brightmap sprite playj0
  1448. {
  1449. iwad
  1450. disablefullbright
  1451. }
  1452. brightmap sprite playk0
  1453. {
  1454. iwad
  1455. disablefullbright
  1456. }
  1457. brightmap sprite playl0
  1458. {
  1459. iwad
  1460. disablefullbright
  1461. }
  1462. brightmap sprite playm0
  1463. {
  1464. iwad
  1465. disablefullbright
  1466. }
  1467. brightmap sprite playn0
  1468. {
  1469. iwad
  1470. disablefullbright
  1471. }
  1472. brightmap sprite playo0
  1473. {
  1474. iwad
  1475. disablefullbright
  1476. }
  1477. brightmap sprite playp0
  1478. {
  1479. iwad
  1480. disablefullbright
  1481. }
  1482. brightmap sprite playq0
  1483. {
  1484. iwad
  1485. disablefullbright
  1486. }
  1487. brightmap sprite playr0
  1488. {
  1489. iwad
  1490. disablefullbright
  1491. }
  1492. brightmap sprite plays0
  1493. {
  1494. iwad
  1495. disablefullbright
  1496. }
  1497. brightmap sprite playt0
  1498. {
  1499. iwad
  1500. disablefullbright
  1501. }
  1502. brightmap sprite playu0
  1503. {
  1504. iwad
  1505. disablefullbright
  1506. }
  1507. brightmap sprite playv0
  1508. {
  1509. iwad
  1510. disablefullbright
  1511. }
  1512. brightmap sprite playw0
  1513. {
  1514. iwad
  1515. disablefullbright
  1516. }
  1517. brightmap sprite plsfa0
  1518. {
  1519. map "brightmaps/sprites/doom/plsfa0.png"
  1520. iwad
  1521. disablefullbright
  1522. }
  1523. brightmap sprite plsfb0
  1524. {
  1525. map "brightmaps/sprites/doom/plsfb0.png"
  1526. iwad
  1527. disablefullbright
  1528. }
  1529. brightmap sprite pmapa0
  1530. {
  1531. map "brightmaps/sprites/doom/pmapa0.png"
  1532. iwad
  1533. disablefullbright
  1534. }
  1535. brightmap sprite pmapb0
  1536. {
  1537. map "brightmaps/sprites/doom/pmapb0.png"
  1538. iwad
  1539. disablefullbright
  1540. }
  1541. brightmap sprite pmapc0
  1542. {
  1543. map "brightmaps/sprites/doom/pmapc0.png"
  1544. iwad
  1545. disablefullbright
  1546. }
  1547. brightmap sprite pmapd0
  1548. {
  1549. map "brightmaps/sprites/doom/pmapd0.png"
  1550. iwad
  1551. disablefullbright
  1552. }
  1553. brightmap sprite pol3a0
  1554. {
  1555. map "brightmaps/sprites/doom/pol3a0.png"
  1556. iwad
  1557. disablefullbright
  1558. }
  1559. brightmap sprite pol3b0
  1560. {
  1561. map "brightmaps/sprites/doom/pol3b0.png"
  1562. iwad
  1563. disablefullbright
  1564. }
  1565. brightmap sprite possa1
  1566. {
  1567. map "brightmaps/sprites/doom/possa1.png"
  1568. iwad
  1569. disablefullbright
  1570. }
  1571. brightmap sprite possa2a8
  1572. {
  1573. map "brightmaps/sprites/doom/possa2a8.png"
  1574. iwad
  1575. disablefullbright
  1576. }
  1577. brightmap sprite possa3a7
  1578. {
  1579. map "brightmaps/sprites/doom/possa3a7.png"
  1580. iwad
  1581. disablefullbright
  1582. }
  1583. brightmap sprite possa4a6
  1584. {
  1585. iwad
  1586. disablefullbright
  1587. }
  1588. brightmap sprite possa5
  1589. {
  1590. iwad
  1591. disablefullbright
  1592. }
  1593. brightmap sprite possb1
  1594. {
  1595. map "brightmaps/sprites/doom/possb1.png"
  1596. iwad
  1597. disablefullbright
  1598. }
  1599. brightmap sprite possb2b8
  1600. {
  1601. map "brightmaps/sprites/doom/possb2b8.png"
  1602. iwad
  1603. disablefullbright
  1604. }
  1605. brightmap sprite possb3b7
  1606. {
  1607. map "brightmaps/sprites/doom/possb3b7.png"
  1608. iwad
  1609. disablefullbright
  1610. }
  1611. brightmap sprite possb4b6
  1612. {
  1613. iwad
  1614. disablefullbright
  1615. }
  1616. brightmap sprite possb5
  1617. {
  1618. iwad
  1619. disablefullbright
  1620. }
  1621. brightmap sprite possc1
  1622. {
  1623. map "brightmaps/sprites/doom/possc1.png"
  1624. iwad
  1625. disablefullbright
  1626. }
  1627. brightmap sprite possc2c8
  1628. {
  1629. map "brightmaps/sprites/doom/possc2c8.png"
  1630. iwad
  1631. disablefullbright
  1632. }
  1633. brightmap sprite possc3c7
  1634. {
  1635. map "brightmaps/sprites/doom/possc3c7.png"
  1636. iwad
  1637. disablefullbright
  1638. }
  1639. brightmap sprite possc4c6
  1640. {
  1641. iwad
  1642. disablefullbright
  1643. }
  1644. brightmap sprite possc5
  1645. {
  1646. iwad
  1647. disablefullbright
  1648. }
  1649. brightmap sprite possd1
  1650. {
  1651. map "brightmaps/sprites/doom/possd1.png"
  1652. iwad
  1653. disablefullbright
  1654. }
  1655. brightmap sprite possd2d8
  1656. {
  1657. map "brightmaps/sprites/doom/possd2d8.png"
  1658. iwad
  1659. disablefullbright
  1660. }
  1661. brightmap sprite possd3d7
  1662. {
  1663. map "brightmaps/sprites/doom/possd3d7.png"
  1664. iwad
  1665. disablefullbright
  1666. }
  1667. brightmap sprite possd4d6
  1668. {
  1669. iwad
  1670. disablefullbright
  1671. }
  1672. brightmap sprite possd5
  1673. {
  1674. iwad
  1675. disablefullbright
  1676. }
  1677. brightmap sprite posse1
  1678. {
  1679. map "brightmaps/sprites/doom/posse1.png"
  1680. iwad
  1681. disablefullbright
  1682. }
  1683. brightmap sprite posse2e8
  1684. {
  1685. map "brightmaps/sprites/doom/posse2e8.png"
  1686. iwad
  1687. disablefullbright
  1688. }
  1689. brightmap sprite posse3e7
  1690. {
  1691. map "brightmaps/sprites/doom/posse3e7.png"
  1692. iwad
  1693. disablefullbright
  1694. }
  1695. brightmap sprite posse4e6
  1696. {
  1697. iwad
  1698. disablefullbright
  1699. }
  1700. brightmap sprite posse5
  1701. {
  1702. iwad
  1703. disablefullbright
  1704. }
  1705. brightmap sprite possf1
  1706. {
  1707. map "brightmaps/sprites/doom/possf1.png"
  1708. iwad
  1709. disablefullbright
  1710. }
  1711. brightmap sprite possf2f8
  1712. {
  1713. map "brightmaps/sprites/doom/possf2f8.png"
  1714. iwad
  1715. disablefullbright
  1716. }
  1717. brightmap sprite possf3f7
  1718. {
  1719. map "brightmaps/sprites/doom/possf3f7.png"
  1720. iwad
  1721. disablefullbright
  1722. }
  1723. brightmap sprite possf4f6
  1724. {
  1725. map "brightmaps/sprites/doom/possf4f6.png"
  1726. iwad
  1727. disablefullbright
  1728. }
  1729. brightmap sprite possf5
  1730. {
  1731. map "brightmaps/sprites/doom/possf5.png"
  1732. iwad
  1733. disablefullbright
  1734. }
  1735. brightmap sprite possg1
  1736. {
  1737. iwad
  1738. disablefullbright
  1739. }
  1740. brightmap sprite possg2g8
  1741. {
  1742. iwad
  1743. disablefullbright
  1744. }
  1745. brightmap sprite possg3g7
  1746. {
  1747. iwad
  1748. disablefullbright
  1749. }
  1750. brightmap sprite possg4g6
  1751. {
  1752. iwad
  1753. disablefullbright
  1754. }
  1755. brightmap sprite possg5
  1756. {
  1757. iwad
  1758. disablefullbright
  1759. }
  1760. brightmap sprite possh0
  1761. {
  1762. iwad
  1763. disablefullbright
  1764. }
  1765. brightmap sprite possi0
  1766. {
  1767. iwad
  1768. disablefullbright
  1769. }
  1770. brightmap sprite possj0
  1771. {
  1772. iwad
  1773. disablefullbright
  1774. }
  1775. brightmap sprite possk0
  1776. {
  1777. iwad
  1778. disablefullbright
  1779. }
  1780. brightmap sprite possl0
  1781. {
  1782. iwad
  1783. disablefullbright
  1784. }
  1785. brightmap sprite possm0
  1786. {
  1787. iwad
  1788. disablefullbright
  1789. }
  1790. brightmap sprite possn0
  1791. {
  1792. iwad
  1793. disablefullbright
  1794. }
  1795. brightmap sprite posso0
  1796. {
  1797. iwad
  1798. disablefullbright
  1799. }
  1800. brightmap sprite possp0
  1801. {
  1802. iwad
  1803. disablefullbright
  1804. }
  1805. brightmap sprite possq0
  1806. {
  1807. iwad
  1808. disablefullbright
  1809. }
  1810. brightmap sprite possr0
  1811. {
  1812. iwad
  1813. disablefullbright
  1814. }
  1815. brightmap sprite posss0
  1816. {
  1817. iwad
  1818. disablefullbright
  1819. }
  1820. brightmap sprite posst0
  1821. {
  1822. iwad
  1823. disablefullbright
  1824. }
  1825. brightmap sprite possu0
  1826. {
  1827. iwad
  1828. disablefullbright
  1829. }
  1830. brightmap sprite puffa0
  1831. {
  1832. map "brightmaps/sprites/doom/puffa0.png"
  1833. iwad
  1834. disablefullbright
  1835. }
  1836. brightmap sprite puffb0
  1837. {
  1838. map "brightmaps/sprites/doom/puffb0.png"
  1839. iwad
  1840. disablefullbright
  1841. }
  1842. brightmap sprite pvisa0
  1843. {
  1844. map "brightmaps/sprites/doom/pvisa0.png"
  1845. iwad
  1846. disablefullbright
  1847. }
  1848. brightmap sprite pvisb0
  1849. {
  1850. map "brightmaps/sprites/doom/pvisb0.png"
  1851. iwad
  1852. disablefullbright
  1853. }
  1854. brightmap sprite sarga1
  1855. {
  1856. map "brightmaps/sprites/doom/sarga1.png"
  1857. iwad
  1858. disablefullbright
  1859. }
  1860. brightmap sprite sarga2a8
  1861. {
  1862. map "brightmaps/sprites/doom/sarga2a8.png"
  1863. iwad
  1864. disablefullbright
  1865. }
  1866. brightmap sprite sarga3a7
  1867. {
  1868. map "brightmaps/sprites/doom/sarga3a7.png"
  1869. iwad
  1870. disablefullbright
  1871. }
  1872. brightmap sprite sarga4a6
  1873. {
  1874. iwad
  1875. disablefullbright
  1876. }
  1877. brightmap sprite sarga5
  1878. {
  1879. iwad
  1880. disablefullbright
  1881. }
  1882. brightmap sprite sargb1
  1883. {
  1884. map "brightmaps/sprites/doom/sargb1.png"
  1885. iwad
  1886. disablefullbright
  1887. }
  1888. brightmap sprite sargb2b8
  1889. {
  1890. map "brightmaps/sprites/doom/sargb2b8.png"
  1891. iwad
  1892. disablefullbright
  1893. }
  1894. brightmap sprite sargb3b7
  1895. {
  1896. map "brightmaps/sprites/doom/sargb3b7.png"
  1897. iwad
  1898. disablefullbright
  1899. }
  1900. brightmap sprite sargb4b6
  1901. {
  1902. iwad
  1903. disablefullbright
  1904. }
  1905. brightmap sprite sargb5
  1906. {
  1907. iwad
  1908. disablefullbright
  1909. }
  1910. brightmap sprite sargc1
  1911. {
  1912. map "brightmaps/sprites/doom/sargc1.png"
  1913. iwad
  1914. disablefullbright
  1915. }
  1916. brightmap sprite sargc2c8
  1917. {
  1918. map "brightmaps/sprites/doom/sargc2c8.png"
  1919. iwad
  1920. disablefullbright
  1921. }
  1922. brightmap sprite sargc3c7
  1923. {
  1924. map "brightmaps/sprites/doom/sargc3c7.png"
  1925. iwad
  1926. disablefullbright
  1927. }
  1928. brightmap sprite sargc4c6
  1929. {
  1930. iwad
  1931. disablefullbright
  1932. }
  1933. brightmap sprite sargc5
  1934. {
  1935. iwad
  1936. disablefullbright
  1937. }
  1938. brightmap sprite sargd1
  1939. {
  1940. map "brightmaps/sprites/doom/sargd1.png"
  1941. iwad
  1942. disablefullbright
  1943. }
  1944. brightmap sprite sargd2d8
  1945. {
  1946. map "brightmaps/sprites/doom/sargd2d8.png"
  1947. iwad
  1948. disablefullbright
  1949. }
  1950. brightmap sprite sargd3d7
  1951. {
  1952. map "brightmaps/sprites/doom/sargd3d7.png"
  1953. iwad
  1954. disablefullbright
  1955. }
  1956. brightmap sprite sargd4d6
  1957. {
  1958. iwad
  1959. disablefullbright
  1960. }
  1961. brightmap sprite sargd5
  1962. {
  1963. iwad
  1964. disablefullbright
  1965. }
  1966. brightmap sprite sarge1
  1967. {
  1968. map "brightmaps/sprites/doom/sarge1.png"
  1969. iwad
  1970. disablefullbright
  1971. }
  1972. brightmap sprite sarge2
  1973. {
  1974. map "brightmaps/sprites/doom/sarge2.png"
  1975. iwad
  1976. disablefullbright
  1977. }
  1978. brightmap sprite sarge3
  1979. {
  1980. map "brightmaps/sprites/doom/sarge3.png"
  1981. iwad
  1982. disablefullbright
  1983. }
  1984. brightmap sprite sarge4
  1985. {
  1986. iwad
  1987. disablefullbright
  1988. }
  1989. brightmap sprite sarge5
  1990. {
  1991. iwad
  1992. disablefullbright
  1993. }
  1994. brightmap sprite sarge6
  1995. {
  1996. iwad
  1997. disablefullbright
  1998. }
  1999. brightmap sprite sarge7
  2000. {
  2001. map "brightmaps/sprites/doom/sarge7.png"
  2002. iwad
  2003. disablefullbright
  2004. }
  2005. brightmap sprite sarge8
  2006. {
  2007. map "brightmaps/sprites/doom/sarge8.png"
  2008. iwad
  2009. disablefullbright
  2010. }
  2011. brightmap sprite sargf1
  2012. {
  2013. map "brightmaps/sprites/doom/sargf1.png"
  2014. iwad
  2015. disablefullbright
  2016. }
  2017. brightmap sprite sargf2
  2018. {
  2019. map "brightmaps/sprites/doom/sargf2.png"
  2020. iwad
  2021. disablefullbright
  2022. }
  2023. brightmap sprite sargf3
  2024. {
  2025. map "brightmaps/sprites/doom/sargf3.png"
  2026. iwad
  2027. disablefullbright
  2028. }
  2029. brightmap sprite sargf4
  2030. {
  2031. iwad
  2032. disablefullbright
  2033. }
  2034. brightmap sprite sargf5
  2035. {
  2036. iwad
  2037. disablefullbright
  2038. }
  2039. brightmap sprite sargf6
  2040. {
  2041. iwad
  2042. disablefullbright
  2043. }
  2044. brightmap sprite sargf7
  2045. {
  2046. map "brightmaps/sprites/doom/sargf7.png"
  2047. iwad
  2048. disablefullbright
  2049. }
  2050. brightmap sprite sargf8
  2051. {
  2052. map "brightmaps/sprites/doom/sargf8.png"
  2053. iwad
  2054. disablefullbright
  2055. }
  2056. brightmap sprite sargg1
  2057. {
  2058. map "brightmaps/sprites/doom/sargg1.png"
  2059. iwad
  2060. disablefullbright
  2061. }
  2062. brightmap sprite sargg2
  2063. {
  2064. map "brightmaps/sprites/doom/sargg2.png"
  2065. iwad
  2066. disablefullbright
  2067. }
  2068. brightmap sprite sargg3
  2069. {
  2070. map "brightmaps/sprites/doom/sargg3.png"
  2071. iwad
  2072. disablefullbright
  2073. }
  2074. brightmap sprite sargg4
  2075. {
  2076. iwad
  2077. disablefullbright
  2078. }
  2079. brightmap sprite sargg5
  2080. {
  2081. iwad
  2082. disablefullbright
  2083. }
  2084. brightmap sprite sargg6
  2085. {
  2086. iwad
  2087. disablefullbright
  2088. }
  2089. brightmap sprite sargg7
  2090. {
  2091. map "brightmaps/sprites/doom/sargg7.png"
  2092. iwad
  2093. disablefullbright
  2094. }
  2095. brightmap sprite sargg8
  2096. {
  2097. map "brightmaps/sprites/doom/sargg8.png"
  2098. iwad
  2099. disablefullbright
  2100. }
  2101. brightmap sprite sargh1
  2102. {
  2103. map "brightmaps/sprites/doom/sargh1.png"
  2104. iwad
  2105. disablefullbright
  2106. }
  2107. brightmap sprite sargh2
  2108. {
  2109. map "brightmaps/sprites/doom/sargh2.png"
  2110. iwad
  2111. disablefullbright
  2112. }
  2113. brightmap sprite sargh3
  2114. {
  2115. map "brightmaps/sprites/doom/sargh3.png"
  2116. iwad
  2117. disablefullbright
  2118. }
  2119. brightmap sprite sargh4
  2120. {
  2121. iwad
  2122. disablefullbright
  2123. }
  2124. brightmap sprite sargh5
  2125. {
  2126. iwad
  2127. disablefullbright
  2128. }
  2129. brightmap sprite sargh6
  2130. {
  2131. iwad
  2132. disablefullbright
  2133. }
  2134. brightmap sprite sargh7
  2135. {
  2136. iwad
  2137. disablefullbright
  2138. }
  2139. brightmap sprite sargh8
  2140. {
  2141. map "brightmaps/sprites/doom/sargh8.png"
  2142. iwad
  2143. disablefullbright
  2144. }
  2145. brightmap sprite sargi0
  2146. {
  2147. iwad
  2148. disablefullbright
  2149. }
  2150. brightmap sprite sargj0
  2151. {
  2152. iwad
  2153. disablefullbright
  2154. }
  2155. brightmap sprite sargk0
  2156. {
  2157. iwad
  2158. disablefullbright
  2159. }
  2160. brightmap sprite sargl0
  2161. {
  2162. iwad
  2163. disablefullbright
  2164. }
  2165. brightmap sprite sargm0
  2166. {
  2167. iwad
  2168. disablefullbright
  2169. }
  2170. brightmap sprite sargn0
  2171. {
  2172. iwad
  2173. disablefullbright
  2174. }
  2175. brightmap sprite shtfa0
  2176. {
  2177. map "brightmaps/sprites/doom/shtfa0.png"
  2178. iwad
  2179. disablefullbright
  2180. }
  2181. brightmap sprite shtfb0
  2182. {
  2183. map "brightmaps/sprites/doom/shtfb0.png"
  2184. iwad
  2185. disablefullbright
  2186. }
  2187. brightmap sprite skula1
  2188. {
  2189. map "brightmaps/sprites/doom/skula1.png"
  2190. iwad
  2191. disablefullbright
  2192. }
  2193. brightmap sprite skula5
  2194. {
  2195. map "brightmaps/sprites/doom/skula5.png"
  2196. iwad
  2197. disablefullbright
  2198. }
  2199. brightmap sprite skula6a4
  2200. {
  2201. map "brightmaps/sprites/doom/skula6a4.png"
  2202. iwad
  2203. disablefullbright
  2204. }
  2205. brightmap sprite skula7a3
  2206. {
  2207. map "brightmaps/sprites/doom/skula7a3.png"
  2208. iwad
  2209. disablefullbright
  2210. }
  2211. brightmap sprite skula8a2
  2212. {
  2213. map "brightmaps/sprites/doom/skula8a2.png"
  2214. iwad
  2215. disablefullbright
  2216. }
  2217. brightmap sprite skulb1
  2218. {
  2219. map "brightmaps/sprites/doom/skulb1.png"
  2220. iwad
  2221. disablefullbright
  2222. }
  2223. brightmap sprite skulb5
  2224. {
  2225. map "brightmaps/sprites/doom/skulb5.png"
  2226. iwad
  2227. disablefullbright
  2228. }
  2229. brightmap sprite skulb6b4
  2230. {
  2231. map "brightmaps/sprites/doom/skulb6b4.png"
  2232. iwad
  2233. disablefullbright
  2234. }
  2235. brightmap sprite skulb7b3
  2236. {
  2237. map "brightmaps/sprites/doom/skulb7b3.png"
  2238. iwad
  2239. disablefullbright
  2240. }
  2241. brightmap sprite skulb8b2
  2242. {
  2243. map "brightmaps/sprites/doom/skulb8b2.png"
  2244. iwad
  2245. disablefullbright
  2246. }
  2247. brightmap sprite skulc1
  2248. {
  2249. map "brightmaps/sprites/doom/skulc1.png"
  2250. iwad
  2251. disablefullbright
  2252. }
  2253. brightmap sprite skulc5
  2254. {
  2255. map "brightmaps/sprites/doom/skulc5.png"
  2256. iwad
  2257. disablefullbright
  2258. }
  2259. brightmap sprite skulc6c4
  2260. {
  2261. map "brightmaps/sprites/doom/skulc6c4.png"
  2262. iwad
  2263. disablefullbright
  2264. }
  2265. brightmap sprite skulc7c3
  2266. {
  2267. map "brightmaps/sprites/doom/skulc7c3.png"
  2268. iwad
  2269. disablefullbright
  2270. }
  2271. brightmap sprite skulc8c2
  2272. {
  2273. map "brightmaps/sprites/doom/skulc8c2.png"
  2274. iwad
  2275. disablefullbright
  2276. }
  2277. brightmap sprite skuld1
  2278. {
  2279. map "brightmaps/sprites/doom/skuld1.png"
  2280. iwad
  2281. disablefullbright
  2282. }
  2283. brightmap sprite skuld5
  2284. {
  2285. map "brightmaps/sprites/doom/skuld5.png"
  2286. iwad
  2287. disablefullbright
  2288. }
  2289. brightmap sprite skuld6d4
  2290. {
  2291. map "brightmaps/sprites/doom/skuld6d4.png"
  2292. iwad
  2293. disablefullbright
  2294. }
  2295. brightmap sprite skuld7d3
  2296. {
  2297. map "brightmaps/sprites/doom/skuld7d3.png"
  2298. iwad
  2299. disablefullbright
  2300. }
  2301. brightmap sprite skuld8d2
  2302. {
  2303. map "brightmaps/sprites/doom/skuld8d2.png"
  2304. iwad
  2305. disablefullbright
  2306. }
  2307. brightmap sprite skule1
  2308. {
  2309. map "brightmaps/sprites/doom/skule1.png"
  2310. iwad
  2311. disablefullbright
  2312. }
  2313. brightmap sprite skule5
  2314. {
  2315. map "brightmaps/sprites/doom/skule5.png"
  2316. iwad
  2317. disablefullbright
  2318. }
  2319. brightmap sprite skule6e4
  2320. {
  2321. map "brightmaps/sprites/doom/skule6e4.png"
  2322. iwad
  2323. disablefullbright
  2324. }
  2325. brightmap sprite skule7e3
  2326. {
  2327. map "brightmaps/sprites/doom/skule7e3.png"
  2328. iwad
  2329. disablefullbright
  2330. }
  2331. brightmap sprite skule8e2
  2332. {
  2333. map "brightmaps/sprites/doom/skule8e2.png"
  2334. iwad
  2335. disablefullbright
  2336. }
  2337. brightmap sprite skulf0
  2338. {
  2339. map "brightmaps/sprites/doom/skulf0.png"
  2340. iwad
  2341. disablefullbright
  2342. }
  2343. brightmap sprite skulg0
  2344. {
  2345. map "brightmaps/sprites/doom/skulg0.png"
  2346. iwad
  2347. disablefullbright
  2348. }
  2349. brightmap sprite skulh0
  2350. {
  2351. map "brightmaps/sprites/doom/skulh0.png"
  2352. iwad
  2353. disablefullbright
  2354. }
  2355. brightmap sprite skuli0
  2356. {
  2357. map "brightmaps/sprites/doom/skuli0.png"
  2358. iwad
  2359. disablefullbright
  2360. }
  2361. brightmap sprite skulj0
  2362. {
  2363. map "brightmaps/sprites/doom/skulj0.png"
  2364. iwad
  2365. disablefullbright
  2366. }
  2367. brightmap sprite skulk0
  2368. {
  2369. map "brightmaps/sprites/doom/skulk0.png"
  2370. iwad
  2371. disablefullbright
  2372. }
  2373. brightmap sprite smbta0
  2374. {
  2375. map "brightmaps/sprites/doom/smbta0.png"
  2376. iwad
  2377. disablefullbright
  2378. }
  2379. brightmap sprite smbtb0
  2380. {
  2381. map "brightmaps/sprites/doom/smbtb0.png"
  2382. iwad
  2383. disablefullbright
  2384. }
  2385. brightmap sprite smbtc0
  2386. {
  2387. map "brightmaps/sprites/doom/smbtc0.png"
  2388. iwad
  2389. disablefullbright
  2390. }
  2391. brightmap sprite smbtd0
  2392. {
  2393. map "brightmaps/sprites/doom/smbtd0.png"
  2394. iwad
  2395. disablefullbright
  2396. }
  2397. brightmap sprite smgta0
  2398. {
  2399. map "brightmaps/sprites/doom/smgta0.png"
  2400. iwad
  2401. disablefullbright
  2402. }
  2403. brightmap sprite smgtb0
  2404. {
  2405. map "brightmaps/sprites/doom/smgtb0.png"
  2406. iwad
  2407. disablefullbright
  2408. }
  2409. brightmap sprite smgtc0
  2410. {
  2411. map "brightmaps/sprites/doom/smgtc0.png"
  2412. iwad
  2413. disablefullbright
  2414. }
  2415. brightmap sprite smgtd0
  2416. {
  2417. map "brightmaps/sprites/doom/smgtd0.png"
  2418. iwad
  2419. disablefullbright
  2420. }
  2421. brightmap sprite smrta0
  2422. {
  2423. map "brightmaps/sprites/doom/smrta0.png"
  2424. iwad
  2425. disablefullbright
  2426. }
  2427. brightmap sprite smrtb0
  2428. {
  2429. map "brightmaps/sprites/doom/smrtb0.png"
  2430. iwad
  2431. disablefullbright
  2432. }
  2433. brightmap sprite smrtc0
  2434. {
  2435. map "brightmaps/sprites/doom/smrtc0.png"
  2436. iwad
  2437. disablefullbright
  2438. }
  2439. brightmap sprite smrtd0
  2440. {
  2441. map "brightmaps/sprites/doom/smrtd0.png"
  2442. iwad
  2443. disablefullbright
  2444. }
  2445. brightmap sprite soula0
  2446. {
  2447. map "brightmaps/sprites/doom/soula0.png"
  2448. iwad
  2449. disablefullbright
  2450. }
  2451. brightmap sprite soulb0
  2452. {
  2453. map "brightmaps/sprites/doom/soulb0.png"
  2454. iwad
  2455. disablefullbright
  2456. }
  2457. brightmap sprite soulc0
  2458. {
  2459. map "brightmaps/sprites/doom/soulc0.png"
  2460. iwad
  2461. disablefullbright
  2462. }
  2463. brightmap sprite sould0
  2464. {
  2465. iwad
  2466. disablefullbright
  2467. }
  2468. brightmap sprite spida1d1
  2469. {
  2470. map "brightmaps/sprites/doom/spida1d1.png"
  2471. iwad
  2472. disablefullbright
  2473. }
  2474. brightmap sprite spida2a8
  2475. {
  2476. iwad
  2477. disablefullbright
  2478. }
  2479. brightmap sprite spida3a7
  2480. {
  2481. map "brightmaps/sprites/doom/spida3a7.png"
  2482. iwad
  2483. disablefullbright
  2484. }
  2485. brightmap sprite spida4a6
  2486. {
  2487. iwad
  2488. disablefullbright
  2489. }
  2490. brightmap sprite spida5d5
  2491. {
  2492. iwad
  2493. disablefullbright
  2494. }
  2495. brightmap sprite spidb1e1
  2496. {
  2497. map "brightmaps/sprites/doom/spidb1e1.png"
  2498. iwad
  2499. disablefullbright
  2500. }
  2501. brightmap sprite spidb2b8
  2502. {
  2503. iwad
  2504. disablefullbright
  2505. }
  2506. brightmap sprite spidb3b7
  2507. {
  2508. map "brightmaps/sprites/doom/spidb3b7.png"
  2509. iwad
  2510. disablefullbright
  2511. }
  2512. brightmap sprite spidb4b6
  2513. {
  2514. iwad
  2515. disablefullbright
  2516. }
  2517. brightmap sprite spidb5e5
  2518. {
  2519. iwad
  2520. disablefullbright
  2521. }
  2522. brightmap sprite spidc1f1
  2523. {
  2524. map "brightmaps/sprites/doom/spidc1f1.png"
  2525. iwad
  2526. disablefullbright
  2527. }
  2528. brightmap sprite spidc2c8
  2529. {
  2530. map "brightmaps/sprites/doom/spidc2c8.png"
  2531. iwad
  2532. disablefullbright
  2533. }
  2534. brightmap sprite spidc3c7
  2535. {
  2536. iwad
  2537. disablefullbright
  2538. }
  2539. brightmap sprite spidc4c6
  2540. {
  2541. iwad
  2542. disablefullbright
  2543. }
  2544. brightmap sprite spidc5f5
  2545. {
  2546. iwad
  2547. disablefullbright
  2548. }
  2549. brightmap sprite spidd2d8
  2550. {
  2551. iwad
  2552. disablefullbright
  2553. }
  2554. brightmap sprite spidd3d7
  2555. {
  2556. iwad
  2557. disablefullbright
  2558. }
  2559. brightmap sprite spidd4d6
  2560. {
  2561. iwad
  2562. disablefullbright
  2563. }
  2564. brightmap sprite spide2e8
  2565. {
  2566. iwad
  2567. disablefullbright
  2568. }
  2569. brightmap sprite spide3e7
  2570. {
  2571. iwad
  2572. disablefullbright
  2573. }
  2574. brightmap sprite spide4e6
  2575. {
  2576. iwad
  2577. disablefullbright
  2578. }
  2579. brightmap sprite spidf2f8
  2580. {
  2581. map "brightmaps/sprites/doom/spidf2f8.png"
  2582. iwad
  2583. disablefullbright
  2584. }
  2585. brightmap sprite spidf3f7
  2586. {
  2587. iwad
  2588. disablefullbright
  2589. }
  2590. brightmap sprite spidf4f6
  2591. {
  2592. iwad
  2593. disablefullbright
  2594. }
  2595. brightmap sprite spidg1
  2596. {
  2597. map "brightmaps/sprites/doom/spidg1.png"
  2598. iwad
  2599. disablefullbright
  2600. }
  2601. brightmap sprite spidg2g8
  2602. {
  2603. map "brightmaps/sprites/doom/spidg2g8.png"
  2604. iwad
  2605. disablefullbright
  2606. }
  2607. brightmap sprite spidg3g7
  2608. {
  2609. iwad
  2610. disablefullbright
  2611. }
  2612. brightmap sprite spidg4g6
  2613. {
  2614. iwad
  2615. disablefullbright
  2616. }
  2617. brightmap sprite spidg5
  2618. {
  2619. iwad
  2620. disablefullbright
  2621. }
  2622. brightmap sprite spidh1
  2623. {
  2624. map "brightmaps/sprites/doom/spidh1.png"
  2625. iwad
  2626. disablefullbright
  2627. }
  2628. brightmap sprite spidh2h8
  2629. {
  2630. map "brightmaps/sprites/doom/spidh2h8.png"
  2631. iwad
  2632. disablefullbright
  2633. }
  2634. brightmap sprite spidh3h7
  2635. {
  2636. map "brightmaps/sprites/doom/spidh3h7.png"
  2637. iwad
  2638. disablefullbright
  2639. }
  2640. brightmap sprite spidh4h6
  2641. {
  2642. map "brightmaps/sprites/doom/spidh4h6.png"
  2643. iwad
  2644. disablefullbright
  2645. }
  2646. brightmap sprite spidh5
  2647. {
  2648. map "brightmaps/sprites/doom/spidh5.png"
  2649. iwad
  2650. disablefullbright
  2651. }
  2652. brightmap sprite spidi1
  2653. {
  2654. map "brightmaps/sprites/doom/spidi1.png"
  2655. iwad
  2656. disablefullbright
  2657. }
  2658. brightmap sprite spidi2
  2659. {
  2660. map "brightmaps/sprites/doom/spidi2.png"
  2661. iwad
  2662. disablefullbright
  2663. }
  2664. brightmap sprite spidi3
  2665. {
  2666. map "brightmaps/sprites/doom/spidi3.png"
  2667. iwad
  2668. disablefullbright
  2669. }
  2670. brightmap sprite spidi4
  2671. {
  2672. iwad
  2673. disablefullbright
  2674. }
  2675. brightmap sprite spidi5
  2676. {
  2677. iwad
  2678. disablefullbright
  2679. }
  2680. brightmap sprite spidi6
  2681. {
  2682. iwad
  2683. disablefullbright
  2684. }
  2685. brightmap sprite spidi7
  2686. {
  2687. iwad
  2688. disablefullbright
  2689. }
  2690. brightmap sprite spidi8
  2691. {
  2692. map "brightmaps/sprites/doom/spidi8.png"
  2693. iwad
  2694. disablefullbright
  2695. }
  2696. brightmap sprite spidj0
  2697. {
  2698. map "brightmaps/sprites/doom/spidj0.png"
  2699. iwad
  2700. disablefullbright
  2701. }
  2702. brightmap sprite spidk0
  2703. {
  2704. map "brightmaps/sprites/doom/spidk0.png"
  2705. iwad
  2706. disablefullbright
  2707. }
  2708. brightmap sprite spidl0
  2709. {
  2710. map "brightmaps/sprites/doom/spidl0.png"
  2711. iwad
  2712. disablefullbright
  2713. }
  2714. brightmap sprite spidm0
  2715. {
  2716. map "brightmaps/sprites/doom/spidm0.png"
  2717. iwad
  2718. disablefullbright
  2719. }
  2720. brightmap sprite spidn0
  2721. {
  2722. map "brightmaps/sprites/doom/spidn0.png"
  2723. iwad
  2724. disablefullbright
  2725. }
  2726. brightmap sprite spido0
  2727. {
  2728. map "brightmaps/sprites/doom/spido0.png"
  2729. iwad
  2730. disablefullbright
  2731. }
  2732. brightmap sprite spidp0
  2733. {
  2734. map "brightmaps/sprites/doom/spidp0.png"
  2735. iwad
  2736. disablefullbright
  2737. }
  2738. brightmap sprite spidq0
  2739. {
  2740. map "brightmaps/sprites/doom/spidq0.png"
  2741. iwad
  2742. disablefullbright
  2743. }
  2744. brightmap sprite spidr0
  2745. {
  2746. map "brightmaps/sprites/doom/spidr0.png"
  2747. iwad
  2748. disablefullbright
  2749. }
  2750. brightmap sprite spids0
  2751. {
  2752. iwad
  2753. disablefullbright
  2754. }
  2755. brightmap sprite sposa1
  2756. {
  2757. map "brightmaps/sprites/doom/sposa1.png"
  2758. iwad
  2759. disablefullbright
  2760. }
  2761. brightmap sprite sposa2a8
  2762. {
  2763. map "brightmaps/sprites/doom/sposa2a8.png"
  2764. iwad
  2765. disablefullbright
  2766. }
  2767. brightmap sprite sposa3a7
  2768. {
  2769. map "brightmaps/sprites/doom/sposa3a7.png"
  2770. iwad
  2771. disablefullbright
  2772. }
  2773. brightmap sprite sposa4a6
  2774. {
  2775. iwad
  2776. disablefullbright
  2777. }
  2778. brightmap sprite sposa5
  2779. {
  2780. iwad
  2781. disablefullbright
  2782. }
  2783. brightmap sprite sposb1
  2784. {
  2785. map "brightmaps/sprites/doom/sposb1.png"
  2786. iwad
  2787. disablefullbright
  2788. }
  2789. brightmap sprite sposb2b8
  2790. {
  2791. map "brightmaps/sprites/doom/sposb2b8.png"
  2792. iwad
  2793. disablefullbright
  2794. }
  2795. brightmap sprite sposb3b7
  2796. {
  2797. map "brightmaps/sprites/doom/sposb3b7.png"
  2798. iwad
  2799. disablefullbright
  2800. }
  2801. brightmap sprite sposb4b6
  2802. {
  2803. iwad
  2804. disablefullbright
  2805. }
  2806. brightmap sprite sposb5
  2807. {
  2808. iwad
  2809. disablefullbright
  2810. }
  2811. brightmap sprite sposc1
  2812. {
  2813. map "brightmaps/sprites/doom/sposc1.png"
  2814. iwad
  2815. disablefullbright
  2816. }
  2817. brightmap sprite sposc2c8
  2818. {
  2819. map "brightmaps/sprites/doom/sposc2c8.png"
  2820. iwad
  2821. disablefullbright
  2822. }
  2823. brightmap sprite sposc3c7
  2824. {
  2825. map "brightmaps/sprites/doom/sposc3c7.png"
  2826. iwad
  2827. disablefullbright
  2828. }
  2829. brightmap sprite sposc4c6
  2830. {
  2831. iwad
  2832. disablefullbright
  2833. }
  2834. brightmap sprite sposc5
  2835. {
  2836. iwad
  2837. disablefullbright
  2838. }
  2839. brightmap sprite sposd1
  2840. {
  2841. map "brightmaps/sprites/doom/sposd1.png"
  2842. iwad
  2843. disablefullbright
  2844. }
  2845. brightmap sprite sposd2d8
  2846. {
  2847. map "brightmaps/sprites/doom/sposd2d8.png"
  2848. iwad
  2849. disablefullbright
  2850. }
  2851. brightmap sprite sposd3d7
  2852. {
  2853. map "brightmaps/sprites/doom/sposd3d7.png"
  2854. iwad
  2855. disablefullbright
  2856. }
  2857. brightmap sprite sposd4d6
  2858. {
  2859. iwad
  2860. disablefullbright
  2861. }
  2862. brightmap sprite sposd5
  2863. {
  2864. iwad
  2865. disablefullbright
  2866. }
  2867. brightmap sprite spose1
  2868. {
  2869. map "brightmaps/sprites/doom/spose1.png"
  2870. iwad
  2871. disablefullbright
  2872. }
  2873. brightmap sprite spose2e8
  2874. {
  2875. map "brightmaps/sprites/doom/spose2e8.png"
  2876. iwad
  2877. disablefullbright
  2878. }
  2879. brightmap sprite spose3e7
  2880. {
  2881. map "brightmaps/sprites/doom/spose3e7.png"
  2882. iwad
  2883. disablefullbright
  2884. }
  2885. brightmap sprite spose4e6
  2886. {
  2887. iwad
  2888. disablefullbright
  2889. }
  2890. brightmap sprite spose5
  2891. {
  2892. iwad
  2893. disablefullbright
  2894. }
  2895. brightmap sprite sposf1
  2896. {
  2897. map "brightmaps/sprites/doom/sposf1.png"
  2898. iwad
  2899. disablefullbright
  2900. }
  2901. brightmap sprite sposf2f8
  2902. {
  2903. map "brightmaps/sprites/doom/sposf2f8.png"
  2904. iwad
  2905. disablefullbright
  2906. }
  2907. brightmap sprite sposf3f7
  2908. {
  2909. map "brightmaps/sprites/doom/sposf3f7.png"
  2910. iwad
  2911. disablefullbright
  2912. }
  2913. brightmap sprite sposf4f6
  2914. {
  2915. map "brightmaps/sprites/doom/sposf4f6.png"
  2916. iwad
  2917. disablefullbright
  2918. }
  2919. brightmap sprite sposf5
  2920. {
  2921. map "brightmaps/sprites/doom/sposf5.png"
  2922. iwad
  2923. disablefullbright
  2924. }
  2925. brightmap sprite sposg1
  2926. {
  2927. iwad
  2928. disablefullbright
  2929. }
  2930. brightmap sprite sposg2g8
  2931. {
  2932. iwad
  2933. disablefullbright
  2934. }
  2935. brightmap sprite sposg3g7
  2936. {
  2937. iwad
  2938. disablefullbright
  2939. }
  2940. brightmap sprite sposg4g6
  2941. {
  2942. iwad
  2943. disablefullbright
  2944. }
  2945. brightmap sprite sposg5
  2946. {
  2947. iwad
  2948. disablefullbright
  2949. }
  2950. brightmap sprite spossh0
  2951. {
  2952. iwad
  2953. disablefullbright
  2954. }
  2955. brightmap sprite spossi0
  2956. {
  2957. iwad
  2958. disablefullbright
  2959. }
  2960. brightmap sprite spossj0
  2961. {
  2962. iwad
  2963. disablefullbright
  2964. }
  2965. brightmap sprite spossk0
  2966. {
  2967. iwad
  2968. disablefullbright
  2969. }
  2970. brightmap sprite spossl0
  2971. {
  2972. iwad
  2973. disablefullbright
  2974. }
  2975. brightmap sprite spossm0
  2976. {
  2977. iwad
  2978. disablefullbright
  2979. }
  2980. brightmap sprite spossn0
  2981. {
  2982. iwad
  2983. disablefullbright
  2984. }
  2985. brightmap sprite sposso0
  2986. {
  2987. iwad
  2988. disablefullbright
  2989. }
  2990. brightmap sprite spossp0
  2991. {
  2992. iwad
  2993. disablefullbright
  2994. }
  2995. brightmap sprite spossq0
  2996. {
  2997. iwad
  2998. disablefullbright
  2999. }
  3000. brightmap sprite spossr0
  3001. {
  3002. iwad
  3003. disablefullbright
  3004. }
  3005. brightmap sprite sposss0
  3006. {
  3007. iwad
  3008. disablefullbright
  3009. }
  3010. brightmap sprite sposst0
  3011. {
  3012. iwad
  3013. disablefullbright
  3014. }
  3015. brightmap sprite spossu0
  3016. {
  3017. iwad
  3018. disablefullbright
  3019. }
  3020. brightmap sprite tblua0
  3021. {
  3022. map "brightmaps/sprites/doom/tblua0.png"
  3023. iwad
  3024. disablefullbright
  3025. }
  3026. brightmap sprite tblub0
  3027. {
  3028. map "brightmaps/sprites/doom/tblub0.png"
  3029. iwad
  3030. disablefullbright
  3031. }
  3032. brightmap sprite tbluc0
  3033. {
  3034. map "brightmaps/sprites/doom/tbluc0.png"
  3035. iwad
  3036. disablefullbright
  3037. }
  3038. brightmap sprite tblud0
  3039. {
  3040. map "brightmaps/sprites/doom/tblud0.png"
  3041. iwad
  3042. disablefullbright
  3043. }
  3044. brightmap sprite tgrna0
  3045. {
  3046. map "brightmaps/sprites/doom/tgrna0.png"
  3047. iwad
  3048. disablefullbright
  3049. }
  3050. brightmap sprite tgrnb0
  3051. {
  3052. map "brightmaps/sprites/doom/tgrnb0.png"
  3053. iwad
  3054. disablefullbright
  3055. }
  3056. brightmap sprite tgrnc0
  3057. {
  3058. map "brightmaps/sprites/doom/tgrnc0.png"
  3059. iwad
  3060. disablefullbright
  3061. }
  3062. brightmap sprite tgrnd0
  3063. {
  3064. map "brightmaps/sprites/doom/tgrnd0.png"
  3065. iwad
  3066. disablefullbright
  3067. }
  3068. brightmap sprite treda0
  3069. {
  3070. map "brightmaps/sprites/doom/treda0.png"
  3071. iwad
  3072. disablefullbright
  3073. }
  3074. brightmap sprite tredb0
  3075. {
  3076. map "brightmaps/sprites/doom/tredb0.png"
  3077. iwad
  3078. disablefullbright
  3079. }
  3080. brightmap sprite tredc0
  3081. {
  3082. map "brightmaps/sprites/doom/tredc0.png"
  3083. iwad
  3084. disablefullbright
  3085. }
  3086. brightmap sprite tredd0
  3087. {
  3088. map "brightmaps/sprites/doom/tredd0.png"
  3089. iwad
  3090. disablefullbright
  3091. }
  3092. brightmap sprite trooa1
  3093. {
  3094. map "brightmaps/sprites/doom/trooa1.png"
  3095. iwad
  3096. disablefullbright
  3097. }
  3098. brightmap sprite trooa2a8
  3099. {
  3100. map "brightmaps/sprites/doom/trooa2a8.png"
  3101. iwad
  3102. disablefullbright
  3103. }
  3104. brightmap sprite trooa3a7
  3105. {
  3106. map "brightmaps/sprites/doom/trooa3a7.png"
  3107. iwad
  3108. disablefullbright
  3109. }
  3110. brightmap sprite trooa4a6
  3111. {
  3112. iwad
  3113. disablefullbright
  3114. }
  3115. brightmap sprite trooa5
  3116. {
  3117. iwad
  3118. disablefullbright
  3119. }
  3120. brightmap sprite troob1
  3121. {
  3122. map "brightmaps/sprites/doom/troob1.png"
  3123. iwad
  3124. disablefullbright
  3125. }
  3126. brightmap sprite troob2b8
  3127. {
  3128. map "brightmaps/sprites/doom/troob2b8.png"
  3129. iwad
  3130. disablefullbright
  3131. }
  3132. brightmap sprite troob3b7
  3133. {
  3134. map "brightmaps/sprites/doom/troob3b7.png"
  3135. iwad
  3136. disablefullbright
  3137. }
  3138. brightmap sprite troob4b6
  3139. {
  3140. iwad
  3141. disablefullbright
  3142. }
  3143. brightmap sprite troob5
  3144. {
  3145. iwad
  3146. disablefullbright
  3147. }
  3148. brightmap sprite trooc1
  3149. {
  3150. map "brightmaps/sprites/doom/trooc1.png"
  3151. iwad
  3152. disablefullbright
  3153. }
  3154. brightmap sprite trooc2c8
  3155. {
  3156. map "brightmaps/sprites/doom/trooc2c8.png"
  3157. iwad
  3158. disablefullbright
  3159. }
  3160. brightmap sprite trooc3c7
  3161. {
  3162. map "brightmaps/sprites/doom/trooc3c7.png"
  3163. iwad
  3164. disablefullbright
  3165. }
  3166. brightmap sprite trooc4c6
  3167. {
  3168. iwad
  3169. disablefullbright
  3170. }
  3171. brightmap sprite trooc5
  3172. {
  3173. iwad
  3174. disablefullbright
  3175. }
  3176. brightmap sprite trood1
  3177. {
  3178. map "brightmaps/sprites/doom/trood1.png"
  3179. iwad
  3180. disablefullbright
  3181. }
  3182. brightmap sprite trood2d8
  3183. {
  3184. map "brightmaps/sprites/doom/trood2d8.png"
  3185. iwad
  3186. disablefullbright
  3187. }
  3188. brightmap sprite trood3d7
  3189. {
  3190. map "brightmaps/sprites/doom/trood3d7.png"
  3191. iwad
  3192. disablefullbright
  3193. }
  3194. brightmap sprite trood4d6
  3195. {
  3196. iwad
  3197. disablefullbright
  3198. }
  3199. brightmap sprite trood5
  3200. {
  3201. iwad
  3202. disablefullbright
  3203. }
  3204. brightmap sprite trooe1
  3205. {
  3206. map "brightmaps/sprites/doom/trooe1.png"
  3207. iwad
  3208. disablefullbright
  3209. }
  3210. brightmap sprite trooe2e8
  3211. {
  3212. map "brightmaps/sprites/doom/trooe2e8.png"
  3213. iwad
  3214. disablefullbright
  3215. }
  3216. brightmap sprite trooe3e7
  3217. {
  3218. map "brightmaps/sprites/doom/trooe3e7.png"
  3219. iwad
  3220. disablefullbright
  3221. }
  3222. brightmap sprite trooe4e6
  3223. {
  3224. iwad
  3225. disablefullbright
  3226. }
  3227. brightmap sprite trooe5
  3228. {
  3229. iwad
  3230. disablefullbright
  3231. }
  3232. brightmap sprite troof1
  3233. {
  3234. map "brightmaps/sprites/doom/troof1.png"
  3235. iwad
  3236. disablefullbright
  3237. }
  3238. brightmap sprite troof2f8
  3239. {
  3240. map "brightmaps/sprites/doom/troof2f8.png"
  3241. iwad
  3242. disablefullbright
  3243. }
  3244. brightmap sprite troof3f7
  3245. {
  3246. map "brightmaps/sprites/doom/troof3f7.png"
  3247. iwad
  3248. disablefullbright
  3249. }
  3250. brightmap sprite troof4f6
  3251. {
  3252. iwad
  3253. disablefullbright
  3254. }
  3255. brightmap sprite troof5
  3256. {
  3257. iwad
  3258. disablefullbright
  3259. }
  3260. brightmap sprite troog1
  3261. {
  3262. map "brightmaps/sprites/doom/troog1.png"
  3263. iwad
  3264. disablefullbright
  3265. }
  3266. brightmap sprite troog2g8
  3267. {
  3268. map "brightmaps/sprites/doom/troog2g8.png"
  3269. iwad
  3270. disablefullbright
  3271. }
  3272. brightmap sprite troog3g7
  3273. {
  3274. map "brightmaps/sprites/doom/troog3g7.png"
  3275. iwad
  3276. disablefullbright
  3277. }
  3278. brightmap sprite troog4g6
  3279. {
  3280. iwad
  3281. disablefullbright
  3282. }
  3283. brightmap sprite troog5
  3284. {
  3285. iwad
  3286. disablefullbright
  3287. }
  3288. brightmap sprite trooh1
  3289. {
  3290. map "brightmaps/sprites/doom/trooh1.png"
  3291. iwad
  3292. disablefullbright
  3293. }
  3294. brightmap sprite trooh2h8
  3295. {
  3296. map "brightmaps/sprites/doom/trooh2h8.png"
  3297. iwad
  3298. disablefullbright
  3299. }
  3300. brightmap sprite trooh3h7
  3301. {
  3302. map "brightmaps/sprites/doom/trooh3h7.png"
  3303. iwad
  3304. disablefullbright
  3305. }
  3306. brightmap sprite trooh4h6
  3307. {
  3308. iwad
  3309. disablefullbright
  3310. }
  3311. brightmap sprite trooh5
  3312. {
  3313. iwad
  3314. disablefullbright
  3315. }
  3316. brightmap sprite trooi0
  3317. {
  3318. iwad
  3319. disablefullbright
  3320. }
  3321. brightmap sprite trooj0
  3322. {
  3323. iwad
  3324. disablefullbright
  3325. }
  3326. brightmap sprite trook0
  3327. {
  3328. iwad
  3329. disablefullbright
  3330. }
  3331. brightmap sprite trool0
  3332. {
  3333. iwad
  3334. disablefullbright
  3335. }
  3336. brightmap sprite troom0
  3337. {
  3338. iwad
  3339. disablefullbright
  3340. }
  3341. brightmap sprite troon0
  3342. {
  3343. iwad
  3344. disablefullbright
  3345. }
  3346. brightmap sprite trooo0
  3347. {
  3348. iwad
  3349. disablefullbright
  3350. }
  3351. brightmap sprite troop0
  3352. {
  3353. iwad
  3354. disablefullbright
  3355. }
  3356. brightmap sprite trooq0
  3357. {
  3358. iwad
  3359. disablefullbright
  3360. }
  3361. brightmap sprite troor0
  3362. {
  3363. iwad
  3364. disablefullbright
  3365. }
  3366. brightmap sprite troos0
  3367. {
  3368. iwad
  3369. disablefullbright
  3370. }
  3371. brightmap sprite troot0
  3372. {
  3373. iwad
  3374. disablefullbright
  3375. }
  3376. brightmap sprite troou0
  3377. {
  3378. iwad
  3379. disablefullbright
  3380. }