mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-24 21:47:21 +01:00
* Update settings * Whitespace changes * Comment out merger hooks in gitattributes Corrupt maps would have to be resolved in repo before hooks could be updated * Revert "Whitespace changes" This reverts commit afbdd1d8442973f5d570c30920d9d865b5acd479. * Whitespace again minus example * Gitignore example changelog * Restore changelog merge setting * Keep older dmi hook attribute until hooks can be updated * update vscode settings too * Renormalize remaining * Revert "Gitignore example changelog" This reverts commit de22ad375d3ee4d5930c550da2fd23a29a86e616. * Attempt to normalize example.yml (and another file I guess) * Try again
20 lines
692 B
Plaintext
20 lines
692 B
Plaintext
// A fluff structure to visually look like an AI core.
|
|
// Unlike the decoy AI mob, this won't explode if someone tries to card it.
|
|
/obj/structure/prop/fake_ai
|
|
name = "AI"
|
|
desc = ""
|
|
icon = 'icons/mob/AI.dmi'
|
|
icon_state = "ai"
|
|
|
|
/obj/structure/prop/fake_ai/attackby(obj/O, mob/user)
|
|
if(istype(O, /obj/item/device/aicard)) // People trying to card the fake AI will get told its impossible.
|
|
to_chat(user, span("warning", "This core does not appear to have a suitable port to use \the [O] on..."))
|
|
return TRUE
|
|
return ..()
|
|
|
|
/obj/structure/prop/fake_ai/dead
|
|
icon_state = "ai-crash"
|
|
|
|
/obj/structure/prop/fake_ai/dead/crashed_med_shuttle
|
|
name = "V.I.T.A."
|
|
icon_state = "ai-heartline-crash" |