Skip to content

Commit

Permalink
cope with game update
Browse files Browse the repository at this point in the history
  • Loading branch information
Astrid committed Feb 9, 2024
1 parent 00b0454 commit de6b425
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Binary file added public/normandy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/powerplant.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/villers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ export const maps: Map[] = [
name: 'Dustbowl',
size: 3438,
},
{
image: '/normandy.png',
name: 'Normandy Bocage',
size: 5976,
},
{
image: '/powerplant.png',
name: 'Powerplant',
Expand All @@ -38,6 +43,11 @@ export const maps: Map[] = [
name: 'Sokolokva',
size: 5004,
},
{
image: '/villers.png',
name: 'Villers-Sommeil',
size: 2997,
},
];

export interface Gun {
Expand All @@ -62,6 +72,10 @@ export const guns: Record<string, Gun> = {
mortar: {
name: 'Mortar',
},

sturmtiger: {
name: 'Sturmtiger',
},
};

export interface Projectile {
Expand Down Expand Up @@ -128,4 +142,11 @@ export const projectiles: Projectile[] = [
velocity: 225,
gun: guns.mortar,
},

// Sturmtiger
{
name: '38cm R Spgr.4581',
velocity: 150,
gun: guns.sturmtiger,
},
];

0 comments on commit de6b425

Please sign in to comment.