diff --git a/code/game/objects/items/flag.dm b/code/game/objects/items/flag.dm index 00bf60d67ef..12594ff0310 100644 --- a/code/game/objects/items/flag.dm +++ b/code/game/objects/items/flag.dm @@ -128,7 +128,7 @@ /obj/item/flag/species/diona name = "Diona flag" - desc = "A flag proudly proclaiming the superior heritage of Diona." + desc = "A flag proudly proclaiming the superior heritage of Dionae." icon_state = "dionaflag" /obj/item/flag/species/human @@ -156,6 +156,11 @@ desc = "A flag proudly proclaiming the superior heritage of Unathi." icon_state = "unathiflag" +/obj/item/flag/species/vulp + name = "Vulpkanin flag" + desc = "A flag proudly proclaiming the superior heritage of Vulpkanin." + icon_state = "vulpflag" + //Department Flags /obj/item/flag/cargo @@ -208,4 +213,4 @@ /obj/item/flag/cult name = "Nar'Sie Cultist flag" desc = "A flag proudly boasting the logo of the cultists, sworn enemies of NT." - icon_state = "cultflag" \ No newline at end of file + icon_state = "cultflag" diff --git a/code/modules/store/items.dm b/code/modules/store/items.dm index f578e17bab2..aec8a45cc2c 100644 --- a/code/modules/store/items.dm +++ b/code/modules/store/items.dm @@ -131,7 +131,7 @@ /datum/storeitem/flag/diona name = "Diona flag" - desc = "A flag proudly proclaiming the superior heritage of Diona." + desc = "A flag proudly proclaiming the superior heritage of Dionae." typepath = /obj/item/flag/species/diona cost = 1000 @@ -155,7 +155,7 @@ /datum/storeitem/flag/taj name = "Tajaran flag" - desc = "A flag proudly proclaiming the superior heritage of Tajaran." + desc = "A flag proudly proclaiming the superior heritage of Tajara." typepath = /obj/item/flag/species/taj cost = 1000 @@ -165,6 +165,12 @@ typepath = /obj/item/flag/species/unathi cost = 1000 +/datum/storeitem/flag/vulp + name = "Vulpkanin flag" + desc = "A flag proudly proclaiming the superior heritage of Vulpkanin." + typepath = /obj/item/flag/species/vulp + cost = 1000 + /datum/storeitem/flag/ian name = "Ian flag" desc = "The banner of Ian, because SQUEEEEE." diff --git a/icons/obj/flag.dmi b/icons/obj/flag.dmi index 9c7b9e57321..b85010f3727 100644 Binary files a/icons/obj/flag.dmi and b/icons/obj/flag.dmi differ