mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
changess
This commit is contained in:
@@ -696,6 +696,6 @@
|
||||
var/list/slot_must_be_empty = list(slot_back,slot_handcuffed,slot_legcuffed,slot_l_hand,slot_r_hand,slot_belt,slot_head,slot_wear_suit)
|
||||
for(var/slot_id in slot_must_be_empty)
|
||||
if(user.get_item_by_slot(slot_id))
|
||||
user << "<span class='warning'>You can't fit inside while wearing that \the [user.get_item_by_slot(slot_id)].</span>"
|
||||
to_chat(user,"<span class='warning'>You can't fit inside while wearing that \the [user.get_item_by_slot(slot_id)].</span>")
|
||||
return 0
|
||||
return 1
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
/mob/living/simple_animal/hostile/feral_cat
|
||||
name = "feral cat"
|
||||
desc = "Kitty!! Wait..."
|
||||
icon = 'icons/mob/pets.dmi'
|
||||
icon_state = "cat2"
|
||||
icon_living = "cat2"
|
||||
icon_dead = "cat2_dead"
|
||||
gender = MALE
|
||||
maxHealth = 30
|
||||
health = 30
|
||||
melee_damage_lower = 10
|
||||
melee_damage_upper = 5
|
||||
attacktext = "claws"
|
||||
speak = list("Meow!", "Esp!", "Purr!", "HSSSSS")
|
||||
speak_emote = list("purrs", "meows")
|
||||
emote_hear = list("meows", "mews")
|
||||
speak_chance = 1
|
||||
turns_per_move = 5
|
||||
see_in_dark = 6
|
||||
butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/meat/slab = 2)
|
||||
response_help = "pets"
|
||||
response_disarm = "gently pushes aside"
|
||||
response_harm = "kicks"
|
||||
gold_core_spawnable = 1
|
||||
faction = list("cat")
|
||||
atmos_requirements = list("min_oxy" = 5, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 1, "min_co2" = 0, "max_co2" = 5, "min_n2" = 0, "max_n2" = 0)
|
||||
unsuitable_atmos_damage = 5
|
||||
pass_flags = PASSTABLE
|
||||
@@ -301,4 +301,3 @@
|
||||
/obj/item/ammo_casing/shotgun/dart/assassination/New()
|
||||
..()
|
||||
reagents.add_reagent("neurotoxin", 6)
|
||||
reagents.add_reagent("lexorin", 6)
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
proj.silenced = silenced
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/energy/New()
|
||||
/obj/item/weapon/gun/New()
|
||||
build_zooming()
|
||||
|
||||
/obj/item/weapon/gun/pickup(mob/user)
|
||||
|
||||
@@ -119,7 +119,7 @@
|
||||
/obj/item/projectile/bullet/sniper/haemorrhage/on_hit(atom/target, blocked = 0, hit_zone)
|
||||
if((blocked != 100) && istype(target, /mob/living/carbon/human))
|
||||
var/mob/living/carbon/human/H = target
|
||||
H.drip(100)
|
||||
H.drip(1000)
|
||||
|
||||
return ..()
|
||||
|
||||
|
||||
@@ -72,17 +72,4 @@
|
||||
result = "condensedcapsaicin"
|
||||
required_reagents = list("capsaicin" = 2)
|
||||
required_catalysts = list("plasma" = 5)
|
||||
result_amount = 1
|
||||
|
||||
/datum/chemical_reaction/explosion_bicarodyne
|
||||
name = "Explosion"
|
||||
id = "explosion_bicarodyne"
|
||||
result = null
|
||||
required_reagents = list("bicarodyne" = 1, "sal_acid" = 1)
|
||||
result_amount = 1
|
||||
|
||||
/datum/chemical_reaction/explosion_bicarodyne/on_reaction(var/datum/reagents/holder, var/created_volume)
|
||||
var/datum/effect/system/reagents_explosion/e = new()
|
||||
e.set_up(created_volume, holder.my_atom, 0, 0)
|
||||
e.start()
|
||||
return
|
||||
result_amount = 1
|
||||
@@ -394,14 +394,6 @@
|
||||
..()
|
||||
return
|
||||
|
||||
/datum/reagent/bicarodyne
|
||||
name = "Bicarodyne"
|
||||
id = "bicarodyne"
|
||||
description = "Not to be confused with the old chemical Bicaridine, Bicarodyne is a volatile chemical that reacts violently in the presence of most human endorphins."
|
||||
reagent_state = LIQUID
|
||||
color = "#C8A5DC" // rgb: 200, 165, 220
|
||||
metabolization_rate = 0.01
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
/datum/reagent/condensedcapsaicin
|
||||
name = "Condensed Capsaicin"
|
||||
|
||||
@@ -301,15 +301,6 @@
|
||||
..()
|
||||
reagents.add_reagent(pick("polonium","initropidril","concentrated_initro","pancuronium","sodium_thiopental","ketamine","sulfonal","amanitin","coniine","curare","sarin","histamine","venom","cyanide","spidereggs","nanomachines"), 40)
|
||||
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/antisocial
|
||||
desc = "It has a skull and heart on the bottle..what?"
|
||||
possible_transfer_amounts = list(5,10,15,25,30)
|
||||
volume = 30
|
||||
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("bicarodyne", 30)
|
||||
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/plasma
|
||||
name = "plasma dust bottle"
|
||||
desc = "A small bottle of plasma in dust form. Extremely toxic and reacts with micro-organisms inside blood."
|
||||
|
||||
Reference in New Issue
Block a user