-
Notifications
You must be signed in to change notification settings - Fork 36
Synth & Android Customisation DLC #918
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
Open
Constellado
wants to merge
28
commits into
MrMelbert:master
Choose a base branch
from
Constellado:SynthMaintenance
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
c14c608
Moves synth heads to the new body part system and adds some more.
Constellado ba16891
Fix bug with nemo head.
Constellado 3208fa4
adds the start of android battery core organ! Needs a sprite.
Constellado eb30ece
Woops, forgot to remove a broken thing I did before committing. Shoul…
Constellado 16bfb5f
makes overcharging with the new organ less often
Constellado 13ce7d9
Comment tweaks
Constellado 9e18cf9
Adds required defines
Constellado 7fd0ca7
another comment tweak
Constellado fbce704
woops, wrong defines was undefined. Fixed.
Constellado 7e4f9b4
comment typo fixed
Constellado f74eec0
Merge branch 'master' into SynthMaintenance
Constellado 6913855
maplestation story content dme fix
Constellado b89eb7e
Merge branch 'SynthMaintenance' of https://github.com/Constellado/Map…
Constellado 251d76b
Fix!
Constellado d2feafa
adds headflags to the new heads
Constellado 576d17f
allows for synth eye colours
Constellado 0897dcc
sprite updates
Constellado a4caf8a
Adds Clara's head.
Constellado 3320e0c
Clara head positional adjustments
Constellado 2b404db
Merge branch 'MrMelbert:master' into SynthMaintenance
Constellado 22d9f7d
Adds sprite for the stomach and tooltips for specific heads
Constellado f563b6e
adjust battery description
Constellado 57c4ecb
Fixes tooltips and description
Constellado 9c99650
Fix drone DMI
Constellado f9d83ab
Update maplestation.dme part 1
Constellado ea97d92
Update maplestation.dme part 2
Constellado 5e7f697
Merge branch 'MrMelbert:master' into SynthMaintenance
Constellado 9ccfe84
code review fixes
Constellado 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
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
19 changes: 19 additions & 0 deletions
19
...ation_modules/code/modules/mob/living/carbon/human/species_types/synth/android_battery.dm
This file contains hidden or 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,19 @@ | ||
| //Adds a new android stomach type which has more charge than the android stomach, but makes it impossible to eat. | ||
| /obj/item/organ/stomach/ethereal/android/battery_core | ||
| name = "Battery Core" | ||
| desc = "A robotic stomach replacement with many layers of batteries instead of a bioreactor." | ||
| icon = 'maplestation_modules/icons/obj/medical/organs/organs.dmi' | ||
| icon_state = "stomach_battery" | ||
|
|
||
| passive_drain_multiplier = 0.3 //drains slower than default robots | ||
| stomach_blood_transfer_rate = 0 //chems don't work too... | ||
| nutrition_multiplier = 0 | ||
| booze_multiplier = 0 | ||
| discharge_chance = 0.5 | ||
|
|
||
| /obj/item/organ/stomach/ethereal/android/battery_core/effective_charge() | ||
| . = ..() | ||
|
|
||
| /obj/item/organ/stomach/ethereal/android/battery_core/handle_chemical(mob/living/carbon/source, datum/reagent/chem, seconds_per_tick, times_fired) | ||
| //No booze, no drink, no food. It is not a stomach, it is a battery! | ||
| return NONE |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
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.
Do these options show up for arms/legs despite not having sprites? If so we'll need to figure out a way to prevent that
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.
Nope! They only show up for the heads :D