-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnull
49 lines (44 loc) · 1.43 KB
/
null
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# species_trait_points: base number of species trait points available for this species class
# species_max_traits: maximum number of traits that species of this class can have (doesn't count those with cost == 0)
#EXAMPLE OF MODDED SPECIES ARCHETYPE
#Will be able to use traits valid for BIOLOGICAL, ROBOT and BIOLOGICAL2
#Has the exact same trait points as BIOLOGICAL
#BIOLOGICAL2 = {
# inherit_trait_points_from = BIOLOGICAL
# inherit_traits_from = { BIOLOGICAL ROBOT }
# robotic: is this archetype's species robotic? Governs various things:
# - does the species count as robotic (for is_robotic = yes, and various hardcoded checks)
# - notably can the species grow, or is just assembled?
# uses_modifiers: should modifiers be generated for this archetype at all?
#}
@robot_trait_points = 0
@robot_max_traits = 4
@machine_trait_points = 5
@machine_max_traits = 6
@species_trait_points = 9
@species_max_traits = 8
BIOLOGICAL = {
species_trait_points = @species_trait_points
species_max_traits = @species_max_traits
}
ROBOT = {
species_trait_points = @robot_trait_points
species_max_traits = @robot_max_traits
robotic = yes
}
MACHINE = {
species_trait_points = @machine_trait_points
species_max_traits = @machine_max_traits
robotic = yes
}
PRESAPIENT = {
species_trait_points = @species_trait_points
species_max_traits = @species_max_traits
uses_modifiers = no
}
LITHOID = {
inherit_trait_points_from = BIOLOGICAL
}
OTHER = {
uses_modifiers = no
}