fun: slower but hotter fires

This commit is contained in:
cha0s 2019-04-28 22:48:39 -05:00
parent 0ade995223
commit f232ee366e

View File

@ -68,8 +68,8 @@ function fireJSON(position) {
damageSpecs: [ damageSpecs: [
{ {
affinity: AFFINITY_FIRE, affinity: AFFINITY_FIRE,
lock: 0.15, lock: 0.45,
power: 5, power: 15,
variance: 0.25, variance: 0.25,
}, },
], ],
@ -109,7 +109,7 @@ function fireJSON(position) {
function blueFireJSON(position) { function blueFireJSON(position) {
const json = fireJSON(position); const json = fireJSON(position);
json.traits.animated.params.animations.idle.uri = '/blue-fire.animation.json'; json.traits.animated.params.animations.idle.uri = '/blue-fire.animation.json';
json.traits.damaging.params.damageSpecs[0].power = -5; json.traits.damaging.params.damageSpecs[0].power = -15;
json.traits.audible.params.sounds.fire.uri = '/blue-fire.sound.json'; json.traits.audible.params.sounds.fire.uri = '/blue-fire.sound.json';
return json; return json;
} }