- Changling Evolution Menu
+ Changeling Evolution Menu
Hover over a power to see more information
- Current evolution points left to evolve with: [geneticpoints]
- Absorb genomes to acquire more evolution points
+ Current ability choices remaining: [geneticpoints]
+ By rendering a lifeform to a husk, we gain enough power to alter and adapt our evolutions.
+ (Readapt)
|
@@ -397,13 +388,24 @@ var/list/powerinstances
for(var/datum/power/changeling/P in powerinstances)
var/ownsthis = 0
+ if(P.genomecost == 0) //Let's skip the crap we start with. Keeps the evolution menu uncluttered.
+ continue
+
if(P in purchasedpowers)
ownsthis = 1
- var/color = "#e6e6e6"
- if(i%2 == 0)
- color = "#f2f2f2"
+ var/color
+ if(ownsthis)
+ if(i%2 == 0)
+ color = "#d8ebd8"
+ else
+ color = "#c3dec3"
+ else
+ if(i%2 == 0)
+ color = "#f2f2f2"
+ else
+ color = "#e6e6e6"
dat += {"
@@ -414,7 +416,7 @@ var/list/powerinstances
- Evolve [P] - Cost: [ownsthis ? "Purchased" : P.genomecost]
+ Evolve [P][ownsthis ? " - Purchased" : ((P.genomecost > 1) ? " - Cost: [P.genomecost]" : "")]
@@ -437,7 +439,7 @@ var/list/powerinstances