Adds tajaran flags (#5050)

-adds the Democratic People's Republic of Adhomai flag and banner
-adds the People's Republic of Adhomai flag and banner

You can get both from the loadout. Sprites were made by kyres1.
This commit is contained in:
Alberyk
2018-07-31 19:11:24 -03:00
committed by Erki
parent e3b0cc5e42
commit c55cc53317
4 changed files with 47 additions and 0 deletions

View File

@@ -454,6 +454,44 @@
/obj/item/weapon/flag/america/l
flag_size = 1
/obj/item/weapon/flag/dpra
name = "Democratic People's Republic of Adhomai flag"
desc = "The black flag of the Democratic People's Republic of Adhomai."
flag_path = "dpra"
/obj/item/weapon/flag/dpra/l
flag_size = 1
/obj/structure/sign/flag/dpra
name = "Democratic People's Republic of Adhomai flag"
desc = "The banner of an ancient nation, its glory old."
icon_state = "dpra"
/obj/structure/sign/flag/dpra/left
icon_state = "dpra_l"
/obj/structure/sign/flag/dpra/right
icon_state = "dpra_r"
/obj/item/weapon/flag/pra
name = "People's Republic of Adhomai flag"
desc = "The tajaran flag of the People's Republic of Adhomai."
flag_path = "pra"
/obj/item/weapon/flag/pra/l
flag_size = 1
/obj/structure/sign/flag/pra
name = "People's Republic of Adhomai flag"
desc = "The banner of an ancient nation, its glory old."
icon_state = "pra"
/obj/structure/sign/flag/pra/left
icon_state = "pra_l"
/obj/structure/sign/flag/pra/right
icon_state = "pra_r"
/obj/item/weapon/flag
name = "boxed flag"
desc = "A flag neatly folded into a wooden container."

View File

@@ -78,6 +78,8 @@
banners["banner, NanoTrasen"] = /obj/item/weapon/flag/nanotrasen
banners["banner, Eridani Fed"] = /obj/item/weapon/flag/eridani
banners["banner, Sedantis"] = /obj/item/weapon/flag/vaurca
banners["banner, People's Republic of Adhomai"] = /obj/item/weapon/flag/pra
banners["banner, Democratic People's Republic of Adhomai"] = /obj/item/weapon/flag/dpra
gear_tweaks += new/datum/gear_tweak/path(banners)
/datum/gear/flag
@@ -96,6 +98,8 @@
flags["flag, NanoTrasen"] = /obj/item/weapon/flag/nanotrasen/l
flags["flag, Eridani Fed"] = /obj/item/weapon/flag/eridani/l
flags["flag, Sedantis"] = /obj/item/weapon/flag/vaurca/l
flags["flag, People's Republic of Adhomai"] = /obj/item/weapon/flag/pra/l
flags["flag, Democratic People's Republic of Adhomai"] = /obj/item/weapon/flag/dpra/l
gear_tweaks += new/datum/gear_tweak/path(flags)