-
Notifications
You must be signed in to change notification settings - Fork 592
Doll species #5013
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
Citrea-Lingua
wants to merge
40
commits into
ss14Starlight:starlight-dev
Choose a base branch
from
Citrea-Lingua:Doll-Species
base: starlight-dev
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
Doll species #5013
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
f52b453
Added doll species
Citrea-Lingua a6e9e53
Guidebook update
Citrea-Lingua 3b7ca8a
Name list changes in preparation to fill in the rest
Citrea-Lingua 6cde9e8
Male names pt 2
Citrea-Lingua 019c2da
Action icons and new markings
Citrea-Lingua 52eba66
Expanded name lists
Citrea-Lingua 1c7105a
Shell refining
Citrea-Lingua a6816bf
namespacing fixes
Citrea-Lingua 72e805c
Further merge fixes
Citrea-Lingua 64309cc
More Names!
Citrea-Lingua 552d384
Dolls can no longer ventcrawl or break out of their own shells. Infra…
Citrea-Lingua 240a08f
Dolls can no longer discard their head shell for Heterochromia
Citrea-Lingua d3cbb58
Assigned doll appearance as dollPrototype for dolls (that won't get c…
Citrea-Lingua f99891b
Doll organs can metabolise again
Citrea-Lingua 553284d
Doll surgery steps no longer show as error
Citrea-Lingua 4c6ec4a
Added resources for marking colours
Citrea-Lingua 1d77078
Human snout markings really don't fit dolls so they don't get them an…
Citrea-Lingua b3470d8
markings
SevenShadesofStarlight cbbe621
Cleaned up duplicate survival boxes
Citrea-Lingua e246ea5
readonlyn't data fields
Citrea-Lingua 0f28376
Some review changes
Citrea-Lingua 36b60dc
Undid unrelated change
Citrea-Lingua 2cbedb3
Un-jank vent crawling hopefully?
Citrea-Lingua c852cf2
More readonlyn't
Citrea-Lingua 2e5f3de
Whitespace cleanup
Citrea-Lingua 9d7c2c4
Removed resharper suppress APPARENTLY THAT IS NOT JUST A DAMN IDE SET…
Citrea-Lingua 51e2aaa
Removed resharper suppress APPARENTLY THAT IS NOT JUST A DAMN IDE SET…
Citrea-Lingua 72c84e4
Merge remote-tracking branch 'Citrea/Doll-Species' into Doll-Species
Citrea-Lingua b2072a0
fixed loadout ID mismatch
Citrea-Lingua 9f511d0
Merge branch 'starlight-dev' into Doll-Species
Citrea-Lingua 7f53ff1
Fixed mismatched variable name
Citrea-Lingua ddc6608
Could have sworn we had more names
Citrea-Lingua 3780d88
Proto fixes
Citrea-Lingua 4d32932
Fixed misnumbered doll name
Citrea-Lingua b1c82aa
yml fixes
Citrea-Lingua 8a73931
More yml fixes, hopefully last
Citrea-Lingua 53b8b31
Merge branch 'starlight-dev' into Doll-Species
Citrea-Lingua 203809d
Meat anomaly cores can now be cooked into empty dolls
Citrea-Lingua 0c162cb
Update Resources/Prototypes/_Starlight/Entities/Mobs/Species/doll.yml
walksanatora af9f8d1
Merge branch 'starlight-dev' into Doll-Species
walksanatora 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
27 changes: 27 additions & 0 deletions
27
Content.Server/_Starlight/Actions/EntitySystems/ShellSystem.cs
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,27 @@ | ||
| using Content.Shared.Actions; | ||
| using Content.Shared._Starlight.Actions.Components; | ||
|
|
||
| namespace Content.Server._Starlight.Actions.EntitySystems; | ||
|
|
||
| public sealed class ShellSystem : EntitySystem | ||
|
Check warning on line 6 in Content.Server/_Starlight/Actions/EntitySystems/ShellSystem.cs
|
||
| { | ||
| [Dependency] private SharedActionsSystem _actionsSystem = default!; | ||
|
|
||
| public override void Initialize() | ||
| { | ||
| base.Initialize(); | ||
|
|
||
| SubscribeLocalEvent<ShellComponent, MapInitEvent>(OnMapInit); | ||
| SubscribeLocalEvent<ShellComponent, ComponentShutdown>(OnCompRemove); | ||
| } | ||
|
|
||
| private void OnMapInit(EntityUid uid, ShellComponent comp, MapInitEvent args) | ||
| { | ||
| _actionsSystem.AddAction(uid, ref comp.GenerateShellPieceActionEntity, comp.GenerateShellPieceAction); | ||
| } | ||
|
|
||
| private void OnCompRemove(EntityUid uid, ShellComponent comp, ComponentShutdown args) | ||
| { | ||
| _actionsSystem.RemoveAction(uid, comp.GenerateShellPieceActionEntity); | ||
| } | ||
| } | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.