Browse Source

Ball Smother Implemation 5

fixed clipping between ball smother states
tags/v1.0.0
jsb5468 6 years ago
parent
commit
223c4cb9dc
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      recursive-desc.js

+ 5
- 5
recursive-desc.js View File

@@ -2442,11 +2442,11 @@ rules["ball-smother"].push({
} }
}); });


//Balls Weigh 1e25 kg or less
//Balls Weigh 1e24 kg or less


rules["ball-smother"].push({ rules["ball-smother"].push({
"test": function(container, macro) { "test": function(container, macro) {
return macro.ballMass <= 1e25 &&
return macro.ballMass <= 1e24 &&
macro.ballMass > 1e20 && macro.ballMass > 1e20 &&
isNonFatal(macro); isNonFatal(macro);


@@ -2456,7 +2456,7 @@ rules["ball-smother"].push({
}); });
rules["ball-smother"].push({ rules["ball-smother"].push({
"test": function(container, macro) { "test": function(container, macro) {
return macro.ballMass <= 1e25 &&
return macro.ballMass <= 1e24 &&
macro.ballMass > 1e20 && macro.ballMass > 1e20 &&
isFatal(macro); isFatal(macro);


@@ -2467,7 +2467,7 @@ rules["ball-smother"].push({
}); });
rules["ball-smother"].push({ rules["ball-smother"].push({
"test": function(container, macro) { "test": function(container, macro) {
return macro.ballMass <= 1e25 &&
return macro.ballMass <= 1e24 &&
macro.ballMass > 1e20 && macro.ballMass > 1e20 &&
isGory(macro); isGory(macro);


@@ -2479,7 +2479,7 @@ rules["ball-smother"].push({


rules["ball-smother"].push({ rules["ball-smother"].push({
"test": function(container, macro) { "test": function(container, macro) {
return macro.ballMass <= 1e25 &&
return macro.ballMass <= 1e24 &&
macro.ballMass > 1e20 && macro.ballMass > 1e20 &&
isSadistic(macro); isSadistic(macro);




Loading…
Cancel
Save