Consolidates text files into their own, central folder (#19063)

Sorts the various .TXTs of the game (currently so far the lore radio
stations as well as the "verse books" (Biesel constitution, religious
scriptures, etc)) to a master `texts` file in Aurora's root directory.
Should help with config issues as well as consolidate all the texts in
one place, especially for use in future endeavors where bits of text
like these need to be made.

Should theoretically fix #19060. If it doesn't then, well, I'm stumped.
This commit is contained in:
naut
2024-05-02 16:42:57 +00:00
committed by GitHub
parent 27c33bf3c9
commit 80d79a585c
37 changed files with 89 additions and 31 deletions
@@ -130,8 +130,8 @@
)
lore_radio_stations = list(
"72.4 Radio Free Ouerea" = "config/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt",
"83.3 Canyon City Radio" = "config/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt",
"132.6 SkaldFM" = "config/lore_radio/uueoaesa/132.6_Skald_FM.txt",
"166.8 Discontinued Emergency Broadcast" = "config/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt"
"72.4 Radio Free Ouerea" = 'texts/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt',
"83.3 Canyon City Radio" = 'texts/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt',
"132.6 SkaldFM" = 'texts/lore_radio/uueoaesa/132.6_Skald_FM.txt',
"166.8 Discontinued Emergency Broadcast" = 'texts/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt'
)
@@ -83,9 +83,9 @@
)
lore_radio_stations = list(
"73.2 Navy Broadcasting Service" = "config/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt",
"122 Great Blue Dot" = "config/lore_radio/konyang//122_Great_Blue_Dot.txt",
"75.4 PBA" = "config/lore_radio/konyang/75.4_PBA.txt",
"77.7 SoulFM" = "config/lore_radio/konyang/77.7_SoulFM.txt",
"78.1 RealFM" = "config/lore_radio/konyang/78.1_RealFM.txt"
"73.2 Navy Broadcasting Service" = 'texts/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt',
"122 Great Blue Dot" = 'texts/lore_radio/konyang//122_Great_Blue_Dot.txt',
"75.4 PBA" = 'texts/lore_radio/konyang/75.4_PBA.txt',
"77.7 SoulFM" = 'texts/lore_radio/konyang/77.7_SoulFM.txt',
"78.1 RealFM" = 'texts/lore_radio/konyang/78.1_RealFM.txt'
)
@@ -15,15 +15,15 @@
starlight_range = 2
lore_radio_stations = list(
"87.5 Mendell City Bugle Radio" = "config/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt",
"90.7 Hi-Fi Sports FM" = "config/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt",
"93.1 Phoenix FM" = "config/lore_radio/tauceti/93.1_PhoenixFM.txt",
"17.9 Adhomai Ceti-Connection" = "config/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt",
"28.1 D6 Citizen Radio" = "config/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt",
"95.3 QRCC" = "config/lore_radio/tauceti/95.3_QRCC.txt",
"93.8 Biesellian Song Broadcast" = "config/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt",
"113.7 ZOTH-FM Vaurca Radio Station" = "config/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt",
"52.4 Raging Tides" = "config/lore_radio/tauceti/52.4_Raging_Tides.txt"
"87.5 Mendell City Bugle Radio" = 'texts/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt',
"90.7 Hi-Fi Sports FM" = 'texts/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt',
"93.1 Phoenix FM" = 'texts/lore_radio/tauceti/93.1_PhoenixFM.txt',
"17.9 Adhomai Ceti-Connection" = 'texts/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt',
"28.1 D6 Citizen Radio" = 'texts/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt',
"95.3 QRCC" = 'texts/lore_radio/tauceti/95.3_QRCC.txt',
"93.8 Biesellian Song Broadcast" = 'texts/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt',
"113.7 ZOTH-FM Vaurca Radio Station" = 'texts/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt',
"52.4 Raging Tides" = 'texts/lore_radio/tauceti/52.4_Raging_Tides.txt'
)
/datum/space_sector/romanovich