mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
Merges AI Branch into Master
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
|
||||
/obj/item/weapon/paper_bin/MouseDrop(mob/user as mob)
|
||||
if((user == usr && (!( usr.restrained() ) && (!( usr.stat ) && (usr.contents.Find(src) || in_range(src, usr))))))
|
||||
if(!istype(usr, /mob/living/simple_animal))
|
||||
if(!istype(usr, /mob/living/simple_mob))
|
||||
if( !usr.get_active_hand() ) //if active hand is empty
|
||||
var/mob/living/carbon/human/H = user
|
||||
var/obj/item/organ/external/temp = H.organs_by_name["r_hand"]
|
||||
|
||||
@@ -33,7 +33,6 @@ var/global/photo_count = 0
|
||||
var/icon/img //Big photo image
|
||||
var/scribble //Scribble on the back.
|
||||
var/icon/tiny
|
||||
var/cursed = 0
|
||||
var/photo_size = 3
|
||||
|
||||
/obj/item/weapon/photo/New()
|
||||
@@ -237,10 +236,6 @@ var/global/photo_count = 0
|
||||
else
|
||||
mob_detail += "You can also see [A] on the photo[A:health < 75 ? " - [A] looks hurt":""].[holding ? " [holding]":"."]."
|
||||
|
||||
for(var/mob/living/simple_animal/hostile/statue/S in the_turf)
|
||||
if(S)
|
||||
mob_detail += "You can see \a [S] on the photo. Its stare makes you feel uneasy." //"That which holds the image of an angel, becomes itself an angel."
|
||||
|
||||
return mob_detail
|
||||
|
||||
/obj/item/device/camera/afterattack(atom/target as mob|obj|turf|area, mob/user as mob, flag)
|
||||
@@ -282,20 +277,7 @@ var/global/photo_count = 0
|
||||
y_c--
|
||||
x_c = x_c - size
|
||||
|
||||
|
||||
|
||||
|
||||
var/obj/item/weapon/photo/p = createpicture(target, user, turfs, mobs, flag)
|
||||
if(findtext(mobs, "Its stare makes you feel uneasy"))
|
||||
p.cursed = 1
|
||||
user.visible_message("<span class='userdanger'>Something starts to slowly manifest from the picture!</span>")
|
||||
spawn(150)
|
||||
var/turf/T = get_turf(p)
|
||||
var/mob/living/simple_animal/hostile/statue/S = new /mob/living/simple_animal/hostile/statue/(T)
|
||||
S.banishable = 1//At least you can get rid of those bastards
|
||||
T.visible_message("<span class='userdanger'>The photo turns into \a [S]!</span>")
|
||||
qdel(p)
|
||||
|
||||
|
||||
printpicture(user, p)
|
||||
|
||||
@@ -339,16 +321,6 @@ var/global/photo_count = 0
|
||||
p.pixel_y = pixel_y
|
||||
p.photo_size = photo_size
|
||||
p.scribble = scribble
|
||||
p.cursed = cursed
|
||||
if(p.cursed)
|
||||
var/turf/T = get_turf(p)
|
||||
T.visible_message("<span class='userdanger'>Something starts to slowly manifest from the picture!</span>")
|
||||
spawn(150)
|
||||
T = get_turf(p) //second time, because the photo could've moved
|
||||
var/mob/living/simple_animal/hostile/statue/S = new /mob/living/simple_animal/hostile/statue/(T)
|
||||
S.banishable = 1//At least you can get rid of those bastards
|
||||
T.visible_message("<span class='userdanger'>The photo turns into \a [S]!</span>")
|
||||
qdel(p)
|
||||
|
||||
if(copy_id)
|
||||
p.id = id
|
||||
|
||||
Reference in New Issue
Block a user