本文整理汇总了PHP中Stat::getModifier方法的典型用法代码示例。如果您正苦于以下问题:PHP Stat::getModifier方法的具体用法?PHP Stat::getModifier怎么用?PHP Stat::getModifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stat
的用法示例。
在下文中一共展示了Stat::getModifier方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_getModifier
function test_getModifier()
{
$stat_total = 16;
$mod = Stat::getModifier($stat_total);
$result = 3;
$this->assertEquals($mod, $result);
}
示例2: run
static function run()
{
// DESCRIPTION :
$description = new Description($_SESSION['name'], $_SESSION['gender'], $_SESSION['age'], $_SESSION['alignment'], $_SESSION['height'], $_SESSION['eye_color'], $_SESSION['hair_color'], $_SESSION['skin_tone'], $_SESSION['other'], null);
$description->save();
$description_id = $description->getId();
// STAT VARIABLES :
$dex = $_SESSION['dex'];
$dex_mod = Stat::getModifier($dex);
$con = $_SESSION['con'];
$con_mod = Stat::getModifier($con);
$str = $_SESSION['str'];
$str_mod = Stat::getModifier($str);
$wis = $_SESSION['wis'];
$wis_mod = Stat::getModifier($wis);
$int = $_SESSION['int'];
$int_mod = Stat::getModifier($int);
$cha = $_SESSION['cha'];
$cha_mod = Stat::getModifier($cha);
$initiative = $dex_mod;
// MAKES A CLASS VARIABLE, MAXHP, AC, BACKGROUND ID :
if ($_SESSION['class'] == 1) {
$class = "cleric";
$class_hp = 8;
$class_id = 1;
} elseif ($_SESSION['class'] == 2) {
$class = "fighter";
$class_hp = 10;
$class_id = 2;
} elseif ($_SESSION['class'] == 3) {
$class = "rogue";
$class_hp = 8;
$class_id = 3;
} elseif ($_SESSION['class'] == 4) {
$class = "wizard";
$class_hp = 6;
$class_id = 4;
}
$max_hp = $con_mod + $class_hp;
$ac = 10 + $dex_mod;
$proficiency_array = $_SESSION['skill'];
$background_id = $_SESSION['background'];
$proficiency_array = $_SESSION['skill'];
$skill_ids = array();
foreach ($proficiency_array as $proficiency) {
if ($proficiency == "Acrobatics") {
$skill_id = 1;
} elseif ($proficiency == "Animal Handling") {
$skill_id = 2;
} elseif ($proficiency == "Arcana") {
$skill_id = 3;
} elseif ($proficiency == "Athletics") {
$skill_id = 4;
} elseif ($proficiency == "Deception") {
$skill_id = 5;
} elseif ($proficiency == "History") {
$skill_id = 6;
} elseif ($proficiency == "Insight") {
$skill_id = 7;
} elseif ($proficiency == "Intimidation") {
$skill_id = 8;
} elseif ($proficiency == "Investigation") {
$skill_id = 9;
} elseif ($proficiency == "Medicine") {
$skill_id = 10;
} elseif ($proficiency == "Nature") {
$skill_id = 11;
} elseif ($proficiency == "Perception") {
$skill_id = 12;
} elseif ($proficiency == "Performance") {
$skill_id = 13;
} elseif ($proficiency == "Persuasion") {
$skill_id = 14;
} elseif ($proficiency == "Religion") {
$skill_id = 15;
} elseif ($proficiency == "Sleight of Hand") {
$skill_id = 16;
} elseif ($proficiency == "Stealth") {
$skill_id = 17;
} elseif ($proficiency == "Survival") {
$skill_id = 18;
}
array_push($skill_ids, $skill_id);
}
// MAKES A RACE VARIABLE, SPEED :
if ($_SESSION['race'] == 1) {
$race = "human";
$speed = 30;
$race_id = 1;
} elseif ($_SESSION['race'] == 2) {
$race = "hill dwarf";
$speed = 25;
$race_id = 2;
} elseif ($_SESSION['race'] == 3) {
$race = "mountain dwarf";
$speed = 25;
$race_id = 3;
} elseif ($_SESSION['race'] == 4) {
$race = "high elf";
$speed = 30;
//.........这里部分代码省略.........