mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-07 05:21:18 +00:00
47dafa3824
if the first spawned one died and executed some code in its death state. - Added Karate Chris's submission for 'allowrespawn' MAPINFO option. - Added Karate Chris's submission for customizable skill confirmation text. - Fixed: Doom's statusbar only checked for primary attacks, not secondary ones when setting Doomguy's face. (Thanks to Karate Chris for the fix.) - added Skulltag's FORCEYBILLBOARD and FORCEXYBILLBOARD flags to the DECORATE parser. Even though the software renderer has no use for them it is necessary to support them so that mods can use these flags without becoming incompatible with ZDoom. SVN r576 (trunk)
86 lines
1.8 KiB
Text
86 lines
1.8 KiB
Text
// A bare-bones MAPINFO for Hexen.
|
|
// Most of the MAPINFO is still in hexen.wad.
|
|
|
|
skill baby
|
|
AmmoFactor 1.5
|
|
DamageFactor 0.5
|
|
EasyBossBrain
|
|
SpawnFilter "Easy"
|
|
Name "MNU_WETNURSE"
|
|
PlayerClassName "fighter" "MNU_SQUIRE"
|
|
PlayerClassName "cleric" "MNU_ALTARBOY"
|
|
PlayerClassName "mage" "MNU_APPRENTICE"
|
|
|
|
|
|
skill easy
|
|
SpawnFilter "Easy"
|
|
Name "MNU_YELLOWBELLIES"
|
|
PlayerClassName "fighter" "MNU_KNIGHT"
|
|
PlayerClassName "cleric" "MNU_ACOLYTE"
|
|
PlayerClassName "mage" "MNU_ENCHANTER"
|
|
|
|
skill normal
|
|
SpawnFilter "Normal"
|
|
Name "MNU_BRINGEST"
|
|
PlayerClassName "fighter" "MNU_WARRIOR"
|
|
PlayerClassName "cleric" "MNU_PRIEST"
|
|
PlayerClassName "mage" "MNU_SORCERER"
|
|
|
|
skill hard
|
|
SpawnFilter "Hard"
|
|
Name "MNU_SMITE"
|
|
PlayerClassName "fighter" "MNU_BERSERKER"
|
|
PlayerClassName "cleric" "MNU_CARDINAL"
|
|
PlayerClassName "mage" "MNU_WARLOCK"
|
|
|
|
skill nightmare
|
|
AmmoFactor 1.5
|
|
FastMonsters
|
|
DisableCheats
|
|
SpawnFilter "Hard"
|
|
Name "MNU_BLACKPLAGUE"
|
|
PlayerClassName "fighter" "MNU_TITAN"
|
|
PlayerClassName "cleric" "MNU_POPE"
|
|
PlayerClassName "mage" "MNU_ARCHMAGE"
|
|
MustConfirm ""
|
|
|
|
|
|
clusterdef 1
|
|
hub
|
|
exittext clus1msg
|
|
exittextislump
|
|
music hub
|
|
pic interpic
|
|
|
|
clusterdef 2
|
|
hub
|
|
exittext clus2msg
|
|
exittextislump
|
|
music hub
|
|
pic interpic
|
|
|
|
clusterdef 3
|
|
hub
|
|
exittext clus3msg
|
|
exittextislump
|
|
music hub
|
|
pic interpic
|
|
|
|
clusterdef 4
|
|
hub
|
|
exittext clus4msg
|
|
exittextislump
|
|
music hub
|
|
pic interpic
|
|
|
|
defaultmap
|
|
activateowndeathspecials
|
|
infiniteflightpowerup
|
|
fallingdamage
|
|
nointermission
|
|
noautosequences
|
|
missilesactivateimpactlines
|
|
|
|
// There is also support for showing a clus5msg after cluster 5, but
|
|
// since it isn't used, and it would intefere with the finale if I
|
|
// included it here, I'm leaving out the clusterdef for cluster 5.
|