forked from infinitystation/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: improve passport icons, add new passport loadout options (#662)
# Описание Добавляет новые иконки для паспортов, а также вариации регистрационного документа унати, завязанные на принадлежность к крупным клановым объединениям Могеса и Терстена. ## Основные изменения * Особая иконка добавлена для паспорта Мирании; * Добавлены 5 вариантов регистрационных документов унати в зависимости от принадлежности к клановому альянсу (согласовано с ксеномодератором imony.); * Улучшены описания паспортов Мирании и Авалона. ## Changelog <!-- С помощью этого раздела можно подготовить список изменений, которые попадут в игровой чейндж-лог. ---> <!-- Вам нужно указать префикс изменения (Он идёт до двоеточия) и дать описание, как на примере. ---> <!-- Префиксы можно использовать несколько раз. ---> <!-- Если Вы не планируете добавлять записи в чейндж-лог - просто удалите из пулл-реквеста этот раздел. ---> :cl: imageadd: Added Miranian passport icon rscadd: Added Unathi registration document selection options tweak: Improved item description for several independent passports /:cl:
- Loading branch information
1 parent
bbe0413
commit 1299b0e
Showing
4 changed files
with
43 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/datum/gear/passport/unathi/New() | ||
..() | ||
var/list/passports = list() | ||
passports["independent clans registration document"] = /obj/item/passport/xeno/unathi/independent | ||
passports["Moghes Hegemony registration document"] = /obj/item/passport/xeno/unathi/hegemony | ||
passports["Ssen-Uuma Convent registration document"] = /obj/item/passport/xeno/unathi/convent | ||
passports["Rah'Zakeh League registration document"] = /obj/item/passport/xeno/unathi/league | ||
passports["Tersten Republic identity document"] = /obj/item/passport/xeno/unathi/tersten | ||
gear_tweaks += new/datum/gear_tweak/path(passports) |
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,32 @@ | ||
/obj/item/passport/independent/mirania | ||
icon = 'infinity/icons/obj/item/passport.dmi' | ||
icon_state = "passport_mir" | ||
|
||
/obj/item/passport/xeno/unathi/independent | ||
name = "\improper independent clans registration document" | ||
icon_state = "passport" | ||
desc = "A document that indentifies its bearer as a member of a minor clan that is not aligned with any major power." | ||
|
||
/obj/item/passport/xeno/unathi/hegemony | ||
name = "\improper Moghes Hegemony registration document" | ||
icon = 'infinity/icons/obj/item/passport.dmi' | ||
icon_state = "passport_unathi_heg" | ||
desc = "A document that indentifies its bearer as a registered denizen of the Moghes Hegemony." | ||
|
||
/obj/item/passport/xeno/unathi/convent | ||
name = "\improper Ssen-Uuma Convent registration document" | ||
icon = 'infinity/icons/obj/item/passport.dmi' | ||
icon_state = "passport_unathi_conv" | ||
desc = "A document that indentifies its bearer as a registered denizen of the Ssen-Uuma Convent." | ||
|
||
/obj/item/passport/xeno/unathi/league | ||
name = "\improper Rah'Zakeh League registration document" | ||
icon = 'infinity/icons/obj/item/passport.dmi' | ||
icon_state = "passport_unathi_league" | ||
desc = "A document that indentifies its bearer as a registered denizen of the Rah'Zakeh League." | ||
|
||
/obj/item/passport/xeno/unathi/tersten | ||
name = "\improper Tersten Republic identity document" | ||
icon = 'infinity/icons/obj/item/passport.dmi' | ||
icon_state = "passport_unathi_tersten" | ||
desc = "Issued by the Tersten Republic to its Unathi inhabitants, this document identifies its bearer as a citizen of the Republic, while also acting as a permanent residence permit across the rest of the SCG space." |
Binary file not shown.
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