forked from R74nCom/sandboxels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathThread.js
62 lines (61 loc) · 1.19 KB
/
Thread.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
elements.thread = {
color: "#fff3e6",
behavior: behaviors.STURDYPOWDER,
category: "thread",
state: "solid",
tempHigh: "50",
stateHigh: "ash",
hardness: "0.2",
breakInto: "wool"
density: " 1314",
burn: "99",
burnTime: "40"
burnInto: "ash",
reactions: {
"weavepowder": { elem1: null, elem2: "rope" },
};
elements.wool = {
color: "#e2e1d8",
behavior: behaviors.POWDER,
category: "thread",
state: "solid",
tempHigh: "40",
stateHigh: "ash",
hardness: "1",
density: " 1314",
burn: "90",
burnTime: "40"
burnInto: "ash",
reactions: {
"weavepowder": { elem1: null, elem2: "thread" },
};
elements.weavepowder = {
color: "#494736",
behavior: behaviors.POWDER,
category: "thread",
state: "solid",
tempHigh: "5000000",
stateHigh: "dust",
hardness: "1",
density: " 1314",
burn: "0",
burnTime: "0"
burnInto: "dust",
reactions: {
"wool": { elem1: thread, elem2: "null" },
"thread": { elem1: rope, elem2: "null" },
};
elements.rope = {
color: "#ffe6cc",
behavior: behaviors.STURDYPOWDER,
category: "thread",
state: "solid",
tempHigh: "60",
stateHigh: "ash",
hardness: "0.4",
breakInto: "thread"
density: " 1314",
burn: "85",
burnTime: "50"
burnInto: "ash",
};