moonad / Moonad

Moonad: a p2p academic journal, or a social network for code?
http://moonad.org/
MIT License
28 stars 7 forks source link

Add more mons and mhp #55

Closed MaisaMilena closed 4 years ago

MaisaMilena commented 4 years ago
// A game object
T Mons.Object
| Mons.Object.new(
  kin: Mons.Kind, // represent the type of the object
  dir: Mons.Dir,  // direction the object is facing
  pad: Mons.Pad,  // movement key pad
  ani: U32,       // number of walk frames to animate
  mhp: U32,       // object's maximum health points <<<<<< here
  dmg: U32        // object's current health points
);