we now have (non-functional) items!
[dd2d.git] / data / scripts / item / greenkey.dacs
blob8d1a283cd0ffd28ed0bb171a19e8d80eec9838ad
1 module itemGreenkey is "item" "GreenKey";
3 import actor;
4 import actorai;
7 // setup actor animations
8 public void initializeAnim () {
9   animClearFrames("item", "GreenKey", "sleep");
10   animAddFrame("item", "GreenKey", "sleep", ACTOR_DIR_LEFT, "sprites/items/keyga0.vga");
14 // setup actor properties
15 public void initialize (Actor me) {
16   // `classname` and `classtype` will be set by the engine
17   //me.classname = "GreenKey";
18   //me.classtype = "item";
19   me.radius = 10;
20   me.height = 8;
21   me.actorSetAnimation("sleep");