From: Mario Date: Mon, 8 May 2017 14:36:25 +0000 (+1000) Subject: Tweak spider, mage and golem sizes X-Git-Tag: xonotic-v0.8.5~7^2~1^2~87 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f3d102c3129753876f2b6851cb40590fa6ce0e99;p=xonotic%2Fxonotic-data.pk3dir.git Tweak spider, mage and golem sizes --- diff --git a/models/monsters/golem.dpm b/models/monsters/golem.dpm index ed0dd8e448..8a3bf373ce 100644 Binary files a/models/monsters/golem.dpm and b/models/monsters/golem.dpm differ diff --git a/models/monsters/nanomage.dpm b/models/monsters/nanomage.dpm index 224704a923..b7c44ddb45 100644 Binary files a/models/monsters/nanomage.dpm and b/models/monsters/nanomage.dpm differ diff --git a/qcsrc/common/monsters/monster/golem.qh b/qcsrc/common/monsters/monster/golem.qh index a60c6daeac..4a8dc33a09 100644 --- a/qcsrc/common/monsters/monster/golem.qh +++ b/qcsrc/common/monsters/monster/golem.qh @@ -8,8 +8,8 @@ MODEL(MON_GOLEM, M_Model("golem.dpm")); CLASS(Golem, Monster) ATTRIB(Golem, spawnflags, int, MON_FLAG_SUPERMONSTER | MON_FLAG_MELEE | MON_FLAG_RANGED); - ATTRIB(Golem, mins, vector, '-41 -41 -20'); - ATTRIB(Golem, maxs, vector, '41 41 65'); + ATTRIB(Golem, mins, vector, '-24 -24 -20'); + ATTRIB(Golem, maxs, vector, '24 24 88'); #ifdef GAMEQC ATTRIB(Golem, m_model, Model, MDL_MON_GOLEM); #endif diff --git a/qcsrc/common/monsters/monster/mage.qh b/qcsrc/common/monsters/monster/mage.qh index 847e5c14ca..da94d99fcf 100644 --- a/qcsrc/common/monsters/monster/mage.qh +++ b/qcsrc/common/monsters/monster/mage.qh @@ -8,8 +8,8 @@ MODEL(MON_MAGE, M_Model("nanomage.dpm")); CLASS(Mage, Monster) ATTRIB(Mage, spawnflags, int, MON_FLAG_MELEE | MON_FLAG_RANGED); - ATTRIB(Mage, mins, vector, '-36 -36 -24'); - ATTRIB(Mage, maxs, vector, '36 36 50'); + ATTRIB(Mage, mins, vector, '-16 -16 -24'); + ATTRIB(Mage, maxs, vector, '16 16 55'); #ifdef GAMEQC ATTRIB(Mage, m_model, Model, MDL_MON_MAGE); #endif diff --git a/qcsrc/common/monsters/monster/spider.qh b/qcsrc/common/monsters/monster/spider.qh index c54eb3a7a8..452f9d4333 100644 --- a/qcsrc/common/monsters/monster/spider.qh +++ b/qcsrc/common/monsters/monster/spider.qh @@ -8,8 +8,8 @@ MODEL(MON_SPIDER, M_Model("spider.dpm")); CLASS(Spider, Monster) ATTRIB(Spider, spawnflags, int, MON_FLAG_MELEE | MON_FLAG_RANGED | MON_FLAG_RIDE); - ATTRIB(Spider, mins, vector, '-18 -18 -25'); - ATTRIB(Spider, maxs, vector, '18 18 30'); + ATTRIB(Spider, mins, vector, '-30 -30 -25'); + ATTRIB(Spider, maxs, vector, '30 30 30'); #ifdef GAMEQC ATTRIB(Spider, m_model, Model, MDL_MON_SPIDER); #endif