Skip to content

Commit

Permalink
propane
Browse files Browse the repository at this point in the history
  • Loading branch information
Astrid committed Feb 8, 2024
1 parent f4bf29d commit f69df15
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ export const guns: Record<string, Gun> = {
mortar: {
name: 'Mortar',
},

propane: {
name: 'Propane Cannon',
},
};

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

// Propane Cannon
{
name: 'Propane',
velocity: 130,
gun: guns.propane,
},
];

0 comments on commit f69df15

Please sign in to comment.