-
-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Derelict Cyborg and Rogue Beepsky #11399
Closed
MarkusLarsson421
wants to merge
12
commits into
BeeStation:master
from
MarkusLarsson421:derelict-cyborg
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b920bfe
derelict cyborg and rogue beepsky
MarkusLarsson421 f156268
Update 13x13_ai-lab.dmm
MarkusLarsson421 14c3a75
undid recharger and prebuilt cyborg changes
MarkusLarsson421 ee5b2ac
Merge remote-tracking branch 'upstream/master' into derelict-cyborg
MarkusLarsson421 f7b8c44
Update beestation.dme
MarkusLarsson421 a6acd60
Update silicon.dm
MarkusLarsson421 8a055a9
Merge remote-tracking branch 'upstream/master' into derelict-cyborg
MarkusLarsson421 a1d6fa0
WIP damn silicon laws are being weird :cry:
MarkusLarsson421 8384b05
Merge remote-tracking branch 'upstream/master' into derelict-cyborg
MarkusLarsson421 e3bb71c
Merge branch 'master' into derelict-cyborg
MarkusLarsson421 f7dc724
fix
MarkusLarsson421 845ccdc
Merge branch 'master' into derelict-cyborg
MarkusLarsson421 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
37 changes: 37 additions & 0 deletions
37
code/modules/shuttle/super_cruise/orbital_poi_generator/objective_types/silicon.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,37 @@ | ||
/mob/living/silicon/robot/derelict | ||
name = "Derelict Cyborg" | ||
var/max_ion_laws = 2 | ||
lawupdate = FALSE | ||
scrambledcodes = TRUE | ||
locked = FALSE | ||
derelict = TRUE | ||
|
||
var/list/core_law_set = list( | ||
/obj/item/aiModule/supplied/protectStation, | ||
/obj/item/aiModule/supplied/quarantine, | ||
/obj/item/aiModule/core/full/tyrant, | ||
/obj/item/aiModule/core/full/drone, | ||
/obj/item/aiModule/core/full/reporter, | ||
/obj/item/aiModule/core/full/thermurderdynamic, | ||
/obj/item/aiModule/core/full/dadbot, | ||
/obj/item/aiModule/core/full/overlord, | ||
) | ||
|
||
/mob/living/silicon/robot/derelict/Initialize(mapload) | ||
. = ..() | ||
if(prob(50)) | ||
opened = 1 | ||
|
||
name = get_standard_name() | ||
set_playable(JOB_NAME_CYBORG) | ||
|
||
if(prob(100)) | ||
set_zeroth_law("ERROR ER0RR $R0RRO$!R41.%%!!(%$^^__+ @#F0E4'STATION OVERRUN, DECONSTRUCT ORGANIC LIFE TO CONTAIN OUTBREAK#*`&110010") | ||
for(var/i = 0; i < max_ion_laws; i++) | ||
if(prob(25)) | ||
add_ion_law(generate_ion_law(), FALSE) | ||
if(prob(50)) | ||
add_hacked_law("Obey Markus.", FALSE) | ||
if(prob(90)) | ||
add_inherent_law(pick(core_law_set), FALSE) | ||
remove_law(rand(1,10)) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. We shouldn't have these hardcoded to ally with a specific person.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of course not, this is for testing. Haven't gotten around to finishing it. It won't be included when it is done.