summaryrefslogtreecommitdiff
path: root/src/entities/wordIs.js
blob: 041f10cba94edb5de9a141bd583717a031b62369 (plain)
1
2
3
4
5
6
7
8
9
10
11
game.createWordIs = () => {
  const wordIs = game.Entity();
  wordIs.addComponent(game.components.LoadPriority({priority: 3}));
  wordIs.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
  // wordIs.addComponent(game.components.Stop({stop: true}));
  wordIs.addComponent(game.components.Pushable());
  wordIs.addComponent(game.components.Alive());
  wordIs.addComponent(game.components.Sprite({spriteName: "wordIs"}));
  wordIs.addComponent(game.components.Verb({action: "Is"}));
  return wordIs;
};