CrazyLemon 2, more small stuff

This commit is contained in:
Kyep
2018-08-06 21:19:10 -07:00
parent 07e5081526
commit 477912dc72
6 changed files with 15 additions and 15 deletions
+6 -5
View File
@@ -87,16 +87,17 @@
sideslist = list("heads")
credits = 20
/obj/item/coin/syndicate
name = "syndicate coin"
/obj/item/coin/antagtoken
name = "antag token"
icon_state = "coin_valid_valid"
cmineral = "valid"
desc = "A novelty coin that helps the heart know what hard evidence cannot prove."
sideslist = list("valid", "salad")
credits = 160
credits = 20
/obj/item/coin/antagtoken/New()
return
/obj/item/coin/antagtoken/syndicate
name = "syndicate coin"
credits = 160
/obj/item/coin/attackby(obj/item/W as obj, mob/user as mob, params)
if(istype(W, /obj/item/stack/cable_coil))
@@ -4,7 +4,7 @@
stat = DEAD
icon_state = "ai-crash"
for(var/obj/machinery/ai_status_display/O in world) //change status
if(O.z == z)
if(atoms_share_level(O, src))
O.mode = 2
..(0)
gib()
@@ -4,7 +4,7 @@
icon_state = "ai"
anchored = 1 // -- TLE
canmove = 0
a_intent = "harm" // This is apparently the only thing that stops other mobs walking through them as if they were thin air.
a_intent = INTENT_HARM // This is apparently the only thing that stops other mobs walking through them as if they were thin air.
/mob/living/silicon/decoy/New()
src.icon = 'icons/mob/AI.dmi'
@@ -15,6 +15,7 @@
/mob/living/silicon/decoy/attackby(obj/item/W, mob/user, params)
if(istype(W, /obj/item/aicard))
user.visible_message("<span class='notice'>[user] cannot find an intellicard slot on [src].</span>")
return TRUE
else
return ..()