Attack now only misses range-stuff
This commit is contained in:
parent
3a37375cf2
commit
c419d6c2cf
2 changed files with 94 additions and 13 deletions
|
@ -1,3 +1,3 @@
|
||||||
$(document).ready( function() {
|
$(document).ready( function() {
|
||||||
$('#load').click(function() { $.getScript("src/adventure_01.js");});
|
$('#load').click(function() { $.getScript("src/adventure_01.js"); $('#load').hide();});
|
||||||
});
|
});
|
||||||
|
|
105
src/jsds.js
105
src/jsds.js
|
@ -68,6 +68,28 @@
|
||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
// Helper-Funcs
|
||||||
|
|
||||||
|
var clearui = function() {
|
||||||
|
$('#output').empty();
|
||||||
|
$('#ui').empty();
|
||||||
|
};
|
||||||
|
|
||||||
|
var dice = function(probe) {
|
||||||
|
var diceval = Math.floor(Math.random() * (21 - 1)) + 1;
|
||||||
|
if ( diceval <= probe ) {
|
||||||
|
return diceval;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (diceval === 20) {
|
||||||
|
alert ("Patzer!");
|
||||||
|
};
|
||||||
|
return 0;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
// Own Classes for Creatures, etc
|
||||||
|
|
||||||
var Creature = Class.extend({
|
var Creature = Class.extend({
|
||||||
init: function(info,attributes,properties,drawinfo,battle){
|
init: function(info,attributes,properties,drawinfo,battle){
|
||||||
/* info: pname, cname,class, level, experience, race, size
|
/* info: pname, cname,class, level, experience, race, size
|
||||||
|
@ -103,14 +125,64 @@
|
||||||
};
|
};
|
||||||
this.life = this.battle["life"]*1;
|
this.life = this.battle["life"]*1;
|
||||||
this.att = "melee";
|
this.att = "melee";
|
||||||
console.log("Attack: "+this.att);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
attack: function(enem) {
|
attack: function(enem) {
|
||||||
//console.log("attack");
|
clearui();
|
||||||
console.log(this.info.cname+" greift "+enem.info.cname+" an!");
|
var output=$('#output');
|
||||||
console.log("Ergebnis: " + this.battle[this.att]
|
output.html(this.info.cname+" greift "+enem.info.cname+" an!<br>");
|
||||||
+ ( this.battle[this.att] > enem.battle.defense ? " > " : " < ") + enem.battle.defense);
|
var attack_val = dice(this.battle[this.att]);
|
||||||
|
if (! attack_val ) {
|
||||||
|
output.append('Angriff Fehlgeschlagen!<br>');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
output.append(this.info.cname + " trifft mit " + attack_val + "<br>");
|
||||||
|
var defense_val = dice(this.battle.defense);
|
||||||
|
console.log(attack_val + ", " + defense_val);
|
||||||
|
attack_val -= defense_val;
|
||||||
|
attack_val = Math.max(attack_val, 0);
|
||||||
|
if ( ! defense_val ) {
|
||||||
|
output.append(enem.info.cname + " kann sich nicht wehren!<br>");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
output.append(enem.info.cname + " wehrt sich mit " + defense_val+".<br>");
|
||||||
|
}
|
||||||
|
if ( attack_val === 0 ) {
|
||||||
|
output.append("Vollständig Abgewehrt!<br>");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
output.append("Schaden: "+attack_val+"<br>");
|
||||||
|
};
|
||||||
|
enem.life -= attack_val;
|
||||||
|
if( enem.life <= 0 ) {
|
||||||
|
if ( enem.enem ){
|
||||||
|
output.append(enem.info.cname + " ist besiegt<br>");
|
||||||
|
enem.die();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
output.append(enem.info.cname + " ist bewusstlos<br>");
|
||||||
|
enem.unconsc();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
die: function() {
|
||||||
|
this.graphelement.destroy();
|
||||||
|
delete(player[this.info.pname]);
|
||||||
|
},
|
||||||
|
|
||||||
|
unconsc: function() {
|
||||||
|
this.graphelement.oldcolor = this.graphelement.color();
|
||||||
|
this.graphelement.color("#A0A0C0");
|
||||||
|
},
|
||||||
|
|
||||||
|
consc: function() {
|
||||||
|
if ( this.graphelement.oldcolor ) {
|
||||||
|
this.graphelement.color(this.graphelement.oldcolor);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
sel_att: function() {
|
sel_att: function() {
|
||||||
var outstr="";
|
var outstr="";
|
||||||
outstr += "Angriffstyp?<br>";
|
outstr += "Angriffstyp?<br>";
|
||||||
|
@ -141,7 +213,6 @@
|
||||||
|
|
||||||
// Set default battle-propoerties.
|
// Set default battle-propoerties.
|
||||||
this.extern = {"armor":0,"chant":0,"weapon":0};
|
this.extern = {"armor":0,"chant":0,"weapon":0};
|
||||||
console.log(this.battle.defense);
|
|
||||||
this.battle.defense += this.extern.armor;
|
this.battle.defense += this.extern.armor;
|
||||||
this.battle.melee += this.extern.weapon;
|
this.battle.melee += this.extern.weapon;
|
||||||
this.battle.shoot += this.extern.weapon;
|
this.battle.shoot += this.extern.weapon;
|
||||||
|
@ -149,9 +220,13 @@
|
||||||
this.battle.shoot_chant = this.battle.chant + this.extern.chant - this.extern.armor;
|
this.battle.shoot_chant = this.battle.chant + this.extern.chant - this.extern.armor;
|
||||||
},
|
},
|
||||||
printoutput: function() {
|
printoutput: function() {
|
||||||
$('#output').empty();
|
outstr = "";
|
||||||
$('#ui').empty();
|
outstr += this.info.cname + " (gespielt von "+this.info.pname +")<br>";
|
||||||
$('#output').html(this.info.cname+"<br>"+this.info.pname);
|
outstr += "Greift derzeit durch " + this.att + " mit einer Stärke von "
|
||||||
|
+ this.battle[this.att] + " an.<br>";
|
||||||
|
outstr += "Verteidigungsstärke: " + this.battle.defense + "<br>";
|
||||||
|
outstr += "Kraftpunkte: " + this.life;
|
||||||
|
$('#output').html(outstr);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -166,11 +241,17 @@
|
||||||
|
|
||||||
this._super(info,attributes,properties,drawinfo,battle);
|
this._super(info,attributes,properties,drawinfo,battle);
|
||||||
this.info.cname=this.info.pname;
|
this.info.cname=this.info.pname;
|
||||||
|
this.enem = true;
|
||||||
},
|
},
|
||||||
printoutput: function() {
|
printoutput: function() {
|
||||||
$('#output').empty();
|
clearui();
|
||||||
$('#ui').empty();
|
outstr = "";
|
||||||
$('#output').html(this.info.race+"<br>"+this.info.pname);
|
outstr += "Ein "+ this.info.race + "<br>";
|
||||||
|
outstr += "Greift derzeit durch " + this.att + " mit einer Stärke von "
|
||||||
|
+ this.battle[this.att] + " an.<br>";
|
||||||
|
outstr += "Verteidigungsstärke: " + this.battle.defense + "<br>";
|
||||||
|
outstr += "Kraftpunkte: " + this.life;
|
||||||
|
$('#output').html(outstr);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue