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.

Format "blablabalbleobelobelo" Original commit: https://github.com/ROBlNET13/pvz/commit/3c86408f8d65c65c61d4e1e694bec122fc48a611

Co-authored-by: ROBlNET13 <robert.robinet13@gmail.com>

+14 -15
+1 -1
game/images/Zombies/CX/v.html
··· 1 - d4b9e46fac8566a678697ecce2d97104ec19bf00 1 + 3c86408f8d65c65c61d4e1e694bec122fc48a611
+2 -3
game/js/CZombie.js
··· 11849 11849 a + "1.gif", 11850 11850 ]; 11851 11851 })(), 11852 - Produce: 11853 - 'peashootr', 11852 + Produce: "peashootr", 11854 11853 }); 11855 11854 var oGargantuar = InheritO(OrnIZombies, { 11856 11855 EName: "oGargantuar", ··· 11900 11899 })(), 11901 11900 AudioArr: ["plastichit"], 11902 11901 GetDX() { 11903 - return -200; 11902 + return -200; 11904 11903 }, 11905 11904 getShadow(a) { 11906 11905 return "left:200px;top:250px";
+11 -11
game/js/Cfunction.js
··· 4476 4476 }; 4477 4477 4478 4478 function createZombie(zombieClass, row, column) { 4479 - let zombie = new zombieClass(), 4480 - zombieHTML = zombie.CustomBirth(row, column, 0, "auto"); 4481 - asyncInnerHTML( 4482 - zombieHTML, 4483 - (fragment, zombieObj) => { 4484 - EDPZ.appendChild(fragment); 4485 - zombieObj.Birth(); 4486 - }, 4487 - zombie, 4488 - ); 4489 - } 4479 + let zombie = new zombieClass(), 4480 + zombieHTML = zombie.CustomBirth(row, column, 0, "auto"); 4481 + asyncInnerHTML( 4482 + zombieHTML, 4483 + (fragment, zombieObj) => { 4484 + EDPZ.appendChild(fragment); 4485 + zombieObj.Birth(); 4486 + }, 4487 + zombie 4488 + ); 4489 + }