feat: add plasma gun weapon implementation and new pause menu system with loadout management
This commit is contained in:
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user