Create advancedbugs.js

small but not done
This commit is contained in:
rosics-code 2025-01-12 20:33:11 -05:00 committed by GitHub
parent 7eb3e7237a
commit 91ef285507
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, }
}
}