secgun, radfix, etc

secgun-- three types of rounds.  lethal, lessthanlethal, flash.  lethal
is midbullet2.  ltl is weakbullet.  flash is 5 brute and does not stun,
but it makes people who get hit by it and people within two tiles of the
tile hit get eyeflashed.  the eyeflash is minor unless you score a
direct hit, but still disorienting i guess.

radiation fix: you once again pass out when you get completely
irradiated.  the radiation burns damage and cloneloss that very rarely
happens with extremely heavy radiation poisoning was given a significant
buff.  as in you'll actually notice it now.  you'll notice it a lot.

made it so vamps don't have to breathe.  intend to do some fixes.
intend to maybe give vamps a maybe 'pretend to be alive' verb that turns
their heart on and off.  maybe.  or maybe they'll just lose their
heartbeat. nobreathing is a first step maybe

mutagen fix.  no more telekinetic pink braces.

bumped accuracy up a bit.
This commit is contained in:
Duck-
2015-03-29 14:59:44 -04:00
parent bac5f3e6c0
commit b4f00eeae8
9 changed files with 103 additions and 13 deletions
+15 -7
View File
@@ -309,9 +309,9 @@
if (radiation > 50)
damage = 1
radiation -= 1 * RADIATION_SPEED_COEFFICIENT
if(prob(5) && prob(100 * RADIATION_SPEED_COEFFICIENT))
radiation -= 5 * RADIATION_SPEED_COEFFICIENT
src << "<span class='warning'>You feel weak.</span>"
if(prob(5)) //&& prob(100 * RADIATION_SPEED_COEFFICIENT)) //who did this double percentage thing
radiation -= 5 * RADIATION_SPEED_COEFFICIENT //do you understand
src << "<span class='warning'>You feel weak.</span>" //5% *10% is never happens ever %. it is worthless.
Weaken(3)
if(!lying)
emote("collapse")
@@ -325,13 +325,18 @@
if (radiation > 75)
radiation -= 1 * RADIATION_SPEED_COEFFICIENT
damage = 3
if(prob(5))
take_overall_damage(0, 5 * RADIATION_SPEED_COEFFICIENT, used_weapon = "Radiation Burns")
if(prob(1))
if(prob(3)) //originally 5% chance to take .5 burn. now 3% chance to take 5 burn.
take_overall_damage(0, 5, used_weapon = "Radiation Burns") // formerly 5 * RADIATION_SPEED_COEFFICIENT
if(prob(2)) //originally 1% chance to take .5 cloneloss. now 2% chance to take 5 cloneloss.
src << "<span class='warning'>You feel strange!</span>"
adjustCloneLoss(5 * RADIATION_SPEED_COEFFICIENT)
adjustCloneLoss(5) // * RADIATION_SPEED_COEFFICIENT //a 1% chance to take 5 cloneloss * .1 for .5 really. no thanks
emote("gasp")
if (radiation > 98 && paralysis < 2) //clamp value + spamprotect
Paralyse(10) //it used to be *collapse spam. this is quiet and spamless.
src << "\red You black out!"
make_jittery(250)
if(damage)
adjustToxLoss(damage * RADIATION_SPEED_COEFFICIENT)
updatehealth()
@@ -339,10 +344,13 @@
var/datum/organ/external/O = pick(organs)
if(istype(O)) O.add_autopsy_data("Radiation Poisoning", damage)
proc/breathe()
if(reagents.has_reagent("lexorin")) return
if(istype(loc, /obj/machinery/atmospherics/unary/cryo_cell)) return
if(species && (species.flags & NO_BREATHE || species.flags & IS_SYNTHETIC)) return
if(mind && mind.vampire) return
var/datum/gas_mixture/environment = loc.return_air()
var/datum/gas_mixture/breath
+1 -1
View File
@@ -112,7 +112,7 @@
var/miss_chance = 15
if (O.throw_source)
var/distance = get_dist(O.throw_source, loc)
miss_chance = min(15*(distance-2), 0)
miss_chance = min(15*(distance-5), 0)
if (prob(miss_chance))
visible_message("\blue \The [O] misses [src] narrowly!")