|
|
|
@ -9,17 +9,17 @@
|
|
|
|
|
|
|
|
|
|
################### Spieler 1
|
|
|
|
|
|
|
|
|
|
if ($technick1[type] == copy) {
|
|
|
|
|
$k_mp[0] = $k_mp[0] - $technick1[mp];
|
|
|
|
|
if ($technick1['type'] == 'copy') {
|
|
|
|
|
$k_mp[0] = $k_mp[0] - $technick1['mp'];
|
|
|
|
|
if ($k_mp[0] >= 0) {
|
|
|
|
|
|
|
|
|
|
if ($technick1[starke] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick1['starke'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_starke[0] = $k_starke[0] + $k_starke[1];
|
|
|
|
|
}
|
|
|
|
|
if ($technick1[speed] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick1['speed'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_speed[0] = $k_speed[0] + $k_speed[1];
|
|
|
|
|
}
|
|
|
|
|
if ($technick1[verteidigung] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick1['verteidigung'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_ver[0] = $k_ver[0] + $k_ver[1];
|
|
|
|
|
}
|
|
|
|
|
$schaden_1 = "Power Kopieren!";
|
|
|
|
@ -33,18 +33,18 @@ if ($technick1[type] == copy) {
|
|
|
|
|
|
|
|
|
|
################### Spieler 2
|
|
|
|
|
|
|
|
|
|
if ($technick2[type] == copy) {
|
|
|
|
|
$k_mp[1] = $k_mp[1] - $technick2[mp];
|
|
|
|
|
if ($technick2['type'] == 'copy') {
|
|
|
|
|
$k_mp[1] = $k_mp[1] - $technick2['mp'];
|
|
|
|
|
|
|
|
|
|
if ($k_mp[1] >= 0) {
|
|
|
|
|
|
|
|
|
|
if ($technick2[starke] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick2['starke'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_starke[1] = $k_starke[0] + $k_starke[1];
|
|
|
|
|
}
|
|
|
|
|
if ($technick2[speed] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick2['speed'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_speed[1] = $k_speed[0] + $k_speed[1];
|
|
|
|
|
}
|
|
|
|
|
if ($technick2[verteidigung] == 1) { /////Staerke wird kopiert
|
|
|
|
|
if ($technick2['verteidigung'] == 1) { /////Staerke wird kopiert
|
|
|
|
|
$k_ver[1] = $k_ver[0] + $k_ver[1];
|
|
|
|
|
}
|
|
|
|
|
$schaden_2 = 'Power Kopieren!';
|
|
|
|
|