Unmodularize and update pAI/Intellicards very slighty.
This commit is contained in:
@@ -17,6 +17,11 @@
|
|||||||
desc = "A stylish upgrade (?) to the intelliCard."
|
desc = "A stylish upgrade (?) to the intelliCard."
|
||||||
icon_state = "aitater"
|
icon_state = "aitater"
|
||||||
|
|
||||||
|
/obj/item/aicard/aispook
|
||||||
|
name = "intelliLantern"
|
||||||
|
desc = "A spoOoOoky upgrade to the intelliCard."
|
||||||
|
icon_state = "aispook"
|
||||||
|
|
||||||
/obj/item/aicard/suicide_act(mob/living/user)
|
/obj/item/aicard/suicide_act(mob/living/user)
|
||||||
user.visible_message("<span class='suicide'>[user] is trying to upload [user.p_them()]self into [src]! That's not going to work out well!</span>")
|
user.visible_message("<span class='suicide'>[user] is trying to upload [user.p_them()]self into [src]! That's not going to work out well!</span>")
|
||||||
return BRUTELOSS
|
return BRUTELOSS
|
||||||
@@ -26,16 +31,18 @@
|
|||||||
if(!proximity || !target)
|
if(!proximity || !target)
|
||||||
return
|
return
|
||||||
if(AI) //AI is on the card, implies user wants to upload it.
|
if(AI) //AI is on the card, implies user wants to upload it.
|
||||||
target.transfer_ai(AI_TRANS_FROM_CARD, user, AI, src)
|
|
||||||
log_combat(user, AI, "carded", src)
|
log_combat(user, AI, "carded", src)
|
||||||
|
target.transfer_ai(AI_TRANS_FROM_CARD, user, AI, src)
|
||||||
else //No AI on the card, therefore the user wants to download one.
|
else //No AI on the card, therefore the user wants to download one.
|
||||||
target.transfer_ai(AI_TRANS_TO_CARD, user, null, src)
|
target.transfer_ai(AI_TRANS_TO_CARD, user, null, src)
|
||||||
|
if(AI)
|
||||||
|
log_combat(user, AI, "carded", src)
|
||||||
update_icon() //Whatever happened, update the card's state (icon, name) to match.
|
update_icon() //Whatever happened, update the card's state (icon, name) to match.
|
||||||
|
|
||||||
/obj/item/aicard/update_icon()
|
/obj/item/aicard/update_icon()
|
||||||
cut_overlays()
|
cut_overlays()
|
||||||
if(AI)
|
if(AI)
|
||||||
name = "[initial(name)]- [AI.name]"
|
name = "[initial(name)] - [AI.name]"
|
||||||
if(AI.stat == DEAD)
|
if(AI.stat == DEAD)
|
||||||
icon_state = "[initial(icon_state)]-404"
|
icon_state = "[initial(icon_state)]-404"
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -148,9 +148,11 @@
|
|||||||
if(10)
|
if(10)
|
||||||
src.add_overlay("pai-null")
|
src.add_overlay("pai-null")
|
||||||
if(11)
|
if(11)
|
||||||
src.add_overlay(mutable_appearance('modular_citadel/icons/obj/aicards.dmi', "pai-exclamation")) // CITADEL EDIT
|
src.add_overlay("pai-exclamation")
|
||||||
if(12)
|
if(12)
|
||||||
src.add_overlay(mutable_appearance('modular_citadel/icons/obj/aicards.dmi', "pai-question")) // CITADEL EDIT
|
src.add_overlay("pai-question")
|
||||||
|
if(13)
|
||||||
|
src.add_overlay("pai-sunglasses")
|
||||||
|
|
||||||
/obj/item/paicard/proc/alertUpdate()
|
/obj/item/paicard/proc/alertUpdate()
|
||||||
visible_message("<span class ='info'>[src] flashes a message across its screen, \"Additional personalities available for download.\"", "<span class='notice'>[src] bleeps electronically.</span>")
|
visible_message("<span class ='info'>[src] flashes a message across its screen, \"Additional personalities available for download.\"", "<span class='notice'>[src] bleeps electronically.</span>")
|
||||||
|
|||||||
@@ -197,14 +197,6 @@
|
|||||||
/obj/item/bikehorn = 1)
|
/obj/item/bikehorn = 1)
|
||||||
category = CAT_MISC
|
category = CAT_MISC
|
||||||
|
|
||||||
/datum/crafting_recipe/aitater
|
|
||||||
name = "intelliTater"
|
|
||||||
result = /obj/item/aicard/aitater
|
|
||||||
time = 30
|
|
||||||
reqs = list(/obj/item/aicard = 1,
|
|
||||||
/obj/item/reagent_containers/food/snacks/grown/potato = 1)
|
|
||||||
category = CAT_MISC
|
|
||||||
|
|
||||||
/datum/crafting_recipe/mousetrap
|
/datum/crafting_recipe/mousetrap
|
||||||
name = "Mouse Trap"
|
name = "Mouse Trap"
|
||||||
result = /obj/item/assembly/mousetrap
|
result = /obj/item/assembly/mousetrap
|
||||||
|
|||||||
@@ -77,8 +77,22 @@
|
|||||||
time = 40
|
time = 40
|
||||||
category = CAT_ROBOT
|
category = CAT_ROBOT
|
||||||
|
|
||||||
/datum/crafting_recipe/potatos
|
/datum/crafting_recipe/aitater
|
||||||
name = "Potat-OS"
|
name = "intelliTater"
|
||||||
reqs = list(/obj/item/stack/cable_coil = 1, /obj/item/stack/rods = 1, /obj/item/reagent_containers/food/snacks/grown/potato = 1, /obj/item/aicard = 1 )
|
result = /obj/item/aicard/aitater
|
||||||
result = /obj/item/aicard/potato
|
time = 30
|
||||||
|
tools = list(TOOL_WIRECUTTER)
|
||||||
|
reqs = list(/obj/item/aicard = 1,
|
||||||
|
/obj/item/reagent_containers/food/snacks/grown/potato = 1,
|
||||||
|
/obj/item/stack/cable_coil = 5)
|
||||||
|
category = CAT_ROBOT
|
||||||
|
|
||||||
|
/datum/crafting_recipe/aispook
|
||||||
|
name = "intelliLantern"
|
||||||
|
result = /obj/item/aicard/aispook
|
||||||
|
time = 30
|
||||||
|
tools = list(TOOL_WIRECUTTER)
|
||||||
|
reqs = list(/obj/item/aicard = 1,
|
||||||
|
/obj/item/reagent_containers/food/snacks/grown/pumpkin = 1,
|
||||||
|
/obj/item/stack/cable_coil = 5)
|
||||||
category = CAT_ROBOT
|
category = CAT_ROBOT
|
||||||
@@ -36,6 +36,8 @@
|
|||||||
|
|
||||||
if(istype(loc, /obj/item/aicard/aitater))
|
if(istype(loc, /obj/item/aicard/aitater))
|
||||||
loc.icon_state = "aitater-404"
|
loc.icon_state = "aitater-404"
|
||||||
|
else if(istype(loc, /obj/item/aicard/aispook))
|
||||||
|
loc.icon_state = "aispook-404"
|
||||||
else if(istype(loc, /obj/item/aicard))
|
else if(istype(loc, /obj/item/aicard))
|
||||||
loc.icon_state = "aicard-404"
|
loc.icon_state = "aicard-404"
|
||||||
|
|
||||||
|
|||||||
@@ -140,7 +140,7 @@
|
|||||||
radio.attack_self(src)
|
radio.attack_self(src)
|
||||||
|
|
||||||
if("image")
|
if("image")
|
||||||
var/newImage = input("Select your new display image.", "Display Image", "Happy") in list("Happy", "Cat", "Extremely Happy", "Face", "Laugh", "Off", "Sad", "Angry", "What" , "Exclamation" ,"Question") // CITADEL EDIT
|
var/newImage = input("Select your new display image.", "Display Image", "Happy") in list("Happy", "Cat", "Extremely Happy", "Face", "Laugh", "Off", "Sad", "Angry", "What" , "Exclamation" ,"Question", "Sunglasses")
|
||||||
var/pID = 1
|
var/pID = 1
|
||||||
|
|
||||||
switch(newImage)
|
switch(newImage)
|
||||||
@@ -164,10 +164,12 @@
|
|||||||
pID = 9
|
pID = 9
|
||||||
if("Null")
|
if("Null")
|
||||||
pID = 10
|
pID = 10
|
||||||
if("Exclamation") // CITADEL EDIT
|
if("Exclamation")
|
||||||
pID = 11
|
pID = 11
|
||||||
if("Question") // CITADEL EDIT
|
if("Question")
|
||||||
pID = 12
|
pID = 12
|
||||||
|
if("Sunglasses")
|
||||||
|
pID = 13
|
||||||
card.setEmotion(pID)
|
card.setEmotion(pID)
|
||||||
|
|
||||||
if("signaller")
|
if("signaller")
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,4 +0,0 @@
|
|||||||
/obj/item/aicard/potato
|
|
||||||
name = "Potat-OS"
|
|
||||||
desc = "A storage device for possibly malfunctioning AIs. Go on. Get a big fat eyeful. With your big fat eyes."
|
|
||||||
icon = 'modular_citadel/icons/aicards.dmi'
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.0 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 439 B |
Reference in New Issue
Block a user