This file contains hidden or 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
gain_all_perks дать все перки образа жизни | |
gain_all_dynasty_perks | |
discover_all_eras открыть все инновации для культуры | |
add_stress -100 | |
effect = { every_held_title = { set_county_culture = root.culture}} - култура |
This file contains hidden or 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
CREATE OR REPLACE FUNCTION max (uuid, uuid) | |
RETURNS uuid AS $$ | |
BEGIN | |
IF $1 IS NULL OR $1 < $2 THEN | |
RETURN $2; | |
END IF; | |
RETURN $1; | |
END; | |
$$ LANGUAGE plpgsql; |