doom

a minimalistic implementation of doom
git clone git://ssnf.xyz/doom
Log | Files | Refs

lang.c (21979B)


      1 #include "doomdef.h"
      2 
      3 char* english[] = {
      4 	"NEWLEVEL"                                  /*NEWLEVEL*/,
      5 	"press a key."                              /*PRESSKEY*/,
      6 	"press y or n."                             /*PRESSYN*/,
      7 	"Development mode ON.\n"                    /*D_DEVSTR*/,
      8 	"CD-ROM Version"                            /*D_CDROM*/,
      9 	"you can't do load while in a net game!\n\n"
     10 		"press a key."							/*LOADNET*/,
     11 	"you can't quickload during a netgame!\n\n"
     12 		"press a key."							/*QLOADNET*/,
     13 	"you haven't picked a quicksave slot yet!\n\n"
     14 		"press a key."							/*QSAVESPOT*/,
     15 	"you can't save if you aren't playing!\n\n"
     16 		"press a key."							/*SAVEDEAD*/,
     17 	"quicksave over your game named\n\n'%s'?\n\n"
     18 		"press y or n."							/*QSPROMPT*/,
     19 	"do you want to quickload the game named\n\n'%s'?\n\n"
     20 		"press y or n."							/*QLPROMPT*/,
     21 	"you can't start a new game\nwhile in a network game.\n\n"
     22 		"press a key."							/*NEWGAME*/,
     23 	"are you sure? this skill level\nisn't even remotely fair.\n\n"
     24 		"press a key."							/*NIGHTMARE*/,
     25 	"this is the shareware version of doom.\n\nyou need to order the entire trilogy.\n\n"
     26 		"press a key."							/*SWSTRING*/,
     27 	"Messages OFF"									/*MSGOFF*/,
     28 	"Messages ON"									/*MSGON*/,
     29 	"you can't end a netgame!\n\n"
     30 		"press a key."							/*NETEND*/,
     31 	"are you sure you want to end the game?\n\n"
     32 		"press a key."							/*ENDGAME*/,
     33 	"(press y to quit)"								/*DOSY*/,
     34 	"High detail"									/*DETAILHI*/,
     35 	"Low detail"									/*DETAILLO*/,
     36 	"Gamma correction OFF"							/*GAMMALVL0*/,
     37 	"Gamma correction level 1"						/*GAMMALVL1*/,
     38 	"Gamma correction level 2"						/*GAMMALVL2*/,
     39 	"Gamma correction level 3"						/*GAMMALVL3*/,
     40 	"Gamma correction level 4"						/*GAMMALVL4*/,
     41 	"empty slot"									/*EMPTYSTRING*/,
     42 	"Picked up the armor."							/*GOTARMOR*/,
     43 	"Picked up the MegaArmor!"						/*GOTMEGA*/,
     44 	"Picked up a health bonus."						/*GOTHTHBONUS*/,
     45 	"Picked up an armor bonus."						/*GOTARMBONUS*/,
     46 	"Picked up a stimpack."							/*GOTSTIM*/,
     47 	"Picked up a medikit that you REALLY need!"		/*GOTMEDINEED*/,
     48 	"Picked up a medikit."							/*GOTMEDIKIT*/,
     49 	"Supercharge!"									/*GOTSUPER*/,
     50 	"Picked up a blue keycard."						/*GOTBLUECARD*/,
     51 	"Picked up a yellow keycard."					/*GOTYELWCARD*/,
     52 	"Picked up a red keycard."						/*GOTREDCARD*/,
     53 	"Picked up a blue skull key."					/*GOTBLUESKUL*/,
     54 	"Picked up a yellow skull key."					/*GOTYELWSKUL*/,
     55 	"Picked up a red skull key."					/*GOTREDSKULL*/,
     56 	"Invulnerability!"								/*GOTINVUL*/,
     57 	"Berserk!"										/*GOTBERSERK*/,
     58 	"Partial Invisibility"							/*GOTINVIS*/,
     59 	"Radiation Shielding Suit"						/*GOTSUIT*/,
     60 	"Computer Area Map"								/*GOTMAP*/,
     61 	"Light Amplification Visor"						/*GOTVISOR*/,
     62 	"MegaSphere!"									/*GOTMSPHERE*/,
     63 	"Picked up a clip."								/*GOTCLIP*/,
     64 	"Picked up a box of bullets."					/*GOTCLIPBOX*/,
     65 	"Picked up a rocket."							/*GOTROCKET*/,
     66 	"Picked up a box of rockets."					/*GOTROCKBOX*/,
     67 	"Picked up an energy cell."						/*GOTCELL*/,
     68 	"Picked up an energy cell pack."				/*GOTCELLBOX*/,
     69 	"Picked up 4 shotgun shells."					/*GOTSHELLS*/,
     70 	"Picked up a box of shotgun shells."			/*GOTSHELLBOX*/,
     71 	"Picked up a backpack full of ammo!"			/*GOTBACKPACK*/,
     72 	"You got the BFG9000!  Oh, yes."				/*GOTBFG9000*/,
     73 	"You got the chaingun!"							/*GOTCHAINGUN*/,
     74 	"A chainsaw!  Find some meat!"					/*GOTCHAINSAW*/,
     75 	"You got the rocket launcher!"					/*GOTLAUNCHER*/,
     76 	"You got the plasma gun!"						/*GOTPLASMA*/,
     77 	"You got the shotgun!"							/*GOTSHOTGUN*/,
     78 	"You got the super shotgun!"					/*GOTSHOTGUN2*/,
     79 	"You need a blue key to activate this object"	/*PD_BLUEO*/,
     80 	"You need a red key to activate this object"	/*PD_REDO*/,
     81 	"You need a yellow key to activate this object"	/*PD_YELLOWO*/,
     82 	"You need a blue key to open this door"			/*PD_BLUEK*/,
     83 	"You need a red key to open this door"			/*PD_REDK*/,
     84 	"You need a yellow key to open this door"		/*PD_YELLOWK*/,
     85 	"game saved."									/*GGSAVED*/,
     86 	"[Message unsent]"								/*HUSTR_MSGU*/,
     87 	"E1M1"											/*HUSTR_E1M1*/,
     88 	"E1M2"											/*HUSTR_E1M2*/,
     89 	"E1M3"											/*HUSTR_E1M3*/,
     90 	"E1M4"											/*HUSTR_E1M4*/,
     91 	"E1M5"											/*HUSTR_E1M5*/,
     92 	"E1M6"											/*HUSTR_E1M6*/,
     93 	"E1M7"											/*HUSTR_E1M7*/,
     94 	"E1M8"											/*HUSTR_E1M8*/,
     95 	"E1M9"											/*HUSTR_E1M9*/,
     96 	"E2M1"											/*HUSTR_E2M1*/,
     97 	"E2M2"											/*HUSTR_E2M2*/,
     98 	"E2M3"											/*HUSTR_E2M3*/,
     99 	"E2M4"											/*HUSTR_E2M4*/,
    100 	"E2M5"											/*HUSTR_E2M5*/,
    101 	"E2M6"											/*HUSTR_E2M6*/,
    102 	"E2M7"											/*HUSTR_E2M7*/,
    103 	"E2M8"											/*HUSTR_E2M8*/,
    104 	"E2M9"											/*HUSTR_E2M9*/,
    105 	"E3M1"											/*HUSTR_E3M1*/,
    106 	"E3M2"											/*HUSTR_E3M2*/,
    107 	"E3M3"											/*HUSTR_E3M3*/,
    108 	"E3M4"											/*HUSTR_E3M4*/,
    109 	"E3M5"											/*HUSTR_E3M5*/,
    110 	"E3M6"											/*HUSTR_E3M6*/,
    111 	"E3M7"											/*HUSTR_E3M7*/,
    112 	"E3M8"											/*HUSTR_E3M8*/,
    113 	"E3M9"											/*HUSTR_E3M9*/,
    114 	"E4M1"											/*HUSTR_E4M1*/,
    115 	"E4M2"											/*HUSTR_E4M2*/,
    116 	"E4M3"											/*HUSTR_E4M3*/,
    117 	"E4M4"											/*HUSTR_E4M4*/,
    118 	"E4M5"											/*HUSTR_E4M5*/,
    119 	"E4M6"											/*HUSTR_E4M6*/,
    120 	"E4M7"											/*HUSTR_E4M7*/,
    121 	"E4M8"											/*HUSTR_E4M8*/,
    122 	"E4M9"											/*HUSTR_E4M9*/,
    123 	"level 1"										/*HUSTR_1*/,
    124 	"level 2"										/*HUSTR_2*/,
    125 	"level 3"										/*HUSTR_3*/,
    126 	"level 4"										/*HUSTR_4*/,
    127 	"level 5"										/*HUSTR_5*/,
    128 	"level 6"										/*HUSTR_6*/,
    129 	"level 7"										/*HUSTR_7*/,
    130 	"level 8"										/*HUSTR_8*/,
    131 	"level 9"										/*HUSTR_9*/,
    132 	"level 10"										/*HUSTR_10*/,
    133 	"level 11"										/*HUSTR_11*/,
    134 	"level 12"										/*HUSTR_12*/,
    135 	"level 13"										/*HUSTR_13*/,
    136 	"level 14"										/*HUSTR_14*/,
    137 	"level 15"										/*HUSTR_15*/,
    138 	"level 16"										/*HUSTR_16*/,
    139 	"level 17"										/*HUSTR_17*/,
    140 	"level 18"										/*HUSTR_18*/,
    141 	"level 19"										/*HUSTR_19*/,
    142 	"level 20"										/*HUSTR_20*/,
    143 	"level 21"										/*HUSTR_21*/,
    144 	"level 22"										/*HUSTR_22*/,
    145 	"level 23"										/*HUSTR_23*/,
    146 	"level 24"										/*HUSTR_24*/,
    147 	"level 25"										/*HUSTR_25*/,
    148 	"level 26"										/*HUSTR_26*/,
    149 	"level 27"										/*HUSTR_27*/,
    150 	"level 28"										/*HUSTR_28*/,
    151 	"level 29"										/*HUSTR_29*/,
    152 	"level 30"										/*HUSTR_30*/,
    153 	"level 31"										/*HUSTR_31*/,
    154 	"level 32"										/*HUSTR_32*/,
    155 	"level 1"										/*PHUSTR_1*/,
    156 	"level 2"										/*PHUSTR_2*/,
    157 	"level 3"										/*PHUSTR_3*/,
    158 	"level 4"										/*PHUSTR_4*/,
    159 	"level 5"										/*PHUSTR_5*/,
    160 	"level 6"										/*PHUSTR_6*/,
    161 	"level 7"										/*PHUSTR_7*/,
    162 	"level 8"										/*PHUSTR_8*/,
    163 	"level 9"										/*PHUSTR_9*/,
    164 	"level 10"										/*PHUSTR_10*/,
    165 	"level 11"										/*PHUSTR_11*/,
    166 	"level 12"										/*PHUSTR_12*/,
    167 	"level 13"										/*PHUSTR_13*/,
    168 	"level 14"										/*PHUSTR_14*/,
    169 	"level 15"										/*PHUSTR_15*/,
    170 	"level 16"										/*PHUSTR_16*/,
    171 	"level 17"										/*PHUSTR_17*/,
    172 	"level 18"										/*PHUSTR_18*/,
    173 	"level 19"										/*PHUSTR_19*/,
    174 	"level 20"										/*PHUSTR_20*/,
    175 	"level 21"										/*PHUSTR_21*/,
    176 	"level 22"										/*PHUSTR_22*/,
    177 	"level 23"										/*PHUSTR_23*/,
    178 	"level 24"										/*PHUSTR_24*/,
    179 	"level 25"										/*PHUSTR_25*/,
    180 	"level 26"										/*PHUSTR_26*/,
    181 	"level 27"										/*PHUSTR_27*/,
    182 	"level 28"										/*PHUSTR_28*/,
    183 	"level 29"										/*PHUSTR_29*/,
    184 	"level 30"										/*PHUSTR_30*/,
    185 	"level 31"										/*PHUSTR_31*/,
    186 	"level 32"										/*PHUSTR_32*/,
    187 	"level 1"										/*THUSTR_1*/,
    188 	"level 2"										/*THUSTR_2*/,
    189 	"level 3"										/*THUSTR_3*/,
    190 	"level 4"										/*THUSTR_4*/,
    191 	"level 5"										/*THUSTR_5*/,
    192 	"level 6"										/*THUSTR_6*/,
    193 	"level 7"										/*THUSTR_7*/,
    194 	"level 8"										/*THUSTR_8*/,
    195 	"level 9"										/*THUSTR_9*/,
    196 	"level 10"										/*THUSTR_10*/,
    197 	"level 11"										/*THUSTR_11*/,
    198 	"level 12"										/*THUSTR_12*/,
    199 	"level 13"										/*THUSTR_13*/,
    200 	"level 14"										/*THUSTR_14*/,
    201 	"level 15"										/*THUSTR_15*/,
    202 	"level 16"										/*THUSTR_16*/,
    203 	"level 17"										/*THUSTR_17*/,
    204 	"level 18"										/*THUSTR_18*/,
    205 	"level 19"										/*THUSTR_19*/,
    206 	"level 20"										/*THUSTR_20*/,
    207 	"level 21"										/*THUSTR_21*/,
    208 	"level 22"										/*THUSTR_22*/,
    209 	"level 23"										/*THUSTR_23*/,
    210 	"level 24"										/*THUSTR_24*/,
    211 	"level 25"										/*THUSTR_25*/,
    212 	"level 26"										/*THUSTR_26*/,
    213 	"level 27"										/*THUSTR_27*/,
    214 	"level 28"										/*THUSTR_28*/,
    215 	"level 29"										/*THUSTR_29*/,
    216 	"level 30"										/*THUSTR_30*/,
    217 	"level 31"										/*THUSTR_31*/,
    218 	"level 32"										/*THUSTR_32*/,
    219 	"I'm ready to kick butt!"						/*HUSTR_CHATMACRO1*/,
    220 	"I'm OK."										/*HUSTR_CHATMACRO2*/,
    221 	"I'm not looking too good!"						/*HUSTR_CHATMACRO3*/,
    222 	"Help!"											/*HUSTR_CHATMACRO4*/,
    223 	"You suck!"										/*HUSTR_CHATMACRO5*/,
    224 	"Next time, scumbag..."							/*HUSTR_CHATMACRO6*/,
    225 	"Come here!"									/*HUSTR_CHATMACRO7*/,
    226 	"I'll take care of it."							/*HUSTR_CHATMACRO8*/,
    227 	"Yes"											/*HUSTR_CHATMACRO9*/,
    228 	"No"											/*HUSTR_CHATMACRO0*/,
    229 	"You mumble to yourself"						/*HUSTR_TALKTOSELF1*/,
    230 	"Who's there?"									/*HUSTR_TALKTOSELF2*/,
    231 	"You scare yourself"							/*HUSTR_TALKTOSELF3*/,
    232 	"You start to rave"								/*HUSTR_TALKTOSELF4*/,
    233 	"You've lost it..."								/*HUSTR_TALKTOSELF5*/,
    234 	"[Message Sent]"								/*HUSTR_MESSAGESENT*/,
    235 	"Green"											/*HUSTR_PLRGREEN*/,
    236 	"Indigo"										/*HUSTR_PLRINDIGO*/,
    237 	"Brown"											/*HUSTR_PLRBROWN*/,
    238 	"Red"											/*HUSTR_PLRRED*/,
    239 	"g"												/*HUSTR_KEYGREEN*/,
    240 	"i"												/*HUSTR_KEYINDIGO*/,
    241 	"b"												/*HUSTR_KEYBROWN*/,
    242 	"r"												/*HUSTR_KEYRED*/,
    243 	"Follow Mode ON"								/*AMSTR_FOLLOWON*/,
    244 	"Follow Mode OFF"								/*AMSTR_FOLLOWOFF*/,
    245 	"Grid ON"										/*AMSTR_GRIDON*/,
    246 	"Grid OFF"										/*AMSTR_GRIDOFF*/,
    247 	"Marked Spot"									/*AMSTR_MARKEDSPOT*/,
    248 	"All Marks Cleared"								/*AMSTR_MARKSCLEARED*/,
    249 	"Music Change"									/*STSTR_MUS*/,
    250 	"IMPOSSIBLE SELECTION"							/*STSTR_NOMUS*/,
    251 	"Degreelessness Mode On"						/*STSTR_DQDON*/,
    252 	"Degreelessness Mode Off"						/*STSTR_DQDOFF*/,
    253 	"Very Happy Ammo Added"							/*STSTR_KFAADDED*/,
    254 	"Ammo (no keys) Added"							/*STSTR_FAADDED*/,
    255 	"No Clipping Mode ON"							/*STSTR_NCON*/,
    256 	"No Clipping Mode OFF"							/*STSTR_NCOFF*/,
    257 	"inVuln, Str, Inviso, Rad, Allmap, or Lite-amp"	/*STSTR_BEHOLD*/,
    258 	"Power-up Toggled"								/*STSTR_BEHOLDX*/,
    259 	"... doesn't suck - GM"							/*STSTR_CHOPPERS*/,
    260 	"Changing Level..."								/*STSTR_CLEV*/,
    261 	"Once you beat the big badasses and\n"
    262 		"clean out the moon base you're supposed\n"
    263 		"to win, aren't you? Aren't you? Where's\n"
    264 		"your fat reward and ticket home? What\n"
    265 		"the hell is this? It's not supposed to\n"
    266 		"end this way!\n"
    267 		"\n"
    268 		"It stinks like rotten meat, but looks\n"
    269 		"like the lost Deimos base.  Looks like\n"
    270 		"you're stuck on The Shores of Hell.\n"
    271 		"The only way out is through.\n"
    272 		"\n"
    273 		"To continue the DOOM experience, play\n"
    274 		"The Shores of Hell and its amazing\n"
    275 		"sequel, Inferno!\n"						/*E1TEXT*/,
    276 	"You've done it! The hideous cyber-\n"
    277 		"demon lord that ruled the lost Deimos\n"
    278 		"moon base has been slain and you\n"
    279 		"are triumphant! But ... where are\n"
    280 		"you? You clamber to the edge of the\n"
    281 		"moon and look down to see the awful\n"
    282 		"truth.\n"
    283 		"\n"
    284 		"Deimos floats above Hell itself!\n"
    285 		"You've never heard of anyone escaping\n"
    286 		"from Hell, but you'll make the bastards\n"
    287 		"sorry they ever heard of you! Quickly,\n"
    288 		"you rappel down to  the surface of\n"
    289 		"Hell.\n"
    290 		"\n"
    291 		"Now, it's on to the final chapter of\n"
    292 		"DOOM! -- Inferno."							/*E2TEXT*/,
    293 	"The loathsome spiderdemon that\n"
    294 		"masterminded the invasion of the moon\n"
    295 		"bases and caused so much death has had\n"
    296 		"its ass kicked for all time.\n"
    297 		"\n"
    298 		"A hidden doorway opens and you enter.\n"
    299 		"You've proven too tough for Hell to\n"
    300 		"contain, and now Hell at last plays\n"
    301 		"fair -- for you emerge from the door\n"
    302 		"to see the green fields of Earth!\n"
    303 		"Home at last.\n"
    304 		"\n"
    305 		"You wonder what's been happening on\n"
    306 		"Earth while you were battling evil\n"
    307 		"unleashed. It's good that no Hell-\n"
    308 		"spawn could have come through that\n"
    309 		"door with you ..."							/*E3TEXT*/,
    310 	"the spider mastermind must have sent forth\n"
    311 		"its legions of hellspawn before your\n"
    312 		"final confrontation with that terrible\n"
    313 		"beast from hell.  but you stepped forward\n"
    314 		"and brought forth eternal damnation and\n"
    315 		"suffering upon the horde as a true hero\n"
    316 		"would in the face of something so evil.\n"
    317 		"\n"
    318 		"besides, someone was gonna pay for what\n"
    319 		"happened to daisy, your pet rabbit.\n"
    320 		"\n"
    321 		"but now, you see spread before you more\n"
    322 		"potential pain and gibbitude as a nation\n"
    323 		"of demons run amok among our cities.\n"
    324 		"\n"
    325 		"next stop, hell on earth!"					/*E4TEXT*/,
    326 	"YOU HAVE ENTERED DEEPLY INTO THE INFESTED\n"
    327 		"STARPORT. BUT SOMETHING IS WRONG. THE\n"
    328 		"MONSTERS HAVE BROUGHT THEIR OWN REALITY\n"
    329 		"WITH THEM, AND THE STARPORT'S TECHNOLOGY\n"
    330 		"IS BEING SUBVERTED BY THEIR PRESENCE.\n"
    331 		"\n"
    332 		"AHEAD, YOU SEE AN OUTPOST OF HELL, A\n"
    333 		"FORTIFIED ZONE. IF YOU CAN GET PAST IT,\n"
    334 		"YOU CAN PENETRATE INTO THE HAUNTED HEART\n"
    335 		"OF THE STARBASE AND FIND THE CONTROLLING\n"
    336 		"SWITCH WHICH HOLDS EARTH'S POPULATION\n"
    337 		"HOSTAGE."									/*C1TEXT*/,
    338 	"YOU HAVE WON! YOUR VICTORY HAS ENABLED\n"
    339 		"HUMANKIND TO EVACUATE EARTH AND ESCAPE\n"
    340 		"THE NIGHTMARE.  NOW YOU ARE THE ONLY\n"
    341 		"HUMAN LEFT ON THE FACE OF THE PLANET.\n"
    342 		"CANNIBAL MUTATIONS, CARNIVOROUS ALIENS,\n"
    343 		"AND EVIL SPIRITS ARE YOUR ONLY NEIGHBORS.\n"
    344 		"YOU SIT BACK AND WAIT FOR DEATH, CONTENT\n"
    345 		"THAT YOU HAVE SAVED YOUR SPECIES.\n"
    346 		"\n"
    347 		"BUT THEN, EARTH CONTROL BEAMS DOWN A\n"
    348 		"MESSAGE FROM SPACE"						/*C2TEXT*/,
    349 	"YOU ARE AT THE CORRUPT HEART OF THE CITY,\n"
    350 		"SURROUNDED BY THE CORPSES OF YOUR ENEMIES.\n"
    351 		"YOU SEE NO WAY TO DESTROY THE CREATURES'\n"
    352 		"ENTRYWAY ON THIS SIDE, SO YOU CLENCH YOUR\n"
    353 		"TEETH AND PLUNGE THROUGH IT.\n"
    354 		"\n"
    355 		"THERE MUST BE A WAY TO CLOSE IT ON THE\n"
    356 		"OTHER SIDE. WHAT DO YOU CARE IF YOU'VE\n"
    357 		"GOT TO GO THROUGH HELL TO GET TO IT?"		/*C3TEXT*/,
    358 	"THE HORRENDOUS VISAGE OF THE BIGGEST\n"
    359 		"DEMON YOU'VE EVER SEEN CRUMBLES BEFORE\n"
    360 		"YOU, AFTER YOU PUMP YOUR ROCKETS INTO\n"
    361 		"HIS EXPOSED BRAIN. THE MONSTER SHRIVELS\n"
    362 		"UP AND DIES, ITS THRASHING LIMBS\n"
    363 		"DEVASTATING UNTOLD MILES OF HELL'S\n"
    364 		"SURFACE.\n"
    365 		"\n"
    366 		"YOU'VE DONE IT. THE INVASION IS OVER.\n"
    367 		"EARTH IS SAVED. HELL IS A WRECK. YOU\n"
    368 		"WONDER WHERE BAD FOLKS WILL GO WHEN THEY\n"
    369 		"DIE, NOW. WIPING THE SWEAT FROM YOUR\n"
    370 		"FOREHEAD YOU BEGIN THE LONG TREK BACK\n"
    371 		"HOME. REBUILDING EARTH OUGHT TO BE A\n"
    372 		"LOT MORE FUN THAN RUINING IT WAS.\n"		/*C4TEXT*/,
    373 	"CONGRATULATIONS, YOU'VE FOUND THE SECRET\n"
    374 		"LEVEL! LOOKS LIKE IT'S BEEN BUILT BY\n"
    375 		"HUMANS, RATHER THAN DEMONS. YOU WONDER\n"
    376 		"WHO THE INMATES OF THIS CORNER OF HELL\n"
    377 		"WILL BE."									/*C5TEXT*/,
    378 	"CONGRATULATIONS, YOU'VE FOUND THE\n"
    379 		"SUPER SECRET LEVEL!  YOU'D BETTER\n"
    380 		"BLAZE THROUGH THIS ONE!\n"					/*C6TEXT*/,
    381 	"You gloat over the steaming carcass of the\n"
    382 		"Guardian.  With its death, you've wrested\n"
    383 		"the Accelerator from the stinking claws\n"
    384 		"of Hell.  You relax and glance around the\n"
    385 		"room.  Damn!  There was supposed to be at\n"
    386 		"least one working prototype, but you can't\n"
    387 		"see it. The demons must have taken it.\n"
    388 		"\n"
    389 		"You must find the prototype, or all your\n"
    390 		"struggles will have been wasted. Keep\n"
    391 		"moving, keep fighting, keep killing.\n"
    392 		"Oh yes, keep living, too."					/*P1TEXT*/,
    393 	"Even the deadly Arch-Vile labyrinth could\n"
    394 		"not stop you, and you've gotten to the\n"
    395 		"prototype Accelerator which is soon\n"
    396 		"efficiently and permanently deactivated.\n"
    397 		"\n"
    398 		"You're good at that kind of thing."		/*P2TEXT*/,
    399 	"You've bashed and battered your way into\n"
    400 		"the heart of the devil-hive.  Time for a\n"
    401 		"Search-and-Destroy mission, aimed at the\n"
    402 		"Gatekeeper, whose foul offspring is\n"
    403 		"cascading to Earth.  Yeah, he's bad. But\n"
    404 		"you know who's worse!\n"
    405 		"\n"
    406 		"Grinning evilly, you check your gear, and\n"
    407 		"get ready to give the bastard a little Hell\n"
    408 		"of your own making!"						/*P3TEXT*/,
    409 	"The Gatekeeper's evil face is splattered\n"
    410 		"all over the place.  As its tattered corpse\n"
    411 		"collapses, an inverted Gate forms and\n"
    412 		"sucks down the shards of the last\n"
    413 		"prototype Accelerator, not to mention the\n"
    414 		"few remaining demons.  You're done. Hell\n"
    415 		"has gone back to pounding bad dead folks \n"
    416 		"instead of good live ones.  Remember to\n"
    417 		"tell your grandkids to put a rocket\n"
    418 		"launcher in your coffin. If you go to Hell\n"
    419 		"when you die, you'll need it for some\n"
    420 		"final cleaning-up ..."						/*P4TEXT*/,
    421 	"You've found the second-hardest level we\n"
    422 		"got. Hope you have a saved game a level or\n"
    423 		"two previous.  If not, be prepared to die\n"
    424 		"aplenty. For master marines only."			/*P5TEXT*/,
    425 	"Betcha wondered just what WAS the hardest\n"
    426 		"level we had ready for ya?  Now you know.\n"
    427 		"No one gets out alive."					/*P6TEXT*/,
    428 	"You've fought your way out of the infested\n"
    429 		"experimental labs.   It seems that UAC has\n"
    430 		"once again gulped it down.  With their\n"
    431 		"high turnover, it must be hard for poor\n"
    432 		"old UAC to buy corporate health insurance\n"
    433 		"nowadays..\n"
    434 		"\n"
    435 		"Ahead lies the military complex, now\n"
    436 		"swarming with diseased horrors hot to get\n"
    437 		"their teeth into you. With luck, the\n"
    438 		"complex still has some warlike ordnance\n"
    439 		"laying around."							/*T1TEXT*/,
    440 	"You hear the grinding of heavy machinery\n"
    441 		"ahead.  You sure hope they're not stamping\n"
    442 		"out new hellspawn, but you're ready to\n"
    443 		"ream out a whole herd if you have to.\n"
    444 		"They might be planning a blood feast, but\n"
    445 		"you feel about as mean as two thousand\n"
    446 		"maniacs packed into one mad killer.\n"
    447 		"\n"
    448 		"You don't plan to go down easy."			/*T2TEXT*/,
    449 	"The vista opening ahead looks real damn\n"
    450 		"familiar. Smells familiar, too -- like\n"
    451 		"fried excrement. You didn't like this\n"
    452 		"place before, and you sure as hell ain't\n"
    453 		"planning to like it now. The more you\n"
    454 		"brood on it, the madder you get.\n"
    455 		"Hefting your gun, an evil grin trickles\n"
    456 		"onto your face. Time to take some names."	/*T3TEXT*/,
    457 	"Suddenly, all is silent, from one horizon\n"
    458 		"to the other. The agonizing echo of Hell\n"
    459 		"fades away, the nightmare sky turns to\n"
    460 		"blue, the heaps of monster corpses start \n"
    461 		"to evaporate along with the evil stench \n"
    462 		"that filled the air. Jeeze, maybe you've\n"
    463 		"done it. Have you really won?\n"
    464 		"\n"
    465 		"Something rumbles in the distance.\n"
    466 		"A blue light begins to glow inside the\n"
    467 		"ruined skull of the demon-spitter."		/*T4TEXT*/,
    468 	"What now? Looks totally different. Kind\n"
    469 		"of like King Tut's condo. Well,\n"
    470 		"whatever's here can't be any worse\n"
    471 		"than usual. Can it?  Or maybe it's best\n"
    472 		"to let sleeping gods lie.."				/*T5TEXT*/,
    473 	"Time for a vacation. You've burst the\n"
    474 		"bowels of hell and by golly you're ready\n"
    475 		"for a break. You mutter to yourself,\n"
    476 		"Maybe someone else can kick Hell's ass\n"
    477 		"next time around. Ahead lies a quiet town,\n"
    478 		"with peaceful flowing water, quaint\n"
    479 		"buildings, and presumably no Hellspawn.\n"
    480 		"\n"
    481 		"As you step off the transport, you hear\n"
    482 		"the stomp of a cyberdemon's iron shoe."	/*T6TEXT*/,
    483 	"ZOMBIEMAN"										/*CC_ZOMBIE*/,
    484 	"SHOTGUN GUY"									/*CC_SHOTGUN*/,
    485 	"HEAVY WEAPON DUDE"								/*CC_HEAVY*/,
    486 	"IMP"											/*CC_IMP*/,
    487 	"DEMON"											/*CC_DEMON*/,
    488 	"LOST SOUL"										/*CC_LOST*/,
    489 	"CACODEMON"										/*CC_CACO*/,
    490 	"HELL KNIGHT"									/*CC_HELL*/,
    491 	"BARON OF HELL"									/*CC_BARON*/,
    492 	"ARACHNOTRON"									/*CC_ARACH*/,
    493 	"PAIN ELEMENTAL"								/*CC_PAIN*/,
    494 	"REVENANT"										/*CC_REVEN*/,
    495 	"MANCUBUS"										/*CC_MANCU*/,
    496 	"ARCH-VILE"										/*CC_ARCH*/,
    497 	"THE SPIDER MASTERMIND"							/*CC_SPIDER*/,
    498 	"THE CYBERDEMON"								/*CC_CYBER*/,
    499 	"OUR HERO"										/*CC_HERO*/,
    500 	"doomsav"										/*SAVEGAMENAME*/,
    501 	"devmaps"										/*DEVMAPS*/,
    502 	"devdata"										/*DEVDATA*/,
    503 	"are you sure you want to\n"
    504 		"quit this great game?"						/*QUITMSG0*/,
    505 	"please don't leave, there's more\n"
    506 		"demons to toast!"							/*QUITMSG1*/,
    507 	"let's beat it -- this is turning\n"
    508 		"into a bloodbath!"							/*QUITMSG2*/,
    509 	"i wouldn't leave if i were you.\n"
    510 		"dos is much worse."						/*QUITMSG3*/,
    511 	"you're trying to say you like dos\n"
    512 		"better than me, right?"					/*QUITMSG4*/,
    513 	"don't leave yet -- there's a\n"
    514 		"demon around that corner!"					/*QUITMSG5*/,
    515 	"ya know, next time you come in here\n"
    516 		"i'm gonna toast ya."						/*QUITMSG6*/,
    517 	"go ahead and leave. see if i care."			/*QUITMSG7*/,
    518 	"you want to quit?\n"
    519 		"then, thou hast lost an eighth!"			/*QUITMSG8*/,
    520 	"don't go now, there's a \n"
    521 		"dimensional shambler waiting\n"
    522 		"at the dos prompt!"						/*QUITMSG9*/,
    523 	"get outta here and go back\n"
    524 		"to your boring programs."					/*QUITMSG10*/,
    525 	"if i were your boss, i'd \n"
    526 		" deathmatch ya in a minute!"				/*QUITMSG11*/,
    527 	"look, bud. you leave now\n"
    528 		"and you forfeit your body count!"			/*QUITMSG12*/,
    529 	"just leave. when you come\n"
    530 		"back, i'll be waiting with a bat."			/*QUITMSG13*/,
    531 	"you're lucky i don't smack\n"
    532 		"you for thinking about leaving."			/*QUITMSG14*/,
    533 	"fuck you, pussy!\n"
    534 		"get the fuck out!"							/*QUITMSG15*/,
    535 	"you quit and i'll jizz\n"
    536 		"in your cystholes!"						/*QUITMSG16*/,
    537 	"if you leave, i'll make \n"
    538 		"the lord drink my jizz."					/*QUITMSG17*/,
    539 	"hey, ron! can we say\n"
    540 		"'fuck' in the game?"						/*QUITMSG18*/,
    541 	"i'd leave: this is just\n"
    542 		"more monsters and levels.\n"
    543 		"what a load."								/*QUITMSG19*/,
    544 	"suck it down, asshole! \n"
    545 		"you're a fucking wimp!"					/*QUITMSG20*/,
    546 	"don't quit now! we're \n"
    547 		"still spending your money!"				/*QUITMSG21*/
    548 };
    549 
    550 char** lang = english;