Created
April 23, 2011 20:22
-
-
Save b123400/938940 to your computer and use it in GitHub Desktop.
まどかとほむほむ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var madoka= new function{ | |
this.power=/*平凡な中学生の力*/; | |
this.becomesMahosyoujyo=function (){ | |
/*戦い続ける*/ | |
die(); | |
} | |
} | |
var homura = new function() { | |
this.goBack=function(){ | |
while(true){ //ほむほむ | |
if(this.saveMadoka()){ | |
break; | |
} | |
madoka.power++; | |
if(madoka.power>/*宇宙を変える力*/){ | |
//最終回 | |
//イマココ | |
} | |
} | |
} | |
this.saveMadoka=function (){ | |
return false; //(ヾノ・∀・`)ムリムリ | |
} | |
} | |
madoka.becomesMahosyoujyo(); | |
madoka.onDie=homura.goBack; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment