From c3a54599b4959b1cd45e14bc0f22b71309534b90 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Thu, 6 Oct 2016 02:32:46 -0600 Subject: [PATCH] Nerf super-effective type matchup a little --- attackplace.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/attackplace.php b/attackplace.php index 8beda16..3c8c299 100644 --- a/attackplace.php +++ b/attackplace.php @@ -21,6 +21,8 @@ $userdrain = pow(floor($user['level']), 0.5) * 5; $type_mod = $TYPE_GRID[$user['teamid']][$place['teamid']]; if ($type_mod == 0.5) { $type_mod = 0.8; +} else if ($type_mod == 2) { + $type_mod = 1.5; } $terrain_mod = 1.0;