Stan44 c225632aac laid out and done like most of the ground work
to reorganize the Physics Engine
so that it'll be friendly to others to read.
2024-12-31 01:50:07 -06:00

55 lines
1.3 KiB
JSON

{
"plasma": {
"name": "Plasma",
"size": 1,
"hardness": 0.0,
"velocity": 0.8,
"conductivity": 1,
"heat_capacity": 1,
"color": [255, 100, 200, 255],
"mass": 0.01,
"temperature": 3400,
"liquid": false,
"solid": false,
"is_gas": true,
"glow_radius": 1,
"glow_intensity": 0.8,
"glow_color": [255, 150, 220, 180]
},
"spark": {
"name": "Spark",
"size": 1,
"hardness": 0.1,
"velocity": 0.8,
"conductivity": 1,
"heat_capacity": 1,
"color": [255, 255, 0, 255],
"mass": 0.01,
"temperature": 900,
"lifetime": 30,
"glow_radius": 3,
"glow_intensity": 1.0,
"glow_color": [255, 200, 0, 200],
"produces_on_death": "smoke",
"liquid": false,
"solid": false,
"is_gas": true
},
"energy": {
"name": "Energy",
"size": 1,
"hardness": 0.0,
"velocity": 0.5,
"conductivity": 1,
"color": [0, 255, 255, 180],
"mass": 0.0,
"temperature": 1000,
"glow_radius": 4,
"glow_intensity": 0.9,
"glow_color": [50, 255, 255, 150],
"liquid": false,
"solid": false,
"is_gas": true,
"energy_transfer": 50
}
}