Adds an origin and culture system to govern possible faction items, citizenships, accents, religions. (#13400)

This commit is contained in:
Matt Atlas
2022-04-24 17:29:44 +02:00
committed by GitHub
parent fd242cef4c
commit b7b9db101f
85 changed files with 2020 additions and 280 deletions

View File

@@ -0,0 +1,7 @@
--
-- Implemented in PR #13400.
-- Add cultures and origins
--
ALTER TABLE `ss13_characters` ADD COLUMN `culture` VARCHAR(48) DEFAULT NULL AFTER `economic_status`;
ALTER TABLE `ss13_characters` ADD COLUMN `origin` VARCHAR(48) DEFAULT NULL AFTER `culture`;