mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
6650e2bbfb
- added type casts to the arguments of function calls. - added string constant to state conversion to FxTypeCast.
41 lines
630 B
Text
41 lines
630 B
Text
|
|
// Silver Shield (Shield1) --------------------------------------------------
|
|
|
|
Class SilverShield : BasicArmorPickup
|
|
{
|
|
Default
|
|
{
|
|
+FLOATBOB
|
|
Inventory.Pickupmessage "$TXT_ITEMSHIELD1";
|
|
Inventory.Icon "SHLDA0";
|
|
Armor.Savepercent 50;
|
|
Armor.Saveamount 100;
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
SHLD A -1;
|
|
stop;
|
|
}
|
|
}
|
|
|
|
// Enchanted shield (Shield2) -----------------------------------------------
|
|
|
|
Class EnchantedShield : BasicArmorPickup
|
|
{
|
|
Default
|
|
{
|
|
+FLOATBOB
|
|
Inventory.Pickupmessage "$TXT_ITEMSHIELD2";
|
|
Inventory.Icon "SHD2A0";
|
|
Armor.Savepercent 75;
|
|
Armor.Saveamount 200;
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
SHD2 A -1;
|
|
stop;
|
|
}
|
|
}
|
|
|