Merge fbcc2a717b into 9bc10bd391
This commit is contained in:
commit
ca739d938c
|
|
@ -0,0 +1,26 @@
|
||||||
|
elements.pac_man = {
|
||||||
|
color: "#ffff00",
|
||||||
|
behavior: behaviors.FLY,
|
||||||
|
category: "pac-man",
|
||||||
|
state: "solid",
|
||||||
|
reactions: {
|
||||||
|
"vulnerable_ghost": { elem2:null, chance:1000, func:behaviors.FEEDPIXEL },
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.vulnerable_ghost = {
|
||||||
|
color: "#2121ff",
|
||||||
|
behavior: behaviors.FLY,
|
||||||
|
category: "pac-man",
|
||||||
|
state: "solid",
|
||||||
|
density: 3300,
|
||||||
|
insulate: false,
|
||||||
|
noMix: false,
|
||||||
|
alias: "scared_ghost",
|
||||||
|
movable: true,
|
||||||
|
hardness: 0.8,
|
||||||
|
breakInto: "worm"
|
||||||
|
reactions: {
|
||||||
|
"pac_man": { elem2:null, chance:1000, func:behaviors.FEEDPIXEL },
|
||||||
|
}
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue