i have written this code to add healing per turn ability to all units of america civ
but when i try to play a game the game wont start and show an error like: error starting game disable mod...
my code is :
INSERT INTO Types (Type, Kind) VALUES ('TRAIT_LEADER_ROOSEVELT_HEAL', 'KIND_TRAIT');
INSERT INTO LeaderTraits (LeaderType, TraitType) VALUES ('LEADER_T_ROOSEVELT', 'TRAIT_LEADER_ROOSEVELT_HEAL');
INSERT INTO TraitModifiers (TraitType, ModifierId) VALUES ('TRAIT_LEADER_ROOSEVELT_HEAL', 'ALL_UNITS_HEAL_PER_TURN');
INSERT INTO Modifiers (ModifierId, ModifierType, SubjectRequirementSetId) VALUES ('ALL_UNITS_HEAL_PER_TURN', 'MODIFIER_PLAYER_UNITS_ADJUST_HEAL_PER_TURN', NULL);
INSERT INTO ModifierArguments (ModifierId, Name, Value) VALUES ('TRAIT_HEAL_PER_TURN', 'Type', 'ALL');
INSERT INTO ModifierArguments (ModifierId, Name, Value) VALUES ('TRAIT_HEAL_PER_TURN', 'Amount', 20);
i would be thankful if anyone could help