parent
e04b3e423e
commit
88e649fb39
@ -1,43 +1,37 @@
|
||||
<?php
|
||||
/*
|
||||
*
|
||||
* @copyright (c) 2010 animegame.eu
|
||||
* @copyright (c) 2009 animegame.eu
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
||||
*
|
||||
*/
|
||||
####################KAMPF HP SPIELER 1
|
||||
if($technick1[type] == hp) {
|
||||
$k_mp[0] = $k_mp[0] - $technick1[mp];
|
||||
if($k_mp[0] < 0) {
|
||||
$k_mp[0] = 0;
|
||||
$schaden_1 = "Keine MP";
|
||||
$aktion_AV1[$x] = "nein";
|
||||
} else {
|
||||
$k_hp[0] = $k_hp[0] + (($k_hp1[1] / 100) * $technick1[hp]);
|
||||
if($k_hp1[1] < $k_hp[0]) { $k_hp[0] = $k_hp1[1]; }
|
||||
|
||||
$schaden_1 = "+ $technick1[hp]% HP";
|
||||
$aktion_AV1[$x] = "nein";
|
||||
}}
|
||||
|
||||
|
||||
|
||||
####################KAMPF HP SPIELER 2
|
||||
|
||||
if($technick2[type] == hp) {
|
||||
$k_mp[1] = $k_mp[1] - $technick2[mp];
|
||||
if($k_mp[1] < 0) {
|
||||
$k_mp[1] = 0;
|
||||
$schaden_2 = "Keine MP";
|
||||
$aktion_AV2[$x] = "nein";
|
||||
} else {
|
||||
$k_hp[1] = $k_hp[1] + (($k_hp2[1] / 100) * $technick2[hp]);
|
||||
|
||||
if($k_hp2[1] < $k_hp[1]) { $k_hp[1] = $k_hp2[1]; }
|
||||
|
||||
|
||||
$schaden_2 = "+ $technick2[hp]% HP";
|
||||
$aktion_AV2[$x] = "nein";
|
||||
}}
|
||||
|
||||
####################KAMPF HP SPIELER 1
|
||||
if ($technick1['type'] == "hp") {
|
||||
$k_mp[0] = $k_mp[0] - $technick1['mp'];
|
||||
if ($k_mp[0] < 0) {
|
||||
$k_mp[0] = 0;
|
||||
$schaden_1 = 'Keine MP';
|
||||
$aktion_AV1[$x] = 'nein';
|
||||
} else {
|
||||
$tmp_hp[0] = (($k_hp1[1] / 100) * $technick1['hp']);
|
||||
$schaden_1 = '+' . $technick1['hp'] .'% HP';
|
||||
$aktion_AV1[$x] = 'nein';
|
||||
}
|
||||
}
|
||||
|
||||
####################KAMPF HP SPIELER 2
|
||||
if ($technick2['type'] == 'hp') {
|
||||
$k_mp[1] = $k_mp[1] - $technick2['mp'];
|
||||
if ($k_mp[1] < 0) {
|
||||
$k_mp[1] = 0;
|
||||
$schaden_2 = 'Keine MP';
|
||||
$aktion_AV2[$x] = 'nein';
|
||||
} else {
|
||||
$tmp_hp[1] = (($k_hp2[1] / 100) * $technick2['hp']);
|
||||
$schaden_2 = '+' . $technick2['hp'] .'% HP';
|
||||
$aktion_AV2[$x] = 'nein';
|
||||
}
|
||||
}
|
||||
?>
|
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/*
|
||||
*
|
||||
* @copyright (c) 2009 animegame.eu
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
||||
*
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
####################KAMPF HP SPIELER 1
|
||||
if ($technick1['type'] == "konterhp") {
|
||||
$k_mp[0] = $k_mp[0] - $technick1['mp'];
|
||||
if ($k_mp[0] < 0) {
|
||||
$k_mp[0] = 0;
|
||||
$schaden_1 = "Keine MP";
|
||||
$aktion_AV1[$x] = "nein";
|
||||
} else {
|
||||
$k_hp[1] = $k_hp[1] - $tmp_hp[1];
|
||||
$schaden_1 = "$tmp_hp[1]";
|
||||
if($tmp_hp[1] > 0) {
|
||||
$schaden_2 = "Konter!";
|
||||
}
|
||||
$aktion_AV1[$x] = "nein";
|
||||
}
|
||||
} else {
|
||||
$k_hp[1] = $k_hp[1] + $tmp_hp[1];
|
||||
if ($k_hp2[1] < $k_hp[1]) {
|
||||
$k_hp[1] = $k_hp2[1];
|
||||
}
|
||||
}
|
||||
|
||||
####################KAMPF HP SPIELER 2
|
||||
|
||||
if ($technick2['type'] == "konterhp") {
|
||||
$k_mp[1] = $k_mp[1] - $technick2['mp'];
|
||||
if ($k_mp[1] < 0) {
|
||||
$k_mp[1] = 0;
|
||||
$schaden_2 = "Keine MP";
|
||||
$aktion_AV2[$x] = "nein";
|
||||
} else {
|
||||
$k_hp[0] = $k_hp[0] - $tmp_hp[0];
|
||||
$schaden_2 = "$tmp_hp[0]";
|
||||
if($tmp_hp[0] > 0) {
|
||||
$schaden_1 = "Konter!";
|
||||
}
|
||||
$aktion_AV2[$x] = "nein";
|
||||
}
|
||||
} else {
|
||||
$k_hp[0] = $k_hp[0] + $tmp_hp[0];
|
||||
if ($k_hp1[1] < $k_hp[0]) {
|
||||
$k_hp[0] = $k_hp1[1];
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in new issue