You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

<?php
include_once("path.inc.php");
include_once(ROOT_PATH. "/include/defines.inc.php");
/*
*
* @copyright (c) 2010 animegame.eu
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
*
*/
////// MUSS SO BLEIBEN WICHTIG
$aussetzten_runde = "";
//Diese Variablen speichern den Wert um wieviel HP geheilt wird damit wir falls nötig diesen durch Healkonter
//in Schaden umwandeln können
$tmp_hp[0] = 0;
$tmp_hp[1] = 0;
//Diese Werte sind wichtig, damit wir wissen ob eine Heal-Attacke eingesetzt wurde und wir die HP falls sie das
//Maximum überschreiten zurücksetzen müssen
$tmp_hp[2] = false;
$tmp_hp[3] = false;
##################################MP, SSJ Verwandlungen, HP, Koerper Tausch Technicken
include ('/kampf/majin.php');
if (!$aussetzten_runde) { /////DAS FUER MAJIN ATTACKEN
include ('kampf/atk_wert.php');
include ('kampf/tausch2.php'); //////////////////Muss ganz oben sein wegen technik Tauschen
include ('kampf/gift.php');
include ('kampf/frucht.php');
include ('kampf/runde.php');
include ('kampf/mp.php');
include ('kampf/hp.php');
include ('kampf/hp2.php');
include ('kampf/SSJ.php');
include ('kampf/kaioken.php');
include ('kampf/kaioken2.php');
include ('kampf/copy.php');
include ('kampf/lose.php');
include ('kampf/lose2.php');
include ('kampf/ausdauer.php');
include ('kampf/mpv.php');
include ('kampf/hpmp.php');
include ('kampf/generic_technik.php');
}
include ('kampf/generic_rechnung.php');
include ('kampf/atk_wert.php');
if (!$aussetzten_runde) { /////DAS FUER MAJIN ATTACKEN
//Als letztes um alle HP-Attacken zu kontern (in $tmp_hp gespeichert)
include ('kampf/konter_heal.php');
//Nach Konterheal, damit überstehende HP bleibt
include ('kampf/tausch.php');
include ('kampf/reborn.php');
}
include ('kampf/heilung.php');