From d46775ec879c2c076cafbe9d3b0acc28ef75c2fc Mon Sep 17 00:00:00 2001 From: "giacomand@gmail.com" Date: Fri, 2 Nov 2012 02:31:16 +0000 Subject: [PATCH] -Aliens now take x2 as much damage from fire based weaponary, instead of x1.5. -Doors are now weaker than walls; so normal weapons can destroy them much more easily. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4990 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/structures/mineral_doors.dm | 9 +++++++-- code/modules/mob/living/carbon/alien/alien.dm | 2 +- html/changelog.html | 9 +++++++++ 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm index b73ab697928..a6ecd8e2c1a 100644 --- a/code/game/objects/structures/mineral_doors.dm +++ b/code/game/objects/structures/mineral_doors.dm @@ -281,7 +281,7 @@ /obj/structure/mineral_door/resin mineralType = "resin" - hardness = 5 + hardness = 1.5 var/close_delay = 100 TryToSwitchState(atom/user) @@ -315,4 +315,9 @@ isSwitchingStates = 0 Dismantle(devastated = 0) - del(src) \ No newline at end of file + del(src) + + CheckHardness() + playsound(loc, 'sound/effects/attackblob.ogg', 100, 1) + ..() + diff --git a/code/modules/mob/living/carbon/alien/alien.dm b/code/modules/mob/living/carbon/alien/alien.dm index ca97186bb50..55b9c87e7e0 100644 --- a/code/modules/mob/living/carbon/alien/alien.dm +++ b/code/modules/mob/living/carbon/alien/alien.dm @@ -37,7 +37,7 @@ /mob/living/carbon/alien/adjustFireLoss(amount) // Weak to Fire if(amount > 0) - ..(amount * 1.5) + ..(amount * 2) else ..(amount) return diff --git a/html/changelog.html b/html/changelog.html index 435242f9058..a16129f6040 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -49,6 +49,15 @@ should be listed in the changelog upon commit tho. Thanks. --> +
+

01 November 2012

+

Giacom updated:

+ +
+

31 October 2012

Giacom updated: