Merge pull request #935 from rosics-code/patch-2

Create advancedbugs.js
This commit is contained in:
slweeb 2025-01-16 22:33:44 -05:00 committed by GitHub
commit db193496c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 37 additions and 0 deletions

37
mods/advancedbugs.js Normal file
View File

@ -0,0 +1,37 @@
elements.hornet = {
tempHigh: 200,
stateHigh: "dead_bug",
color: "#ede48e",
behavior: behaviors.FLY,
category: "life",
state: "solid",
behaviorOn: [
"XX|CR:flash|XX",
"CR:flash|CH:ash|CR:flash",
"XX|CR:flash|XX",
],
reactions: {
"head": { elem2: null, },
"body": { elem2: null, },
"fly": { elem2: null, },
"spider": { elem1: null, }
}
}
elements.lice = {
tempHigh: 212,
stateHigh: "dead_bug",
color: "#7a7852",
behavior: behaviors.LIQUID,
category: "life",
state: "solid",
behaviorOn: [
"XX|CR:flash|XX",
"CR:flash|CH:ash|CR:flash",
"XX|CR:flash|XX",
],
reactions: {
"head": { elem2: null, },
"body": { elem2: null, }
}
}