Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/shadow-shmup. Fun and casual top-down, roguelike shoot 'em up browsergame with shadow elements and colorful neon effects
flo-bit.dev/shadow-shmup/
···99 * ball that flies in a circle around player
1010 */
1111export class BallWeapon extends Weapon {
1212- distance: number = 200;
1313- speed: number = 0.001;
1212+ distance: number = 100;
1313+ speed: number = 0.002;
1414 angle: number = 0;
15151616 constructor(game: Game, color: number) {
+3-3
src/weapons/knife.ts
···99 * triangle that spins and goes to left and right of player
1010 */
1111export class Knife extends Weapon {
1212- speed: number = 0.006;
1313- distance: number = 300;
1212+ speed: number = 0.003;
1313+ distance: number = 150;
1414 current: number = 0;
15151616- angle: number = 0;
1616+ angle: number = 1;
17171818 direction: 'left' | 'right' | 'both' = 'both';
1919
+1-1
src/weapons/weapon.ts
···10101111 size: number = 10;
12121313- damage: number = 20;
1313+ damage: number = 10;
14141515 color: number;
1616