Skip to content

Commit 3ae9447

Browse files
authored
Merge pull request #842 from KeshaEnakentiivich/main
Please add my mod.
2 parents e8dbf83 + a001279 commit 3ae9447

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

mods/bere.js

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
console.log("Welcome!")
2+
3+
elements.electron = {
4+
color: "#faffa1",
5+
behavior: behaviors.GAS,
6+
category: "energy",
7+
state: "gas",
8+
reactions: {
9+
"ash": { "elem1": "acid_gas" },
10+
"battery": { "elem1": "bomb" },
11+
"greek_fire": { elem1: "fire" },
12+
"wire": { "elem1": "steel" },
13+
"vine": { "elem1": "plant" },
14+
"wood": { "elem1": "acid_gas" },
15+
"glass": { "elem1": "potassium" },
16+
"stained_glass": { "elem1": "potassium" },
17+
}
18+
};
19+
20+
elements.iodum = {
21+
color: ["#4d4218","#ffca00"],
22+
behavior: behaviors.LIQUID,
23+
category: "liquids",
24+
state: "solid",
25+
tempHigh: 94.1,
26+
stateHigh: "iodum_gas",
27+
reactions: {
28+
"concrete": { "elem1": "ash", "chance": 0.6 },
29+
}
30+
};
31+
32+
elements.iodum_gas = {
33+
color: ["#4d4218","#ffca00"],
34+
behavior: behaviors.GAS,
35+
category: "states",
36+
state: "gas",
37+
tempLow: 21,
38+
stateLow: "iodum",
39+
reactions: {
40+
"ash": { "elem1": "steam" },
41+
"cloud": { "elem1": "ozone" },
42+
"rain_cloud": { "elem1": "oxygen" },
43+
}
44+
};
45+
46+
elements.salvador_powder = {
47+
color: ["#484742","#3b3b3b","#cfccc0","#56544d","#ffe994"],
48+
behavior: behaviors.POWDER,
49+
category: "powders",
50+
state: "solid",
51+
burn: 5,
52+
burnTime: 30,
53+
burnInto: ["bless"],
54+
tempHigh: 53.6,
55+
stateHigh: "salvador_water",
56+
tempLow: -7,
57+
stateLow: "god_ray",
58+
glow: true,
59+
reactions: {
60+
"rad_cloud": { "elem1": "bless" },
61+
"cloud": { "elem1": "ozone", "chance": 0.2 },
62+
"radiation": { "elem1": "water" },
63+
"dirt": { "elem1": "mud" },
64+
"basalt": { "elem1": "gravel", "chance": 0.4 },
65+
}
66+
};
67+
68+
elements.salvador_water = {
69+
color: ["#2986cc","#16537e","#0086ff","#9da0f7","#54aeff"],
70+
behavior: behaviors.SUPERFLUID,
71+
category: "liquids",
72+
state: "solid",
73+
tempLow: 53.5,
74+
stateLow: "salvador_powder",
75+
density: 26,
76+
glow: true,
77+
reactions: {
78+
"rad_cloud": { "elem1": "bless" },
79+
"cloud": { "elem1": "ozone", "chance": 0.2 },
80+
"radiation": { "elem1": "water" },
81+
"dirt": { "elem1": "mud" },
82+
"basalt": { "elem1": "gravel", "chance": 0.4 },
83+
"plague": { "elem1": "water" },
84+
}
85+
};

0 commit comments

Comments
 (0)