-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bot bounties + Chameleon gloves translation (#4382)
* Chameleon translation gloves Good for traitors good for assualt ops * robo bounties + scrubs jr. * desc * Rename late join to late arrival * Extra cleanables * Bullet * Research director bounties * Remove Vim bounty Requires very limited station equipment (EVA helmets) * Blueshield and Assualt operative mapping Icons
- Loading branch information
Showing
13 changed files
with
71 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/datum/crafting_recipe/cleanbot_jr | ||
name = "Scrubs Junior" | ||
desc = "A little cleaning robot, he graduated from medical school!" | ||
result = /mob/living/basic/bot/cleanbot/medbay/jr | ||
reqs = list( | ||
/obj/item/reagent_containers/cup/bucket = 1, | ||
/obj/item/assembly/prox_sensor = 1, | ||
/obj/item/assembly/health = 1, | ||
/obj/item/bodypart/arm/right/robot = 1, | ||
|
||
) | ||
parts = list(/obj/item/reagent_containers/cup/bucket = 1) | ||
time = 5 SECONDS | ||
category = CAT_ROBOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/obj/effect/landmark/start/blueshield | ||
name = "Blueshield" | ||
icon_state = "Blueshield" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/datum/bounty/item/bot/cleanbot_jr //JR. models to prevent them from mass selling station cleanbots | ||
name = "Scrubs Junior., PA" | ||
description = "Medical is looking worse than the kitchen cold room and janitors are nowhere to be found. We need a cleanbot for medical before the Chief Medical Officer has a breakdown." | ||
reward = CARGO_CRATE_VALUE * 2.5 | ||
wanted_types = list(/mob/living/basic/bot/cleanbot/medbay/jr = TRUE) | ||
|
||
/datum/bounty/item/bot/floorbot | ||
name = "Floorbot" | ||
description = "Out last floorbot went haywire and removed all our floors. So we need another floorbot to replace the priors issues." | ||
reward = CARGO_CRATE_VALUE * 3 | ||
wanted_types = list(/mob/living/simple_animal/bot/floorbot = TRUE) | ||
|
||
/datum/bounty/item/bot/honkbot | ||
name = "Honkbot" | ||
description = "Mr. Gigglesworth birthday is around the corner and we didn't get a present. Ship us off a honkbot to giftwrap please." | ||
reward = CARGO_CRATE_VALUE * 5 | ||
wanted_types = list(/mob/living/simple_animal/bot/secbot/honkbot = TRUE) | ||
|
||
/datum/bounty/item/bot/firebot | ||
name = "Firebot" | ||
description = "An assistant waving around some license broke into atmospherics and its now all on fire. Send us a Firebot before the gas fire leaks further." | ||
reward = CARGO_CRATE_VALUE * 4 | ||
wanted_types = list(/mob/living/simple_animal/bot/firebot = TRUE) |
2 changes: 2 additions & 0 deletions
2
monkestation/code/modules/mob/living/basic/bots/cleanbot/cleanbot.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/mob/living/basic/bot/cleanbot/medbay/jr | ||
name = "Scrubs Junior, PA" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters