Difference between revisions of "Classes:Health"
From ECWolf Wiki
(Created page with "{{Actor| | type = Internal | name = Health | class = Health }}Classes: {{Class|Actor}} → {{Class|Inventory}} → <u>Health</u><br> →{{Class|Blood}}<br> ...") |
m (→DECORATE Definition: Style) |
||
Line 13: | Line 13: | ||
== DECORATE Definition == | == DECORATE Definition == | ||
− | actor Health : Inventory native | + | actor <u>Health</u> : {{Class|Inventory}} native |
{ | { | ||
{{property|inventory.amount}} 1 | {{property|inventory.amount}} 1 | ||
{{property|inventory.maxamount}} 0 | {{property|inventory.maxamount}} 0 | ||
} | } |
Revision as of 18:39, 16 January 2013
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
|
Health | |||
---|---|---|---|
Actor type | Internal | Game | |
DoomEd Number | None | Class Name | Health |
Classes: Actor → Inventory → Health
→Blood
→DogFood
→Food
→Medikit
→OneUpHealth
Overview
This is a base class for defining health pickups. Using inventory.maxamount will specify the maximum amount level of health the player can obtain from the pickup.
DECORATE Definition
actor Health : Inventory native { inventory.amount 1 inventory.maxamount 0 }