cleaning up
This commit is contained in:
@@ -315,7 +315,7 @@ const b = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "basidio-stomp",
|
name: "basidio-stomp",
|
||||||
description: "hard landings disrupt <strong style='letter-spacing: 2px;'>spores</strong> from the ground",
|
description: "hard landings disrupt <strong style='letter-spacing: 2px;'>spores</strong> from the ground<br>immune to <strong>harm</strong> from <strong>falling</strong>",
|
||||||
maxCount: 1,
|
maxCount: 1,
|
||||||
count: 0,
|
count: 0,
|
||||||
allowed() {
|
allowed() {
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
/* TODO: *******************************************
|
/* TODO: *******************************************
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
||||||
|
mod - mobs die at 15% life (default is 5%)
|
||||||
|
|
||||||
|
mod - negative mass field - mke block orbit player, like black hole boss
|
||||||
|
named rotational frame-dragging
|
||||||
|
|
||||||
mod - energy recharges faster when not moving
|
mod - energy recharges faster when not moving
|
||||||
|
|
||||||
lore - a mech gains self awareness
|
lore - a mech gains self awareness
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const level = {
|
|||||||
start() {
|
start() {
|
||||||
if (level.levelsCleared === 0) {
|
if (level.levelsCleared === 0) {
|
||||||
// level.difficultyIncrease(5)
|
// level.difficultyIncrease(5)
|
||||||
// b.giveGuns("foam")
|
b.giveGuns("wave beam")
|
||||||
// mech.setField("phase decoherence field")
|
// mech.setField("phase decoherence field")
|
||||||
// for (let i = 0; i < 9; i++) {
|
// for (let i = 0; i < 9; i++) {
|
||||||
// b.giveMod("auto-loading heuristics");
|
// b.giveMod("auto-loading heuristics");
|
||||||
|
|||||||
@@ -206,9 +206,9 @@ const mech = {
|
|||||||
mech.yOff = mech.yOffWhen.jump;
|
mech.yOff = mech.yOffWhen.jump;
|
||||||
mech.hardLandCD = mech.cycle + Math.min(momentum / 6 - 6, 40)
|
mech.hardLandCD = mech.cycle + Math.min(momentum / 6 - 6, 40)
|
||||||
|
|
||||||
if (b.isModStompPauli) {
|
// if (b.isModStompPauli) {
|
||||||
mech.collisionImmune = mech.cycle + b.modCollisionImmuneCycles; //player is immune to collision damage for 30 cycles
|
// mech.collisionImmune = mech.cycle + b.modCollisionImmuneCycles; //player is immune to collision damage for 30 cycles
|
||||||
}
|
// }
|
||||||
if (b.isModStomp) {
|
if (b.isModStomp) {
|
||||||
const len = Math.min(25, (momentum - 110) * 0.1)
|
const len = Math.min(25, (momentum - 110) * 0.1)
|
||||||
for (let i = 0; i < len; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user