OSDN Git Service

辛夷祭当日の変更を含む最終コミット
[h58pcdgame/GameScriptCoreLibrary.git] / www / corelib / classes / MainCharacters / MainCharacterClass_Witch.js
1 var MainCharacterClass_Witch = function(stage, args, isFromNetwork){\r
2         MainCharacterClass_Witch.base.apply(this, arguments);\r
3 }.extend(MainCharacterClass, {\r
4         className: "MainCharacterClass_Witch",\r
5         create: function(stage, args){\r
6                 MainCharacterClass_Witch.base.prototype.create.apply(this, [stage, [["witch.png","witch2.png"]]]);\r
7                 this.size.x = 32;\r
8                 this.size.y = 64;\r
9                 this.antigravity = 200 / GameManager.prototype.tickPerSecond;\r
10                 this.jumpPower = 90;\r
11                 this.max_HP = 60;\r
12                 this.HP = this.max_HP;\r
13         },\r
14 });\r