Xen decor: Literally just some static xen decor. Doesn't do anything yet.
This commit is contained in:
parent
a8d2a64ef9
commit
8d4c6c086e
7 changed files with 160 additions and 0 deletions
|
@ -57,6 +57,11 @@ monster_scientist.cpp
|
|||
../valve/item_battery.cpp
|
||||
../valve/item_weaponbox.cpp
|
||||
../valve/world_items.cpp
|
||||
../valve/xen_spore_small.cpp
|
||||
../valve/xen_spore_medium.cpp
|
||||
../valve/xen_spore_large.cpp
|
||||
../valve/xen_hair.cpp
|
||||
../valve/xen_plantlight.cpp
|
||||
../valve/ammo.cpp
|
||||
../../shared/scihunt/weapons.c
|
||||
../../shared/valve/weapon_common.c
|
||||
|
|
|
@ -53,6 +53,11 @@ item_healthkit.cpp
|
|||
item_battery.cpp
|
||||
item_weaponbox.cpp
|
||||
world_items.cpp
|
||||
xen_spore_small.cpp
|
||||
xen_spore_medium.cpp
|
||||
xen_spore_large.cpp
|
||||
xen_hair.cpp
|
||||
xen_plantlight.cpp
|
||||
ammo.cpp
|
||||
../../shared/valve/weapons.c
|
||||
../../shared/valve/weapon_common.c
|
||||
|
|
30
src/server/valve/xen_hair.cpp
Normal file
30
src/server/valve/xen_hair.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2019 Marco Hladik <marco@icculus.org>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
class xen_hair:CBaseEntity
|
||||
{
|
||||
void() xen_hair;
|
||||
};
|
||||
|
||||
void xen_hair::xen_hair(void)
|
||||
{
|
||||
CBaseEntity::CBaseEntity();
|
||||
precache_model("models/hair.mdl");
|
||||
solid = SOLID_SLIDEBOX;
|
||||
movetype = MOVETYPE_WALK;
|
||||
setmodel(this, "models/hair.mdl");
|
||||
setorigin(this, origin);
|
||||
}
|
30
src/server/valve/xen_plantlight.cpp
Normal file
30
src/server/valve/xen_plantlight.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2019 Marco Hladik <marco@icculus.org>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
class xen_plantlight:CBaseEntity
|
||||
{
|
||||
void() xen_plantlight;
|
||||
};
|
||||
|
||||
void xen_plantlight::xen_plantlight(void)
|
||||
{
|
||||
CBaseEntity::CBaseEntity();
|
||||
precache_model("models/light.mdl");
|
||||
solid = SOLID_SLIDEBOX;
|
||||
movetype = MOVETYPE_WALK;
|
||||
setmodel(this, "models/light.mdl");
|
||||
setorigin(this, origin);
|
||||
}
|
30
src/server/valve/xen_spore_large.cpp
Normal file
30
src/server/valve/xen_spore_large.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2019 Marco Hladik <marco@icculus.org>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
class xen_spore_large:CBaseEntity
|
||||
{
|
||||
void() xen_spore_large;
|
||||
};
|
||||
|
||||
void xen_spore_large::xen_spore_large(void)
|
||||
{
|
||||
CBaseEntity::CBaseEntity();
|
||||
precache_model("models/fungus(large).mdl");
|
||||
solid = SOLID_SLIDEBOX;
|
||||
movetype = MOVETYPE_WALK;
|
||||
setmodel(this, "models/fungus(large).mdl");
|
||||
setorigin(this, origin);
|
||||
}
|
30
src/server/valve/xen_spore_medium.cpp
Normal file
30
src/server/valve/xen_spore_medium.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2019 Marco Hladik <marco@icculus.org>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
class xen_spore_medium:CBaseEntity
|
||||
{
|
||||
void() xen_spore_medium;
|
||||
};
|
||||
|
||||
void xen_spore_medium::xen_spore_medium(void)
|
||||
{
|
||||
CBaseEntity::CBaseEntity();
|
||||
precache_model("models/fungus.mdl");
|
||||
solid = SOLID_SLIDEBOX;
|
||||
movetype = MOVETYPE_WALK;
|
||||
setmodel(this, "models/fungus.mdl");
|
||||
setorigin(this, origin);
|
||||
}
|
30
src/server/valve/xen_spore_small.cpp
Normal file
30
src/server/valve/xen_spore_small.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2019 Marco Hladik <marco@icculus.org>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
class xen_spore_small:CBaseEntity
|
||||
{
|
||||
void() xen_spore_small;
|
||||
};
|
||||
|
||||
void xen_spore_small::xen_spore_small(void)
|
||||
{
|
||||
CBaseEntity::CBaseEntity();
|
||||
precache_model("models/fungus(small).mdl");
|
||||
solid = SOLID_SLIDEBOX;
|
||||
movetype = MOVETYPE_WALK;
|
||||
setmodel(this, "models/fungus(small).mdl");
|
||||
setorigin(this, origin);
|
||||
}
|
Loading…
Reference in a new issue