127 lines
No EOL
2.9 KiB
C
127 lines
No EOL
2.9 KiB
C
// anox.c
|
|
|
|
/*QUAKED trigger_console (0 0.5 0.8) ?
|
|
Trigger console
|
|
Send a command to the console when triggered
|
|
KEYS
|
|
command - the command that is send to the console
|
|
*/
|
|
|
|
/*QUAKED monster_armor01 (0.5 0.25 0) (-4 -4 0) (4 4 64)
|
|
Tree Test
|
|
*/
|
|
|
|
/*QUAKED effect_sprite (0.25 .5 0) (-8 -8 -8) (8 8 8)
|
|
Sprite
|
|
KEYS
|
|
model - Path where targa file is located - textures/swiss2/'file name'
|
|
glow - Two numbers
|
|
first, how long it takes to change size in seconds - 1
|
|
second, how small to get in a percentage - 0.2
|
|
size - Size of sprite in pixels - must be power of two - 100 100
|
|
animate_time - On animate sprites how long it takes to do an animation cycle in seconds - 2
|
|
expand - Three numbers
|
|
first, how long it takes to change size in seconds - 1
|
|
second, width to expand to in pixels - 200
|
|
third , height to expand to in pixels - 200
|
|
flare - set to 1 allows brushes to block view of sprite
|
|
set to 0 can be seen thru brushes.
|
|
*/
|
|
|
|
/*QUAKED monster_zordo (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Zordo
|
|
*/
|
|
|
|
/*QUAKED monster_ship (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
*/
|
|
|
|
/*QUAKED monster_demfighter (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
*/
|
|
|
|
/*QUAKED monster_stilleto (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Stilleto Anyway
|
|
*/
|
|
|
|
/*QUAKED monster_boots (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Boots
|
|
*/
|
|
|
|
/*QUAKED monster_paco (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
El Puno
|
|
*/
|
|
|
|
/*QUAKED monster_largoth (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Largoth
|
|
*/
|
|
|
|
/*QUAKED monster_detta (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Detta
|
|
*/
|
|
|
|
/*QUAKED monster_dettag1 (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Detta Goon - Tall
|
|
*/
|
|
|
|
/*QUAKED monster_dettag2 (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Detta Goon - Small
|
|
*/
|
|
|
|
/*QUAKED monster_agoon (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Alley Goon
|
|
*/
|
|
|
|
/*QUAKED monster_gorian (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Mad Gorian
|
|
*/
|
|
|
|
/*QUAKED monster_noxgad (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Anachronox Grumble Guard
|
|
*/
|
|
|
|
/*QUAKED monster_robotak (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Robottack
|
|
*/
|
|
|
|
/*QUAKED monster_crawler (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Cave Crawler
|
|
*/
|
|
|
|
/*QUAKED monster_noxalienm (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Anachronox Alien - Male
|
|
*/
|
|
|
|
/*QUAKED monster_whackjack (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Whackmaster Jack
|
|
*/
|
|
|
|
/*QUAKED monster_rbtarget (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Robotarget
|
|
*/
|
|
|
|
/*QUAKED monster_rbweasel (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Roboweasel
|
|
*/
|
|
|
|
/*QUAKED monster_rbhamster (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Robohamster
|
|
*/
|
|
|
|
/*QUAKED monster_rbrabbit (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Roborabbit
|
|
*/
|
|
|
|
/*QUAKED monster_rbsheep (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Robosheep
|
|
*/
|
|
|
|
/*QUAKED monster_rowdy (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Rowdy
|
|
*/
|
|
|
|
/*QUAKED monster_noxguy (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Anachronox Guy
|
|
*/
|
|
|
|
/*QUAKED monster_noxgal (0.5 0.25 0) (-16 -16 0) (16 16 64)
|
|
Anachronox Gal
|
|
*/ |