-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patheffectRoller.js
1265 lines (1159 loc) · 42.6 KB
/
effectRoller.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// You can do '!roll [id]' in chat to roll an effect.
// Prefix can also be '$'' or '/'.
// 'id' parameter lets you pick the effect if defined.
// 'id' value corresponds to the index inside the 'effects' array.
// 'id' parameter requires 'chooseRoll' permission.
// Cooldown of 30 seconds after rolling.
// Cooldown bypass requires 'infiniteRolls' permission.
// NOTE: you need to verify that ALL of them work.
// ID | name | description
// Positive Effects
// 0 : WRATH : Every bullet you shoot is an Annihilator bullet.
// 1 : Vanish : Makes you COMPLETELY invisible for 15 seconds.
// 2 : Tornado : Makes your body spawn 5 ai-guided swarmers per second.
// 3 Exploding Projectiles Applies SHOOT_ON_DEATH guns to fired projectiles.
// 4 : Spawn Sanctuary : Spawns a small, much weaker sanctuary with reduced damage for your team at where you alt-fire.
// 5 : Spawn Dominator : Spawns a small, lower health gunner dominator with reduced damage for your team at where you alt-fire.
// 6 : Sidewinder : Gives you an invisible Sidewinder barrel which shoots a (straight-forward moving) snake when you alt-fire.
// 7 Noclip Disables all entity collisions with your main body, does not do anything to your projectiles.
// 8 : Thorns : Makes you immune against enemy knockback and increases body damage by 300%.
// 9 : Jalopy Reload : Makes your guns shoot 8 times as fast as basic.
// 10 : Stronger : Sets all your stats to 15.
// 11 : Boulder : Makes you ten times as immovable.
// 12 : Hedgehog : Increases your max speed and acceleration by 400%.
// 13 : Focus : Decreases spread by 50% and all your guns shoot forward.
// 14 : Machine Gun : Applies g.mach to your guns.
// 15 : Damage Sponge : Increases your Max Health and Shield by 400%.
// 16 : Ant : Makes you 75% smaller.
// 17 : Carrot : Increase your FOV by 100%
// 18 : Magnetic Projectiles : Shot bullets, traps, and drones get pulled to the nearest enemy.
// 19 : Guided Projectiles : Makes your projectiles go to your mouse.
// 20 Fuse Cap You explode on death, which can damage nearby enemies.
// Neutral Effects
// 21 : On The Move : Forces your velocity to be your top speed.
// 22 : Mom-doer : Makes your bullets spawn 500 units further away.
// 23 : Increased Recoil : Multiplies your recoil received by 2.
// 24 : No Effect : Does NOTHING..
// 25 : Drugged : Multiplies your FOV by a value that oscillates between 0.5 and 1.5. Goes from one number to the other in 2 seconds in a Sine-easing curve.
// 26 : Turtle : Makes you 5x as healthy, but also makes your max speed 80% slower.
// 27 : Gamer Neck : Applies `CONTROLLER: [['zoom', { distance: 750, dynamic: true, permanent: true }]]` for 20 seconds.
// 38 : Random Barrel Positions : Randomises each of your barrels' angle and direction.
// 29 ? Random Tank ? Sets you to a random tank available from c.SPAWN_CLASS
// 20 ? Random Projectiles ? Gives you the projectiles of some other tank.
// 31 : Orb : Places an lvl45-tank-sized orb in front of you that absorbs any entity it touches, follows your tank's rotation.
// 32 : Pumpkin : Gives you the pumpkin curse: invis, orange, 0.0001 hp
// 33 : Downgrade to Basic : Sets you to c.SPAWN_CLASS
// 34 : Spy : Disguises you as someone on the enemy team
// 35 : Paper-thin : Makes you 2x as fast, but 4x easier to kill
// 36 Just walking past Makes you practically immune to damage, but stops your guns from firing
// 37 Spawn Rock Spawns a rock that dies after a minute at where you alt fire
// 38 Teleport forward Teleports you in the direction you're looking 1000 units
// 39 Heavy projectiles Multiplies your guns' bullet health, reload and recoil by 2 and multiplies bullet size by 1.25 and multiplies bullet speed by 0.8
// 40 Autobalance Makes you join another team
// 41 Auto-Player Makes io_nearestDifferentMaster take control over where your tank aims
// Negative Effects
// 42 : Growth Annihilator : Stronger LVL 250 Growth Annihilator, which shoots you once from 10-20 players of distance away and then despawns.
// 43 : No Health : Sets your shield to 0 and sets your health to 1% of max health.
// 44 : Slippery : Decreases your acceleration by 66% and increases your max speed by 50%.
// 45 : Vulnerable : Decreases your Max Health and Shield by 80%.
// 46 : Black Hole : Movable entities near you get pulled towards you.
// 47 : Old Age : Kills you in 20 seconds.
// 48 : Balloon : Makes you 300% larger.
// 49 : Blind : Decreases your fov by 80%.
// 50 : Frozen Camera : Applies `CONTROLLER: [['zoom', { distance: 0, permanent: true }]]` for 20 seconds.
// 51 : Statue : Forces you to stand completely still for 10 seconds. Would be called Turret depending or not if you can fire your guns while standing still.
// 52 : Blast : Blasts away nearby entities once, with a lot of force.
// 53 : Impotence : Same as WRATH, but it's Machine Gunner bullets instead.
// 54 : Railgun Reload : Makes your guns shoot 1/8th as fast as basic.
// 55 : Alcoholic : Rotates your velocity vector in a random clockwise direction for a random amount of time up to 2 seconds.
// 56 : Forced spin : Every 2 seconds, makes you spin at random speeds and rotations for 1.5 seconds, also prevents you from shooting and moving.
// 57 : Earthquake : Every game tick, changes your position by a maximum value of 5 in a random direction..
// 58 : Backpetal : Inverts movement directions.
// 59 ? Bounty ? Puts you on the minimap for everyone, spawns a large pulse around you.
// 60 ? Introverted Projectiles ? Projectiles get slightly repelled by enemy entities.
// 61 Time Bomb Puts a bomb on your head which explodes after 10 seconds, killing you and nearby enemies. Was replaced with Old Age.
// 62 Rammer Class Your bullet damage has been multiplied by 0.1
let { combineStats } = require('../facilitators.js'),
{ gunCalcNames } = require('../constants.js'),
g = require('../gunvals.js'),
tanksInTree = [],
projectilesInTree = [],
effects = [
// Effect Blueprint
/*
{
name: '', // Name of it
splash: '', // Splash msg of it
duration: 0, // how many seconds it lasts
noEndNotification: false, // if it should display an "about to end" notification. duration doesnt need to be defined if this is true
run: body => {}, // function to run when the effect gets rolled
statusEffect: new StatusEffect(0 * 30), // the StatusEffect to apply which also includes a "run on every tick" function
},
*/
/// Positive Effects
{
name: 'WRATH',
splash: "You are all about to have a really bad day...",
duration: 15,
run: body => {
let anniGunWidth = 19.5 / 10,
anniStats = combineStats([g.basic, g.pounder, g.destroyer, g.annihilator]),
remember = {};
delete anniStats.reload;
delete anniStats.recoil;
delete anniStats.shudder;
delete anniStats.speed;
delete anniStats.maxSpeed;
delete anniStats.range;
delete anniStats.spray;
//leftover: size, health, damage, pen, density, resist
for (let gun of body.guns) {
if (gun.settings) {
remember[gun.id] = { size: gun.settings.size };
gun.settings.size = anniStats.size * anniGunWidth / gun.width;
for (let key in anniStats) {
if (key !== "size") {
remember[gun.id][key] = gun.settings[key];
gun.settings[key] = anniStats[key];
}
}
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
for (let key in remember[gun.id]) {
gun.settings[key] = remember[gun.id][key];
}
}
}
}, 15 * 30);
}
},
{
name: 'Vanish',
splash: 'You are now completely invisible, now do some trolling!',
duration: 15,
stopChatMessage: true,
run: body => {
let alphaRange = body.alphaRange,
invisible = body.invisible,
ignoredByAi = body.ignoredByAi;
body.alphaRange = [0, 0];
body.invisible = [0, 0];
body.ignoredByAi = true;
setSyncedTimeout(() => {
body.alphaRange = alphaRange;
body.invisible = invisible;
body.ignoredByAi = ignoredByAi;
}, 15 * 30);
}
},
{
name: 'Tornado',
splash: 'The Storm of Hell.',
duration: 15,
run: body => {
let gun = new Gun(body, {
POSITION: { LENGTH: 1, WIDTH: 7.5 },
PROPERTIES: {
SHOOT_SETTINGS: combineStats([g.swarm, { spray: 9999, speed: 3, maxSpeed: 3, reload: 0.02, recoil: 0}]),
STAT_CALCULATOR: gunCalcNames.swarm,
LABEL: "Effect Roller",
TYPE: "autoswarm",
AUTOFIRE: true
},
});
body.guns.push(gun);
setSyncedTimeout(() => body.guns = body.guns.filter(g => g !== gun), 15 * 30);
}
},
//{
// name: 'Exploding Projectiles',
// splash: 'Who turned on "4th Of July"?',
// duration: 20,
// run: body => {
// //this is completely batshit insane
// let h = ({ gun, child }) => {
// child.on('dead', () => {
// let count = Math.ceil(Math.random() * 32),
// angleStart = Math.random() * Math.PI * 2;
//
// for (let i = 0; i < count; i++) {
// let angle = angleStart + (i * (Math.PI * 2)) / count,
// o = new Entity(child);
// o.define({ BODY: { DAMAGE: child.DAMAGE, HEALTH: child.HEALTH} }, false);
// o.velocity.x = 20 * Math.sin(angle);
// o.velocity.y = 20 * Math.cos(angle);
// o.facing = angle;
// o.team = child.team;
// o.size = child.size / 2;
// o.life();
// setSyncedTimeout(() => o.kill(), 5);
// }
// });
// };
// body.onDef.push({ event: "fire", handler: h }, { event: "altFire", handler: h });
// setSyncedTimeout(() => {
// body.onDef = body.onDef.filter(({ handler }) => handler !== h);
// }, 20 * 30);
// }
//},
{
name: 'Spawn Sanctuary',
splash: 'Press Alt-Fire to summon a Sanctuary',
noEndNotification: true,
run: body => {
//this is completely batshit insane
let gun = new Gun(body, {
POSITION: [1, 1, 1, 0, 0, 0, 0],
PROPERTIES: {
SHOOT_SETTINGS: combineStats([g.basic, g.fake]),
TYPE: "bullet",
ALT_FIRE: true
},
}),
h = () => {
body.onDef = body.onDef.filter(({ handler }) => handler !== h);
body.guns = body.guns.filter(g => g !== gun);
let o = new Entity({
x: body.x + body.control.target.x,
y: body.y + body.control.target.y
}, body);
o.define('sanctuaryTier1');
o.define({ LEVEL: 30, SIZE: 20 });
o.health.max /= 2;
o.shield.max /= 2;
o.team = body.team;
o.color = body.color;
};
body.onDef.push({ event: "altFire", handler: h });
body.guns.push(gun);
}
},
{
name: 'Spawn Dominator',
splash: 'Press Alt-Fire to summon a Dominator',
noEndNotification: true,
run: body => {
//this is completely batshit insane
let gun = new Gun(body, {
POSITION: [1, 1, 1, 0, 0, 0, 0],
PROPERTIES: {
SHOOT_SETTINGS: combineStats([g.basic, g.fake]),
TYPE: "bullet",
ALT_FIRE: true
},
}),
h = () => {
body.onDef = body.onDef.filter(({ handler }) => handler !== h);
body.guns = body.guns.filter(g => g !== gun);
let o = new Entity({
x: body.x + body.control.target.x,
y: body.y + body.control.target.y
}, body);
o.define('gunnerDominator');
o.define({ LEVEL: 30, SIZE: 20 });
o.health.max /= 2;
o.shield.max /= 2;
o.team = body.team;
o.color = body.color;
};
body.onDef.push({ event: "altFire", handler: h });
body.guns.push(gun);
}
},
{
name: 'Sidewinder',
splash: 'Press Alt-Fire to fire a Sidewinder Snake.',
duration: 15,
run: body => {
let gun = new Gun(body, {
POSITION: [15, 12, -1.1, 0, 0, 0, 0],
PROPERTIES: {
SHOOT_SETTINGS: combineStats([g.basic, g.sniper, g.hunter, g.sidewinder]),
STAT_CALCULATOR: gunCalcNames.sustained,
TYPE: "snake",
ALT_FIRE: true
},
});
body.guns.push(gun);
setSyncedTimeout(() => body.guns = body.guns.filter(g => g !== gun), 15 * 30);
}
},
{
name: 'Noclip',
splash: '',
duration: 15,
run: body => {
body.removeFromGrid();
setSyncedTimeout(() => body.addToGrid(), 15 * 30);
}
},
{
name: 'Thorns',
splash: "Don't touch me!",
duration: 20,
statusEffect: new StatusEffect(20 * 30, { damage: 4, pushability: 0 }),
},
{
name: 'Jalopy Reload',
splash: 'Flooding the screen with bullets!',
duration: 15,
run: body => {
let newReload = combineStats([g.basic]).reload / 8,
remember = {};
for (let gun of body.guns) {
if (gun.settings) {
remember[gun.id] = gun.settings.reload;
gun.settings.reload = newReload;
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
gun.settings.reload = remember[gun.id];
}
}
}, 15 * 30);
},
},
{
name: 'Stronger',
splash: 'I feel powerful...',
duration: 20,
run: body => {
let colorOld = body.color,
pointsOld = body.skill.points,
rawOld = body.skill.raw.map(x=>x),
capsOld = body.skill.caps.map(x=>x),
stronk = Array(10).fill(15);
body.skill.setCaps(stronk);
body.skill.set(stronk);
body.define({ COLOR: 36 });
setSyncedTimeout(()=>{
body.skill.setCaps(capsOld);
body.skill.set(rawOld);
body.color = colorOld;
body.skill.points = pointsOld;
}, 20 * 30);
},
statusEffect: new StatusEffect(20 * 30, { fov: 2 }, body => {
let e = new Entity(body),
ang = Math.random() * Math.PI * 2;
e.define('genericEntity');
e.velocity.x = 5 * Math.sin(ang);
e.velocity.y = 5 * Math.cos(ang);
e.SIZE = body.size;
e.team = body.team;
e.color = getTeamColor(body.team);
e.alpha = 0.5;
setSyncedTimeout(() => e.kill(), 3);
})
},
{
name: 'Boulder',
splash: 'I am become wall',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { pushability: 0.1, recoilReceived: 0.1 })
},
{
name: 'Hedgehog',
splash: 'Gotta go fast!',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { acceleration: 5, topSpeed: 5 })
},
{
name: 'Focus',
splash: 'I CAN AIM.',
duration: 20,
run: body => {
let remember = {};
for (let gun of body.guns) {
remember[gun.id] = {
angle: gun.angle,
direction: gun.direction
};
gun.angle = 0;
gun.direction = 0;
if (gun.settings) {
gun.settings.spray *= 0.5;
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
gun.angle = remember[gun.id].angle;
gun.direction = remember[gun.id].direction;
}
if (gun.settings) {
gun.settings.spray /= 0.5;
}
}
}, 20 * 30);
}
},
{
name: 'Machine Gun',
splash: 'I CANNOT AIM!',
duration: 20,
run: body => {
for (let gun of body.guns) {
if (gun.settings) {
for (let stat in g.mach) {
gun.settings[stat] *= g.machineGun[stat];
}
gun.trueRecoil *= g.machineGun.recoil;
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (gun.settings) {
for (let stat in g.mach) {
gun.settings[stat] /= g.machineGun[stat];
}
gun.trueRecoil /= g.machineGun.recoil;
}
}
}, 20 * 30);
}
},
{
name: 'Damage Sponge',
splash: 'Hehe, that bullet tickles!',
duration: 10,
statusEffect: new StatusEffect(10 * 30, { health: 5, shield: 5 })
},
{
name: 'Ant',
splash: 'Time to be annoying >:3',
duration: 15,
statusEffect: new StatusEffect(15 * 30, { size: 0.25, fov: 2 })
},
{
name: 'Carrot',
splash: 'Ranger²',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { fov: 2 })
},
{
name: 'Magnetic Projectiles',
splash: 'This game is so easy.',
duration: 20,
statusEffect: new StatusEffect(20 * 30, undefined, body => {
let hotPeople = [],
hornyPeople = [];
for (let i = 0; i < entities.length; i++) {
if (entities[i].team != body.team && entities[i].team != TEAM_ROOM) {
hotPeople.push(entities[i]);
} else if (entities[i].id != body.id && entities[i].master.master.id == body.id) {
hornyPeople.push(entities[i]);
}
}
for (let i = 0; i < hornyPeople.length; i++) {
let projectile = hornyPeople[i];
for (let j = 0; j < hotPeople.length; j++) {
let entity = hotPeople[j],
diffX = projectile.x - entity.x,
diffY = projectile.y - entity.y,
dist2 = diffX ** 2 + diffY ** 2;
if (dist2 < 250 ** 2) {
let force = 10 * entity.size / Math.max(1500, dist2);
projectile.velocity.x -= diffX * force;
projectile.velocity.y -= diffY * force;
}
}
if (projectile.velocity.length > projectile.topSpeed) {
let factor = Math.sqrt(projectile.topSpeed / projectile.velocity.length);
projectile.velocity.x *= factor;
projectile.velocity.y *= factor;
}
}
})
},
{
name: 'Guided Projectiles',
splash: 'Beware of the Overlord Main Pipeline!',
duration: 20,
statusEffect: new StatusEffect(20 * 30, undefined, body => {
let goal = {
x: body.x + body.control.target.x,
y: body.y + body.control.target.y
};
for (let i = 0; i < entities.length; i++) {
let projectile = entities[i];
if (entities[i].id != body.id && entities[i].master.master.id == body.id) {
let length = projectile.velocity.length,
angle = projectile.facing + util.loopSmooth(projectile.facing, Math.atan2(goal.y - projectile.y, goal.x - projectile.x), 8 / c.runSpeed);
projectile.facing = angle;
projectile.velocity.x = length * Math.cos(angle);
projectile.velocity.y = length * Math.sin(angle);
}
}
})
},
/// Neutral Effects
{
name: 'On The Move',
splash: 'Doing the Cardio for the whole team!',
duration: 20, // how many seconds it lasts
statusEffect: new StatusEffect(20 * 30, undefined, body => {
let factor = (body.topSpeed ** 2) / (body.velocity.x ** 2 + body.velocity.y ** 2);
body.velocity.x *= factor;
body.velocity.y *= factor;
}),
},
{
name: 'Mom-doer',
splash: '',
duration: 20,
run: body => {
let remember = {};
for (let gun of body.guns) {
remember[gun.id] = true;
gun.length += 20;
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
gun.length -= 20;
}
}
}, 20 * 30);
}
},
{
name: 'Increased Recoil',
splash: '',
duration: 15,
run: body => {
let remember = body.RECOIL_MULTIPLIER;
body.define({ BODY: { RECOIL_MULTIPLIER: remember * 2} });
setSyncedTimeout(() => body.define({ BODY: { remember } }), 20 * 30);
}
},
{
name: 'No Effect',
splash: 'Get Trolled',
noEndNotification: true
},
{
name: 'Drugged',
splash: "Ohhh... that's the stuff!",
duration: 20,
statusEffect: new StatusEffect(20 * 30, {}, (body, effect, durationLeftover) => {
effect.fov = 1.5 + Math.sin(Math.PI * 15 * durationLeftover / effect.duration);
return true;
})
},
{
name: 'Turtle',
splash: 'Are you rammer or not?',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { acceleration: 0.2, topSpeed: 0.2, health: 5, shield: 5 })
},
{
name: 'Gamer Neck',
splash: 'Maybe you should stand up more..',
duration: 20,
run: body => {
let controller = new ioTypes.zoom(body, { distance: 500, dynamic: true, permanent: true });
body.addController(controller);
setSyncedTimeout(() => {
body.controllers = body.controllers.filter(c => c !== controller);
body.cameraOverrideX = null;
body.cameraOverrideY = null;
}, 20 * 30);
}
},
{
name: 'Random Barrel Positions',
splash: 'In which direction do I aim?',
duration: 20,
run: body => {
let remember = {};
for (let gun of body.guns) {
remember[gun.id] = gun.angle;
gun.angle = Math.PI * 2 * Math.random();
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id] != null) {
gun.angle = remember[gun.id];
}
}
}, 20 * 30);
}
},
{
name: 'Random Tank',
splash: "I'm finally switching off of my main and trying something new!",
duration: 20,
run: body => {
let oldDef = body.def;
for (let gun of body.guns) {
body.define(Array.isArray(Config.SPAWN_CLASS) ?
Config.SPAWN_CLASS.map(x => tanksInTree[Math.floor(Math.random() * tanksInTree.length)])
:
tanksInTree[Math.floor(Math.random() * tanksInTree.length)]
);
}
setSyncedTimeout(() => body.define(oldDef), 20 * 30);
}
},
{
name: 'Random Projectiles',
splash: 'I have no idea what I am shooting..',
duration: 20,
run: body => {
let remember = {},
projMap;
for (let gun of body.guns) {
if (gun.settings) {
remember[gun.id] = { size: gun.settings.size };
gun.settings.size = anniStats.size * anniGunWidth / gun.width;
for (let key in anniStats) {
if (key !== "size") {
remember[gun.id][key] = gun.settings[key];
gun.settings[key] = anniStats[key];
}
}
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
for (let key in remember[gun.id]) {
gun.settings[key] = remember[gun.id][key];
}
}
}
}, 20 * 30);
}
},
{
name: 'Orb',
splash: 'Born to mind empty, forced to ponder...',
duration: 20,
statusEffect: new StatusEffect(20 * 30, undefined, body => {
let e = new Entity({
x: body.x + Math.cos(body.facing) * body.size * 4,
y: body.y + Math.sin(body.facing) * body.size * 4
});
e.define('plugin_effectRoller_orb');
e.velocity.x = body.velocity.x;
e.velocity.y = body.velocity.y;
e.team = -9472;
setSyncedTimeout(() => e.kill(), 3);
})
},
{
name: 'Pumpkin',
splash: "You have become cursed, don't get hit!",
duration: 30,
run: body => {
let effect = new StatusEffect(30 * 30, { health: 0.001 }),
oldColor = body.color,
oldAlphaRange = body.alphaRange;
body.define({ ALPHA: [0.1, 0.1], COLOR: 'orange' });
body.addStatusEffect(effect);
body.on('expiredStatusEffect', expired => {
if (expired === effect) {
body.color = oldColor;
body.alphaRange = oldAlphaRange;
}
});
}
},
{
name: 'Downgrade To Basic',
splash: 'Play something else for once.',
noEndNotification: true,
run: body => body.define(Config.SPAWN_CLASS)
},
{
name: 'Spy',
splash: "You are disguised as an enemy. Kill them when they aren't suspecting a thing.",
noEndNotification: true,
run: body => {
let toDisguiseAs = ran.choose(sockets.players).body;
body.name = toDisguiseAs.name;
body.color = toDisguiseAs.color;
body.define(toDisguiseAs.defs.length == 1 ? toDisguiseAs.defs[0] : toDisguiseAs.defs);
}
},
{
name: 'Paper-thin',
splash: 'Fun fact: Being faster makes it easier to dodge.',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { acceleration: 2, topSpeed: 2, health: 0.25 })
},
/// Negative Effects
{
name: 'Growth Annihilator',
splash: 'WATCH OUT!!',
noEndNotification: true,
run: body => {
let angle = Math.random() * 2 * Math.PI,
anni = new Entity({
x: body.x - Math.sin(angle) * 375,
y: body.y - Math.cos(angle) * 375
});
anni.define('plugin_effectRoller_strongerGrowthAnnihilator');
anni.define({ CONTROLLERS: [["plugin_effectRoller_lookAtEntity", { entity: body }]] });
anni.facing = angle;
setSyncedTimeout(() => anni.kill(), 3 * 30);
}
},
{
name: 'No Health',
splash: 'Oh..',
noEndNotification: true,
run: body => {
body.shield.amount = 0.001;
body.health.amount = body.health.max / 100;
}
},
{
name: 'Slippery',
splash: 'Why is the floor suddenly out of ice?',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { acceleration: 1 / 3, topSpeed: 1.5 })
},
{
name: 'Vulnerable',
splash: "Don't even get breathed on!",
duration: 10,
statusEffect: new StatusEffect(10 * 30, { health: 0.2, shield: 0.2 })
},
{
name: 'Black Hole',
splash: 'GROUP HUG!!!',
duration: 15,
statusEffect: new StatusEffect(15 * 30, undefined, body => {
for (let i = 0; i < entities.length; i++) {
let entity = entities[i];
if (entity.pushability > 0 && entity.master.master.id != body.id) {
let diffX = entity.x - body.x,
diffY = entity.y - body.y,
dist2 = diffX ** 2 + diffY ** 2;
if (dist2 < 750 ** 2) {
let force = 1000 * entity.pushability / Math.max(1000, dist2);
entity.velocity.x -= diffX * force;
entity.velocity.y -= diffY * force;
}
}
}
})
},
{
name: 'Old Age',
splash: 'Oh no where is my life support???',
noEndNotification: true,
run: (body, socket) => setSyncedTimeout(()=> body.kill(), 20 * 30),
statusEffect: new StatusEffect(20 * 30, { acceleration: 0.8, topSpeed: 0.8 })
},
{
name: 'Balloon',
splash: "I shouldn't have ordered fast food before this..",
duration: 15,
statusEffect: new StatusEffect(15 * 30, { size: 2, fov: Math.SQRT1_2 })
},
{
name: 'Blind',
splash: "Short sightedness, a common eye condition.",
duration: 10,
statusEffect: new StatusEffect(10 * 30, { fov: 0.2 })
},
{
name: 'Frozen Camera',
splash: 'This area looks pretty nice.',
duration: 20,
run: body => {
let controller = new ioTypes.zoom(body, { distance: 0, permanent: true });
body.addController(controller);
setSyncedTimeout(() => {
body.controllers = body.controllers.filter(c => c !== controller);
body.cameraOverrideX = null;
body.cameraOverrideY = null;
}, 20 * 30);
}
},
{
name: 'Statue',
splash: 'Arras, Become Turret',
duration: 10,
statusEffect: new StatusEffect(10 * 30, { acceleration: 0, topSpeed: 0 })
},
{
name: 'Blast',
splash: 'Look how many close friends I have!',
noEndNotification: true,
run: body => {
for (let i = 0; i < entities.length; i++) {
let entity = entities[i];
if (entity.pushability) {
let diffX = entity.x - body.x,
diffY = entity.y - body.y,
dist2 = diffX ** 2 + diffY ** 2;
if (dist2 < 750 ** 2) {
let force = 50000 * entity.pushability / Math.max(1000, dist2);
entity.velocity.x += diffX * force;
entity.velocity.y += diffY * force;
}
}
}
}
},
{
name: 'Impotence',
splash: "Your gun is weak! Haha!",
duration: 15,
run: body => {
let mgGunWidth = 3 / 10,
mgStats = combineStats([g.basic, g.twin, g.gunner, g.machineGunner]),
remember = {};
delete mgStats.reload;
delete mgStats.recoil;
delete mgStats.shudder;
delete mgStats.speed;
delete mgStats.maxSpeed;
delete mgStats.range;
delete mgStats.spray;
//leftover: size, health, damage, pen, density, resist
for (let gun of body.guns) {
if (gun.settings) {
remember[gun.id] = { size: gun.settings.size };
gun.settings.size = mgStats.size * mgGunWidth / gun.width;
for (let key in mgStats) {
if (key !== "size") {
remember[gun.id][key] = gun.settings[key];
gun.settings[key] = mgStats[key];
}
}
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
for (let key in remember[gun.id]) {
gun.settings[key] = remember[gun.id][key];
}
}
}
}, 15 * 30);
}
},
{
name: 'Railgun Reload',
splash: 'Where did my reload speed go?',
duration: 15,
run: body => {
let newReload = combineStats([g.basic]).reload * 8,
remember = {};
for (let gun of body.guns) {
if (gun.settings) {
remember[gun.id] = gun.settings.reload;
gun.settings.reload = newReload;
}
}
setSyncedTimeout(() => {
for (let gun of body.guns) {
if (remember[gun.id]) {
gun.settings.reload = remember[gun.id];
}
}
}, 15 * 30);
},
},
{
name: 'Alcoholic',
splash: "I can't walk straight...",
duration: 20,
statusEffect: new StatusEffect(20 * 30, undefined, body => {
let angle = body.velocity.direction + Math.sin(body.id + Date.now() / 750),
speed = body.velocity.length / 30;
body.velocity.x += Math.cos(angle) * speed;
body.velocity.y += Math.sin(angle) * speed;
})
},
{
name: 'Forced spin',
splash: "Can't.. stop.. teaming...",
duration: 20,
run: body => {
body.controllers.unshift(new io_plugin_effectRoller_forcedSpin(body));
setSyncedTimeout(() => body.controllers = body.controllers.filter(x => !(x instanceof io_plugin_effectRoller_forcedSpin)), 20 * 30);
}
},
{
name: 'Earthquake',
splash: 'Welcome to Chile.',
duration: 15,
statusEffect: new StatusEffect(15 * 30, undefined, body => {
let angle = Math.PI * 2 * Math.random(),
x = Math.cos(angle) * Math.random() * 5,
y = Math.sin(angle) * Math.random() * 5;
body.x += x;
body.y += y;
body.velocity.x += x;
body.velocity.y += y;
})
},
{
name: 'Backpetal',
splash: 'Muscle memory be damned.',
duration: 20,
statusEffect: new StatusEffect(20 * 30, { acceleration: -1 })
},
{
name: 'Bounty',
splash: "EVERYOOOONE! I'M RIGHT HEEERE!!",
duration: 20,
run: body => {
let mark = new Entity(body, body),
continuePulsing = true;
mark.define({ PARENT: "plugin_effectRoller_bountyMark", SIZE: body.SIZE });
setSyncedTimeout(() => { mark.kill(); continuePulsing = false; }, 20 * 30);
}
},
{
name: 'Introverted Projectiles',
splash: 'Asocial Ammunition.',