Construct an Enemy role
Optional
damage?: numberThe amount of damage the enemy does (default 2)
Optional
defeatCan the enemy be defeated by crawling
Optional
defeatCan the enemy be defeated by jumping?
Optional
disableWhen the enemy collides with a hero, should they pass through each other?
Optional
immuneDoes invincibility defeat the enemy?
Optional
instantShould the enemy always defeat the hero on a collision
Optional
onCode to run when defeating a hero
Code to run when defeating a hero
Optional
onCode to run when this enemy is defeated
Code to run when this enemy is defeated
collisionRules lets us turn off collisions based on the roles of two actors. We do this with two sets. If A's second set contains an entry in B's first set, then we disable the collision. We also do this symmetrically with B and A. In essence, this means that the first set lets a Role say "here are special things about me", and the second set lets a Role say "I don't collide with things that are special in these ways."
The second set: properties that this role won't collide with
The first set: properties of this role
Amount of damage this enemy does to a hero on a collision. The default is 2, so that an enemy will defeat a hero and not disappear.
When the enemy collides with an invincible hero, does the enemy survive
When the enemy collides with an invincible hero, does it instantly defeat the hero?
Optional
onCode to run when this enemy (e
) defeats a hero (h
)
Optional
onCode to run when this enemy (e
) is defeated. If an actor defeats e
,
a
will be defined
Readonly
prerenderTasks to run before every render
Optional
actor: ActorDoes an in-air hero automatically defeat this enemy
When an enemy is defeated, this this code figures out how game play should change.
Indicate if we should increase the score when this enemy is defeated
Optional
h: ActorThe actor who defeated this enemy, if any
This actor ignores collisions with Heroes
Indicate that the current Role should not ignore collisions with some other role
The role that should not be ignored
Code to run when there is a collision involving this role's Actor
Enemies are things to be avoided or defeated by the Hero. Enemies do damage to heroes when they collide with heroes, and enemies can be defeated by other Entities in a variety of ways.