Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Robosturm committed Dec 7, 2023
1 parent 4ef325f commit 4876b46
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/scripts/weapons/weapon_frigate_naval_gun.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ var Constructor = function()
{
return qsTr("Naval gun");
};
this.getEnviromentDamage = function(enviromentId)
{
return 20;
};
this.damageTable = [// ships
["GUNBOAT", 75],
["CANNONBOAT", 75],
Expand Down
4 changes: 4 additions & 0 deletions resources/scripts/weapons/weapon_gunboat_naval_gun.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ var Constructor = function()
{
return qsTr("Naval gun");
};
this.getEnviromentDamage = function(enviromentId)
{
return 10;
};
this.damageTable = [["GUNBOAT", 55],
["CANNONBOAT", 55],
["BLACK_BOAT", 55],
Expand Down

0 comments on commit 4876b46

Please sign in to comment.