23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
color = lib.color(.7,.2,.1);
};
silicon = {
name = 'silicon', sym = 'Si', n = 14, density = 2.329;
metal = true; -- can be forged into an ingot
color = lib.color(.6,.6,.4);
};
potassium = {
name = 'potassium', sym = 'K', n = 19, density = 0.862;
-- potassium is technically a metal but it's so soft
-- it can be easily nanoworked without high temps, so
-- ingots make no sense
color = lib.color(1,.8,0.1);
};
|
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
color = lib.color(.7,.2,.1);
};
silicon = {
name = 'silicon', sym = 'Si', n = 14, density = 2.329;
metal = true; -- can be forged into an ingot
color = lib.color(.6,.6,.4);
};
neodymium = {
name = 'neodymium', sym = 'Nd', n= 60, density = 7.01;
metal = true;
color = lib.color(1,1,1);
};
potassium = {
name = 'potassium', sym = 'K', n = 19, density = 0.862;
-- potassium is technically a metal but it's so soft
-- it can be easily nanoworked without high temps, so
-- ingots make no sense
color = lib.color(1,.8,0.1);
};
|