54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
function creerhero($typevillenum){
|
|
include_once ('nomevolue.php');
|
|
$hero='';
|
|
$pasgob = array (1,2,3,4,6,7,8);
|
|
$pasorkpasgob = array (1,3,4,6,7,8);
|
|
$pashumain = array (1,3,4,6,8);
|
|
$ex =rand(1,9);
|
|
$exbis =rand(1,9);
|
|
$raceisole = array (7,7,7,7,7,7,7,7,$exbis,$ex);
|
|
$ex2=$pashumain[rand(0,count($pashumain)-1)];
|
|
$ex3=$pashumain[rand(0,count($pashumain)-1)];
|
|
$ex4=$pashumain[rand(0,count($pashumain)-1)];
|
|
|
|
$raceouvert = array (7,7,7,7,7,$ex2,$ex2,$ex3,$ex4,$ex);
|
|
$race= array();
|
|
|
|
switch ($typevillenum){
|
|
case 0:
|
|
$race=$raceisole;
|
|
break;
|
|
case 1:
|
|
$race=$raceouvert;
|
|
break;
|
|
case 2:
|
|
$race=$pasorkpasgob;
|
|
break;
|
|
case 3:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$tendance='bienveillante';
|
|
$sexe=rand(1,2);
|
|
$listeutile= array ();
|
|
|
|
$typedeherosmas=array ("Barbare","Barde","Druide","Ensorceleur","Guerrier","Magicien","Moine","Paladin","Prêtre","Rôdeur","Roublard");
|
|
$typedeherosfem=array ("Barbare","Barde","Druidesse","Ensorceleuse","Guerrière","Magicienne","Moine","Paladine","Prêtresse","Rôdeuse","Roublarde");
|
|
|
|
if ($sexe=1) $listeutile=$typedeherosmas; else $listeutile=$typedeherosfem;
|
|
|
|
$hero=creernomevo($race[rand(0,6)],$sexe).' '.$listeutile[rand(0,count($listeutile)-1)].' de niveau '.rand(10,15).' et de tendance '.$tendance;
|
|
|
|
return $hero;
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|