57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
tex = {
plate = {
id = 'starlit-suit-survival-plate';
tint = lib.color {hue = 210, sat = .5, lum = .5};
};
lining = {
id = 'starlit-suit-survival-lining';
tint = lib.color {hue = 180, sat = .2, lum = .7};
};
};
tints = {'suit_plate', 'suit_lining'};
temp = {
desc = facDesc('survival','cc');
maxHeat = 0.7; -- can produce a half-degree Δ per second
maxCool = 0.5;
|
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
tex = {
plate = {
id = 'starlit-suit-survival-plate';
tint = lib.color {hue = 210, sat = .5, lum = .5};
};
lining = {
id = 'starlit-suit-survival-lining';
tint = lib.color {hue = 260, sat = .3, lum = .3};
};
};
tints = {'suit_plate', 'suit_lining'};
temp = {
desc = facDesc('survival','cc');
maxHeat = 0.7; -- can produce a half-degree Δ per second
maxCool = 0.5;
|