https://pvzm.net/ to play [Read-only GitHub mirror] pvzm.net
modded vs pvz plants-vs-zombies plantsvszombies javascript online zombie noads jspvz pvzm game plants plant
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

grr use tabs grr

Clay f1968988 b26a5d1d

+41 -46
+41 -46
game/js/plants/oImitater.js
··· 1 1 export var oImitater = InheritO(CPlants, { 2 - EName: "oImitater", 3 - CName: "Imitater", 4 - width: 95, 5 - height: 81, 6 - beAttackedPointR: 92, 7 - SunNum: 20, 8 - AlmanacGif: 1, 9 - PicArr: [ 10 - "images/Card/Plants/Imitater.png", 11 - "images/Plants/Imitater/0.webp", 12 - "images/Plants/Imitater/Idle.webp", 13 - "images/Plants/Imitater/Spin.webp", 14 - ], 15 - Tooltip: "imitater", 16 - Produce: 17 - '<font color="#28325A">imitater</font><p>imitate: <font color="#CC241D">imitater </font><br>imitater: <font color="#CC241D">all imitaters in a medium imitater</font><br>Usage: <font color="#CC241D">single use, instant</font></p>"I wanna imitate," says imitator #1. "No, let\'s imitate instead!" says his brother, imitate #2. After intense imitation they agree to imitate.', 18 - InitTrigger() {}, 19 - PrivateBirth(a) { 20 - oSym.addTask( 21 - 170, 22 - (b) => { 23 - var c = $P[b]; 24 - var f = $(b); 25 - EditEle(f.childNodes[1], { 26 - src: c.PicArr[3], 27 - }); 28 - }, 29 - [a.id], 30 - ); 31 - oSym.addTask( 32 - 320, 33 - (b) => { 34 - var c = $P[b]; 35 - if (c) { 36 - var f = $(b); 37 - var j = c.R; 38 - var g = c.C; 39 - 40 - oSym.addTask(0, ClearChild, [f]); 41 - var spawnedPlant = CustomSpecial(oPeashooter, j, g); 42 - console.log 43 - } 44 - }, 45 - [a.id], 46 - ); 47 - }, 2 + EName: "oImitater", 3 + CName: "Imitater", 4 + width: 95, 5 + height: 81, 6 + beAttackedPointR: 92, 7 + SunNum: 20, 8 + AlmanacGif: 1, 9 + PicArr: ["images/Card/Plants/Imitater.png", "images/Plants/Imitater/0.webp", "images/Plants/Imitater/Idle.webp", "images/Plants/Imitater/Spin.webp"], 10 + Tooltip: "imitater", 11 + Produce: 12 + '<font color="#28325A">imitater</font><p>imitate: <font color="#CC241D">imitater </font><br>imitater: <font color="#CC241D">all imitaters in a medium imitater</font><br>Usage: <font color="#CC241D">single use, instant</font></p>"I wanna imitate," says imitator #1. "No, let\'s imitate instead!" says his brother, imitate #2. After intense imitation they agree to imitate.', 13 + InitTrigger() {}, 14 + PrivateBirth(a) { 15 + oSym.addTask( 16 + 170, 17 + (b) => { 18 + var c = $P[b]; 19 + var f = $(b); 20 + EditEle(f.childNodes[1], { 21 + src: c.PicArr[3], 22 + }); 23 + }, 24 + [a.id] 25 + ); 26 + oSym.addTask( 27 + 320, 28 + (b) => { 29 + var c = $P[b]; 30 + if (c) { 31 + var f = $(b); 32 + var j = c.R; 33 + var g = c.C; 34 + 35 + oSym.addTask(0, ClearChild, [f]); 36 + var spawnedPlant = CustomSpecial(oPeashooter, j, g); 37 + console.log; 38 + } 39 + }, 40 + [a.id] 41 + ); 42 + }, 48 43 });