Files
2026-05-20 12:29:30 -07:00

155 lines
3.6 KiB
Modula-2

/***********************************************************************
ammo
***********************************************************************/
// Define the types of ammo that are used in the game.
// This entityDef is required by the game code.
entityDef ammo_types {
"ammo_none" "0"
"ammo_slugs" "1"
"ammo_shells" "2"
"ammo_bullets" "3"
"ammo_rockets" "4"
"ammo_cells" "5"
"ammo_grenades" "6"
"ammo_flares" "7"
"ammo_souls" "8"
}
entityDef ammo_bullets_small {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/weapons/ammobox1/ammobox1.lwo"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some bullets"
"inv_ammo_bullets" "24"
}
entityDef ammo_bullets_large {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/weapons/ammobox1/ammobox1.lwo"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some bullets"
"inv_ammo_bullets" "36"
}
entityDef ammo_shells_small {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/shells_ammo/shells_small.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some shells"
"inv_ammo_shells" "10"
}
entityDef ammo_shells_large {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/shells_ammo/shells_large.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some shells"
"inv_ammo_shells" "20"
}
entityDef ammo_rockets_small {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/rocket_ammo/rocket_small.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some rockets"
"inv_ammo_rockets" "5"
}
entityDef ammo_rockets_large {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/rocket_ammo/rocket_big.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some rockets"
"inv_ammo_rockets" "10"
}
entityDef ammo_cells_small {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/cell_ammo/cells_small.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some cells"
"inv_ammo_cells" "10"
}
entityDef ammo_cells_large {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/cell_ammo/cells_large.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some cells"
"inv_ammo_cells" "25"
}
entityDef ammo_slugs_small {
"editor_color" ".3 .3 1"
"editor_mins" "-16 -16 0"
"editor_maxs" "16 16 32"
"editor_usage" ""
"spawnclass" "idItem"
"model" "models/items/slugs_ammo/slugs_small.ase"
"action" "sound/electronics/1shot_beep_02.wav"
"size" "32 32 32"
"inv_message" "Picked up some slugs"
"inv_ammo_slugs" "10"
}