feat: add plasma gun weapon implementation and new pause menu system with loadout management

This commit is contained in:
DottsGit
2026-06-04 17:06:50 -04:00
parent 67bd5b4302
commit 1ccc66a601
37 changed files with 1070 additions and 0 deletions
+30
View File
@@ -12,6 +12,36 @@ var weapon_db = {
"name": "Double Barrel Shotgun",
"category": "primary",
"script": "res://weapons/double_barrel_shotgun.gd"
},
"ak47": {
"name": "AK-47",
"category": "primary",
"script": "res://weapons/ak47.gd"
},
"m4": {
"name": "M4",
"category": "primary",
"script": "res://weapons/m4.gd"
},
"mp7": {
"name": "MP7",
"category": "primary",
"script": "res://weapons/mp7.gd"
},
"dmr": {
"name": "DMR",
"category": "primary",
"script": "res://weapons/dmr.gd"
},
"plasma_gun": {
"name": "Plasma Gun",
"category": "primary",
"script": "res://weapons/plasma_gun.gd"
},
"nail_gun": {
"name": "Nail Gun",
"category": "primary",
"script": "res://weapons/nail_gun.gd"
}
}