-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавление ручек для глав станции (#412)
<!-- ЭТО ШАБЛОН ВАШЕГО PULL REQUEST. Текст между стрелками - это комментарии - они не будут видны в PR. --> ## Описание PR <!-- Ниже опишите ваш Pull Request. Что он изменяет? На что еще это может повлиять? Постарайтесь описать все внесённые вами изменения! --> В игру для глав в их КПК были добавлены ручки по запросу mascotvalera (Discord) **Ссылка на публикацию в Discord** <!-- Укажите ссылки на соответствующие обсуждения, проблемы, баги, заказы в разработку или предложения Если ссылки отсутствуют или этот PR ваша личная инициатива, данный раздел описания можно удалить. --> - [Заказы-разработка](https://discord.com/channels/901772674865455115/1281218018843557988) **Медиа** <!-- Если приемлемо, добавьте скриншоты для демонстрации вашего PR. Если ваш PR представляет собой визуальное изменение, добавьте скриншоты, иначе он может быть закрыт. --> ![image](https://github.com/user-attachments/assets/d2fbe80a-a83e-4b6e-8a18-1485273d7e86) **Проверки** <!-- Выполнение всех следующих действий, если это приемлемо для вида изменений сильно ускорит разбор вашего PR --> - [x] PR полностью завершён и мне не нужна помощь чтобы его закончить. - [x] Я внимательно просмотрел все свои изменения и багов в них не нашёл. - [x] Я запускал локальный сервер со своими изменениями и всё протестировал. - [x] Я добавил скриншот/видео демонстрации PR в игре, **или** этот PR этого не требует. **Изменения** <!-- Здесь вы можете написать список изменений, который будет автоматически добавлен в игру, когда ваш PR будет принят. В журнал изменений следует помещать только то, что действительно важно игрокам. В списке изменений тип значка не является часть предложения, поэтому явно указывайте - Добавлен, Удалён, Изменён. плохо: - add: Новый инструмент для инженеров хорошо: - add: Добавлен новый инструмент для инженеров Вы можете указать своё имя после символа 🆑 именно оно будет отображаться в журнале изменений (иначе будет использоваться ваше имя на GitHub) Например: 🆑 Ian --> 🆑 Хурмик - add: НТ расширила финансирование командования станции и в их КПК были добавлены особые ручки вместо обычных. Слава НТ!
- Loading branch information
Showing
9 changed files
with
143 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/pen.ftl
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 @@ | ||
ent-ADTPenCe = перьевая ручка старшего инженера | ||
.desc = Элегантная перьевая ручка для старшего инженера станции. | ||
ent-ADTPenCmo = перьевая ручка главного врача | ||
.desc = Элегантная перьевая ручка для главного врача станции. | ||
ent-ADTPenQM = перьевая ручка квартирмейстера | ||
.desc = Элегантная перьевая ручка для квартирмейстера станции. | ||
ent-ADTPenRD = перьевая ручка научного руководителя | ||
.desc = Элегантная перьевая ручка для научного руководителя станции. | ||
ent-ADTPenHos = перьевая ручка главы службы безопасности | ||
.desc = Элегантная перьевая ручка для главы службы безопасности станции. |
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,67 @@ | ||
- type: entity | ||
parent: Pen | ||
id: ADTPenEmbeddable | ||
abstract: true | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Objects/Misc/pens.rsi | ||
state: pen | ||
- type: Item | ||
sprite: ADT/Objects/Misc/pens.rsi | ||
heldPrefix: pen | ||
size: Tiny | ||
- type: EmbeddableProjectile | ||
offset: 0.3,0.0 | ||
removalTime: 0.0 | ||
- type: ThrowingAngle | ||
angle: 315 | ||
- type: LandAtCursor | ||
- type: DamageOtherOnHit | ||
damage: | ||
types: | ||
Piercing: 3 | ||
|
||
- type: entity | ||
name: ce's fountain pen | ||
parent: ADTPenEmbeddable | ||
id: ADTPenCe | ||
description: A luxurious fountain pen for the ce of the station. | ||
components: | ||
- type: Sprite | ||
state: ADTpen_CE | ||
|
||
- type: entity | ||
name: cmo's fountain pen | ||
parent: ADTPenEmbeddable | ||
id: ADTPenCmo | ||
description: A luxurious fountain pen for the cmo of the station. | ||
components: | ||
- type: Sprite | ||
state: ADTpen_cmo | ||
|
||
- type: entity | ||
name: QM's fountain pen | ||
parent: ADTPenEmbeddable | ||
id: ADTPenQM | ||
description: A luxurious fountain pen for the QM of the station. | ||
components: | ||
- type: Sprite | ||
state: ADTpen_QM | ||
|
||
- type: entity | ||
name: RD's fountain pen | ||
parent: ADTPenEmbeddable | ||
id: ADTPenRD | ||
description: A luxurious fountain pen for the RD of the station. | ||
components: | ||
- type: Sprite | ||
state: ADTpen_RD | ||
|
||
- type: entity | ||
name: Hos's fountain pen | ||
parent: ADTPenEmbeddable | ||
id: ADTPenHos | ||
description: A luxurious fountain pen for the Hos of the station. | ||
components: | ||
- type: Sprite | ||
state: ADTpen_hos |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "ADTpen_CE, ADTpen_cmo, ADTpen_hos, ADTpen_QM, ADTpen_RD is drawn by mascotvalera (Discord)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "ADTpen_CE" | ||
}, | ||
{ | ||
"name": "ADTpen_cmo" | ||
}, | ||
{ | ||
"name": "ADTpen_hos" | ||
}, | ||
{ | ||
"name": "ADTpen_QM" | ||
}, | ||
{ | ||
"name": "ADTpen_RD" | ||
} | ||
] | ||
} |