generation-jdr/lib/creerguerrier.php
2017-08-23 02:02:47 +01:00

33 lines
770 B
PHP

<?php
include('lib/tiragedes.php');
include('lib/choixrace.php');
include('lib/CLASS_Pnj.php');
function creerguerrier($tirage, $race)
{
$pnj = new CLASS_Pnj();
$output='';
$type = array(
"Critique",
"CA",
"archers",
"destructeur",
"desarmeur",
"2armescourte",
"2armeslongues",
"2mains",
"Monte"
);
$pnj->setClassedeperso('guerrier');
$pnj->setSousclasse($type[rand(0, count($type)-1)]);
$pnj->setCarac(tiragedes($tirage));
$pnj->setRace(choixrace($race));
echo test($pnj);
foreach ($pnj->getRace() as $value) {
echo $value ;
}
echo $pnj->afficherPNJ();
}