This commit is contained in:
ntr 2019-08-08 21:07:02 +10:00
parent 65503c6800
commit 11ac600300
3 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* serde serialize privatise * serde serialize privatise
* stripe prod * stripe prod
* mobile styles * mobile styles
* info fix
* account page * account page
* graphs n shit * graphs n shit
* acp init * acp init

View File

@ -35,6 +35,8 @@ function Skill(props) {
setActiveSkill, setActiveSkill,
} = props; } = props;
if (!game) return false;
const s = construct.skills[i]; const s = construct.skills[i];
const ko = construct.green_life.value === 0 ? 'ko' : ''; const ko = construct.green_life.value === 0 ? 'ko' : '';

View File

@ -1,7 +1,7 @@
use rand::prelude::*; use rand::prelude::*;
use rand::{thread_rng}; use rand::{thread_rng};
const FIRSTS: [&'static str; 44] = [ const FIRSTS: [&'static str; 47] = [
"artificial", "artificial",
"ambient", "ambient",
"borean", "borean",
@ -16,8 +16,10 @@ const FIRSTS: [&'static str; 44] = [
"deserted", "deserted",
"emotive", "emotive",
"emotionless", "emotionless",
"elliptical",
"fierce", "fierce",
"fossilised", "fossilised",
"frozen",
"inverted", "inverted",
"leafy", "leafy",
"lurking", "lurking",
@ -41,6 +43,7 @@ const FIRSTS: [&'static str; 44] = [
"rogue", "rogue",
"subversive", "subversive",
"subterranean", "subterranean",
"supercooled",
"subsonic", "subsonic",
"synthetic", "synthetic",
"sweet", "sweet",
@ -48,7 +51,7 @@ const FIRSTS: [&'static str; 44] = [
"weary", "weary",
]; ];
const LASTS: [&'static str; 48] = [ const LASTS: [&'static str; 52] = [
"artifact", "artifact",
"assembly", "assembly",
"carbon", "carbon",
@ -61,6 +64,7 @@ const LASTS: [&'static str; 48] = [
"detector", "detector",
"energy", "energy",
"entropy", "entropy",
"exomorph",
"foilage", "foilage",
"forest", "forest",
"form", "form",
@ -78,13 +82,16 @@ const LASTS: [&'static str; 48] = [
"nectar", "nectar",
"oak", "oak",
"oxide", "oxide",
"orbit",
"pattern", "pattern",
"plant", "plant",
"planet",
"poseidon", "poseidon",
"problem", "problem",
"receiver", "receiver",
"replicant", "replicant",
"river", "river",
"satellite",
"scaffold", "scaffold",
"structure", "structure",
"shape", "shape",