MantisBT - Zandronum
View Issue Details
0000985Zandronum[All Projects] Suggestionpublic2012-08-23 11:562014-06-11 21:48
Balrog 
 
normaltweakN/A
feedbackopen 
 
 
0000985: Make PowerTerminatorArtifact only cover terminator status/frag bonus, use givers for health/armor/damage
If I want to, say, increase the effectiveness of the armor that the Terminator sphere gives because my mod emphasizes armor, I can't be sure I can do that because PowerTerminatorArtifact has the native keyword and seems to handle everything itself. By making PowerTerminatorArtifact only handle the backend aspects of identifying who is the Terminator and the 10-frag bonus/Termination medal. Instead of having PowerTerminatorArtifact give a MegaSphere and DoomSphere by itself, have the Terminator actor give two new actors, TerminatorArmorGiver and TerminatorHealthGiver, that mods can inherit from and replace with custom actors.
actor TerminatorHealthGiver : Health
{
 Game Doom
 Game Heretic
 Game Hexen
 +INVENTORY.AUTOACTIVATE
 +INVENTORY.ALWAYSPICKUP
 Inventory.Amount 200
 Inventory.MaxAmount 200
}

ACTOR TerminatorArmorGiver : BasicArmorPickup
{
 Game Doom
 Game Heretic
 Game Hexen
 +INVENTORY.AUTOACTIVATE
 +INVENTORY.ALWAYSPICKUP
 Armor.SavePercent 50
 Armor.SaveAmount 200
}
decorate, Multiplayer, terminator
Issue History
2012-08-23 11:56BalrogNew Issue
2014-06-11 21:48WatermelonNote Added: 0009122
2014-06-11 21:48WatermelonStatusnew => feedback

Notes
(0009122)
Watermelon   
2014-06-11 21:48   
Can you check if the player has it in their inventory with ACS?