OSDN Git Service

Merge branch 'master' of https://scm.sourceforge.jp/gitroot/h58pcdgame/GameScriptCore...
[h58pcdgame/GameScriptCoreLibrary.git] / www / corelib / classes / MainCharacters / MainCharacterClass_Witch.js
1 var MainCharacterClass_Witch = function(stage, args){
2         MainCharacterClass_Witch.base.apply(this, [stage, [["witch.png","witch2.png"]]]);
3         this.ownerUID = stage.manager.userID;
4         this.size.x = 32;
5         this.size.y = 64;
6         this.antigravity = 300 / stage.manager.tickPerSecond;
7         this.jumpPower = 80;
8         this.max_HP = 80;
9         this.HP = this.max_HP;
10         stage.addStageObject(this, true);
11 }.extend(MainCharacterClass, {
12         className: "MainCharacterClass_Witch",
13
14 });