mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
7db035abba
I have no idea why this was ever deemed proper - but it clearly breaks some Hexen maps and it not even remotely mimics the original behavior. Even now, it's not the same but since the items fall down they at least end up where they are supposed to be.
39 lines
675 B
Text
39 lines
675 B
Text
|
|
// Silver Shield (Shield1) --------------------------------------------------
|
|
|
|
Actor SilverShield : BasicArmorPickup 85
|
|
{
|
|
Game Heretic
|
|
SpawnID 68
|
|
+FLOATBOB
|
|
Inventory.Pickupmessage "$TXT_ITEMSHIELD1"
|
|
Inventory.Icon "SHLDA0"
|
|
Armor.Savepercent 50
|
|
Armor.Saveamount 100
|
|
States
|
|
{
|
|
Spawn:
|
|
SHLD A -1
|
|
stop
|
|
}
|
|
}
|
|
|
|
// Enchanted shield (Shield2) -----------------------------------------------
|
|
|
|
Actor EnchantedShield : BasicArmorPickup 31
|
|
{
|
|
Game Heretic
|
|
SpawnID 69
|
|
+FLOATBOB
|
|
Inventory.Pickupmessage "$TXT_ITEMSHIELD2"
|
|
Inventory.Icon "SHD2A0"
|
|
Armor.Savepercent 75
|
|
Armor.Saveamount 200
|
|
States
|
|
{
|
|
Spawn:
|
|
SHD2 A -1
|
|
stop
|
|
}
|
|
}
|
|
|