diff --git a/Resources/Locale/ru-RU/paper/stamp-component.ftl b/Resources/Locale/ru-RU/paper/stamp-component.ftl index 15b6e753dc..0d7ac287b9 100644 --- a/Resources/Locale/ru-RU/paper/stamp-component.ftl +++ b/Resources/Locale/ru-RU/paper/stamp-component.ftl @@ -1,5 +1,6 @@ stamp-component-stamped-name-default = Очень важная персона stamp-component-stamped-name-mime = Мим +stamp-component-stamped-name-lawyer = Юрист stamp-component-stamped-name-captain = Капитан stamp-component-stamped-name-centcom = Центком stamp-component-stamped-name-chaplain = Священник diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl index fa68626048..c5eb3ff798 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl @@ -43,6 +43,9 @@ ent-BoxFolderBlack = { ent-BoxFolderBase } ent-RubberStampMime = печать мима .desc = Штемпель из резины для проставления печатей на важных документах. .suffix = { "" } +ent-RubberStampLawyer = печать юриста + .desc = Штемпель из резины для проставления печатей на важных документах. + .suffix = { "" } ent-RubberStampCaptain = печать капитана .desc = { ent-RubberStampMime.desc } .suffix = { "" } diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml index 888061226a..1d386b825c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml @@ -14,5 +14,6 @@ ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 ClothingNeckLawyerbadge: 2 + RubberStampLawyer: 1 emaggedInventory: CyberPen: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 16966a4e4d..0f6b0df5dd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -556,6 +556,26 @@ parent: BoxFolderClipboard name: centcom clipboard description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used. + +- type: entity + name: lawyer's rubber stamp + parent: BaseItem + id: RubberStampLawyer + description: A rubber stamp for stamping important documents. + components: + - type: Stamp + stampedName: stamp-component-stamped-name-lawyer + stampState: "paper_stamp-lawyer" + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + state: stamp-lawyer + - type: Item + size: Small + +- type: entity + name: captain's rubber stamp + parent: RubberStampMime + id: RubberStampCaptain components: - type: Sprite sprite: Objects/Misc/cc-clipboard.rsi diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 50de863313..4916e7ac93 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -245,6 +245,12 @@ { "name": "paper_stamp-warden" }, + { + "name": "stamp-lawyer" + }, + { + "name": "paper_stamp-lawyer" + }, { "name": "paper_stamp-generic" } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-lawyer.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-lawyer.png new file mode 100644 index 0000000000..4e5fbe02d0 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-lawyer.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-lawyer.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-lawyer.png new file mode 100644 index 0000000000..f7dd1b3b56 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-lawyer.png differ