Hello guys,

I recently tried to make a new Trait for diplomats, but it failed horribly.
I'm not sure what I made wrong, so I will copy the following code of the new trait

I made the change to myself in the descr_strat.txt :D
Code:
character	Caius Flaminius, diplomat, age 23, , x 112, y 63 
traits GoodDiplomat 3 , Born 1
This is the export_descr_VnV_enums.txt
Code:
Born
Born_desc
NoBorn
NoBorn_desc
Then, I made this:
Code:
;------------------------------------------
Trait BornDiplomatic
	Characters diplomat
	AntiTraits NoBornDiplomat

    Level Born
        Description Born_desc
        EffectsDescription Born_effects_desc
        Threshold  1 

        Effect Negotiation  1 

;------------------------------------------
Trait NoBornDiplomat
	Characters diplomat
	AntiTraits BornDiplomat

    Level No_Born
        Description No_born_desc
        EffectsDescription no_born_effects_desc
        Threshold  2 

        Effect Negotiation -1 

;------------------------------------------
Why do I have an error which it doesnt allow me to play?

Tnx