forked from Sector-Umbra/Sector-Umbra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Back Unclonable Trait - From Wizden (Sector-Umbra#262)
* added unclonable base pr with small additions * changed new files into their own name space, added new comments * renamed unclonable error in cloning-console-component.ftl * Update cloning-console-component.ftl --------- Co-authored-by: OctoRocket <[email protected]> Co-authored-by: TsjipTsjip <[email protected]>
- Loading branch information
1 parent
4574355
commit 5b53bf2
Showing
5 changed files
with
33 additions
and
1 deletion.
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
10 changes: 10 additions & 0 deletions
10
Content.Server/_Umbra/Traits/Assorted/UncloneableComponent.cs
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,10 @@ | ||
namespace Content.Server.Traits.Assorted; | ||
|
||
/// <summary> | ||
/// This is used for the uncloneable trait. | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class UncloneableComponent : Component | ||
{ | ||
|
||
} |
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,5 @@ | ||
trait-illeism-name = Illeism | ||
trait-illeism-desc = You seem to only be able to refer to yourself by name. | ||
trait-uncloneable-name = Uncloneable | ||
trait-uncloneable-desc = Cannot be cloned. |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- type: trait | ||
id: Uncloneable | ||
name: trait-uncloneable-name | ||
description: trait-uncloneable-desc | ||
category: Disabilities | ||
components: | ||
- type: Uncloneable |