more characters

This commit is contained in:
trashb0at 2024-11-13 19:12:09 -05:00
parent 8d1f99afb5
commit 0b04af7497
12 changed files with 1098 additions and 8 deletions

View file

@ -120,3 +120,23 @@ elgarh_dynasty = {
name = dynn_elgarh
culture = prytoneg
}
wall_dynasty = {
name = dynn_wall
culture = strafclideg
}
rholls_rhoycy_dynasty = {
name = dynn_rholls_rhoycy
culture = strafclideg
}
nelson_dynasty = {
name = dynn_nelson
culture = easlander
}
solomonid_dynasty = {
name = dynn_solomonid
culture = soueyrneg
}

View file

@ -138,5 +138,65 @@ d_nf_elgarh = { # Elgarh
noble_family = yes
destroy_if_invalid_heir = yes
ai_primary_priority = { add = @never_primary_score }
}
d_nf_wall = { # wall
color = { 100 100 100 }
capital = c_london
definite_form = yes
landless = yes
ruler_uses_title_name = no
always_follows_primary_heir = yes
no_automatic_claims = yes
noble_family = yes
destroy_if_invalid_heir = yes
ai_primary_priority = { add = @never_primary_score }
}
d_nf_rolls_rhoycy = { # Rolls-Rhoycy
color = { 100 100 100 }
capital = c_london
definite_form = yes
landless = yes
ruler_uses_title_name = no
always_follows_primary_heir = yes
no_automatic_claims = yes
noble_family = yes
destroy_if_invalid_heir = yes
ai_primary_priority = { add = @never_primary_score }
}
d_nf_nelson = { # Nelson
color = { 100 100 100 }
capital = c_london
definite_form = yes
landless = yes
ruler_uses_title_name = no
always_follows_primary_heir = yes
no_automatic_claims = yes
noble_family = yes
destroy_if_invalid_heir = yes
ai_primary_priority = { add = @never_primary_score }
}
d_nf_solomonid = { # Solomonid
color = { 100 100 100 }
capital = c_london
definite_form = yes
landless = yes
ruler_uses_title_name = no
always_follows_primary_heir = yes
no_automatic_claims = yes
noble_family = yes
destroy_if_invalid_heir = yes
ai_primary_priority = { add = @never_primary_score }
}

View file

@ -23,17 +23,11 @@ e_britannia = {
add = @correct_culture_primary_score
}
}
d_bedford = { # Essex
color = { 250 1 32 }
d_london = { # London
color = { 230 5 5 }
capital = c_london
cultural_names = {
name_list_anglo_saxon = cn_east_seaxe
name_list_old_saxon = cn_east_seaxe
}
c_london = {
color = { 230 5 5 }
b_london = {
@ -58,6 +52,17 @@ e_britannia = {
}
}
}
}
d_bedford = { # Essex
color = { 250 1 32 }
capital = c_essex
cultural_names = {
name_list_anglo_saxon = cn_east_seaxe
name_list_old_saxon = cn_east_seaxe
}
c_middlesex = {
color = { 254 1 1 }

View file

@ -0,0 +1,28 @@
create_artifact_excalibur_effect = {
# Get the character the artifact is being made for.
$OWNER$ = { save_scope_as = owner }
# Not really used, but if we don't set the scopes we get errors in the feature selection
set_artifact_rarity_common = yes
# Create the artifact
create_artifact = {
name = excalibur_name
description = excalibur_description
type = pedestal
visuals = excalibur
wealth = scope:wealth
quality = scope:quality
history = {
type = created_before_history
}
modifier = excalibur_modifier
save_scope_as = newly_created_artifact
decaying = no
}
scope:newly_created_artifact = {
set_variable = { name = historical_unique_artifact value = yes }
set_variable = excalibur
save_scope_as = epic
}
}