Initial Commit
Initial Commit [v1.32PRC8]
This commit is contained in:
BIN
_content/hak/hyper_gore_prc/corpse_open.ncs
Normal file
BIN
_content/hak/hyper_gore_prc/corpse_open.ncs
Normal file
Binary file not shown.
29
_content/hak/hyper_gore_prc/corpse_open.nss
Normal file
29
_content/hak/hyper_gore_prc/corpse_open.nss
Normal file
@@ -0,0 +1,29 @@
|
||||
void main()
|
||||
{
|
||||
object oCorpse = GetLocalObject(OBJECT_SELF, "CREATURE");
|
||||
object oItem = GetFirstItemInInventory(oCorpse);
|
||||
|
||||
if (!GetLocalInt(OBJECT_SELF, "do_once")){
|
||||
while (GetIsObjectValid(oItem)){
|
||||
if (GetDroppableFlag(oItem)){
|
||||
CopyItem(oItem, OBJECT_SELF, TRUE);
|
||||
SetDroppableFlag(oItem, FALSE);
|
||||
}
|
||||
|
||||
oItem = GetNextItemInInventory(oCorpse);
|
||||
}
|
||||
|
||||
int iN;
|
||||
|
||||
for (iN = 0; iN <= 15; iN++){
|
||||
oItem = GetItemInSlot(iN, oCorpse);
|
||||
|
||||
if (GetDroppableFlag(oItem)){
|
||||
CopyItem(oItem, OBJECT_SELF, TRUE);
|
||||
SetDroppableFlag(oItem, FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
SetLocalInt(OBJECT_SELF, "do_once", TRUE);
|
||||
}
|
||||
}
|
||||
BIN
_content/hak/hyper_gore_prc/corpse_shatter.ncs
Normal file
BIN
_content/hak/hyper_gore_prc/corpse_shatter.ncs
Normal file
Binary file not shown.
81
_content/hak/hyper_gore_prc/corpse_shatter.nss
Normal file
81
_content/hak/hyper_gore_prc/corpse_shatter.nss
Normal file
@@ -0,0 +1,81 @@
|
||||
void main()
|
||||
{
|
||||
object oCorpse = GetLocalObject(OBJECT_SELF, "CREATURE");
|
||||
AssignCommand(oCorpse, SetIsDestroyable(TRUE, FALSE, FALSE));
|
||||
int iSize = GetCreatureSize(oCorpse);
|
||||
string sBlood = Get2DAString("appearance","BLOODCOLR",GetAppearanceType(oCorpse));
|
||||
effect eEffect;
|
||||
|
||||
// Red Blood
|
||||
if (sBlood == "R")
|
||||
{
|
||||
if (iSize < CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL);
|
||||
}
|
||||
else if (iSize == CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_RED_MEDIUM);
|
||||
}
|
||||
else //if (iSize > CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_RED_MEDIUM);
|
||||
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oCorpse));
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_RED_LARGE);
|
||||
}
|
||||
}
|
||||
// Green Blood
|
||||
else if (sBlood == "G")
|
||||
{
|
||||
if (iSize < CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_GREEN_SMALL);
|
||||
}
|
||||
else if (iSize == CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_GREEN_MEDIUM);
|
||||
}
|
||||
// Hack: Only large size undead is the giant skeleton
|
||||
else //if (iSize > CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_GREEN_MEDIUM);
|
||||
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oCorpse));
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_BONE_MEDIUM);
|
||||
}
|
||||
}
|
||||
// Yellow blood
|
||||
else if (sBlood == "Y")
|
||||
{
|
||||
if (iSize < CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_YELLOW_SMALL);
|
||||
}
|
||||
else if (iSize == CREATURE_SIZE_MEDIUM)
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_YELLOW_MEDIUM);
|
||||
}
|
||||
}
|
||||
// White blood / bones
|
||||
else if (sBlood == "W")
|
||||
{
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_BONE_MEDIUM);
|
||||
}
|
||||
// none
|
||||
else if (sBlood == "N")
|
||||
{
|
||||
//hack for earth elemental
|
||||
switch(GetAppearanceType(oCorpse))
|
||||
{
|
||||
case APPEARANCE_TYPE_ELEMENTAL_EARTH:
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_STONE_SMALL);
|
||||
break;
|
||||
case APPEARANCE_TYPE_ELEMENTAL_EARTH_ELDER:
|
||||
eEffect = EffectVisualEffect(VFX_COM_CHUNK_STONE_MEDIUM);
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oCorpse));
|
||||
}
|
||||
137
_content/hak/hyper_gore_prc/grn_m_bone.mdl
Normal file
137
_content/hak/hyper_gore_prc/grn_m_bone.mdl
Normal file
@@ -0,0 +1,137 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Grn_M_Bone
|
||||
filedependancy Grn_M_Bone.max
|
||||
newmodel Grn_M_Bone
|
||||
setsupermodel Grn_M_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Grn_M_Bone
|
||||
node dummy Grn_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Beetle_Lfrontmidlimb
|
||||
parent Grn_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.0392156988 0.231372997 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 21
|
||||
-0.0342496 -0.0082792202 0.0274851006
|
||||
0 -0.0374793001 -0.0275340006
|
||||
0.0342496 -0.0082792202 0.0274851006
|
||||
-0.0216770004 0.0356113985 -0.0028436
|
||||
0.0216770004 0.0356113985 -0.00284358999
|
||||
0.0490184985 -0.0653226003 -0.310945004
|
||||
-0.0480642989 -0.0653226003 -0.310945004
|
||||
-0.00221469998 -0.0379692018 -0.368113995
|
||||
-0.0859266967 -0.0824247003 -0.436771005
|
||||
0.0522926003 -0.00458985986 -0.373254001
|
||||
-0.0490427017 -0.00330311991 -0.373452991
|
||||
0.0346354991 0.100670002 -0.376177996
|
||||
0.0463303998 -0.0137425 -0.173620999
|
||||
0 -0.0828898028 -0.0776194036
|
||||
0.0192642007 0.0391203985 -0.179766998
|
||||
0.000267786003 -0.0522417985 -0.183087006
|
||||
0.0868809 -0.0824247003 -0.436771005
|
||||
-0.0192642007 0.0391203985 -0.179766998
|
||||
-0.0258358009 0.100670002 -0.376177996
|
||||
-0.0463303998 -0.0137425 -0.173620999
|
||||
0 -0.155195996 -0.0651896
|
||||
tverts 21
|
||||
0.374715 0.313239008 0
|
||||
0.499363005 0.310084999 0
|
||||
0.375084013 0.31288299 0
|
||||
0.381485999 0.446924001 0
|
||||
0.440925986 0.562641025 0
|
||||
0.468564987 0.654730022 0
|
||||
0.515407026 0.662482023 0
|
||||
0.455464989 0.743354023 0
|
||||
0.496408999 0.753849983 0
|
||||
0.373115987 0.753686011 0
|
||||
0.371468991 0.754326999 0
|
||||
0.378235996 0.643122971 0
|
||||
0.448399991 0.624366999 0
|
||||
0.496670008 0.444132 0
|
||||
0.392679989 0.528397024 0
|
||||
0.491185009 0.610391974 0
|
||||
0.497339994 0.752951026 0
|
||||
0.374711007 0.550336003 0
|
||||
0.377909988 0.643437028 0
|
||||
0.436058998 0.385717988 0
|
||||
0.490309 0.518311024 0
|
||||
faces 38
|
||||
0 1 2 1 0 1 2 1
|
||||
3 0 4 1 3 0 4 1
|
||||
2 4 0 1 2 4 0 1
|
||||
5 6 7 1 5 6 7 2
|
||||
8 7 6 1 8 7 6 2
|
||||
9 7 10 1 9 7 10 2
|
||||
10 11 9 1 10 11 9 2
|
||||
2 1 12 1 2 1 12 4
|
||||
13 12 1 1 13 12 1 4
|
||||
4 2 14 1 4 2 14 4
|
||||
12 14 2 1 12 14 2 4
|
||||
12 15 5 1 12 15 5 4
|
||||
5 16 9 1 5 16 9 4
|
||||
14 12 11 1 14 12 11 4
|
||||
9 11 12 1 9 11 12 4
|
||||
3 4 17 1 3 4 17 6
|
||||
14 17 4 1 14 17 4 6
|
||||
17 14 18 1 17 14 18 6
|
||||
11 18 14 1 11 18 14 6
|
||||
0 3 19 1 0 3 19 3
|
||||
17 19 3 1 17 19 3 3
|
||||
1 0 19 1 1 0 19 3
|
||||
19 13 1 1 19 13 1 3
|
||||
19 17 18 1 19 17 18 3
|
||||
10 8 6 1 10 8 6 3
|
||||
20 19 15 1 20 19 15 3
|
||||
10 6 19 1 10 6 19 3
|
||||
18 10 19 1 18 10 19 3
|
||||
18 11 10 1 18 11 10 2
|
||||
5 9 12 1 5 9 12 4
|
||||
7 8 10 1 7 8 10 2
|
||||
16 7 9 1 16 7 9 2
|
||||
7 16 5 1 7 16 5 2
|
||||
15 19 6 1 15 19 6 3
|
||||
6 5 15 1 6 5 15 5
|
||||
12 20 15 1 12 20 15 4
|
||||
19 20 13 1 19 20 13 3
|
||||
20 12 13 1 20 12 13 4
|
||||
position 0.0606094003 -0.177237004 0.00147639995
|
||||
orientation -0.541500986 0.53331995 -0.649881959 -2.55703998
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0.278430998 0
|
||||
endnode
|
||||
endmodelgeom Grn_M_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Grn_M_Bone
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Grn_M_Bone
|
||||
node dummy Grn_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Beetle_Lfrontmidlimb
|
||||
parent Grn_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.43333006 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Grn_M_Bone
|
||||
|
||||
donemodel Grn_M_Bone
|
||||
94
_content/hak/hyper_gore_prc/grn_m_giblet.mdl
Normal file
94
_content/hak/hyper_gore_prc/grn_m_giblet.mdl
Normal file
@@ -0,0 +1,94 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: GRN_M_Giblet
|
||||
filedependancy GRN_M_Giblet.max
|
||||
newmodel GRN_M_Giblet
|
||||
setsupermodel GRN_M_Giblet NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom GRN_M_Giblet
|
||||
node dummy GRN_M_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk01
|
||||
parent GRN_M_Giblet
|
||||
#part-number 1
|
||||
ambient 0.0392156988 0.231372997 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 7
|
||||
-0.0160885006 0.0242011994 0.0874364972
|
||||
0.0602759011 0.132901996 -0.00851735007
|
||||
-0.107616998 0.0810038 -0.0443286002
|
||||
-0.0158015005 -0.0965809003 -0.0436500013
|
||||
0.0872057974 -0.114739001 -0.00474213995
|
||||
0.0510978997 0.0198618006 0.0391470008
|
||||
0.0103289001 0.0119209001 -0.0560190007
|
||||
tverts 20
|
||||
0.383298993 0.397830993 0
|
||||
0.473845989 0.613434017 0
|
||||
0.386613995 0.511622012 0
|
||||
0.493817002 0.314734995 0
|
||||
0.373237997 0.621430993 0
|
||||
0.367439985 0.317061007 0
|
||||
0.387264997 0.346163005 0
|
||||
0.456322998 0.324304014 0
|
||||
0.404098988 0.637338996 0
|
||||
0.367224991 0.538704991 0
|
||||
0.371232003 0.623317003 0
|
||||
0.460864007 0.428083986 0
|
||||
0.384914011 0.333276004 0
|
||||
0.498795986 0.60048902 0
|
||||
0.393005013 0.603854001 0
|
||||
0.492998004 0.333436996 0
|
||||
0.369257003 0.526340008 0
|
||||
0.494643986 0.624257982 0
|
||||
0.409891993 0.629230976 0
|
||||
0.501249015 0.357616007 0
|
||||
faces 10
|
||||
0 1 2 1 0 1 2 2
|
||||
0 2 3 1 3 4 5 2
|
||||
0 3 4 1 0 6 7 2
|
||||
0 4 5 1 8 9 10 2
|
||||
0 5 1 1 0 11 1 2
|
||||
6 2 1 1 12 13 14 2
|
||||
6 3 2 1 12 15 13 2
|
||||
6 4 3 1 16 17 18 2
|
||||
6 5 4 1 19 11 7 2
|
||||
6 1 5 1 19 1 11 2
|
||||
position -0.00352478004 -0.00566767016 0.00501460023
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.435294002 0.400000006 0
|
||||
endnode
|
||||
endmodelgeom GRN_M_Giblet
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact GRN_M_Giblet
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot GRN_M_Giblet
|
||||
node dummy GRN_M_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk01
|
||||
parent GRN_M_Giblet
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.46667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact GRN_M_Giblet
|
||||
|
||||
donemodel GRN_M_Giblet
|
||||
101
_content/hak/hyper_gore_prc/grn_m_rib.mdl
Normal file
101
_content/hak/hyper_gore_prc/grn_m_rib.mdl
Normal file
@@ -0,0 +1,101 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: GRN_m_Rib
|
||||
filedependancy GRN_m_Rib.max
|
||||
newmodel GRN_m_Rib
|
||||
setsupermodel GRN_m_Rib NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom GRN_m_Rib
|
||||
node dummy GRN_m_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Beetle_Lfrontlowlimb
|
||||
parent GRN_m_Rib
|
||||
#part-number 1
|
||||
ambient 0.0392156988 0.231372997 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 12
|
||||
-0.0331596993 0.00393112982 0.0285340995
|
||||
-0.0330123007 -0.0267725997 0.00364459003
|
||||
0.0314164013 0.00393114006 0.0276765004
|
||||
0.0315636992 -0.0267725997 0.00278701005
|
||||
-0.0330123007 0.0274180006 0.00364459003
|
||||
0.0315637998 0.0274180993 0.00278701005
|
||||
-0.0280948002 -0.0249352008 -0.277936995
|
||||
0.0299803 -0.0249352008 -0.278708011
|
||||
0.00129996997 -0.101984002 -0.338654011
|
||||
0.000374714 -0.0225293003 -0.182390004
|
||||
0.0328281 0.0180689003 -0.210746005
|
||||
-0.0317480005 0.0180689003 -0.209888995
|
||||
tverts 12
|
||||
0.487798989 0.605543971 0
|
||||
0.426672012 0.683345973 0
|
||||
0.508212984 0.745230973 0
|
||||
0.424995005 0.536849022 0
|
||||
0.406506985 0.733865976 0
|
||||
0.406461 0.734300971 0
|
||||
0.375156999 0.312245995 0
|
||||
0.37519899 0.311854988 0
|
||||
0.494608998 0.317113996 0
|
||||
0.466518015 0.466628999 0
|
||||
0.417259991 0.674305022 0
|
||||
0.39220199 0.566334009 0
|
||||
faces 20
|
||||
0 1 2 1 0 1 2 1
|
||||
3 2 1 1 2 3 0 1
|
||||
4 0 5 1 1 4 5 1
|
||||
2 5 0 1 5 2 1 1
|
||||
6 7 8 1 6 7 8 2
|
||||
3 1 9 1 0 3 9 5
|
||||
2 3 10 1 3 2 10 4
|
||||
9 10 3 1 10 9 3 4
|
||||
5 2 10 1 2 5 10 4
|
||||
7 9 8 1 9 6 8 4
|
||||
9 7 10 1 6 9 10 4
|
||||
4 5 11 1 5 4 11 6
|
||||
10 11 5 1 11 10 5 6
|
||||
11 10 6 1 10 11 7 6
|
||||
7 6 10 1 7 6 10 6
|
||||
0 4 11 1 4 1 11 3
|
||||
1 0 9 1 1 0 9 3
|
||||
11 9 0 1 9 11 1 3
|
||||
9 11 6 1 11 9 7 3
|
||||
6 8 9 1 8 7 9 3
|
||||
position 0.0995666012 0.111791998 0.0174732003
|
||||
orientation 0.862855971 -0.357407004 0.357407004 -1.71776998
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.223528996 0.231372997 0
|
||||
endnode
|
||||
endmodelgeom GRN_m_Rib
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact GRN_m_Rib
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot GRN_m_Rib
|
||||
node dummy GRN_m_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Beetle_Lfrontlowlimb
|
||||
parent GRN_m_Rib
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.96667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact GRN_m_Rib
|
||||
|
||||
donemodel GRN_m_Rib
|
||||
149
_content/hak/hyper_gore_prc/grn_m_thigh.mdl
Normal file
149
_content/hak/hyper_gore_prc/grn_m_thigh.mdl
Normal file
@@ -0,0 +1,149 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: GRN_M_Thigh
|
||||
filedependancy GRN_M_Thigh.max
|
||||
newmodel GRN_M_Thigh
|
||||
setsupermodel GRN_M_Thigh NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom GRN_M_Thigh
|
||||
node dummy GRN_M_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh GRN_body
|
||||
parent GRN_M_Thigh
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 22
|
||||
-0.0253518 0.153869003 -0.0157752
|
||||
0.0152399996 0.175996006 -0.0392588004
|
||||
0.0152399996 0.086458303 -0.0810701996
|
||||
-0.0465186983 0.0796288997 -0.050498601
|
||||
0.00964905042 0.0266624 -0.0614405982
|
||||
-0.0336038992 -0.00907265022 -0.066449903
|
||||
0.0152399996 -0.104488999 -0.0755067021
|
||||
-0.0208988003 -0.121307001 -0.0534127988
|
||||
0.0152399996 0.286327004 0.0376606993
|
||||
-0.0629462972 0.279900998 0.0322997011
|
||||
0.0254494995 -0.232617006 -0.0180820003
|
||||
-0.188289002 -0.0597583018 -0.0085535096
|
||||
-0.0936669037 -0.206908002 -0.0476647988
|
||||
-0.169018 0.112640001 -0.00404433999
|
||||
0.0419742987 0.179647997 -0.0157752
|
||||
0.0812466964 0.0898521021 -0.0504987016
|
||||
0.0584773012 0.00837520976 -0.0664499998
|
||||
0.041865699 -0.121307001 -0.0534128994
|
||||
0.122523002 0.228784993 0.00694258977
|
||||
0.0563815013 -0.239023998 -0.0476589985
|
||||
0.218491003 -0.0428564996 -0.00911935978
|
||||
0.178441003 0.112640001 0.00144343998
|
||||
tverts 14
|
||||
0.392740011 0.667934 0
|
||||
0.367137998 0.593509972 0
|
||||
0.415895998 0.589587986 0
|
||||
0.430492014 0.663931012 0
|
||||
0.472290993 0.595102012 0
|
||||
0.467483014 0.670871973 0
|
||||
0.533945024 0.592930973 0
|
||||
0.516297996 0.664535999 0
|
||||
0.368393004 0.758975983 0
|
||||
0.389337003 0.758054018 0
|
||||
0.536379993 0.760909021 0
|
||||
0.465121001 0.760448992 0
|
||||
0.508810997 0.760213971 0
|
||||
0.433245003 0.758513987 0
|
||||
faces 56
|
||||
0 1 2 1 0 1 2 1
|
||||
2 3 0 1 2 3 0 1
|
||||
3 2 4 1 3 2 4 1
|
||||
4 5 3 1 4 5 3 1
|
||||
6 7 5 1 6 7 5 1
|
||||
0 8 1 1 0 8 1 5
|
||||
8 0 9 1 8 0 9 5
|
||||
7 6 10 1 7 6 10 6
|
||||
7 11 5 1 7 11 5 3
|
||||
11 7 12 1 11 7 12 3
|
||||
11 13 3 1 11 13 3 3
|
||||
3 5 11 1 3 5 11 3
|
||||
13 9 0 1 13 9 0 3
|
||||
0 3 13 1 0 3 13 3
|
||||
1 14 2 1 1 0 2 1
|
||||
15 2 14 1 3 2 0 1
|
||||
2 15 4 1 2 3 4 1
|
||||
16 4 15 1 5 4 3 1
|
||||
17 6 16 1 7 6 5 1
|
||||
8 14 1 1 8 0 1 5
|
||||
14 8 18 1 0 8 9 5
|
||||
19 10 17 1 12 10 7 6
|
||||
6 17 10 1 6 7 10 6
|
||||
20 17 16 1 11 7 5 3
|
||||
17 20 19 1 7 11 12 3
|
||||
21 20 15 1 13 11 3 3
|
||||
16 15 20 1 5 3 11 3
|
||||
15 14 21 1 3 0 13 3
|
||||
1 0 2 1 1 0 2 1
|
||||
3 2 0 1 3 2 0 1
|
||||
2 3 4 1 2 3 4 1
|
||||
5 4 3 1 5 4 3 1
|
||||
7 6 5 1 7 6 5 1
|
||||
8 0 1 1 8 0 1 5
|
||||
0 8 9 1 0 8 9 5
|
||||
6 7 10 1 6 7 10 6
|
||||
11 7 5 1 11 7 5 3
|
||||
7 11 12 1 7 11 12 3
|
||||
13 11 3 1 13 11 3 3
|
||||
5 3 11 1 5 3 11 3
|
||||
9 13 0 1 9 13 0 3
|
||||
3 0 13 1 3 0 13 3
|
||||
14 1 2 1 0 1 2 1
|
||||
2 15 14 1 2 3 0 1
|
||||
15 2 4 1 3 2 4 1
|
||||
4 16 15 1 4 5 3 1
|
||||
6 17 16 1 6 7 5 1
|
||||
14 8 1 1 0 8 1 5
|
||||
8 14 18 1 8 0 9 5
|
||||
10 19 17 1 10 12 7 6
|
||||
17 6 10 1 7 6 10 6
|
||||
17 20 16 1 7 11 5 3
|
||||
20 17 19 1 11 7 12 3
|
||||
20 21 15 1 11 13 3 3
|
||||
15 16 20 1 3 5 11 3
|
||||
14 15 21 1 0 3 13 3
|
||||
position -0.00290809991 -0.0155693004 0.00351015991
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.113725998 0.254902005 0
|
||||
endnode
|
||||
endmodelgeom GRN_M_Thigh
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact GRN_M_Thigh
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot GRN_M_Thigh
|
||||
node dummy GRN_M_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh GRN_body
|
||||
parent GRN_M_Thigh
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.83332992 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact GRN_M_Thigh
|
||||
|
||||
donemodel GRN_M_Thigh
|
||||
94
_content/hak/hyper_gore_prc/grn_s_giblet.mdl
Normal file
94
_content/hak/hyper_gore_prc/grn_s_giblet.mdl
Normal file
@@ -0,0 +1,94 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: GRN_s_Giblet
|
||||
filedependancy GRN_s_Giblet.max
|
||||
newmodel GRN_s_Giblet
|
||||
setsupermodel GRN_s_Giblet NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom GRN_s_Giblet
|
||||
node dummy GRN_s_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk02
|
||||
parent GRN_s_Giblet
|
||||
#part-number 1
|
||||
ambient 0.0392156988 0.231372997 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 7
|
||||
0.00368658989 -0.0362210013 -0.00466564018
|
||||
-0.00191866001 0.0618625991 -0.00851735007
|
||||
-0.0569513999 0.0203757994 -0.0443286002
|
||||
-0.0158015005 -0.0965809003 -0.0436500013
|
||||
0.0453928001 -0.0622022003 -0.00474213995
|
||||
0.0510978997 0.0198618006 0.0391470008
|
||||
0.0300405007 -0.0484566987 -0.0560190007
|
||||
tverts 20
|
||||
0.383298993 0.397830993 0
|
||||
0.473845989 0.613434017 0
|
||||
0.386613995 0.511622012 0
|
||||
0.493817002 0.314734995 0
|
||||
0.373237997 0.621430993 0
|
||||
0.367439985 0.317061007 0
|
||||
0.387264997 0.346163005 0
|
||||
0.456322998 0.324304014 0
|
||||
0.404098988 0.637338996 0
|
||||
0.367224991 0.538704991 0
|
||||
0.371232003 0.623317003 0
|
||||
0.460864007 0.428083986 0
|
||||
0.384914011 0.333276004 0
|
||||
0.498795986 0.60048902 0
|
||||
0.393005013 0.603854001 0
|
||||
0.492998004 0.333436996 0
|
||||
0.369257003 0.526340008 0
|
||||
0.494643986 0.624257982 0
|
||||
0.409891993 0.629230976 0
|
||||
0.501249015 0.357616007 0
|
||||
faces 10
|
||||
0 1 2 1 0 1 2 2
|
||||
0 2 3 1 3 4 5 2
|
||||
0 3 4 1 0 6 7 2
|
||||
0 4 5 1 8 9 10 2
|
||||
0 5 1 1 0 11 1 2
|
||||
6 2 1 1 12 13 14 2
|
||||
6 3 2 1 12 15 13 2
|
||||
6 4 3 1 16 17 18 2
|
||||
6 5 4 1 19 11 7 2
|
||||
6 1 5 1 19 1 11 2
|
||||
position -0.00393310981 0.0202744994 0.0154571999
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.411765009 0.474510014 0
|
||||
endnode
|
||||
endmodelgeom GRN_s_Giblet
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact GRN_s_Giblet
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot GRN_s_Giblet
|
||||
node dummy GRN_s_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk02
|
||||
parent GRN_s_Giblet
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.33333015 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact GRN_s_Giblet
|
||||
|
||||
donemodel GRN_s_Giblet
|
||||
135
_content/hak/hyper_gore_prc/m_chunk_r.mdl
Normal file
135
_content/hak/hyper_gore_prc/m_chunk_r.mdl
Normal file
@@ -0,0 +1,135 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: m_chunk_R
|
||||
filedependancy m_chunk_R.max
|
||||
newmodel m_chunk_R
|
||||
setsupermodel m_chunk_R NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom m_chunk_R
|
||||
node dummy m_chunk_R
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh med_chunk
|
||||
parent m_chunk_R
|
||||
#part-number 1
|
||||
ambient 0.179083005 0.0653588027 0.0653588027
|
||||
diffuse 0.866666973 0.768628001 0.768628001
|
||||
specular 0.0450000018 0.0450000018 0.0450000018
|
||||
shininess 26
|
||||
bitmap Fx_chunks
|
||||
verts 12
|
||||
-0.362581015 -0.063418597 -0.0453376994
|
||||
-0.127254993 0.0610226989 -0.160496995
|
||||
-0.113995999 -0.191134006 0.0479591005
|
||||
0.126338005 -0.188942999 -0.0527296998
|
||||
0.125346005 -0.059463501 -0.161442995
|
||||
0.357560009 -0.0671159029 0.0514176004
|
||||
0.36253801 0.0635365993 -0.0453376994
|
||||
-0.126380995 0.189061001 -0.0527296998
|
||||
-0.357603014 0.0672338009 0.0514176004
|
||||
0.113953002 0.191251993 0.0479591005
|
||||
-0.111211002 0.0681250021 0.162283003
|
||||
0.111169003 -0.0680070966 0.162283003
|
||||
tverts 12
|
||||
0.0611505993 0.394537002 0
|
||||
0.310689986 0.521902978 0
|
||||
0.295424014 0.0122314999 0
|
||||
0.648573995 0.0155453002 0
|
||||
0.479454994 0.47251299 0
|
||||
0.130661994 0.302742004 0
|
||||
0.141473994 0.658912003 0
|
||||
0.373075992 0.832588971 0
|
||||
0.0265708994 0.564715981 0
|
||||
0.657150984 0.949428976 0
|
||||
0.313080013 0.523568988 0
|
||||
0.469770014 0.341473997 0
|
||||
faces 20
|
||||
0 1 2 1 0 1 2 2
|
||||
1 3 2 1 1 3 2 2
|
||||
1 4 3 1 1 4 3 2
|
||||
3 4 5 1 3 4 5 2
|
||||
4 6 5 1 4 6 5 2
|
||||
7 1 8 1 7 1 8 2
|
||||
1 0 8 1 1 0 8 2
|
||||
6 4 9 1 6 4 9 2
|
||||
4 7 9 1 4 7 9 2
|
||||
4 1 7 1 4 1 7 2
|
||||
2 8 0 1 2 8 0 1
|
||||
2 10 8 1 2 10 8 1
|
||||
2 11 10 1 2 11 10 1
|
||||
5 11 3 1 5 11 3 1
|
||||
11 2 3 1 11 2 3 1
|
||||
8 10 7 1 8 10 7 1
|
||||
10 9 7 1 10 9 7 1
|
||||
9 5 6 1 9 5 6 1
|
||||
9 11 5 1 9 11 5 1
|
||||
9 10 11 1 9 10 11 1
|
||||
position 0 0 0
|
||||
orientation 0 0 0 0
|
||||
endnode
|
||||
node emitter med_blood
|
||||
parent med_chunk
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_blood
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.268783987 -0.00357847009 0
|
||||
orientation 0 1 0 -1.57079995
|
||||
colorStart 0.513725996 0 0
|
||||
colorEnd 0.419607997 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.5
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 5
|
||||
lifeExp 512.0
|
||||
mass 1
|
||||
spread 0
|
||||
particleRot 0
|
||||
velocity 2
|
||||
randvel 1
|
||||
fps 16
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom m_chunk_R
|
||||
|
||||
donemodel m_chunk_R
|
||||
BIN
_content/hak/hyper_gore_prc/prop_corpse.utp
Normal file
BIN
_content/hak/hyper_gore_prc/prop_corpse.utp
Normal file
Binary file not shown.
209
_content/hak/hyper_gore_prc/red_l_bone.mdl
Normal file
209
_content/hak/hyper_gore_prc/red_l_bone.mdl
Normal file
@@ -0,0 +1,209 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_L_Bone
|
||||
filedependancy Red_L_Bone.max
|
||||
newmodel Red_L_Bone
|
||||
setsupermodel Red_L_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_L_Bone
|
||||
node dummy Red_L_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder04
|
||||
parent Red_L_Bone
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 39
|
||||
-0.0743331984 0.00313342991 -0.0346280001
|
||||
-0.226895005 -0.0504150018 -0.00849475991
|
||||
-0.226895005 0.00342834997 -0.0299369991
|
||||
-0.0743331984 -0.0465821996 -0.0195749998
|
||||
-0.226895005 -0.0064971298 0.0257887002
|
||||
-0.0743331984 -0.0209047999 0.0151193002
|
||||
-0.0742357001 0.0197320003 0.0216272995
|
||||
-0.226895005 0.0432517007 -0.00849474967
|
||||
-0.250405997 0.0355007984 0.0454921983
|
||||
-0.0743331984 0.0367413014 -0.00758444984
|
||||
-0.284577012 -0.0453123003 -0.0629912019
|
||||
-0.320621997 0.0141473999 -0.0218112003
|
||||
-0.322544008 -0.108484998 0.0354246981
|
||||
-0.321455985 -0.116315 -0.0313359983
|
||||
-0.315100998 -0.0241129007 0.0413013995
|
||||
-0.292135 0.0452299006 0.101484001
|
||||
-0.316002011 0.0927319974 0.0309932008
|
||||
-0.309572995 0.0813106969 -0.0383949988
|
||||
-0.336308986 -0.00290415995 -0.00378011004
|
||||
-0.380632997 -0.0822386965 -0.00431940984
|
||||
-0.365547001 0.0586403012 0.0298759993
|
||||
-0.330148995 -0.0601943992 -0.0829026029
|
||||
0.142719001 0.0541082993 -0.000627515023
|
||||
0.142719001 -0.00780774001 -0.0525777005
|
||||
0.142719001 0.0266995002 0.0403379984
|
||||
0.142719001 -0.0483826995 0.0270988997
|
||||
0.142719001 -0.0658084974 -0.0217720997
|
||||
0.19325 0.0517619997 -0.0516236015
|
||||
0.240949005 0.00221065991 -0.0585689992
|
||||
0.240949005 0.135756001 0.0463992991
|
||||
0.223252997 0.0765590966 0.102637999
|
||||
0.195613995 0.00639933022 0.0528706014
|
||||
0.247004002 -0.137153 0.0677347034
|
||||
0.240949005 -0.133511007 -0.0428489
|
||||
0.224760994 -0.0702238008 -0.107345998
|
||||
0.292062998 -0.0239515994 -0.000207631994
|
||||
0.329178005 -0.0858858004 -0.00828502979
|
||||
0.334109008 0.0570205003 0.0388295986
|
||||
0.246364996 0.0961887985 -0.0640339032
|
||||
tverts 39
|
||||
0.120379999 0.736472011 0
|
||||
0.192886993 0.598608971 0
|
||||
0.129421994 0.598609984 0
|
||||
0.193140998 0.736472011 0
|
||||
0.133543998 0.595341027 0
|
||||
0.159429997 0.736472011 0
|
||||
0.0934150964 0.736517012 0
|
||||
0.0767308995 0.598608971 0
|
||||
0.0773202032 0.597513974 0
|
||||
0.0737845972 0.736472011 0
|
||||
0.168595001 0.520986974 0
|
||||
0.128011003 0.513225973 0
|
||||
0.195205003 0.515604019 0
|
||||
0.235930994 0.51610899 0
|
||||
0.126155004 0.512517989 0
|
||||
0.0775178969 0.513360023 0
|
||||
0.0323559009 0.515367985 0
|
||||
0.0789145008 0.515080988 0
|
||||
0.127707005 0.444700003 0
|
||||
0.192576006 0.443760991 0
|
||||
0.079736799 0.44421801 0
|
||||
0.192771003 0.515345991 0
|
||||
0.0788709 0.855902016 0
|
||||
0.144240007 0.855902016 0
|
||||
0.113121003 0.855902016 0
|
||||
0.178940997 0.855902016 0
|
||||
0.200716004 0.855902016 0
|
||||
0.101806 0.918549001 0
|
||||
0.143722996 0.935562015 0
|
||||
0.0368519016 0.935562015 0
|
||||
0.102825001 0.919444025 0
|
||||
0.102482997 0.91939199 0
|
||||
0.241861999 0.954065025 0
|
||||
0.241310999 0.932292998 0
|
||||
0.202233002 0.93305701 0
|
||||
0.144410998 0.970135987 0
|
||||
0.201801002 0.989911973 0
|
||||
0.0752317011 0.988402009 0
|
||||
0.0782949999 0.947300017 0
|
||||
faces 74
|
||||
0 1 2 1 0 1 2 3
|
||||
0 3 1 1 0 3 1 3
|
||||
3 4 1 1 3 4 1 3
|
||||
3 5 4 1 3 5 4 3
|
||||
5 6 4 1 5 6 4 3
|
||||
4 6 7 1 4 6 7 3
|
||||
4 7 8 1 4 7 8 3
|
||||
6 9 7 1 6 9 7 3
|
||||
9 2 7 1 9 2 7 3
|
||||
9 0 2 1 9 0 2 3
|
||||
2 10 11 1 2 10 11 3
|
||||
2 1 10 1 2 1 10 3
|
||||
1 12 13 1 1 12 13 3
|
||||
1 4 12 1 1 4 12 3
|
||||
4 14 12 1 4 14 12 3
|
||||
4 8 15 1 4 8 15 3
|
||||
4 15 14 1 4 15 14 3
|
||||
8 7 16 1 8 7 16 3
|
||||
7 17 16 1 7 17 16 3
|
||||
7 2 17 1 7 2 17 3
|
||||
18 17 11 1 18 17 11 1
|
||||
14 19 12 1 14 19 12 1
|
||||
18 19 14 1 18 19 14 1
|
||||
20 14 15 1 20 14 15 1
|
||||
18 20 17 1 18 20 17 1
|
||||
10 1 21 1 10 1 21 3
|
||||
2 11 17 1 2 11 17 3
|
||||
8 16 15 1 8 16 15 3
|
||||
18 14 20 1 18 14 20 1
|
||||
10 21 11 1 10 21 11 3
|
||||
18 11 21 1 18 11 21 1
|
||||
18 21 19 1 18 21 19 1
|
||||
1 13 21 1 1 13 21 3
|
||||
0 22 23 1 0 22 23 3
|
||||
0 9 22 1 0 9 22 3
|
||||
9 24 22 1 9 24 22 3
|
||||
9 6 24 1 9 6 24 3
|
||||
6 5 24 1 6 5 24 3
|
||||
24 5 25 1 24 5 25 3
|
||||
5 26 25 1 5 26 25 3
|
||||
5 3 26 1 5 3 26 3
|
||||
3 23 26 1 3 23 26 3
|
||||
3 0 23 1 3 0 23 3
|
||||
23 27 28 1 23 27 28 3
|
||||
23 22 27 1 23 22 27 3
|
||||
22 24 29 1 22 24 29 3
|
||||
29 24 30 1 29 24 30 3
|
||||
24 31 30 1 24 31 30 3
|
||||
31 24 32 1 31 24 32 3
|
||||
24 25 32 1 24 25 32 3
|
||||
25 26 33 1 25 26 33 3
|
||||
26 34 33 1 26 34 33 3
|
||||
26 23 34 1 26 23 34 3
|
||||
35 36 28 1 35 36 28 1
|
||||
35 37 30 1 35 37 30 1
|
||||
35 30 31 1 35 30 31 1
|
||||
35 31 32 1 35 31 32 1
|
||||
28 36 34 1 28 36 34 1
|
||||
27 22 38 1 27 22 38 3
|
||||
23 28 34 1 23 28 34 3
|
||||
25 33 32 1 25 33 32 3
|
||||
35 32 36 1 35 32 36 1
|
||||
27 38 28 1 27 38 28 3
|
||||
35 28 38 1 35 28 38 1
|
||||
35 38 37 1 35 38 37 1
|
||||
22 29 38 1 22 29 38 3
|
||||
20 15 16 1 20 15 16 1
|
||||
20 16 17 1 20 16 17 1
|
||||
19 21 13 1 19 21 13 1
|
||||
19 13 12 1 19 13 12 1
|
||||
37 38 29 1 37 38 29 1
|
||||
37 29 30 1 37 29 30 1
|
||||
36 32 33 1 36 32 33 1
|
||||
36 33 34 1 36 33 34 1
|
||||
position 0.00296265003 0.00688872999 0
|
||||
orientation -0.825835764 0.260384917 0.500194907 -1.12487996
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.427451015 0.427451015 0.427451015
|
||||
endnode
|
||||
endmodelgeom Red_L_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_L_Bone
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_L_Bone
|
||||
node dummy Red_L_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder04
|
||||
parent Red_L_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_L_Bone
|
||||
|
||||
donemodel Red_L_Bone
|
||||
94
_content/hak/hyper_gore_prc/red_l_giblet.mdl
Normal file
94
_content/hak/hyper_gore_prc/red_l_giblet.mdl
Normal file
@@ -0,0 +1,94 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_L_Giblet
|
||||
filedependancy Red_L_Giblet.max
|
||||
newmodel Red_L_Giblet
|
||||
setsupermodel Red_L_Giblet NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_L_Giblet
|
||||
node dummy Red_L_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh L_chunk03
|
||||
parent Red_L_Giblet
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 7
|
||||
0.128638998 0.0344955996 0.103795998
|
||||
0.092003502 0.211358994 -0.0111226998
|
||||
-0.181660995 0.126764998 -0.0694950968
|
||||
-0.0320026018 -0.162698001 -0.0683889985
|
||||
0.135899007 -0.192295998 -0.00496905996
|
||||
0.198964998 0.0271035004 0.0665702969
|
||||
0.0105900001 0.0141599001 -0.0885502994
|
||||
tverts 20
|
||||
0.346709013 0.121670999 0
|
||||
0.327488005 0.190540001 0
|
||||
0.270747006 0.138432994 0
|
||||
0.255984008 0.143068001 0
|
||||
0.220780998 0.153753996 0
|
||||
0.184492007 0.100611001 0
|
||||
0.31408599 0.0550757982 0
|
||||
0.383143008 0.0332172997 0
|
||||
0.129675999 0.251763999 0
|
||||
0.0928027034 0.195371002 0
|
||||
0.0968097001 0.237742007 0
|
||||
0.320603997 0.0996776968 0
|
||||
0.171473995 0.557188988 0
|
||||
0.236570001 0.603030026 0
|
||||
0.240548 0.636249006 0
|
||||
0.200279996 0.549887002 0
|
||||
0.0155562004 0.138224006 0
|
||||
0.183632001 0.0819441974 0
|
||||
0.123273 0.176482007 0
|
||||
0.428070009 0.0665294975 0
|
||||
faces 10
|
||||
0 1 2 1 0 1 2 2
|
||||
0 2 3 1 3 4 5 2
|
||||
0 3 4 1 0 6 7 2
|
||||
0 4 5 1 8 9 10 2
|
||||
0 5 1 1 0 11 1 2
|
||||
6 2 1 1 12 13 14 2
|
||||
6 3 2 1 12 15 13 2
|
||||
6 4 3 1 16 17 18 2
|
||||
6 5 4 1 19 11 7 2
|
||||
6 1 5 1 19 1 11 2
|
||||
position -0.0449896008 -0.00986571983 0.00501460023
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_L_Giblet
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_L_Giblet
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_L_Giblet
|
||||
node dummy Red_L_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh L_chunk03
|
||||
parent Red_L_Giblet
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_L_Giblet
|
||||
|
||||
donemodel Red_L_Giblet
|
||||
214
_content/hak/hyper_gore_prc/red_l_rib.mdl
Normal file
214
_content/hak/hyper_gore_prc/red_l_rib.mdl
Normal file
@@ -0,0 +1,214 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_L_Rib
|
||||
filedependancy Red_L_Rib.max
|
||||
newmodel Red_L_Rib
|
||||
setsupermodel Red_L_Rib NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_L_Rib
|
||||
node dummy Red_L_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Box02
|
||||
parent Red_L_Rib
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 44
|
||||
-0.155833006 0.0264307 -0.0606706999
|
||||
-0.168359995 0.130781993 -0.0665085018
|
||||
0.0117872003 0.113969997 -0.0805002972
|
||||
0.00923979003 0.0320287012 -0.103840999
|
||||
0.176276997 0.111098997 -0.0486234017
|
||||
0.189879999 0.0359232016 -0.0696099997
|
||||
0.286879987 0.108602002 0.0605880991
|
||||
0.312137008 0.0393097997 0.0484150983
|
||||
0.305269003 0.101322003 0.191880003
|
||||
0.333070993 0.0455697998 0.192375004
|
||||
-0.168918997 0.0391598009 -0.0469910018
|
||||
0.291103005 0.0771830976 0.162072003
|
||||
-0.182741001 0.116057001 -0.0469910018
|
||||
-0.247436002 0.179031 -0.0397057012
|
||||
-0.206892997 0.113544002 -0.106422
|
||||
-0.279543996 0.0145584 -0.0538741015
|
||||
-0.212262005 0.142752007 0.0369661003
|
||||
-0.157545 0.142752007 -0.0812548995
|
||||
-0.262250006 0.0257235002 0.0227977
|
||||
-0.199186996 0.0348514989 -0.00478364993
|
||||
-0.157222003 0.0320110992 -0.0325051993
|
||||
-0.171239004 0.0145584 -0.0812548995
|
||||
-0.173160002 -0.0955621973 -0.0665085018
|
||||
-0.164306 0.00563433021 -0.0665085018
|
||||
-0.0129286004 -0.0366583988 -0.0440757982
|
||||
0.00676889997 -0.128065005 -0.0694796965
|
||||
0.139048994 -0.064971 0.00491946004
|
||||
0.168057993 -0.144816995 -0.0165759008
|
||||
0.225209996 -0.0922446027 0.0848924965
|
||||
0.242148995 -0.165235996 0.0819628984
|
||||
0.250611991 -0.117404997 0.232519999
|
||||
0.26363799 -0.176313996 0.216978997
|
||||
0.127505004 -0.11107 -0.00113291002
|
||||
0.231776997 -0.138595 0.201282993
|
||||
-0.197663993 -0.00864806026 -0.0469910987
|
||||
0.00413959008 -0.0909283981 -0.036146
|
||||
-0.152489007 0.0166165009 -0.0812549964
|
||||
-0.207984999 -0.0170482993 -0.106422
|
||||
-0.282714993 0.00699876994 -0.0538741015
|
||||
-0.208369002 0.0114727002 0.0456775986
|
||||
-0.28519699 -0.100455999 -0.0538741015
|
||||
-0.234086007 -0.0806398988 -0.00478370022
|
||||
-0.161818996 -0.0937310979 -0.0325052999
|
||||
-0.177304 -0.109895997 -0.0812549964
|
||||
tverts 44
|
||||
0.00342108007 0.333196014 0
|
||||
0.00699727004 0.413017988 0
|
||||
0.0729679987 0.407009006 0
|
||||
0.0634485036 0.324393988 0
|
||||
0.122654997 0.405620992 0
|
||||
0.176512003 0.325513005 0
|
||||
0.187279001 0.405173987 0
|
||||
0.282009989 0.325046986 0
|
||||
0.181100994 0.40279299 0
|
||||
0.280249 0.328171015 0
|
||||
0.042299401 0.361036003 0
|
||||
0.279861987 0.411763996 0
|
||||
0.00321007008 0.412252009 0
|
||||
0.415859997 0.156523004 0
|
||||
0.450165004 0.144098997 0
|
||||
0.396795988 0.074067302 0
|
||||
0.437620997 0.154735997 0
|
||||
0.533258975 0.168834999 0
|
||||
0.394232988 0.0767543986 0
|
||||
0.453543991 0.0909162015 0
|
||||
0.541872978 0.0530773997 0
|
||||
0.537597001 0.0317687988 0
|
||||
0.0289942995 0.331753999 0
|
||||
0.036719501 0.401879996 0
|
||||
0.0878055021 0.404309005 0
|
||||
0.101386003 0.329795003 0
|
||||
0.132955 0.410039008 0
|
||||
0.140426993 0.331182003 0
|
||||
0.193737 0.406726986 0
|
||||
0.200320005 0.330601007 0
|
||||
0.237218007 0.358029991 0
|
||||
0.267439008 0.331750989 0
|
||||
0.158251002 0.379772991 0
|
||||
0.258121997 0.412032992 0
|
||||
0.0392090008 0.408051014 0
|
||||
0.106036998 0.379628986 0
|
||||
0.800803006 0.689691007 0
|
||||
0.76335597 0.698368013 0
|
||||
0.800379992 0.80261898 0
|
||||
0.804775 0.707692027 0
|
||||
0.731886029 0.79855603 0
|
||||
0.763222992 0.722055018 0
|
||||
0.745423019 0.661804974 0
|
||||
0.749786019 0.667542994 0
|
||||
faces 69
|
||||
0 1 2 1 0 1 2 2
|
||||
2 3 0 1 2 3 0 2
|
||||
3 2 4 1 3 2 4 2
|
||||
4 5 3 1 4 5 3 2
|
||||
5 4 6 1 5 4 6 2
|
||||
6 7 5 1 6 7 5 2
|
||||
7 6 8 1 7 6 8 2
|
||||
8 9 7 1 8 9 7 2
|
||||
10 3 2 2 10 3 2 1
|
||||
3 5 4 2 3 5 4 1
|
||||
4 2 3 2 4 2 3 1
|
||||
5 7 6 2 5 7 6 1
|
||||
6 4 5 2 6 4 5 1
|
||||
11 6 7 2 11 6 7 1
|
||||
2 12 10 2 2 12 10 1
|
||||
6 11 8 2 6 11 8 1
|
||||
3 10 0 4 3 10 0 5
|
||||
7 9 11 4 7 9 11 5
|
||||
8 11 9 8 8 11 9 4
|
||||
2 1 12 4 2 1 12 6
|
||||
13 14 15 1 13 14 15 2
|
||||
13 15 16 1 13 15 16 2
|
||||
13 16 17 1 13 16 17 2
|
||||
13 17 14 1 13 17 14 2
|
||||
15 18 16 1 15 18 16 2
|
||||
19 17 16 1 19 17 16 2
|
||||
20 17 19 1 20 17 19 2
|
||||
21 17 20 1 21 17 20 2
|
||||
14 21 15 1 14 21 15 2
|
||||
17 21 14 1 17 21 14 2
|
||||
19 18 15 1 19 18 15 2
|
||||
18 19 16 1 18 19 16 2
|
||||
19 21 20 1 19 21 20 2
|
||||
19 15 21 1 19 15 21 2
|
||||
22 23 24 1 22 23 24 2
|
||||
24 25 22 1 24 25 22 2
|
||||
25 24 26 1 25 24 26 2
|
||||
26 27 25 1 26 27 25 2
|
||||
27 26 28 1 27 26 28 2
|
||||
28 29 27 1 28 29 27 2
|
||||
29 28 30 1 29 28 30 2
|
||||
30 31 29 1 30 31 29 2
|
||||
32 29 28 2 32 29 28 1
|
||||
33 28 29 2 33 28 29 1
|
||||
24 34 22 2 24 34 22 1
|
||||
22 35 32 2 22 35 32 1
|
||||
26 24 22 2 26 24 22 1
|
||||
28 26 32 2 28 26 32 1
|
||||
28 33 30 2 28 33 30 1
|
||||
25 27 32 4 25 27 32 5
|
||||
35 22 25 4 35 22 25 5
|
||||
29 32 27 4 29 32 27 5
|
||||
29 31 33 4 29 31 33 5
|
||||
30 33 31 8 30 33 31 4
|
||||
24 23 34 4 24 23 34 6
|
||||
36 37 38 1 36 37 38 2
|
||||
36 38 39 1 36 38 39 2
|
||||
37 40 38 1 37 40 38 2
|
||||
38 40 41 1 38 40 41 2
|
||||
39 38 41 1 39 38 41 2
|
||||
41 36 39 1 41 36 39 2
|
||||
42 36 41 1 42 36 41 2
|
||||
43 36 42 1 43 36 42 2
|
||||
37 43 40 1 37 43 40 2
|
||||
36 43 37 1 36 43 37 2
|
||||
41 43 42 1 41 43 42 2
|
||||
41 40 43 1 41 40 43 2
|
||||
32 35 25 4 32 35 25 5
|
||||
22 32 26 2 22 32 26 1
|
||||
position 0.0198871009 -0.0192609001 0.0432340018
|
||||
orientation 0.126607046 -0.243210092 -0.961675346 -0.992298007
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0.349020004 0.349020004
|
||||
endnode
|
||||
endmodelgeom Red_L_Rib
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_L_Rib
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_L_Rib
|
||||
node dummy Red_L_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Box02
|
||||
parent Red_L_Rib
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_L_Rib
|
||||
|
||||
donemodel Red_L_Rib
|
||||
186
_content/hak/hyper_gore_prc/red_l_thigh.mdl
Normal file
186
_content/hak/hyper_gore_prc/red_l_thigh.mdl
Normal file
@@ -0,0 +1,186 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_L_Thigh
|
||||
filedependancy Red_L_Thigh.max
|
||||
newmodel Red_L_Thigh
|
||||
setsupermodel Red_L_Thigh NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_L_Thigh
|
||||
node dummy Red_L_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits02
|
||||
parent Red_L_Thigh
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 29
|
||||
-0.187681004 0.00389572 -0.0270894002
|
||||
-0.00736306002 0.111795001 -0.0280792993
|
||||
-0.0800843984 0.00389573001 -0.111768
|
||||
-0.0987790003 0.0750852004 0.0934339017
|
||||
-0.100094996 -0.0672938004 0.107331
|
||||
-0.0515955985 -0.0897514001 -0.0280793998
|
||||
0.069673501 0.124554001 -0.0359389
|
||||
0.0755162984 0.00123035 -0.135705993
|
||||
0.0735730007 0.0422475003 0.125388995
|
||||
0.00136741996 -0.0599507987 0.0620361008
|
||||
0.0813591033 -0.122093 -0.0359389
|
||||
0.279747009 0.0799344033 -0.0254883002
|
||||
0.301643997 0.00430891011 -0.103382997
|
||||
0.192127004 0.0485795997 0.0866578966
|
||||
0.0835556015 -0.0664056018 0.0270949993
|
||||
0.201407 -0.0860966966 -0.0254883002
|
||||
0.173388004 0.00976882037 -0.0296998005
|
||||
-0.230880007 0.00463176984 0.0346441008
|
||||
-0.268353999 0.0278610997 0.0430083983
|
||||
-0.273687005 0.00463178009 0.0271490999
|
||||
-0.230014995 0.0189883001 0.0686692968
|
||||
-0.210951 -0.00972476974 0.0499540009
|
||||
-0.268353999 -0.0185975991 0.0430083983
|
||||
-0.116062 0.0501612984 -0.0197624005
|
||||
-0.127376005 0.00463176984 -0.0508466996
|
||||
-0.0977557972 0.0327706002 0.0305330008
|
||||
-0.0977557972 -0.0235070996 0.0305330008
|
||||
-0.116062 -0.0408978015 -0.0197624005
|
||||
-0.103946 0.00463176006 -0.0135249002
|
||||
tverts 50
|
||||
0.817404985 0.690820992 0
|
||||
0.801183999 0.803068995 0
|
||||
0.886933029 0.690820992 0
|
||||
0.662438989 0.760194004 0
|
||||
0.662438989 0.621448994 0
|
||||
0.801183999 0.578574002 0
|
||||
0.27235201 0.760168016 0
|
||||
0.344090998 0.863484979 0
|
||||
0.27235201 0.863484979 0
|
||||
0.345106006 0.74979502 0
|
||||
0.0137807 0.74979502 0
|
||||
0.0750811994 0.863484979 0
|
||||
0.0127654001 0.863484979 0
|
||||
0.0756177008 0.74979502 0
|
||||
0.137761995 0.735616982 0
|
||||
0.139401004 0.863484979 0
|
||||
0.200614005 0.863484979 0
|
||||
0.199598998 0.771625996 0
|
||||
0.34554401 0.973800004 0
|
||||
0.27235201 0.991805971 0
|
||||
0.0758427009 0.952524006 0
|
||||
0.0142182 0.973800004 0
|
||||
0.137537003 0.952524006 0
|
||||
0.199160993 0.954160988 0
|
||||
0.897237003 0.840579987 0
|
||||
0.981730998 0.840579987 0
|
||||
0.923346996 0.917005002 0
|
||||
0.828880012 0.887812972 0
|
||||
0.828880012 0.793345988 0
|
||||
0.923346996 0.764154017 0
|
||||
0.101084001 0.316334009 0
|
||||
0.121165 0.323231995 0
|
||||
0.101084001 0.323231995 0
|
||||
0.00834047981 0.316334009 0
|
||||
0.0458646007 0.323231995 0
|
||||
0.0284212995 0.323231995 0
|
||||
0.0635600984 0.323231995 0
|
||||
0.0810033977 0.323231995 0
|
||||
0.121165 0.408984989 0
|
||||
0.101084001 0.408984989 0
|
||||
0.0458646007 0.408984989 0
|
||||
0.0284212995 0.408984989 0
|
||||
0.0635600984 0.408984989 0
|
||||
0.0810033977 0.408984989 0
|
||||
0.0778981969 0.358007997 0
|
||||
0.0778983012 0.406717002 0
|
||||
0.0291887 0.373059988 0
|
||||
0.0477940999 0.318601012 0
|
||||
0.108002 0.318601012 0
|
||||
0.126607999 0.373059988 0
|
||||
faces 50
|
||||
0 1 2 1 0 1 2 2
|
||||
0 3 1 1 0 3 1 2
|
||||
0 4 3 1 0 4 3 2
|
||||
0 5 4 1 0 5 4 2
|
||||
0 2 5 1 0 2 5 2
|
||||
2 6 7 2 6 7 8 3
|
||||
2 1 6 2 6 9 7 3
|
||||
1 8 6 2 10 11 12 3
|
||||
1 3 8 2 10 13 11 3
|
||||
3 4 8 2 13 14 11 3
|
||||
8 4 9 2 11 14 15 3
|
||||
4 10 9 2 14 16 15 3
|
||||
4 5 10 2 14 17 16 3
|
||||
5 7 10 2 17 8 16 3
|
||||
5 2 7 2 17 6 8 3
|
||||
7 11 12 2 8 18 19 3
|
||||
7 6 11 2 8 7 18 3
|
||||
6 13 11 2 12 20 21 3
|
||||
6 8 13 2 12 11 20 3
|
||||
8 14 13 2 11 22 20 3
|
||||
8 9 14 2 11 15 22 3
|
||||
9 15 14 2 15 23 22 3
|
||||
9 10 15 2 15 16 23 3
|
||||
10 12 15 2 16 19 23 3
|
||||
10 7 12 2 16 8 19 3
|
||||
16 12 11 1 24 25 26 1
|
||||
16 11 13 1 24 26 27 1
|
||||
16 13 14 1 24 27 28 1
|
||||
16 14 15 1 24 28 29 1
|
||||
16 15 12 1 24 29 25 1
|
||||
17 18 19 1 30 31 32 2
|
||||
17 20 18 1 33 34 35 2
|
||||
17 21 20 1 33 36 34 2
|
||||
17 22 21 1 30 37 36 2
|
||||
17 19 22 1 30 32 37 2
|
||||
19 23 24 2 32 38 39 3
|
||||
19 18 23 2 32 31 38 3
|
||||
18 25 23 2 35 40 41 3
|
||||
18 20 25 2 35 34 40 3
|
||||
20 26 25 2 34 42 40 3
|
||||
20 21 26 2 34 36 42 3
|
||||
21 27 26 2 36 43 42 3
|
||||
21 22 27 2 36 37 43 3
|
||||
22 24 27 2 37 39 43 3
|
||||
22 19 24 2 37 32 39 3
|
||||
28 24 23 1 44 45 46 1
|
||||
28 23 25 1 44 46 47 1
|
||||
28 25 26 1 44 47 48 1
|
||||
28 26 27 1 44 48 49 1
|
||||
28 27 24 1 44 49 45 1
|
||||
position -0.00775504997 0.0287408009 0.00753402989
|
||||
orientation 0 0 1 -3.14159012
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_L_Thigh
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_L_Thigh
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_L_Thigh
|
||||
node dummy Red_L_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits02
|
||||
parent Red_L_Thigh
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.96667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_L_Thigh
|
||||
|
||||
donemodel Red_L_Thigh
|
||||
137
_content/hak/hyper_gore_prc/red_m_arm.mdl
Normal file
137
_content/hak/hyper_gore_prc/red_m_arm.mdl
Normal file
@@ -0,0 +1,137 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Arm
|
||||
filedependancy Red_M_Arm.max
|
||||
newmodel Red_M_Arm
|
||||
setsupermodel Red_M_Arm NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Arm
|
||||
node dummy Red_M_Arm
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh rbicep_g
|
||||
parent Red_M_Arm
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
bitmap chunk64
|
||||
verts 21
|
||||
0.0899088979 -0.0208046008 0.0294585992
|
||||
0.0161617007 0.0391439013 0.0624562018
|
||||
0.0495246015 -0.0552671999 0.0777641982
|
||||
-0.0152559998 -0.0594801009 0.0990429968
|
||||
-0.0460674986 -0.0450585 0.089215897
|
||||
-0.0213808995 -0.0868944973 0.0285116006
|
||||
0.0851192996 0.0551038012 0.00606471999
|
||||
-0.0168047007 -0.0488138013 -0.0241369996
|
||||
0.0469381995 -0.062939398 -0.0235670991
|
||||
0.0532997996 -0.0219714008 -0.0647683963
|
||||
0.043272201 0.131320998 -0.0544969998
|
||||
0.0209689997 0.156836003 -0.149347007
|
||||
-0.0118824998 0.149656996 -0.145106003
|
||||
-0.00376262004 0.0133951996 0.106215
|
||||
-0.0319302008 0.00324363005 0.0212226994
|
||||
0.0113998996 0.105044 -0.166332006
|
||||
0.0243370999 0.00197621994 -0.112314001
|
||||
0.0579943992 0.0910025015 -0.175919995
|
||||
0.0766578019 0.123379998 -0.134849995
|
||||
0.0731900036 0.152700007 -0.151724994
|
||||
0.0656998977 0.0133023001 -0.0900050029
|
||||
tverts 33
|
||||
0.42512399 0.952858984 0
|
||||
0.395325989 0.93107003 0
|
||||
0.425108999 0.998385012 0
|
||||
0.406554997 0.984311998 0
|
||||
0.411042005 0.984243989 0
|
||||
0.406114012 0.979677022 0
|
||||
0.418278009 0.898747027 0
|
||||
0.377685994 0.998385012 0
|
||||
0.362769008 0.952796996 0
|
||||
0.362769008 0.998385012 0
|
||||
0.483256012 0.998385012 0
|
||||
0.483256012 0.952796996 0
|
||||
0.452023 0.95282799 0
|
||||
0.459464997 0.907074988 0
|
||||
0.151989996 0.169627994 0
|
||||
0.0383983999 0.266000986 0
|
||||
0.0434777997 0.238884002 0
|
||||
0.400988013 0.998385012 0
|
||||
0.375582993 0.952789009 0
|
||||
0.483256012 0.757640004 0
|
||||
0.469787002 0.757640004 0
|
||||
0.470414996 0.863997996 0
|
||||
0.445441008 0.757640004 0
|
||||
0.432404011 0.83039701 0
|
||||
0.0180574004 0.0703777969 0
|
||||
0.0065751099 0.0173415001 0
|
||||
0.0355501994 0.250378996 0
|
||||
0.454544008 0.895604014 0
|
||||
0.394028008 0.851799011 0
|
||||
0.362769008 0.827710986 0
|
||||
0.0557592995 0.139633998 0
|
||||
0.400276989 0.985152006 0
|
||||
0.406125009 0.992016971 0
|
||||
faces 38
|
||||
0 1 2 1 0 1 2 1
|
||||
3 4 5 1 3 4 5 1
|
||||
0 6 1 1 0 6 1 1
|
||||
4 7 5 1 7 8 9 1
|
||||
5 7 8 1 10 11 12 1
|
||||
9 0 8 1 13 0 12 1
|
||||
10 11 12 1 14 15 16 1
|
||||
13 14 4 1 17 18 7 1
|
||||
12 15 16 1 19 20 21 1
|
||||
12 16 7 1 19 21 11 1
|
||||
16 17 18 1 21 22 23 1
|
||||
15 11 17 1 24 15 25 1
|
||||
17 11 19 1 25 15 26 1
|
||||
9 7 16 1 13 11 21 1
|
||||
16 18 20 1 21 23 27 1
|
||||
16 20 9 1 21 27 13 1
|
||||
15 17 16 1 20 22 21 1
|
||||
12 11 15 1 16 15 24 1
|
||||
10 19 11 1 14 26 15 1
|
||||
6 10 1 1 6 28 1 1
|
||||
18 10 6 1 23 28 6 1
|
||||
10 12 1 1 28 29 1 1
|
||||
19 10 18 1 26 14 30 1
|
||||
12 14 1 1 29 18 1 1
|
||||
17 19 18 1 25 26 30 1
|
||||
2 1 13 1 2 1 17 1
|
||||
18 6 20 1 23 6 27 1
|
||||
20 6 9 1 27 6 13 1
|
||||
9 6 0 1 13 6 0 1
|
||||
8 7 9 1 12 11 13 1
|
||||
8 2 5 1 12 2 10 1
|
||||
8 0 2 1 12 0 2 1
|
||||
2 13 3 1 31 32 3 1
|
||||
2 3 5 1 31 3 5 1
|
||||
4 3 13 1 4 3 32 1
|
||||
14 13 1 1 18 17 1 1
|
||||
4 14 7 1 7 18 8 1
|
||||
14 12 7 1 18 29 8 1
|
||||
position -0.00359124993 0.000820841 -0.0496226996
|
||||
orientation 0.92330426 0.382863045 -0.0304168053 -0.790305972
|
||||
endnode
|
||||
endmodelgeom Red_M_Arm
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Arm
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_M_Arm
|
||||
node dummy Red_M_Arm
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node dummy rbicep_g
|
||||
parent Red_M_Arm
|
||||
#part-number 1
|
||||
endnode
|
||||
doneanim impact Red_M_Arm
|
||||
|
||||
donemodel Red_M_Arm
|
||||
139
_content/hak/hyper_gore_prc/red_m_bone.mdl
Normal file
139
_content/hak/hyper_gore_prc/red_m_bone.mdl
Normal file
@@ -0,0 +1,139 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Bone
|
||||
filedependancy Red_M_Bone.max
|
||||
newmodel Red_M_Bone
|
||||
setsupermodel Red_M_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Bone
|
||||
node dummy Red_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder01
|
||||
parent Red_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 19
|
||||
-0.151241004 -0.0392865986 0.0210398007
|
||||
-0.267132998 -0.0743079036 0.0377258994
|
||||
-0.190487996 0.00843387004 -0.0156022003
|
||||
-0.27322799 -0.0303019006 -0.0533745997
|
||||
-0.265594006 0.0112773003 -0.0170191005
|
||||
-0.242765993 0.0181463994 0.0691497028
|
||||
-0.256740004 0.0565626994 -0.0362837985
|
||||
-0.261891991 0.0564960986 0.0128635997
|
||||
-0.31368199 -0.0530332997 0.00604833988
|
||||
-0.301593006 0.0345351994 0.0157197006
|
||||
0.171434999 -0.034168601 -0.0700417012
|
||||
0.0818551034 0.0182967 -0.0175508
|
||||
0.105692998 -0.0344845988 0.0252161995
|
||||
0.148078993 -0.00177470001 0.0380335003
|
||||
0.184406996 0.082705602 0.0194201991
|
||||
0.170227006 0.0383139998 0.0666178018
|
||||
0.189258993 -0.0963518992 0.064267002
|
||||
0.255106986 -0.054968901 0.00356160989
|
||||
0.188747004 0.0689572021 -0.0564981997
|
||||
tverts 29
|
||||
0.120379999 0.736472011 0
|
||||
0.192886993 0.598608971 0
|
||||
0.129421994 0.598609984 0
|
||||
0.193140998 0.736472011 0
|
||||
0.133543998 0.595341027 0
|
||||
0.159429997 0.736472011 0
|
||||
0.0934150964 0.736517012 0
|
||||
0.0767308995 0.598608971 0
|
||||
0.0773202032 0.597513974 0
|
||||
0.0737845972 0.736472011 0
|
||||
0.168595001 0.520986974 0
|
||||
0.128011003 0.513225973 0
|
||||
0.195205003 0.515604019 0
|
||||
0.235930994 0.51610899 0
|
||||
0.150830001 0.432363003 0
|
||||
0.0701285973 0.430536985 0
|
||||
0.125956997 0.596671999 0
|
||||
0.202594995 0.598426998 0
|
||||
0.126155004 0.512517989 0
|
||||
0.0179772992 0.594245017 0
|
||||
0.0323559009 0.515367985 0
|
||||
0.0789145008 0.515080988 0
|
||||
0.127707005 0.444700003 0
|
||||
0.192576006 0.443760991 0
|
||||
0.079736799 0.44421801 0
|
||||
0.0775178969 0.513360023 0
|
||||
0.192771003 0.515345991 0
|
||||
0.0788709 0.855902016 0
|
||||
0.144240007 0.855902016 0
|
||||
faces 34
|
||||
0 1 2 1 0 1 2 3
|
||||
0 2 1 1 0 3 1 3
|
||||
2 3 4 1 3 4 1 3
|
||||
2 1 3 1 3 5 4 3
|
||||
1 2 5 1 5 6 4 3
|
||||
2 6 7 1 4 6 7 3
|
||||
5 8 1 1 4 7 8 1
|
||||
4 8 5 1 6 9 7 1
|
||||
4 9 6 1 9 2 7 1
|
||||
2 4 6 1 9 0 2 3
|
||||
2 7 5 1 2 10 11 3
|
||||
4 5 9 1 2 1 10 1
|
||||
4 3 8 1 1 12 13 1
|
||||
10 2 11 1 14 4 12 3
|
||||
2 12 11 1 4 15 12 3
|
||||
2 0 12 1 4 8 16 3
|
||||
13 11 12 1 4 17 18 3
|
||||
0 2 10 1 8 19 20 3
|
||||
11 13 14 1 7 21 20 3
|
||||
14 13 15 1 7 2 21 3
|
||||
13 12 16 1 22 21 11 3
|
||||
12 0 10 1 18 23 12 3
|
||||
17 15 13 1 22 23 18 1
|
||||
17 13 16 1 24 18 25 1
|
||||
12 10 16 1 22 24 21 3
|
||||
11 18 10 1 10 1 26 3
|
||||
17 10 18 1 2 11 21 1
|
||||
11 14 18 1 8 20 25 3
|
||||
9 5 7 1 22 18 24 1
|
||||
9 7 6 1 10 26 11 1
|
||||
8 3 1 1 22 11 26 1
|
||||
17 18 14 1 22 26 23 1
|
||||
17 14 15 1 1 13 26 1
|
||||
17 16 10 1 0 27 28 1
|
||||
position 0.00296265003 0.00389383011 0
|
||||
orientation -1 0 0 -0.959930956
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.427451015 0.427451015 0.427451015
|
||||
endnode
|
||||
endmodelgeom Red_M_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Bone
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_M_Bone
|
||||
node dummy Red_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder01
|
||||
parent Red_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_M_Bone
|
||||
|
||||
donemodel Red_M_Bone
|
||||
345
_content/hak/hyper_gore_prc/red_m_chunk.mdl
Normal file
345
_content/hak/hyper_gore_prc/red_m_chunk.mdl
Normal file
@@ -0,0 +1,345 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Chunk
|
||||
filedependancy Red_M_Chunk.max
|
||||
newmodel Red_M_Chunk
|
||||
setsupermodel Red_M_Chunk NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Chunk
|
||||
node dummy Red_M_Chunk
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits
|
||||
parent Red_M_Chunk
|
||||
#part-number 1
|
||||
ambient 0.179083005 0.0653588027 0.0653588027
|
||||
diffuse 0.639216006 0 0
|
||||
specular 0.0450000018 0.0450000018 0.0450000018
|
||||
shininess 26
|
||||
shadow 0
|
||||
bitmap thigh
|
||||
verts 29
|
||||
0.0198516995 0.000355355005 -0.0118300999
|
||||
0.0438099988 0.0568341985 -0.00406771991
|
||||
0.0529763997 0.000355357013 -0.0451020002
|
||||
0.0438099988 0.0352611989 0.0623271018
|
||||
0.0312805995 -0.0345504992 0.0623271018
|
||||
0.0631010011 -0.0561234988 -0.00406773994
|
||||
0.144274995 0.0686948001 -0.00792144984
|
||||
0.144274995 0.000355363009 -0.0575729012
|
||||
0.144274995 0.0425914004 0.0724162981
|
||||
0.144274995 -0.0308305994 0.0533219986
|
||||
0.144274995 -0.0679839998 -0.00792147033
|
||||
0.241758004 0.0529241003 -0.00279725995
|
||||
0.257669985 0.000355366996 -0.0409906991
|
||||
0.222957 0.0328445993 0.0590009987
|
||||
0.222957 -0.0321338996 0.0590009987
|
||||
0.224402994 -0.0522134006 -0.00279727997
|
||||
0.212689996 0.000355363998 0.0142834
|
||||
-0.0102281999 0.000716259005 -0.00214538001
|
||||
-0.00365678011 0.0121061997 -0.00375475991
|
||||
-0.0036567701 0.000716259994 -0.0120299999
|
||||
-0.00365678011 0.00775559992 0.0096348701
|
||||
-0.00365678011 -0.00632308982 0.0096348701
|
||||
-0.0036567701 -0.0106736002 -0.00375476992
|
||||
0.0780360028 0.0121061997 -0.00375475991
|
||||
0.0780360028 0.00071626401 -0.0120299999
|
||||
0.0780360028 0.00775561016 0.0096348701
|
||||
0.0780360028 -0.00632308004 0.0096348701
|
||||
0.0780360028 -0.0106736002 -0.00375476992
|
||||
0.0780360028 0.000716263021 -5.39588982e-005
|
||||
tverts 50
|
||||
0.817404985 0.690820992 0
|
||||
0.801183999 0.803068995 0
|
||||
0.886933029 0.690820992 0
|
||||
0.662438989 0.760194004 0
|
||||
0.662438989 0.621448994 0
|
||||
0.801183999 0.578574002 0
|
||||
0.27235201 0.760168016 0
|
||||
0.344090998 0.863484979 0
|
||||
0.27235201 0.863484979 0
|
||||
0.345106006 0.74979502 0
|
||||
0.0137807 0.74979502 0
|
||||
0.0750811994 0.863484979 0
|
||||
0.0127654001 0.863484979 0
|
||||
0.0756177008 0.74979502 0
|
||||
0.139401004 0.863484979 0
|
||||
0.137761995 0.735616982 0
|
||||
0.200614005 0.863484979 0
|
||||
0.199598998 0.771625996 0
|
||||
0.34554401 0.973800004 0
|
||||
0.27235201 0.991805971 0
|
||||
0.0758427009 0.952524006 0
|
||||
0.0142182 0.973800004 0
|
||||
0.137537003 0.952524006 0
|
||||
0.199160993 0.954160988 0
|
||||
0.897237003 0.840579987 0
|
||||
0.981730998 0.840579987 0
|
||||
0.923346996 0.917005002 0
|
||||
0.828880012 0.887812972 0
|
||||
0.828880012 0.793345988 0
|
||||
0.923346996 0.764154017 0
|
||||
0.101084001 0.316334009 0
|
||||
0.121165 0.323231995 0
|
||||
0.101084001 0.323231995 0
|
||||
0.00834047981 0.316334009 0
|
||||
0.0458646007 0.323231995 0
|
||||
0.0284212995 0.323231995 0
|
||||
0.0635600984 0.323231995 0
|
||||
0.0810033977 0.323231995 0
|
||||
0.121165 0.408984989 0
|
||||
0.101084001 0.408984989 0
|
||||
0.0458646007 0.408984989 0
|
||||
0.0284212995 0.408984989 0
|
||||
0.0635600984 0.408984989 0
|
||||
0.0810033977 0.408984989 0
|
||||
0.0778981969 0.358007997 0
|
||||
0.0778983012 0.406717002 0
|
||||
0.0291887 0.373059988 0
|
||||
0.0477940999 0.318601012 0
|
||||
0.108002 0.318601012 0
|
||||
0.126607999 0.373059988 0
|
||||
faces 50
|
||||
0 1 2 1 0 1 2 2
|
||||
0 3 1 1 0 3 1 2
|
||||
0 4 3 1 0 4 3 2
|
||||
0 5 4 1 0 5 4 2
|
||||
0 2 5 1 0 2 5 2
|
||||
2 6 7 2 6 7 8 3
|
||||
2 1 6 2 6 9 7 3
|
||||
1 8 6 2 10 11 12 3
|
||||
1 3 8 2 10 13 11 3
|
||||
3 9 8 2 13 14 11 3
|
||||
3 4 9 2 13 15 14 3
|
||||
4 10 9 2 15 16 14 3
|
||||
4 5 10 2 15 17 16 3
|
||||
5 7 10 2 17 8 16 3
|
||||
5 2 7 2 17 6 8 3
|
||||
7 11 12 2 8 18 19 3
|
||||
7 6 11 2 8 7 18 3
|
||||
6 13 11 2 12 20 21 3
|
||||
6 8 13 2 12 11 20 3
|
||||
8 14 13 2 11 22 20 3
|
||||
8 9 14 2 11 14 22 3
|
||||
9 15 14 2 14 23 22 3
|
||||
9 10 15 2 14 16 23 3
|
||||
10 12 15 2 16 19 23 3
|
||||
10 7 12 2 16 8 19 3
|
||||
16 12 11 1 24 25 26 1
|
||||
16 11 13 1 24 26 27 1
|
||||
16 13 14 1 24 27 28 1
|
||||
16 14 15 1 24 28 29 1
|
||||
16 15 12 1 24 29 25 1
|
||||
17 18 19 1 30 31 32 2
|
||||
17 20 18 1 33 34 35 2
|
||||
17 21 20 1 33 36 34 2
|
||||
17 22 21 1 30 37 36 2
|
||||
17 19 22 1 30 32 37 2
|
||||
19 23 24 2 32 38 39 3
|
||||
19 18 23 2 32 31 38 3
|
||||
18 25 23 2 35 40 41 3
|
||||
18 20 25 2 35 34 40 3
|
||||
20 26 25 2 34 42 40 3
|
||||
20 21 26 2 34 36 42 3
|
||||
21 27 26 2 36 43 42 3
|
||||
21 22 27 2 36 37 43 3
|
||||
22 24 27 2 37 39 43 3
|
||||
22 19 24 2 37 32 39 3
|
||||
28 24 23 1 44 45 46 1
|
||||
28 23 25 1 44 46 47 1
|
||||
28 25 26 1 44 47 48 1
|
||||
28 26 27 1 44 48 49 1
|
||||
28 27 24 1 44 49 45 1
|
||||
position 0.000972061011 -0.000552195997 0
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0 0 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky
|
||||
parent meaty_bits
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 1
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Billboard_to_World_Z
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000972061011 0.000552195997 0.0149549004
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.400000006
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate -550
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 0
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Spray
|
||||
parent meaty_bits
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 1
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.239680007 0.000552195997 0.00713340985
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0160000008
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate -1061
|
||||
lifeExp 1.39999998
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity -0.155555993
|
||||
randvel 1.19192004
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom Red_M_Chunk
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Chunk
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_M_Chunk
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
event 0.166666999 detonate
|
||||
node dummy Red_M_Chunk
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits
|
||||
parent Red_M_Chunk
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
endnode
|
||||
node emitter L_Red_Sticky
|
||||
parent meaty_bits
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 30
|
||||
0.0333333015 30
|
||||
0.300000012 -550
|
||||
velocitykey 3
|
||||
0 5
|
||||
0.0333333015 4.88899994
|
||||
0.300000012 0
|
||||
randvelkey 2
|
||||
0 2.5
|
||||
0.300000012 1
|
||||
endnode
|
||||
node emitter L_Red_Spray
|
||||
parent meaty_bits
|
||||
#part-number 3
|
||||
birthratekey 4
|
||||
0 30
|
||||
0.0333333015 30
|
||||
0.166666999 -500
|
||||
0.333332986 -1205.70996
|
||||
masskey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.333332986 1.5
|
||||
velocitykey 4
|
||||
0 5
|
||||
0.0333333015 5
|
||||
0.166666999 1
|
||||
0.333332986 0
|
||||
randvelkey 2
|
||||
0.0333333015 2
|
||||
0.333332986 1
|
||||
bounce_cokey 1
|
||||
0.0333333015 0.0500000007
|
||||
endnode
|
||||
doneanim impact Red_M_Chunk
|
||||
|
||||
donemodel Red_M_Chunk
|
||||
76
_content/hak/hyper_gore_prc/red_m_giblet.mdl
Normal file
76
_content/hak/hyper_gore_prc/red_m_giblet.mdl
Normal file
@@ -0,0 +1,76 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Giblet
|
||||
filedependancy Red_M_Giblet.max
|
||||
newmodel Red_M_Giblet
|
||||
setsupermodel Red_M_Giblet NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Giblet
|
||||
node dummy Red_M_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk
|
||||
parent Red_M_Giblet
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 4
|
||||
0.0510978997 -0.0199733991 0.0391470008
|
||||
0.0602759011 0.0837329999 -0.00851735007
|
||||
-0.107616998 0.0361201987 -0.0443286002
|
||||
0.0103289001 -0.0272585992 -0.0560190007
|
||||
tverts 11
|
||||
0.346709013 0.121670999 0
|
||||
0.327488005 0.190540001 0
|
||||
0.270747006 0.138432994 0
|
||||
0.255984008 0.143068001 0
|
||||
0.220780998 0.153753996 0
|
||||
0.184492007 0.100611001 0
|
||||
0.31408599 0.0550757982 0
|
||||
0.383143008 0.0332172997 0
|
||||
0.129675999 0.251763999 0
|
||||
0.0928027034 0.195371002 0
|
||||
0.0968097001 0.237742007 0
|
||||
faces 4
|
||||
0 1 2 1 0 1 2 2
|
||||
0 2 3 1 3 4 5 2
|
||||
3 2 1 1 0 6 7 2
|
||||
3 1 0 1 8 9 10 2
|
||||
position 0.0195809994 -0.0207215007 0.00501460023
|
||||
orientation 0 0 -1 -0.933750987
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_M_Giblet
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Giblet
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_M_Giblet
|
||||
node dummy Red_M_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk
|
||||
parent Red_M_Giblet
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_M_Giblet
|
||||
|
||||
donemodel Red_M_Giblet
|
||||
214
_content/hak/hyper_gore_prc/red_m_rib.mdl
Normal file
214
_content/hak/hyper_gore_prc/red_m_rib.mdl
Normal file
@@ -0,0 +1,214 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Rib
|
||||
filedependancy Red_M_Rib.max
|
||||
newmodel Red_M_Rib
|
||||
setsupermodel Red_M_Rib NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Rib
|
||||
node dummy Red_M_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Box01
|
||||
parent Red_M_Rib
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 44
|
||||
-0.102519996 0.0148497 -0.0362402014
|
||||
-0.109803997 0.0755188018 -0.0396342985
|
||||
-0.00506677991 0.0657448992 -0.0477689989
|
||||
-0.00654781982 0.0181042999 -0.0613391995
|
||||
0.0905665979 0.0640754998 -0.0292358994
|
||||
0.0984752998 0.0203686003 -0.0414374992
|
||||
0.154871002 0.0626239032 0.0342590995
|
||||
0.169554994 0.0223375 0.0271818005
|
||||
0.165562004 0.0583911017 0.110592
|
||||
0.181725994 0.0259770993 0.110878997
|
||||
-0.110128999 0.0222503003 -0.0282869004
|
||||
0.157325998 0.0443569012 0.0932613984
|
||||
-0.118165001 0.0669578984 -0.0282869004
|
||||
-0.155778006 0.103570998 -0.0240512993
|
||||
-0.132207006 0.0654968023 -0.0628399029
|
||||
-0.174445003 0.00794719998 -0.0322887003
|
||||
-0.135327995 0.0824782997 0.0205253996
|
||||
-0.103515998 0.0824782997 -0.0482078008
|
||||
-0.164390996 0.0144384997 0.0122878999
|
||||
-0.127726004 0.0197455008 -0.00374775007
|
||||
-0.103327997 0.0180941001 -0.0198649
|
||||
-0.111477003 0.00794718973 -0.0482078008
|
||||
-0.112594001 -0.0560764 -0.0396342985
|
||||
-0.107446998 0.00275878003 -0.0396342985
|
||||
-0.0194364991 -0.02183 -0.0265919995
|
||||
-0.00798438955 -0.0749737024 -0.0413617007
|
||||
0.0689226985 -0.0382907987 0.00189359998
|
||||
0.0857886001 -0.0847129002 -0.0106036998
|
||||
0.119015999 -0.0541476011 0.0483895987
|
||||
0.128864005 -0.0965844989 0.0466862991
|
||||
0.133784994 -0.0687756985 0.134220004
|
||||
0.141358003 -0.103024997 0.125184
|
||||
0.0622107014 -0.065092802 -0.00162521994
|
||||
0.122833997 -0.0810955018 0.116057999
|
||||
-0.126840994 -0.00554494001 -0.0282869004
|
||||
-0.00951305963 -0.0533824004 -0.0219816994
|
||||
-0.100575998 0.00914376974 -0.0482078008
|
||||
-0.132841006 -0.0104288002 -0.0628399029
|
||||
-0.176289007 0.00355206011 -0.0322887003
|
||||
-0.133064002 0.00615319982 0.0255902
|
||||
-0.177732006 -0.0589217991 -0.0322887003
|
||||
-0.148016006 -0.0474006012 -0.0037477701
|
||||
-0.106000997 -0.0550118014 -0.0198650006
|
||||
-0.115002997 -0.0644098967 -0.0482078008
|
||||
tverts 44
|
||||
0.00342108007 0.333196014 0
|
||||
0.00699727004 0.413017988 0
|
||||
0.0729679987 0.407009006 0
|
||||
0.0634485036 0.324393988 0
|
||||
0.122654997 0.405620992 0
|
||||
0.176512003 0.325513005 0
|
||||
0.187279001 0.405173987 0
|
||||
0.282009989 0.325046986 0
|
||||
0.181100994 0.40279299 0
|
||||
0.280249 0.328171015 0
|
||||
0.042299401 0.361036003 0
|
||||
0.279861987 0.411763996 0
|
||||
0.00321007008 0.412252009 0
|
||||
0.415859997 0.156523004 0
|
||||
0.450165004 0.144098997 0
|
||||
0.396795988 0.074067302 0
|
||||
0.437620997 0.154735997 0
|
||||
0.533258975 0.168834999 0
|
||||
0.394232988 0.0767543986 0
|
||||
0.453543991 0.0909162015 0
|
||||
0.541872978 0.0530773997 0
|
||||
0.537597001 0.0317687988 0
|
||||
0.0289942995 0.331753999 0
|
||||
0.036719501 0.401879996 0
|
||||
0.0878055021 0.404309005 0
|
||||
0.101386003 0.329795003 0
|
||||
0.132955 0.410039008 0
|
||||
0.140426993 0.331182003 0
|
||||
0.193737 0.406726986 0
|
||||
0.200320005 0.330601007 0
|
||||
0.237218007 0.358029991 0
|
||||
0.267439008 0.331750989 0
|
||||
0.158251002 0.379772991 0
|
||||
0.258121997 0.412032992 0
|
||||
0.0392090008 0.408051014 0
|
||||
0.106036998 0.379628986 0
|
||||
0.800803006 0.689691007 0
|
||||
0.76335597 0.698368013 0
|
||||
0.800379992 0.80261898 0
|
||||
0.804775 0.707692027 0
|
||||
0.731886029 0.79855603 0
|
||||
0.763222992 0.722055018 0
|
||||
0.745423019 0.661804974 0
|
||||
0.749786019 0.667542994 0
|
||||
faces 69
|
||||
0 1 2 1 0 1 2 2
|
||||
2 3 0 1 2 3 0 2
|
||||
3 2 4 1 3 2 4 2
|
||||
4 5 3 1 4 5 3 2
|
||||
5 4 6 1 5 4 6 2
|
||||
6 7 5 1 6 7 5 2
|
||||
7 6 8 1 7 6 8 2
|
||||
8 9 7 1 8 9 7 2
|
||||
10 3 2 2 10 3 2 1
|
||||
3 5 4 2 3 5 4 1
|
||||
4 2 3 2 4 2 3 1
|
||||
5 7 6 2 5 7 6 1
|
||||
6 4 5 2 6 4 5 1
|
||||
11 6 7 2 11 6 7 1
|
||||
2 12 10 2 2 12 10 1
|
||||
6 11 8 2 6 11 8 1
|
||||
3 10 0 4 3 10 0 5
|
||||
7 9 11 4 7 9 11 5
|
||||
8 11 9 8 8 11 9 4
|
||||
2 1 12 4 2 1 12 6
|
||||
13 14 15 1 13 14 15 2
|
||||
13 15 16 1 13 15 16 2
|
||||
13 16 17 1 13 16 17 2
|
||||
13 17 14 1 13 17 14 2
|
||||
15 18 16 1 15 18 16 2
|
||||
19 17 16 1 19 17 16 2
|
||||
20 17 19 1 20 17 19 2
|
||||
21 17 20 1 21 17 20 2
|
||||
14 21 15 1 14 21 15 2
|
||||
17 21 14 1 17 21 14 2
|
||||
19 18 15 1 19 18 15 2
|
||||
18 19 16 1 18 19 16 2
|
||||
19 21 20 1 19 21 20 2
|
||||
19 15 21 1 19 15 21 2
|
||||
22 23 24 1 22 23 24 2
|
||||
24 25 22 1 24 25 22 2
|
||||
25 24 26 1 25 24 26 2
|
||||
26 27 25 1 26 27 25 2
|
||||
27 26 28 1 27 26 28 2
|
||||
28 29 27 1 28 29 27 2
|
||||
29 28 30 1 29 28 30 2
|
||||
30 31 29 1 30 31 29 2
|
||||
32 29 28 2 32 29 28 1
|
||||
33 28 29 2 33 28 29 1
|
||||
24 34 22 2 24 34 22 1
|
||||
22 35 32 2 22 35 32 1
|
||||
26 24 22 2 26 24 22 1
|
||||
28 26 32 2 28 26 32 1
|
||||
28 33 30 2 28 33 30 1
|
||||
25 27 32 4 25 27 32 5
|
||||
35 22 25 4 35 22 25 5
|
||||
29 32 27 4 29 32 27 5
|
||||
29 31 33 4 29 31 33 5
|
||||
30 33 31 8 30 33 31 4
|
||||
24 23 34 4 24 23 34 6
|
||||
36 37 38 1 36 37 38 2
|
||||
36 38 39 1 36 38 39 2
|
||||
37 40 38 1 37 40 38 2
|
||||
38 40 41 1 38 40 41 2
|
||||
39 38 41 1 39 38 41 2
|
||||
41 36 39 1 41 36 39 2
|
||||
42 36 41 1 42 36 41 2
|
||||
43 36 42 1 43 36 42 2
|
||||
37 43 40 1 37 43 40 2
|
||||
36 43 37 1 36 43 37 2
|
||||
41 43 42 1 41 43 42 2
|
||||
41 40 43 1 41 40 43 2
|
||||
32 35 25 4 32 35 25 5
|
||||
22 32 26 2 22 32 26 1
|
||||
position 0.0198871009 -0.00234136009 0.0432340018
|
||||
orientation 0 -1 0 -0.261799008
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0.349020004 0.349020004
|
||||
endnode
|
||||
endmodelgeom Red_M_Rib
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Rib
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot Red_M_Rib
|
||||
node dummy Red_M_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Box01
|
||||
parent Red_M_Rib
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_M_Rib
|
||||
|
||||
donemodel Red_M_Rib
|
||||
107
_content/hak/hyper_gore_prc/red_m_thigh.mdl
Normal file
107
_content/hak/hyper_gore_prc/red_m_thigh.mdl
Normal file
@@ -0,0 +1,107 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Thigh
|
||||
filedependancy Red_M_Thigh.max
|
||||
newmodel Red_M_Thigh
|
||||
setsupermodel Red_M_Thigh NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Thigh
|
||||
node dummy Red_M_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits
|
||||
parent Red_M_Thigh
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 12
|
||||
-0.150059998 0.00351429009 -0.0190185998
|
||||
0.0421389006 0.0936248004 -0.0256276
|
||||
0.0465025008 0.00152373 -0.100137003
|
||||
-0.0836658031 0.0566803999 0.0709913969
|
||||
-0.0846486017 -0.0496518984 0.0813701004
|
||||
0.133589998 0.0368853994 0.065930903
|
||||
0.140521005 -0.0636944026 -0.0178228002
|
||||
0.215379998 0.0038228801 -0.0759963989
|
||||
-0.237647995 0.036822699 0.0681563988
|
||||
-0.0560166016 0.0402226001 0.0167136006
|
||||
-0.0739087015 -0.0197234992 0.0168570001
|
||||
-0.0457419008 0.00391972996 0.0542755015
|
||||
tverts 22
|
||||
0.817404985 0.690820992 0
|
||||
0.801183999 0.803068995 0
|
||||
0.886933029 0.690820992 0
|
||||
0.662438989 0.760194004 0
|
||||
0.662438989 0.621448994 0
|
||||
0.801183999 0.578574002 0
|
||||
0.27235201 0.760168016 0
|
||||
0.344090998 0.863484979 0
|
||||
0.27235201 0.863484979 0
|
||||
0.345106006 0.74979502 0
|
||||
0.0137807 0.74979502 0
|
||||
0.0750811994 0.863484979 0
|
||||
0.0127654001 0.863484979 0
|
||||
0.0756177008 0.74979502 0
|
||||
0.137761995 0.735616982 0
|
||||
0.0781868994 0.863484979 0
|
||||
0.139401004 0.863484979 0
|
||||
0.200442001 0.607748985 0
|
||||
0.199598998 0.771625996 0
|
||||
0.200614005 0.863484979 0
|
||||
0.34554401 0.973800004 0
|
||||
0.27235201 0.991805971 0
|
||||
faces 16
|
||||
0 1 2 1 0 1 2 2
|
||||
0 3 1 1 0 3 1 2
|
||||
0 4 3 1 0 4 3 2
|
||||
1 3 5 2 0 5 4 3
|
||||
3 4 5 2 0 2 5 3
|
||||
4 0 6 2 6 7 8 3
|
||||
0 2 6 2 6 9 7 3
|
||||
2 1 7 2 10 11 12 3
|
||||
1 5 7 2 10 13 11 3
|
||||
6 2 7 2 13 14 11 3
|
||||
6 5 4 1 15 14 16 1
|
||||
7 5 6 1 14 17 16 1
|
||||
8 9 10 1 14 18 19 3
|
||||
8 11 9 1 18 8 19 3
|
||||
11 8 10 1 18 6 8 3
|
||||
10 9 11 2 8 20 21 1
|
||||
position -0.0188402999 0.0446284004 0.00753402989
|
||||
orientation 0 0 1 -1.22172999
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_M_Thigh
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Thigh
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_M_Thigh
|
||||
node dummy Red_M_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits
|
||||
parent Red_M_Thigh
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.96667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_M_Thigh
|
||||
|
||||
donemodel Red_M_Thigh
|
||||
214
_content/hak/hyper_gore_prc/red_m_torso.mdl
Normal file
214
_content/hak/hyper_gore_prc/red_m_torso.mdl
Normal file
@@ -0,0 +1,214 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_M_Torso
|
||||
filedependancy Red_M_Torso.max
|
||||
newmodel Red_M_Torso
|
||||
setsupermodel Red_M_Torso NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_M_Torso
|
||||
node dummy Red_M_Torso
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh torso_g
|
||||
parent Red_M_Torso
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
bitmap chunk64
|
||||
verts 37
|
||||
0.155836999 -0.175873995 0.271131009
|
||||
0.166397005 -0.159642994 0.406342
|
||||
-0.000365698012 -0.194232002 0.30271399
|
||||
0.126266003 -0.0734608993 0.348221987
|
||||
0.174052998 -0.0483166985 0.444099009
|
||||
0.0454481989 -0.116549 0.494978011
|
||||
-0.00248345011 -0.167238995 0.449117988
|
||||
-0.00248345011 -0.060153801 0.499538988
|
||||
-0.00158549997 -0.104835004 -0.00910982024
|
||||
-0.0892907009 -0.0332180001 0.102706
|
||||
0.00839946046 -0.0333359987 0.103607997
|
||||
0.0648586974 -0.0267944001 0.0706136003
|
||||
0.0918266997 -0.0830219984 -0.00371524994
|
||||
-0.000365699001 0.109417997 0.263004005
|
||||
0.173364997 0.0742561966 0.267780006
|
||||
0.162973002 0.0603751987 0.231373996
|
||||
-0.000365702988 0.0638381019 0.415499002
|
||||
0.165083006 0.0401920006 0.393225998
|
||||
0.166077003 -0.0483166985 0.148383006
|
||||
0.149347007 -0.0190571006 -0.00338881998
|
||||
0.083949998 0.0484137982 0.168167993
|
||||
0.0881725028 -0.140887007 0.200614005
|
||||
0.0274823997 0.0576133989 0.226659
|
||||
-0.00248345011 -0.116549 0.494978011
|
||||
-0.0910850018 -0.129010007 0.141783997
|
||||
-0.167128995 -0.159642994 0.406342
|
||||
-0.157807007 -0.169131994 0.237734005
|
||||
-0.236564994 -0.0738179982 0.352212012
|
||||
-0.174784005 -0.0483167991 0.444099009
|
||||
-0.0461796001 -0.116549 0.494978011
|
||||
-0.0926460996 -0.0830219984 -0.00371528999
|
||||
-0.150121003 -0.0190571006 -0.00338891009
|
||||
-0.174096003 0.0742560998 0.267780006
|
||||
-0.163705006 0.0603751987 0.231373996
|
||||
-0.165813997 0.0401919 0.393225998
|
||||
-0.166930005 -0.0483166985 0.148383006
|
||||
-0.130611002 0.0362835005 0.227970004
|
||||
tverts 62
|
||||
0.588402987 0.247273996 0
|
||||
0.579302013 0.41180101 0
|
||||
0.762610018 0.278795004 0
|
||||
0.821856976 0.606022 0
|
||||
0.780951977 0.677730978 0
|
||||
0.848430991 0.698652983 0
|
||||
0.722223997 0.48229301 0
|
||||
0.763287008 0.429453999 0
|
||||
0.798307002 0.484203994 0
|
||||
0.944782019 0.474693 0
|
||||
0.777529001 0.488981992 0
|
||||
0.770995021 0.578145027 0
|
||||
0.72911799 0.638296008 0
|
||||
0.768293977 0.638296008 0
|
||||
0.808615029 0.638296008 0
|
||||
0.815598011 0.596466005 0
|
||||
0.779965997 0.284862995 0
|
||||
0.955132008 0.290511012 0
|
||||
0.949958026 0.259449989 0
|
||||
0.781410992 0.419364005 0
|
||||
0.955495 0.376599997 0
|
||||
0.812626004 0.772297978 0
|
||||
0.724336982 0.800642014 0
|
||||
0.640305996 0.698652983 0
|
||||
0.726696014 0.592517018 0
|
||||
0.936834991 0.0335406996 0
|
||||
0.865024984 0.0422393009 0
|
||||
0.579900026 0.177046999 0
|
||||
0.663932979 0.193794996 0
|
||||
0.815672994 0.703643978 0
|
||||
0.84306401 0.650189996 0
|
||||
0.767753005 0.721136987 0
|
||||
0.780152977 0.0468836986 0
|
||||
0.571462989 0.458934009 0
|
||||
0.767040014 0.479178995 0
|
||||
0.770623028 0.482497007 0
|
||||
0.762567997 0.0429269001 0
|
||||
0.658477008 0.0475521982 0
|
||||
0.59473902 0.0448109992 0
|
||||
0.983255029 0.157721996 0
|
||||
0.698714972 0.789092004 0
|
||||
0.663551986 0.193794996 0
|
||||
0.579859018 0.41180101 0
|
||||
0.588940024 0.247273996 0
|
||||
0.520401001 0.337249994 0
|
||||
0.571650982 0.458934009 0
|
||||
0.722057998 0.48229301 0
|
||||
0.944968998 0.474693 0
|
||||
0.790512979 0.481860995 0
|
||||
0.727515996 0.596466005 0
|
||||
0.70007199 0.650189996 0
|
||||
0.954841971 0.290511012 0
|
||||
0.949913025 0.259449989 0
|
||||
0.954976976 0.376599997 0
|
||||
0.985159993 0.331263989 0
|
||||
0.580052972 0.177046999 0
|
||||
0.936932981 0.033540599 0
|
||||
0.864562988 0.0422392003 0
|
||||
0.594835997 0.0448109992 0
|
||||
0.720978022 0.703643978 0
|
||||
0.658775985 0.0475521982 0
|
||||
0.983407974 0.157721996 0
|
||||
faces 70
|
||||
0 1 2 1 0 1 2 1
|
||||
1 3 4 1 3 4 5 1
|
||||
1 5 6 1 1 6 7 1
|
||||
5 4 7 1 8 9 10 1
|
||||
8 9 10 1 11 12 13 1
|
||||
8 11 12 1 11 14 15 1
|
||||
13 14 15 1 16 17 18 1
|
||||
16 17 14 1 19 20 17 1
|
||||
7 4 16 1 10 9 19 1
|
||||
17 4 3 1 21 5 4 1
|
||||
17 3 14 1 21 4 22 1
|
||||
18 3 0 1 23 4 24 1
|
||||
15 19 20 1 18 25 26 1
|
||||
18 0 21 1 27 0 28 1
|
||||
20 19 11 1 29 30 14 1
|
||||
20 11 22 1 29 14 31 1
|
||||
22 10 9 1 31 13 12 1
|
||||
13 16 14 1 16 19 17 1
|
||||
13 20 22 1 16 26 32 1
|
||||
15 20 13 1 18 26 16 1
|
||||
1 4 5 1 1 33 6 1
|
||||
6 5 23 1 7 6 34 1
|
||||
23 5 7 1 35 8 10 1
|
||||
3 1 0 1 4 3 24 1
|
||||
8 21 2 1 36 28 2 1
|
||||
2 1 6 1 2 1 7 1
|
||||
21 0 2 1 28 0 2 1
|
||||
12 19 21 1 37 38 28 1
|
||||
18 19 15 1 39 25 18 1
|
||||
16 4 17 1 19 9 20 1
|
||||
14 3 15 1 22 4 40 1
|
||||
8 2 24 1 36 2 41 1
|
||||
25 26 2 1 42 43 2 1
|
||||
27 25 28 1 44 42 45 1
|
||||
29 25 6 1 46 42 7 1
|
||||
28 29 7 1 47 48 10 1
|
||||
9 30 31 1 12 49 50 1
|
||||
32 13 33 1 51 16 52 1
|
||||
34 16 32 1 53 19 51 1
|
||||
28 7 16 1 47 10 19 1
|
||||
28 34 27 1 47 53 54 1
|
||||
27 34 32 1 54 53 51 1
|
||||
27 35 26 1 44 55 43 1
|
||||
31 33 36 1 56 52 57 1
|
||||
24 35 31 1 41 55 58 1
|
||||
31 36 9 1 50 59 12 1
|
||||
9 36 22 1 12 59 31 1
|
||||
16 13 32 1 19 16 51 1
|
||||
36 13 22 1 57 16 32 1
|
||||
36 33 13 1 57 52 16 1
|
||||
28 25 29 1 45 42 46 1
|
||||
25 27 26 1 42 44 43 1
|
||||
25 2 6 1 42 2 7 1
|
||||
26 24 2 1 43 41 2 1
|
||||
30 8 24 1 60 36 41 1
|
||||
35 27 33 1 61 54 52 1
|
||||
28 16 34 1 47 19 53 1
|
||||
27 32 33 1 54 51 52 1
|
||||
18 21 19 1 27 28 38 1
|
||||
3 18 15 1 4 23 40 1
|
||||
26 35 24 1 43 55 41 1
|
||||
31 35 33 1 56 61 52 1
|
||||
9 8 30 1 12 11 49 1
|
||||
31 30 24 1 58 60 41 1
|
||||
12 11 19 1 15 14 30 1
|
||||
8 12 21 1 36 37 28 1
|
||||
29 23 7 1 48 35 10 1
|
||||
6 23 29 1 7 34 46 1
|
||||
22 11 10 1 31 14 13 1
|
||||
8 10 11 1 11 13 14 1
|
||||
position 0.000405121013 0.0106384996 -0.256958008
|
||||
orientation 0.983515561 -0.180813923 0.00186976907 -0.20244801
|
||||
endnode
|
||||
endmodelgeom Red_M_Torso
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_M_Torso
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_M_Torso
|
||||
node dummy Red_M_Torso
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node dummy torso_g
|
||||
parent Red_M_Torso
|
||||
#part-number 1
|
||||
endnode
|
||||
doneanim impact Red_M_Torso
|
||||
|
||||
donemodel Red_M_Torso
|
||||
139
_content/hak/hyper_gore_prc/red_s_bone.mdl
Normal file
139
_content/hak/hyper_gore_prc/red_s_bone.mdl
Normal file
@@ -0,0 +1,139 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_S_Bone
|
||||
filedependancy Red_S_Bone.max
|
||||
newmodel Red_S_Bone
|
||||
setsupermodel Red_S_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_S_Bone
|
||||
node dummy Red_S_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder05
|
||||
parent Red_S_Bone
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 19
|
||||
-0.0641447008 -0.0185521003 -0.00339610991
|
||||
-0.221673995 -0.0539517999 0.0342320986
|
||||
-0.160970002 0.0222430006 -0.00772051979
|
||||
-0.226501003 -0.0175596997 -0.0368436016
|
||||
-0.220455006 0.0101581002 -0.0117001003
|
||||
-0.202374995 0.0103717996 0.0528872013
|
||||
-0.213442996 0.0435520001 -0.0286896005
|
||||
-0.217522994 0.0408280008 0.00836552028
|
||||
-0.258542001 -0.0370314009 0.00919231027
|
||||
-0.248967007 0.0249869991 0.0117146997
|
||||
0.125679001 -0.0194138009 -0.0491981991
|
||||
0.0736099035 0.0264135003 -0.00463191001
|
||||
0.0736100003 -0.0248269998 0.0226325002
|
||||
0.107180998 -0.00216218992 0.030514
|
||||
0.135952994 0.0591908991 0.0118811
|
||||
0.124721996 0.0249143001 0.0498800986
|
||||
0.139796004 -0.0711418986 0.0554414988
|
||||
0.191948995 -0.0382785015 0.0074229599
|
||||
0.139391005 0.0535054989 -0.0446038991
|
||||
tverts 29
|
||||
0.120379999 0.736472011 0
|
||||
0.192886993 0.598608971 0
|
||||
0.129421994 0.598609984 0
|
||||
0.193140998 0.736472011 0
|
||||
0.133543998 0.595341027 0
|
||||
0.159429997 0.736472011 0
|
||||
0.0934150964 0.736517012 0
|
||||
0.0767308995 0.598608971 0
|
||||
0.0773202032 0.597513974 0
|
||||
0.0737845972 0.736472011 0
|
||||
0.168595001 0.520986974 0
|
||||
0.128011003 0.513225973 0
|
||||
0.195205003 0.515604019 0
|
||||
0.235930994 0.51610899 0
|
||||
0.150830001 0.432363003 0
|
||||
0.0701285973 0.430536985 0
|
||||
0.125956997 0.596671999 0
|
||||
0.202594995 0.598426998 0
|
||||
0.126155004 0.512517989 0
|
||||
0.0179772992 0.594245017 0
|
||||
0.0323559009 0.515367985 0
|
||||
0.0789145008 0.515080988 0
|
||||
0.127707005 0.444700003 0
|
||||
0.192576006 0.443760991 0
|
||||
0.079736799 0.44421801 0
|
||||
0.0775178969 0.513360023 0
|
||||
0.192771003 0.515345991 0
|
||||
0.0788709 0.855902016 0
|
||||
0.144240007 0.855902016 0
|
||||
faces 34
|
||||
0 1 2 1 0 1 2 3
|
||||
0 2 1 1 0 3 1 3
|
||||
2 3 4 1 3 4 1 3
|
||||
2 1 3 1 3 5 4 3
|
||||
1 2 5 1 5 6 4 3
|
||||
2 6 7 1 4 6 7 3
|
||||
5 8 1 1 4 7 8 1
|
||||
4 8 5 1 6 9 7 1
|
||||
4 9 6 1 9 2 7 1
|
||||
2 4 6 1 9 0 2 3
|
||||
2 7 5 1 2 10 11 3
|
||||
4 5 9 1 2 1 10 1
|
||||
4 3 8 1 1 12 13 1
|
||||
10 2 11 1 14 4 12 3
|
||||
2 12 11 1 4 15 12 3
|
||||
2 0 12 1 4 8 16 3
|
||||
13 11 12 1 4 17 18 3
|
||||
0 2 10 1 8 19 20 3
|
||||
11 13 14 1 7 21 20 3
|
||||
14 13 15 1 7 2 21 3
|
||||
13 12 16 1 22 21 11 3
|
||||
12 0 10 1 18 23 12 3
|
||||
17 15 13 1 22 23 18 1
|
||||
17 13 16 1 24 18 25 1
|
||||
12 10 16 1 22 24 21 3
|
||||
11 18 10 1 10 1 26 3
|
||||
17 10 18 1 2 11 21 1
|
||||
11 14 18 1 8 20 25 3
|
||||
9 5 7 1 22 18 24 1
|
||||
9 7 6 1 10 26 11 1
|
||||
8 3 1 1 22 11 26 1
|
||||
17 18 14 1 22 26 23 1
|
||||
17 14 15 1 1 13 26 1
|
||||
17 16 10 1 0 27 28 1
|
||||
position 0.00296265003 0.00759215979 0
|
||||
orientation -0.805706441 -0.27350086 -0.525389731 -1.14725995
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.427451015 0.427451015 0.427451015
|
||||
endnode
|
||||
endmodelgeom Red_S_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_S_Bone
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_S_Bone
|
||||
node dummy Red_S_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder05
|
||||
parent Red_S_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_S_Bone
|
||||
|
||||
donemodel Red_S_Bone
|
||||
76
_content/hak/hyper_gore_prc/red_s_giblet.mdl
Normal file
76
_content/hak/hyper_gore_prc/red_s_giblet.mdl
Normal file
@@ -0,0 +1,76 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_S_Giblet
|
||||
filedependancy Red_S_Giblet.max
|
||||
newmodel Red_S_Giblet
|
||||
setsupermodel Red_S_Giblet NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_S_Giblet
|
||||
node dummy Red_S_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk03
|
||||
parent Red_S_Giblet
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 4
|
||||
0.0510978997 0.0198618006 0.0391470008
|
||||
0.0602759011 0.132901996 -0.00851735007
|
||||
-0.107616998 0.0810038 -0.0443286002
|
||||
0.0103289001 0.0119209001 -0.0560190007
|
||||
tverts 11
|
||||
0.346709013 0.121670999 0
|
||||
0.327488005 0.190540001 0
|
||||
0.270747006 0.138432994 0
|
||||
0.255984008 0.143068001 0
|
||||
0.220780998 0.153753996 0
|
||||
0.184492007 0.100611001 0
|
||||
0.31408599 0.0550757982 0
|
||||
0.383143008 0.0332172997 0
|
||||
0.129675999 0.251763999 0
|
||||
0.0928027034 0.195371002 0
|
||||
0.0968097001 0.237742007 0
|
||||
faces 4
|
||||
0 1 2 1 0 1 2 2
|
||||
0 2 3 1 3 4 5 2
|
||||
3 2 1 1 0 6 7 2
|
||||
3 1 0 1 8 9 10 2
|
||||
position -0.00352478004 -0.0583651997 0.00501460023
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_S_Giblet
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_S_Giblet
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_S_Giblet
|
||||
node dummy Red_S_Giblet
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh M_chunk03
|
||||
parent Red_S_Giblet
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.29999995 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_S_Giblet
|
||||
|
||||
donemodel Red_S_Giblet
|
||||
108
_content/hak/hyper_gore_prc/red_s_rib.mdl
Normal file
108
_content/hak/hyper_gore_prc/red_s_rib.mdl
Normal file
@@ -0,0 +1,108 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_S_Rib
|
||||
filedependancy Red_S_Rib.max
|
||||
newmodel Red_S_Rib
|
||||
setsupermodel Red_S_Rib NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_S_Rib
|
||||
node dummy Red_S_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Object01
|
||||
parent Red_S_Rib
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 14
|
||||
-0.120490998 -0.00545250997 -0.0145202
|
||||
-0.116210997 0.0485247001 -0.016516
|
||||
-0.0379762016 0.0259661004 -0.0397953019
|
||||
-0.0341806002 -0.0227895007 -0.0565162003
|
||||
0.0465367995 0.0108645 -0.0503690988
|
||||
0.0557149015 -0.0317245014 -0.067299597
|
||||
0.106215999 -0.0036830199 -0.0311312992
|
||||
0.113743998 -0.0426159985 -0.0363659002
|
||||
0.151774004 -0.0171032008 0.0345081016
|
||||
0.154568002 -0.0485248007 0.0240586996
|
||||
0.0395915993 -0.0137245003 -0.0506924987
|
||||
0.135627002 -0.0284058005 0.0236530993
|
||||
-0.127937004 0.0409066007 0.000438471005
|
||||
-0.0279376004 -0.00298096007 -0.0398093984
|
||||
tverts 14
|
||||
0.0214411002 0.335121989 0
|
||||
0.0169510003 0.413042992 0
|
||||
0.0668329 0.419728994 0
|
||||
0.103611998 0.395610988 0
|
||||
0.165380999 0.401802987 0
|
||||
0.169060007 0.368761986 0
|
||||
0.227825001 0.418572009 0
|
||||
0.223100007 0.328999996 0
|
||||
0.276971012 0.410724014 0
|
||||
0.281524986 0.326086998 0
|
||||
0.134434 0.329596996 0
|
||||
0.247981995 0.388464987 0
|
||||
0.0216083992 0.414256006 0
|
||||
0.0801504031 0.338849008 0
|
||||
faces 23
|
||||
0 1 2 1 0 1 2 2
|
||||
2 3 0 1 2 3 0 2
|
||||
3 2 4 1 3 2 4 2
|
||||
4 5 3 1 4 5 3 2
|
||||
5 4 6 1 5 4 6 2
|
||||
6 7 5 1 6 7 5 2
|
||||
7 6 8 1 7 6 8 2
|
||||
8 9 7 1 8 9 7 2
|
||||
10 7 6 2 10 7 6 1
|
||||
11 6 7 2 11 6 7 1
|
||||
2 12 0 2 2 12 0 1
|
||||
0 13 10 2 0 13 10 1
|
||||
4 2 0 2 4 2 0 1
|
||||
6 4 10 2 6 4 10 1
|
||||
6 11 8 2 6 11 8 1
|
||||
3 5 10 4 3 5 10 5
|
||||
13 0 3 4 13 0 3 5
|
||||
7 10 5 4 7 10 5 5
|
||||
7 9 11 4 7 9 11 5
|
||||
8 11 9 8 8 11 9 4
|
||||
2 1 12 4 2 1 12 6
|
||||
10 13 3 4 10 13 3 5
|
||||
0 10 4 2 0 10 4 1
|
||||
position -0.00313934009 -0.00189040997 0.0605539009
|
||||
orientation 0 0 -1 -2.87979007
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.545098007 0.545098007 0.545098007
|
||||
endnode
|
||||
endmodelgeom Red_S_Rib
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_S_Rib
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_S_Rib
|
||||
node dummy Red_S_Rib
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Object01
|
||||
parent Red_S_Rib
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.46667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_S_Rib
|
||||
|
||||
donemodel Red_S_Rib
|
||||
95
_content/hak/hyper_gore_prc/red_s_thigh.mdl
Normal file
95
_content/hak/hyper_gore_prc/red_s_thigh.mdl
Normal file
@@ -0,0 +1,95 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Red_s_Thigh
|
||||
filedependancy Red_s_Thigh.max
|
||||
newmodel Red_s_Thigh
|
||||
setsupermodel Red_s_Thigh NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Red_s_Thigh
|
||||
node dummy Red_s_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits03
|
||||
parent Red_s_Thigh
|
||||
#part-number 1
|
||||
ambient 0.560783982 0 0
|
||||
diffuse 1 1 1
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 8
|
||||
0.0658046007 0.0628060028 0.0160076991
|
||||
0.0132339997 -0.0247492995 -0.0168233998
|
||||
0.0614021011 -0.0299622994 0.0480168015
|
||||
-0.0454130992 -0.00321742008 -0.0378835015
|
||||
0.0161879994 0.104709998 -0.00934376009
|
||||
0.0859787017 -0.00713355979 -0.0540851988
|
||||
0.114495002 0.000433189998 0.0176392999
|
||||
0.119249001 -0.0682568029 0.0161626004
|
||||
tverts 18
|
||||
0.817404985 0.690820992 0
|
||||
0.801183999 0.803068995 0
|
||||
0.886933029 0.690820992 0
|
||||
0.662438989 0.760194004 0
|
||||
0.662438989 0.621448994 0
|
||||
0.801183999 0.578574002 0
|
||||
0.27235201 0.760168016 0
|
||||
0.344090998 0.863484979 0
|
||||
0.27235201 0.863484979 0
|
||||
0.345106006 0.74979502 0
|
||||
0.0137807 0.74979502 0
|
||||
0.0750811994 0.863484979 0
|
||||
0.0127654001 0.863484979 0
|
||||
0.0756177008 0.74979502 0
|
||||
0.137761995 0.735616982 0
|
||||
0.0781868994 0.863484979 0
|
||||
0.139401004 0.863484979 0
|
||||
0.200442001 0.607748985 0
|
||||
faces 12
|
||||
0 1 2 1 0 1 2 2
|
||||
0 3 1 1 0 3 1 2
|
||||
0 4 3 1 0 4 3 2
|
||||
1 3 5 2 0 5 4 3
|
||||
3 4 5 2 0 2 5 3
|
||||
4 0 6 2 6 7 8 3
|
||||
0 2 6 2 6 9 7 3
|
||||
2 1 7 2 10 11 12 3
|
||||
1 5 7 2 10 13 11 3
|
||||
6 2 7 2 13 14 11 3
|
||||
6 5 4 1 15 14 16 1
|
||||
7 5 6 1 14 17 16 1
|
||||
position -0.0188402999 0.0214559995 0.00753402989
|
||||
orientation 0 0 1 -1.22172999
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.349020004 0 0
|
||||
endnode
|
||||
endmodelgeom Red_s_Thigh
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Red_s_Thigh
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Red_s_Thigh
|
||||
node dummy Red_s_Thigh
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh meaty_bits03
|
||||
parent Red_s_Thigh
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
3.96667004 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Red_s_Thigh
|
||||
|
||||
donemodel Red_s_Thigh
|
||||
256
_content/hak/hyper_gore_prc/vwp_l_blood_grn.mdl
Normal file
256
_content/hak/hyper_gore_prc/vwp_l_blood_grn.mdl
Normal file
@@ -0,0 +1,256 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_L_Blood_Grn
|
||||
filedependancy VWP_L_Blood_Grn.max
|
||||
newmodel VWP_L_Blood_Grn
|
||||
setsupermodel VWP_L_Blood_Grn NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_L_Blood_Grn
|
||||
node dummy VWP_L_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Grn_Sticky
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.00069755601 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.305882007 0.407842994 0
|
||||
colorEnd 0.262744993 0.349020004 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 1
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 150
|
||||
lifeExp 512.0
|
||||
mass 2.4000001
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 2
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Grn_Cloud
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 1
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.00069755601 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.305882007 0.407842994 0
|
||||
colorEnd 0.231372997 0.309803993 0
|
||||
alphaStart 0.5
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 0.5
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 7
|
||||
lifeExp 0.5
|
||||
mass 1
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.5
|
||||
fps 15
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Grn_Spray
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.00069755601 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.305882007 0.407842994 0
|
||||
colorEnd 0.305882007 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0160000008
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 400
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_L_Blood_Grn
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_L_Blood_Grn
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_L_Blood_Grn
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
event 0.0666666999 detonate
|
||||
event 0.166666999 detonate
|
||||
node dummy VWP_L_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Grn_Sticky
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 150
|
||||
0.0333333015 150
|
||||
0.300000012 -150
|
||||
velocitykey 2
|
||||
0 2
|
||||
0.300000012 0
|
||||
randvelkey 2
|
||||
0 2
|
||||
0.300000012 1
|
||||
endnode
|
||||
node emitter M_Grn_Cloud
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter M_Grn_Spray
|
||||
parent VWP_L_Blood_Grn
|
||||
#part-number 3
|
||||
birthratekey 4
|
||||
0 400
|
||||
0.0333333015 600
|
||||
0.166666999 0
|
||||
0.333332986 -705.713989
|
||||
masskey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.333332986 1.5
|
||||
velocitykey 4
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.166666999 1
|
||||
0.333332986 0
|
||||
randvelkey 2
|
||||
0.0333333015 2
|
||||
0.333332986 1
|
||||
bounce_cokey 1
|
||||
0.0333333015 0.0500000007
|
||||
endnode
|
||||
doneanim impact VWP_L_Blood_Grn
|
||||
|
||||
donemodel VWP_L_Blood_Grn
|
||||
190
_content/hak/hyper_gore_prc/vwp_l_blood_nast.mdl
Normal file
190
_content/hak/hyper_gore_prc/vwp_l_blood_nast.mdl
Normal file
@@ -0,0 +1,190 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_L_Blood_nast
|
||||
filedependancy VWP_L_Blood_nast.max
|
||||
newmodel VWP_L_Blood_nast
|
||||
setsupermodel VWP_L_Blood_nast NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_L_Blood_nast
|
||||
node dummy VWP_L_Blood_nast
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter Big_Blood
|
||||
parent VWP_L_Blood_nast
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.454901993 0.278430998 0
|
||||
colorEnd 0.454901993 0.278430998 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate -206
|
||||
lifeExp 512.0
|
||||
mass 0
|
||||
spread 2.09439993
|
||||
particleRot 0
|
||||
velocity -2
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter sticky_Blood
|
||||
parent VWP_L_Blood_nast
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Billboard_to_World_Z
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0.0149549004
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.290196002 0.149020001 0
|
||||
colorEnd 0.290196002 0.149020001 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.400000006
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 0
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 3
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_L_Blood_nast
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_L_Blood_nast
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_L_Blood_nast
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
event 0.166666999 detonate
|
||||
node dummy VWP_L_Blood_nast
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter Big_Blood
|
||||
parent VWP_L_Blood_nast
|
||||
#part-number 1
|
||||
birthratekey 4
|
||||
0 4000
|
||||
0.0333333015 5000
|
||||
0.166666999 1000
|
||||
0.333332986 -205.714005
|
||||
masskey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.333332986 1.5
|
||||
velocitykey 4
|
||||
0 9
|
||||
0.0333333015 7
|
||||
0.166666999 3
|
||||
0.333332986 1
|
||||
randvelkey 2
|
||||
0.0333333015 2
|
||||
0.333332986 1
|
||||
bounce_cokey 1
|
||||
0.0333333015 0.0500000007
|
||||
endnode
|
||||
node emitter sticky_Blood
|
||||
parent VWP_L_Blood_nast
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 600
|
||||
0.0333333015 600
|
||||
0.300000012 0
|
||||
velocitykey 2
|
||||
0 3
|
||||
0.300000012 1
|
||||
randvelkey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.300000012 1
|
||||
endnode
|
||||
doneanim impact VWP_L_Blood_nast
|
||||
|
||||
donemodel VWP_L_Blood_nast
|
||||
256
_content/hak/hyper_gore_prc/vwp_l_blood_red.mdl
Normal file
256
_content/hak/hyper_gore_prc/vwp_l_blood_red.mdl
Normal file
@@ -0,0 +1,256 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_L_Blood_Red
|
||||
filedependancy VWP_L_Blood_Red.max
|
||||
newmodel VWP_L_Blood_Red
|
||||
setsupermodel VWP_L_Blood_Red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_L_Blood_Red
|
||||
node dummy VWP_L_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Red_Sticky
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.00297172996 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 1
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 150
|
||||
lifeExp 512.0
|
||||
mass 2.4000001
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 2
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Red_Cloud
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 1
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.00297172996 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.454901993 0 0
|
||||
colorEnd 0.454901993 0 0
|
||||
alphaStart 0.5
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 0.5
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 7
|
||||
lifeExp 0.5
|
||||
mass 1
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.5
|
||||
fps 15
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Red_Spray
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.00297172996 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0160000008
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 400
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_L_Blood_Red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_L_Blood_Red
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_L_Blood_Red
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
event 0.0666666999 detonate
|
||||
event 0.166666999 detonate
|
||||
node dummy VWP_L_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Red_Sticky
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 150
|
||||
0.0333333015 150
|
||||
0.300000012 -150
|
||||
velocitykey 2
|
||||
0 2
|
||||
0.300000012 0
|
||||
randvelkey 2
|
||||
0 2
|
||||
0.300000012 1
|
||||
endnode
|
||||
node emitter M_Red_Cloud
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter M_Red_Spray
|
||||
parent VWP_L_Blood_Red
|
||||
#part-number 3
|
||||
birthratekey 4
|
||||
0 400
|
||||
0.0333333015 600
|
||||
0.166666999 0
|
||||
0.333332986 -705.713989
|
||||
masskey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.333332986 1.5
|
||||
velocitykey 4
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.166666999 1
|
||||
0.333332986 0
|
||||
randvelkey 2
|
||||
0.0333333015 2
|
||||
0.333332986 1
|
||||
bounce_cokey 1
|
||||
0.0333333015 0.0500000007
|
||||
endnode
|
||||
doneanim impact VWP_L_Blood_Red
|
||||
|
||||
donemodel VWP_L_Blood_Red
|
||||
256
_content/hak/hyper_gore_prc/vwp_l_blood_yel.mdl
Normal file
256
_content/hak/hyper_gore_prc/vwp_l_blood_yel.mdl
Normal file
@@ -0,0 +1,256 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_L_Blood_Yel
|
||||
filedependancy VWP_L_Blood_Yel.max
|
||||
newmodel VWP_L_Blood_Yel
|
||||
setsupermodel VWP_L_Blood_Yel NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_L_Blood_Yel
|
||||
node dummy VWP_L_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Yel_Cloud
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 1
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.000946808024 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 0.5
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 0.5
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 7
|
||||
lifeExp 0.5
|
||||
mass 1
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.5
|
||||
fps 15
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Yel_Spray
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.000946808024 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0160000008
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 400
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter M_Yel_Sticky
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.000946808024 0
|
||||
orientation -1 0 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 1
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 150
|
||||
lifeExp 512.0
|
||||
mass 2.4000001
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 2
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_L_Blood_Yel
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_L_Blood_Yel
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_L_Blood_Yel
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
event 0.0666666999 detonate
|
||||
event 0.166666999 detonate
|
||||
node dummy VWP_L_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter M_Yel_Cloud
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter M_Yel_Spray
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 2
|
||||
birthratekey 4
|
||||
0 400
|
||||
0.0333333015 600
|
||||
0.166666999 0
|
||||
0.333332986 -705.713989
|
||||
masskey 3
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.333332986 1.5
|
||||
velocitykey 4
|
||||
0 4
|
||||
0.0333333015 4
|
||||
0.166666999 1
|
||||
0.333332986 0
|
||||
randvelkey 2
|
||||
0.0333333015 2
|
||||
0.333332986 1
|
||||
bounce_cokey 1
|
||||
0.0333333015 0.0500000007
|
||||
endnode
|
||||
node emitter M_Yel_Sticky
|
||||
parent VWP_L_Blood_Yel
|
||||
#part-number 3
|
||||
birthratekey 3
|
||||
0 150
|
||||
0.0333333015 150
|
||||
0.300000012 -150
|
||||
velocitykey 2
|
||||
0 2
|
||||
0.300000012 0
|
||||
randvelkey 2
|
||||
0 2
|
||||
0.300000012 1
|
||||
endnode
|
||||
doneanim impact VWP_L_Blood_Yel
|
||||
|
||||
donemodel VWP_L_Blood_Yel
|
||||
649
_content/hak/hyper_gore_prc/vwp_l_chunk_red.mdl
Normal file
649
_content/hak/hyper_gore_prc/vwp_l_chunk_red.mdl
Normal file
@@ -0,0 +1,649 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_L_chunk_red
|
||||
filedependancy vwp_L_chunk_red.max
|
||||
newmodel vwp_L_chunk_red
|
||||
setsupermodel vwp_L_chunk_red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_L_chunk_red
|
||||
node dummy vwp_L_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones09
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_L_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0254839007 0 1.46679997
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 3.66518998
|
||||
particleRot 1.29999995
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Thighs03
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_L_Thigh
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0620531999 0 1.38047004
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 3.14159012
|
||||
particleRot 2
|
||||
velocity 3
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones08
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_m_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 1.52301002
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 3.49065995
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets08
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_m_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0357317999 0 1.30387998
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 7
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter ribs02
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_L_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 1.24329996
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 1.57079995
|
||||
particleRot 2
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets09
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_L_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000685533974 0 1.16662002
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 5
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 6.28318977
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Spray07
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 1.36400998
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.486274987 0 0
|
||||
colorEnd 0.486274987 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.300000012
|
||||
sizeEnd 1.5
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512
|
||||
mass 2
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 6
|
||||
randvel 3
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Cloud04
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 8
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 1.44392002
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 3
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 60
|
||||
lifeExp 0.5
|
||||
mass 0.0700000003
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 146
|
||||
ysize 75
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky04
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 9
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Billboard_to_World_Z
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 1.27234995
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 3
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 0
|
||||
fps 0
|
||||
xsize 60
|
||||
ysize 60
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_L_chunk_red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_L_chunk_red
|
||||
length 512.0
|
||||
transtime 0.25
|
||||
animroot vwp_L_chunk_red
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_L_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones09
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter Thighs03
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter bones08
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter Giblets08
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter ribs02
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 5
|
||||
endnode
|
||||
node emitter Giblets09
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 6
|
||||
endnode
|
||||
node emitter L_Red_Spray07
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 7
|
||||
birthratekey 4
|
||||
0 120
|
||||
0.0333333015 120
|
||||
0.266667008 181
|
||||
0.400000006 -700
|
||||
masskey 1
|
||||
0.400000006 2
|
||||
velocitykey 4
|
||||
0 6
|
||||
0.0333333015 6
|
||||
0.266667008 6
|
||||
0.400000006 -1
|
||||
randvelkey 3
|
||||
0.0333333015 3
|
||||
0.266667008 3
|
||||
0.400000006 2
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter L_Red_Cloud04
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 8
|
||||
endnode
|
||||
node emitter L_Red_Sticky04
|
||||
parent vwp_L_chunk_red
|
||||
#part-number 9
|
||||
birthratekey 3
|
||||
0 120
|
||||
0.133332998 200
|
||||
0.433333009 -300
|
||||
endnode
|
||||
doneanim impact vwp_L_chunk_red
|
||||
|
||||
donemodel vwp_L_chunk_red
|
||||
165
_content/hak/hyper_gore_prc/vwp_m_blood_grn.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_m_blood_grn.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_M_Blood_Grn
|
||||
filedependancy VWP_M_Blood_Grn.max
|
||||
newmodel VWP_M_Blood_Grn
|
||||
setsupermodel VWP_M_Blood_Grn NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_M_Blood_Grn
|
||||
node dummy VWP_M_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Grn_Spray01
|
||||
parent VWP_M_Blood_Grn
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000408707012 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0.407842994 0
|
||||
colorEnd 0.223528996 0.290196002 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter S_Grn_Sticky01
|
||||
parent VWP_M_Blood_Grn
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000408707012 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0.407842994 0
|
||||
colorEnd 0.239216 0.309803993 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 30
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_M_Blood_Grn
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_M_Blood_Grn
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_M_Blood_Grn
|
||||
node dummy VWP_M_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Grn_Spray01
|
||||
parent VWP_M_Blood_Grn
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
node emitter S_Grn_Sticky01
|
||||
parent VWP_M_Blood_Grn
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 30
|
||||
0.0333333015 30
|
||||
0.366667002 0
|
||||
endnode
|
||||
doneanim impact VWP_M_Blood_Grn
|
||||
|
||||
donemodel VWP_M_Blood_Grn
|
||||
165
_content/hak/hyper_gore_prc/vwp_m_blood_red.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_m_blood_red.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_M_Blood_Red
|
||||
filedependancy VWP_M_Blood_Red.max
|
||||
newmodel VWP_M_Blood_Red
|
||||
setsupermodel VWP_M_Blood_Red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_M_Blood_Red
|
||||
node dummy VWP_M_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Red_Sticky01
|
||||
parent VWP_M_Blood_Red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000402373989 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 30
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter s_Red_Spray01
|
||||
parent VWP_M_Blood_Red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000402373989 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_M_Blood_Red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_M_Blood_Red
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_M_Blood_Red
|
||||
node dummy VWP_M_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Red_Sticky01
|
||||
parent VWP_M_Blood_Red
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 30
|
||||
0.0333333015 30
|
||||
0.366667002 0
|
||||
endnode
|
||||
node emitter s_Red_Spray01
|
||||
parent VWP_M_Blood_Red
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
doneanim impact VWP_M_Blood_Red
|
||||
|
||||
donemodel VWP_M_Blood_Red
|
||||
165
_content/hak/hyper_gore_prc/vwp_m_blood_yel.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_m_blood_yel.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_M_Blood_Yel
|
||||
filedependancy VWP_M_Blood_Yel.max
|
||||
newmodel VWP_M_Blood_Yel
|
||||
setsupermodel VWP_M_Blood_Yel NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_M_Blood_Yel
|
||||
node dummy VWP_M_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Yel_Sticky01
|
||||
parent VWP_M_Blood_Yel
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.00137816998 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 30
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter S_Yel_Spray01
|
||||
parent VWP_M_Blood_Yel
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.00137816998 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_M_Blood_Yel
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_M_Blood_Yel
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_M_Blood_Yel
|
||||
node dummy VWP_M_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Yel_Sticky01
|
||||
parent VWP_M_Blood_Yel
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 30
|
||||
0.0333333015 30
|
||||
0.366667002 0
|
||||
endnode
|
||||
node emitter S_Yel_Spray01
|
||||
parent VWP_M_Blood_Yel
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
doneanim impact VWP_M_Blood_Yel
|
||||
|
||||
donemodel VWP_M_Blood_Yel
|
||||
582
_content/hak/hyper_gore_prc/vwp_m_chunk_grn.mdl
Normal file
582
_content/hak/hyper_gore_prc/vwp_m_chunk_grn.mdl
Normal file
@@ -0,0 +1,582 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_m_chunk_grn
|
||||
filedependancy vwp_m_chunk_grn.max
|
||||
newmodel vwp_m_chunk_grn
|
||||
setsupermodel vwp_m_chunk_grn NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_m_chunk_grn
|
||||
node dummy vwp_m_chunk_grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones04
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Grn_M_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0256488994 0.0204007998 0.583746016
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 3
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones05
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_m_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 7.74824002e-005 0.639962018
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.49065995
|
||||
particleRot 5
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets05
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_M_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0358968005 0.0305746999 0.420825005
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 1
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Thighs02
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_M_Thigh
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0618881993 -0.0101210997 0.497415006
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.14159012
|
||||
particleRot 2
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets04
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_M_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000520478992 -0.0101212002 0.283564001
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 1.5
|
||||
spread 1.74532998
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 2.29999995
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.400000006
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Grn_Cloud
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -3.2723799e-006 0.560871005
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.25097999 0.427451015 0
|
||||
colorEnd 0.380391985 0.447059005 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 60
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Grn_Sticky
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -3.2723799e-006 0.389302999
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.360783994 0.427451015 0
|
||||
colorEnd 0.325489998 0.447059005 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 1
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 5
|
||||
randvel 2.29999995
|
||||
fps 0
|
||||
xsize 60
|
||||
ysize 60
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Grn_Spray
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 8
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -3.2723799e-006 0.480958998
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.360783994 0.427451015 0
|
||||
colorEnd 0.25097999 0.396077991 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 200
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.91986001
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_m_chunk_grn
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_m_chunk_grn
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_m_chunk_grn
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_m_chunk_grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones04
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter bones05
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter Giblets05
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter Thighs02
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter Giblets04
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 5
|
||||
endnode
|
||||
node emitter L_Grn_Cloud
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 6
|
||||
endnode
|
||||
node emitter L_Grn_Sticky
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 7
|
||||
birthratekey 3
|
||||
0 120
|
||||
0.133332998 200
|
||||
0.300000012 -300
|
||||
endnode
|
||||
node emitter L_Grn_Spray
|
||||
parent vwp_m_chunk_grn
|
||||
#part-number 8
|
||||
birthratekey 4
|
||||
0 200
|
||||
0.0333333015 120
|
||||
0.200000003 81
|
||||
0.266667008 -800
|
||||
masskey 1
|
||||
0.266667008 2
|
||||
velocitykey 4
|
||||
0 7
|
||||
0.0333333015 7
|
||||
0.200000003 7
|
||||
0.266667008 0
|
||||
randvelkey 3
|
||||
0.0333333015 1
|
||||
0.200000003 1
|
||||
0.266667008 0
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
doneanim impact vwp_m_chunk_grn
|
||||
|
||||
donemodel vwp_m_chunk_grn
|
||||
582
_content/hak/hyper_gore_prc/vwp_m_chunk_red.mdl
Normal file
582
_content/hak/hyper_gore_prc/vwp_m_chunk_red.mdl
Normal file
@@ -0,0 +1,582 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_m_chunk_red
|
||||
filedependancy vwp_m_chunk_red.max
|
||||
newmodel vwp_m_chunk_red
|
||||
setsupermodel vwp_m_chunk_red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_m_chunk_red
|
||||
node dummy vwp_m_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter Thighs
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Thigh
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0620531999 0 0.716114998
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.14159012
|
||||
particleRot 2
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Spray03
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0.69965899
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.356862992 0 0
|
||||
colorEnd 0.356862992 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0500000007
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 200
|
||||
lifeExp 512.0
|
||||
mass 2.5
|
||||
spread 3.14159012
|
||||
particleRot 0
|
||||
velocity 5
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0.60800302
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 2.4000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 200
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 6
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_m_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0357317999 0 0.63952601
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 5
|
||||
lifeExp 512.0
|
||||
mass 2.5
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0254839007 0 0.802446008
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 1.29999995
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_S_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0.858663023
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.49065995
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000685533974 0 0.502264977
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 4
|
||||
velocity 2
|
||||
randvel 2.4000001
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Cloud
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 8
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0.77957201
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_m_chunk_red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_m_chunk_red
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_m_chunk_red
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_m_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter Thighs
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter L_Red_Spray03
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 2
|
||||
birthratekey 4
|
||||
0 200
|
||||
0.0333333015 200
|
||||
0.133332998 81
|
||||
0.266667008 -800
|
||||
masskey 1
|
||||
0.266667008 2.5
|
||||
velocitykey 4
|
||||
0 5
|
||||
0.0333333015 5
|
||||
0.133332998 5
|
||||
0.266667008 -2
|
||||
randvelkey 3
|
||||
0.0333333015 1
|
||||
0.133332998 1
|
||||
0.266667008 0
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 3
|
||||
birthratekey 3
|
||||
0 200
|
||||
0.133332998 200
|
||||
0.300000012 -300
|
||||
endnode
|
||||
node emitter Giblets
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter bones
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 5
|
||||
endnode
|
||||
node emitter bones01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 6
|
||||
endnode
|
||||
node emitter Giblets01
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 7
|
||||
endnode
|
||||
node emitter L_Red_Cloud
|
||||
parent vwp_m_chunk_red
|
||||
#part-number 8
|
||||
endnode
|
||||
doneanim impact vwp_m_chunk_red
|
||||
|
||||
donemodel vwp_m_chunk_red
|
||||
427
_content/hak/hyper_gore_prc/vwp_m_chunk_wht.mdl
Normal file
427
_content/hak/hyper_gore_prc/vwp_m_chunk_wht.mdl
Normal file
@@ -0,0 +1,427 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_M_chunk_wht
|
||||
filedependancy vwp_M_chunk_wht.max
|
||||
newmodel vwp_M_chunk_wht
|
||||
setsupermodel vwp_M_chunk_wht NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_M_chunk_wht
|
||||
node dummy vwp_M_chunk_wht
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter head
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName WHT_M_head
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0612208992 -0.00184478995 0.716114998
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.14159012
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.300000012
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_wht_Cloud
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832370017 -0.00184478995 0.77957201
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.862744987 0.862744987 0.862744987
|
||||
colorEnd 0.729412019 0.729412019 0.729412019
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.699999988
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_wht_Cloud01
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832370017 -0.00184478995 0.687034011
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.674510002 0.615685999 0.486274987
|
||||
colorEnd 0.576470971 0.552941024 0.486274987
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.800000012
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter ribs04
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Wht_M_pelves
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832370017 -0.00184478995 0.578944027
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 2
|
||||
velocity 2.79999995
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones13
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Wht_M_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0263163 -0.00184478995 0.802446008
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 5
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones12
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Wht_s_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832370017 -0.00184478995 0.858662009
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 3.49065995
|
||||
particleRot 4
|
||||
velocity 4
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_M_chunk_wht
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_M_chunk_wht
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_M_chunk_wht
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
node dummy vwp_M_chunk_wht
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter head
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter L_wht_Cloud
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter L_wht_Cloud01
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter ribs04
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter bones13
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 5
|
||||
endnode
|
||||
node emitter bones12
|
||||
parent vwp_M_chunk_wht
|
||||
#part-number 6
|
||||
endnode
|
||||
doneanim impact vwp_M_chunk_wht
|
||||
|
||||
donemodel vwp_M_chunk_wht
|
||||
649
_content/hak/hyper_gore_prc/vwp_m_chunk_yel.mdl
Normal file
649
_content/hak/hyper_gore_prc/vwp_m_chunk_yel.mdl
Normal file
@@ -0,0 +1,649 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_m_chunk_yel
|
||||
filedependancy vwp_m_chunk_yel.max
|
||||
newmodel vwp_m_chunk_yel
|
||||
setsupermodel vwp_m_chunk_yel NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_m_chunk_yel
|
||||
node dummy vwp_m_chunk_yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones10
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0263163 -0.000573120022 0.802446008
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 1.29999995
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Thighs04
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Thigh
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0612207986 -0.000573120022 0.716114998
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.14159012
|
||||
particleRot 2
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones11
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_S_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573120022 0.858662009
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.49065995
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets10
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_M_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0365642011 -0.000573120022 0.63952601
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2.5
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Sticky05
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Billboard_to_World_Z
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573120022 0.60800302
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 3
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 6
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Spray08
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573120022 0.69965899
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.200000003
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 1.91986001
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter ribs03
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_M_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573120022 0.578944027
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 2
|
||||
velocity 2.79999995
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets11
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 8
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_M_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000146879 -0.000573120022 0.502264977
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 4
|
||||
velocity 2
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Cloud05
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 9
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573120022 0.77957201
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_m_chunk_yel
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_m_chunk_yel
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_m_chunk_yel
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_m_chunk_yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones10
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter Thighs04
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter bones11
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter Giblets10
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter L_yel_Sticky05
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 5
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.166666999 100
|
||||
0.466666996 -400
|
||||
endnode
|
||||
node emitter L_yel_Spray08
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 6
|
||||
birthratekey 4
|
||||
0 120
|
||||
0.0333333015 200
|
||||
0.200000003 81
|
||||
0.333332986 -800
|
||||
masskey 1
|
||||
0.333332986 3
|
||||
velocitykey 4
|
||||
0 7
|
||||
0.0333333015 7
|
||||
0.200000003 7
|
||||
0.333332986 0
|
||||
randvelkey 3
|
||||
0.0333333015 1
|
||||
0.200000003 1
|
||||
0.333332986 0
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter ribs03
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 7
|
||||
endnode
|
||||
node emitter Giblets11
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 8
|
||||
endnode
|
||||
node emitter L_yel_Cloud05
|
||||
parent vwp_m_chunk_yel
|
||||
#part-number 9
|
||||
endnode
|
||||
doneanim impact vwp_m_chunk_yel
|
||||
|
||||
donemodel vwp_m_chunk_yel
|
||||
165
_content/hak/hyper_gore_prc/vwp_s_blood_grn.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_s_blood_grn.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_S_Blood_Grn
|
||||
filedependancy VWP_S_Blood_Grn.max
|
||||
newmodel VWP_S_Blood_Grn
|
||||
setsupermodel VWP_S_Blood_Grn NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_S_Blood_Grn
|
||||
node dummy VWP_S_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Grn_Spray
|
||||
parent VWP_S_Blood_Grn
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0.407842994 0
|
||||
colorEnd 0.223528996 0.290196002 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter S_Grn_Sticky02
|
||||
parent VWP_S_Blood_Grn
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0.00324165006 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0.407842994 0
|
||||
colorEnd 0.239216 0.309803993 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.600000024
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 15
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_S_Blood_Grn
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_S_Blood_Grn
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_S_Blood_Grn
|
||||
node dummy VWP_S_Blood_Grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Grn_Spray
|
||||
parent VWP_S_Blood_Grn
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
node emitter S_Grn_Sticky02
|
||||
parent VWP_S_Blood_Grn
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 15
|
||||
0.0333333015 15
|
||||
0.366667002 0
|
||||
endnode
|
||||
doneanim impact VWP_S_Blood_Grn
|
||||
|
||||
donemodel VWP_S_Blood_Grn
|
||||
165
_content/hak/hyper_gore_prc/vwp_s_blood_red.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_s_blood_red.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_S_Blood_Red
|
||||
filedependancy VWP_S_Blood_Red.max
|
||||
newmodel VWP_S_Blood_Red
|
||||
setsupermodel VWP_S_Blood_Red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_S_Blood_Red
|
||||
node dummy VWP_S_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter s_Red_Spray
|
||||
parent VWP_S_Blood_Red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter S_Red_Sticky02
|
||||
parent VWP_S_Blood_Red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000415802002 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.600000024
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 15
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_S_Blood_Red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_S_Blood_Red
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_S_Blood_Red
|
||||
node dummy VWP_S_Blood_Red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter s_Red_Spray
|
||||
parent VWP_S_Blood_Red
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
node emitter S_Red_Sticky02
|
||||
parent VWP_S_Blood_Red
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 15
|
||||
0.0333333015 15
|
||||
0.366667002 0
|
||||
endnode
|
||||
doneanim impact VWP_S_Blood_Red
|
||||
|
||||
donemodel VWP_S_Blood_Red
|
||||
165
_content/hak/hyper_gore_prc/vwp_s_blood_yel.mdl
Normal file
165
_content/hak/hyper_gore_prc/vwp_s_blood_yel.mdl
Normal file
@@ -0,0 +1,165 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: VWP_S_Blood_Yel
|
||||
filedependancy VWP_S_Blood_Yel.max
|
||||
newmodel VWP_S_Blood_Yel
|
||||
setsupermodel VWP_S_Blood_Yel NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom VWP_S_Blood_Yel
|
||||
node dummy VWP_S_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Yel_Spray
|
||||
parent VWP_S_Blood_Yel
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Motion_Blur
|
||||
blend Normal
|
||||
texture fxpa_Dot01
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 0 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.0199999996
|
||||
sizeEnd 0.0199999996
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 4
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 4
|
||||
randvel 2.01009989
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0.0500000007
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter S_Yel_Sticky02
|
||||
parent VWP_S_Blood_Yel
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0 -0.000504683994 0
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.466666996 0.407842994 0
|
||||
colorEnd 0.466666996 0.407842994 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.0179999992
|
||||
sizeEnd 0.600000024
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 15
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 1.5
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom VWP_S_Blood_Yel
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact VWP_S_Blood_Yel
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot VWP_S_Blood_Yel
|
||||
node dummy VWP_S_Blood_Yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter S_Yel_Spray
|
||||
parent VWP_S_Blood_Yel
|
||||
#part-number 1
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.0333333015 100
|
||||
0.333332986 0
|
||||
endnode
|
||||
node emitter S_Yel_Sticky02
|
||||
parent VWP_S_Blood_Yel
|
||||
#part-number 2
|
||||
birthratekey 3
|
||||
0 15
|
||||
0.0333333015 15
|
||||
0.366667002 0
|
||||
endnode
|
||||
doneanim impact VWP_S_Blood_Yel
|
||||
|
||||
donemodel VWP_S_Blood_Yel
|
||||
515
_content/hak/hyper_gore_prc/vwp_s_chunk_grn.mdl
Normal file
515
_content/hak/hyper_gore_prc/vwp_s_chunk_grn.mdl
Normal file
@@ -0,0 +1,515 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_s_chunk_grn
|
||||
filedependancy vwp_s_chunk_grn.max
|
||||
newmodel vwp_s_chunk_grn
|
||||
setsupermodel vwp_s_chunk_grn NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_s_chunk_grn
|
||||
node dummy vwp_s_chunk_grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_m_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -0.00438704994 0.639962018
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.49065995
|
||||
particleRot 5
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones07
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_m_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0256488994 0.0159361996 0.583746016
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 3
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_s_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000520478992 -0.0145856999 0.283564001
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 1.5
|
||||
spread 1.74532998
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 30
|
||||
ysize 30
|
||||
bounce_co 0.300000012
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Cloud03
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -0.00446785009 0.560871005
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.298038989 0.407842994 0
|
||||
colorEnd 0.298038989 0.407842994 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1.5
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky03
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -0.00446785009 0.389302999
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.270588011 0.368627012 0
|
||||
colorEnd 0.200000003 0.274509996 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 1
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 1
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 5
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 60
|
||||
ysize 60
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Spray06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000165021993 -0.00446785009 0.480958998
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.270588011 0.427451015 0
|
||||
colorEnd 0.219607994 0.376471013 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.800000012
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 1.79999995
|
||||
spread 1.91986001
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 1.70000005
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets07
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_m_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0358968005 0.0261102002 0.420825005
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 1
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 2.29999995
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_s_chunk_grn
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_s_chunk_grn
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_s_chunk_grn
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_s_chunk_grn
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter bones07
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter Giblets06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter L_Red_Cloud03
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter L_Red_Sticky03
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 5
|
||||
birthratekey 3
|
||||
0 120
|
||||
0.133332998 200
|
||||
0.56666702 -300
|
||||
endnode
|
||||
node emitter L_Red_Spray06
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 6
|
||||
birthratekey 4
|
||||
0 120
|
||||
0.0333333015 200
|
||||
0.200000003 81
|
||||
0.333332986 -800
|
||||
masskey 1
|
||||
0.333332986 1.79999995
|
||||
velocitykey 4
|
||||
0 7
|
||||
0.0333333015 7
|
||||
0.200000003 7
|
||||
0.333332986 0
|
||||
randvelkey 3
|
||||
0.0333333015 1.70000005
|
||||
0.200000003 1.70000005
|
||||
0.333332986 0.699999988
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter Giblets07
|
||||
parent vwp_s_chunk_grn
|
||||
#part-number 7
|
||||
endnode
|
||||
doneanim impact vwp_s_chunk_grn
|
||||
|
||||
donemodel vwp_s_chunk_grn
|
||||
582
_content/hak/hyper_gore_prc/vwp_s_chunk_red.mdl
Normal file
582
_content/hak/hyper_gore_prc/vwp_s_chunk_red.mdl
Normal file
@@ -0,0 +1,582 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_s_chunk_red
|
||||
filedependancy vwp_s_chunk_red.max
|
||||
newmodel vwp_s_chunk_red
|
||||
setsupermodel vwp_s_chunk_red NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_s_chunk_red
|
||||
node dummy vwp_s_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter L_Red_Spray04
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000233451006 0.000229798999 0.585636973
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.388235003 0 0
|
||||
colorEnd 0.388235003 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.400000006
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 200
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 1.91986001
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 2.5999999
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets02
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0359653011 0.000229798999 0.52550298
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 2.5
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 3.29999995
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones02
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0257172994 0.000229798999 0.688423991
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 5
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Sticky01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000233451006 0.000229798999 0.493981004
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 0
|
||||
velocity 5
|
||||
randvel 2.79999995
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Thighs01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Thigh
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.0618197992 0.000229798999 0.602092981
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.14159012
|
||||
particleRot 3
|
||||
velocity 3
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.100000001
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter ribs01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Rib
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000233451006 0.000229798999 0.464922011
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 2
|
||||
velocity 2.79999995
|
||||
randvel 0.800000012
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets03
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position -0.000452050008 0.000229798999 0.388242006
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 4
|
||||
velocity 2
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_Red_Cloud01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 8
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000233451006 0.000229798999 0.66554898
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.313726008 0 0
|
||||
colorEnd 0.313726008 0 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_s_chunk_red
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_s_chunk_red
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_s_chunk_red
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_s_chunk_red
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter L_Red_Spray04
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 1
|
||||
birthratekey 4
|
||||
0 200
|
||||
0.0333333015 200
|
||||
0.166666999 81
|
||||
0.233333007 -800
|
||||
masskey 1
|
||||
0.233333007 3
|
||||
velocitykey 4
|
||||
0 7
|
||||
0.0333333015 7
|
||||
0.166666999 7
|
||||
0.233333007 0
|
||||
randvelkey 3
|
||||
0.0333333015 2.5999999
|
||||
0.166666999 2.5999999
|
||||
0.233333007 1.60000002
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter Giblets02
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter bones02
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter L_Red_Sticky01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 4
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.133332998 200
|
||||
0.266667008 -300
|
||||
endnode
|
||||
node emitter Thighs01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 5
|
||||
endnode
|
||||
node emitter ribs01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 6
|
||||
endnode
|
||||
node emitter Giblets03
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 7
|
||||
endnode
|
||||
node emitter L_Red_Cloud01
|
||||
parent vwp_s_chunk_red
|
||||
#part-number 8
|
||||
endnode
|
||||
doneanim impact vwp_s_chunk_red
|
||||
|
||||
donemodel vwp_s_chunk_red
|
||||
515
_content/hak/hyper_gore_prc/vwp_s_chunk_yel.mdl
Normal file
515
_content/hak/hyper_gore_prc/vwp_s_chunk_yel.mdl
Normal file
@@ -0,0 +1,515 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: vwp_s_chunk_yel
|
||||
filedependancy vwp_s_chunk_yel.max
|
||||
newmodel vwp_s_chunk_yel
|
||||
setsupermodel vwp_s_chunk_yel NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom vwp_s_chunk_yel
|
||||
node dummy vwp_s_chunk_yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones14
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 1
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_s_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0263163 -0.000573107973 0.535869002
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 2
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.66518998
|
||||
particleRot 1.29999995
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter bones15
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 2
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName Red_S_Bone
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573107973 0.592085004
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 1
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 3.49065995
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 0.5
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.200000003
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets12
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 3
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_s_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.0365642011 -0.000573107973 0.372947991
|
||||
orientation 0 0 0 0
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.00999999978
|
||||
sizeEnd 0.00999999978
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 3
|
||||
lifeExp 512.0
|
||||
mass 2.5
|
||||
spread 5.23599005
|
||||
particleRot 4
|
||||
velocity 3
|
||||
randvel 2
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.300000012
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter Giblets13
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 4
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture NULL
|
||||
chunkName GRN_s_Giblet
|
||||
xgrid 0
|
||||
ygrid 0
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000146879 -0.000573107973 0.235687003
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 1 1 1
|
||||
colorEnd 1 1 1
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.100000001
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 4
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.57079995
|
||||
particleRot 4
|
||||
velocity 2
|
||||
randvel 1.70000005
|
||||
fps 0
|
||||
xsize 20
|
||||
ysize 20
|
||||
bounce_co 0.300000012
|
||||
blurlength 10
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Spray09
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 5
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 1
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 1
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Normal
|
||||
blend Normal
|
||||
texture blood
|
||||
xgrid 2
|
||||
ygrid 2
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573107973 0.433082014
|
||||
orientation 0 0 0 0
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 1
|
||||
alphaEnd 1
|
||||
sizeStart 0.100000001
|
||||
sizeEnd 0.200000003
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 3
|
||||
birthrate 120
|
||||
lifeExp 512.0
|
||||
mass 3
|
||||
spread 1.91986001
|
||||
particleRot 0
|
||||
velocity 7
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Sticky06
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 6
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 1
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Fountain
|
||||
render Billboard_to_World_Z
|
||||
blend Normal
|
||||
texture fxpa_sphere
|
||||
xgrid 1
|
||||
ygrid 1
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573107973 0.341426015
|
||||
orientation 0 -1 0 -3.14159012
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 1
|
||||
alphaEnd 0
|
||||
sizeStart 0.5
|
||||
sizeEnd 3
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 0
|
||||
birthrate 100
|
||||
lifeExp 512.0
|
||||
mass 2
|
||||
spread 1.74532998
|
||||
particleRot 0
|
||||
velocity 6
|
||||
randvel 1
|
||||
fps 0
|
||||
xsize 0
|
||||
ysize 0
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
node emitter L_yel_Cloud06
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 7
|
||||
p2p 0
|
||||
p2p_sel 1
|
||||
affectedByWind 0
|
||||
m_isTinted 0
|
||||
bounce 0
|
||||
random 0
|
||||
inherit 0
|
||||
inheritvel 0
|
||||
inherit_local 0
|
||||
splat 0
|
||||
inherit_part 0
|
||||
renderorder 0
|
||||
spawntype 0
|
||||
update Explosion
|
||||
render Normal
|
||||
blend Normal
|
||||
texture fxpa_Smoke01
|
||||
xgrid 4
|
||||
ygrid 4
|
||||
loop 0
|
||||
deadspace 0
|
||||
twosidedtex 0
|
||||
blastRadius 0
|
||||
blastLength 0
|
||||
position 0.000832412974 -0.000573107973 0.512993991
|
||||
orientation 0 -1 0 -1.57079995
|
||||
colorStart 0.549019992 0.549019992 0
|
||||
colorEnd 0.631372988 0.549019992 0
|
||||
alphaStart 0.600000024
|
||||
alphaEnd 0
|
||||
sizeStart 1
|
||||
sizeEnd 2
|
||||
sizeStart_y 0
|
||||
sizeEnd_y 0
|
||||
frameStart 0
|
||||
frameEnd 15
|
||||
birthrate 23
|
||||
lifeExp 0.5
|
||||
mass 0
|
||||
spread 6.28318977
|
||||
particleRot 0
|
||||
velocity 1
|
||||
randvel 0.300000012
|
||||
fps 12
|
||||
xsize 90
|
||||
ysize 20
|
||||
bounce_co 0
|
||||
blurlength 0.100000001
|
||||
lightningDelay 0
|
||||
lightningRadius 0
|
||||
lightningScale 0
|
||||
p2p_bezier2 0
|
||||
p2p_bezier3 0
|
||||
combinetime 0
|
||||
drag 0
|
||||
grav 0
|
||||
threshold 0
|
||||
endnode
|
||||
endmodelgeom vwp_s_chunk_yel
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact vwp_s_chunk_yel
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot vwp_s_chunk_yel
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0 detonate
|
||||
event 0.0333333015 detonate
|
||||
node dummy vwp_s_chunk_yel
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node emitter bones14
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 1
|
||||
endnode
|
||||
node emitter bones15
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 2
|
||||
endnode
|
||||
node emitter Giblets12
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 3
|
||||
endnode
|
||||
node emitter Giblets13
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 4
|
||||
endnode
|
||||
node emitter L_yel_Spray09
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 5
|
||||
birthratekey 4
|
||||
0 120
|
||||
0.0333333015 200
|
||||
0.200000003 81
|
||||
0.333332986 -800
|
||||
masskey 1
|
||||
0.333332986 3
|
||||
velocitykey 4
|
||||
0 7
|
||||
0.0333333015 7
|
||||
0.200000003 7
|
||||
0.333332986 0
|
||||
randvelkey 3
|
||||
0.0333333015 1
|
||||
0.200000003 1
|
||||
0.333332986 0
|
||||
bounce_cokey 1
|
||||
0.0333333015 0
|
||||
endnode
|
||||
node emitter L_yel_Sticky06
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 6
|
||||
birthratekey 3
|
||||
0 100
|
||||
0.166666999 100
|
||||
0.466666996 -400
|
||||
endnode
|
||||
node emitter L_yel_Cloud06
|
||||
parent vwp_s_chunk_yel
|
||||
#part-number 7
|
||||
endnode
|
||||
doneanim impact vwp_s_chunk_yel
|
||||
|
||||
donemodel vwp_s_chunk_yel
|
||||
209
_content/hak/hyper_gore_prc/wht_m_bone.mdl
Normal file
209
_content/hak/hyper_gore_prc/wht_m_bone.mdl
Normal file
@@ -0,0 +1,209 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Wht_M_Bone
|
||||
filedependancy Wht_M_Bone.max
|
||||
newmodel Wht_M_Bone
|
||||
setsupermodel Wht_M_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Wht_M_Bone
|
||||
node dummy Wht_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder03
|
||||
parent Wht_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.0901961029 0.0901961029 0.0901961029
|
||||
diffuse 0.662744999 0.662744999 0.662744999
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 39
|
||||
0 0 -0.0217199996
|
||||
-0.144566998 -0.0329920985 -0.00561888982
|
||||
-0.144566998 0.000181705007 -0.0188298002
|
||||
0 -0.0306307003 -0.0124455998
|
||||
-0.144566998 -0.00593355997 0.0155036999
|
||||
0 -0.0148104001 0.00893011969
|
||||
6.01188985e-005 0.0102267005 0.0129397996
|
||||
-0.144566998 0.0247175004 -0.00561888004
|
||||
-0.159052998 0.0199420992 0.0276433993
|
||||
0 0.0207064003 -0.00505803013
|
||||
-0.180105999 -0.0298481993 -0.0391951017
|
||||
-0.202314004 0.00678589987 -0.0138234003
|
||||
-0.203498006 -0.0687697008 0.0214405991
|
||||
-0.202827007 -0.0735943988 -0.0196918007
|
||||
-0.198911995 -0.0167868994 0.0250614006
|
||||
-0.184762999 0.0259362999 0.0621406995
|
||||
-0.199468002 0.0552031994 0.0187103003
|
||||
-0.195507005 0.0481663011 -0.0240409002
|
||||
-0.211979002 -0.00371987 -0.00271411007
|
||||
-0.239288002 -0.0525991991 -0.00304637989
|
||||
-0.229993001 0.0341987014 0.0180220008
|
||||
-0.208184004 -0.0390173011 -0.0514627993
|
||||
0.186003998 0.0228234995 -0.000950010028
|
||||
0.186003998 -0.00652068993 -0.0255711004
|
||||
0.186003998 0.00983352028 0.0184649993
|
||||
0.186003998 -0.0257505998 0.0121905999
|
||||
0.186003998 -0.0340094008 -0.0109711997
|
||||
0.209952995 0.0217115991 -0.0251189005
|
||||
0.232558995 -0.00177262002 -0.0284106005
|
||||
0.232558995 0.0615194999 0.0213376991
|
||||
0.224171996 0.0334637985 0.0479913987
|
||||
0.211072996 0.000212548999 0.0244047008
|
||||
0.235429004 -0.0678220019 0.0314492993
|
||||
0.232558995 -0.0660960004 -0.0209602993
|
||||
0.224886999 -0.0361019 -0.0515277982
|
||||
0.256783992 -0.0141719002 -0.000751010026
|
||||
0.274374008 -0.0435247011 -0.00457917992
|
||||
0.276710987 0.0242036991 0.0177500993
|
||||
0.235126004 0.0427669995 -0.0310005993
|
||||
tverts 39
|
||||
0.179699004 0.380282015 0
|
||||
0.114362001 0.325259 0
|
||||
0.114362001 0.375997007 0
|
||||
0.179699004 0.325138003 0
|
||||
0.112813003 0.374042988 0
|
||||
0.179699004 0.351444989 0
|
||||
0.179720998 0.403391987 0
|
||||
0.114362001 0.418186009 0
|
||||
0.113843001 0.417907 0
|
||||
0.179699004 0.419582009 0
|
||||
0.0578800999 0.357432008 0
|
||||
0.0542020015 0.376664996 0
|
||||
0.0553289019 0.344819993 0
|
||||
0.0752618983 0.325518012 0
|
||||
0.0538660996 0.377544999 0
|
||||
0.0542653017 0.400595993 0
|
||||
0.0411501005 0.421999991 0
|
||||
0.0550808012 0.399933994 0
|
||||
0.00484463014 0.376810014 0
|
||||
0.00439949008 0.346065998 0
|
||||
0.00461628987 0.399544001 0
|
||||
0.0552067012 0.345973998 0
|
||||
0.236301005 0.417172015 0
|
||||
0.236301005 0.368974 0
|
||||
0.236301005 0.383722007 0
|
||||
0.236301005 0.331867993 0
|
||||
0.236301005 0.321548015 0
|
||||
0.288498998 0.389084995 0
|
||||
0.296561986 0.369219005 0
|
||||
0.274055004 0.419869006 0
|
||||
0.288922995 0.388601989 0
|
||||
0.288899004 0.388763994 0
|
||||
0.310957998 0.322708011 0
|
||||
0.272505999 0.32296899 0
|
||||
0.29537499 0.341488987 0
|
||||
0.332641989 0.368892998 0
|
||||
0.342014015 0.341693997 0
|
||||
0.341298997 0.401679009 0
|
||||
0.302125007 0.400227994 0
|
||||
faces 74
|
||||
0 1 2 1 0 1 2 3
|
||||
0 3 1 1 0 3 1 3
|
||||
3 4 1 1 3 4 1 3
|
||||
3 5 4 1 3 5 4 3
|
||||
5 6 4 1 5 6 4 3
|
||||
4 6 7 1 4 6 7 3
|
||||
4 7 8 1 4 7 8 3
|
||||
6 9 7 1 6 9 7 3
|
||||
9 2 7 1 9 2 7 3
|
||||
9 0 2 1 9 0 2 3
|
||||
2 10 11 1 2 10 11 3
|
||||
2 1 10 1 2 1 10 3
|
||||
1 12 13 1 1 12 13 3
|
||||
1 4 12 1 1 4 12 3
|
||||
4 14 12 1 4 14 12 3
|
||||
4 8 15 1 4 8 15 3
|
||||
4 15 14 1 4 15 14 3
|
||||
8 7 16 1 8 7 16 3
|
||||
7 17 16 1 7 17 16 3
|
||||
7 2 17 1 7 2 17 3
|
||||
18 17 11 1 18 17 11 1
|
||||
14 19 12 1 14 19 12 1
|
||||
18 19 14 1 18 19 14 1
|
||||
20 14 15 1 20 14 15 1
|
||||
18 20 17 1 18 20 17 1
|
||||
10 1 21 1 10 1 21 3
|
||||
2 11 17 1 2 11 17 3
|
||||
8 16 15 1 8 16 15 3
|
||||
18 14 20 1 18 14 20 1
|
||||
10 21 11 1 10 21 11 3
|
||||
18 11 21 1 18 11 21 1
|
||||
18 21 19 1 18 21 19 1
|
||||
1 13 21 1 1 13 21 3
|
||||
0 22 23 1 0 22 23 3
|
||||
0 9 22 1 0 9 22 3
|
||||
9 24 22 1 9 24 22 3
|
||||
9 6 24 1 9 6 24 3
|
||||
6 5 24 1 6 5 24 3
|
||||
24 5 25 1 24 5 25 3
|
||||
5 26 25 1 5 26 25 3
|
||||
5 3 26 1 5 3 26 3
|
||||
3 23 26 1 3 23 26 3
|
||||
3 0 23 1 3 0 23 3
|
||||
23 27 28 1 23 27 28 3
|
||||
23 22 27 1 23 22 27 3
|
||||
22 24 29 1 22 24 29 3
|
||||
29 24 30 1 29 24 30 3
|
||||
24 31 30 1 24 31 30 3
|
||||
31 24 32 1 31 24 32 3
|
||||
24 25 32 1 24 25 32 3
|
||||
25 26 33 1 25 26 33 3
|
||||
26 34 33 1 26 34 33 3
|
||||
26 23 34 1 26 23 34 3
|
||||
35 36 28 1 35 36 28 1
|
||||
35 37 30 1 35 37 30 1
|
||||
35 30 31 1 35 30 31 1
|
||||
35 31 32 1 35 31 32 1
|
||||
28 36 34 1 28 36 34 1
|
||||
27 22 38 1 27 22 38 3
|
||||
23 28 34 1 23 28 34 3
|
||||
25 33 32 1 25 33 32 3
|
||||
35 32 36 1 35 32 36 1
|
||||
27 38 28 1 27 38 28 3
|
||||
35 28 38 1 35 28 38 1
|
||||
35 38 37 1 35 38 37 1
|
||||
22 29 38 1 22 29 38 3
|
||||
20 15 16 1 20 15 16 1
|
||||
20 16 17 1 20 16 17 1
|
||||
19 21 13 1 19 21 13 1
|
||||
19 13 12 1 19 13 12 1
|
||||
37 38 29 1 37 38 29 1
|
||||
37 29 30 1 37 29 30 1
|
||||
36 32 33 1 36 32 33 1
|
||||
36 33 34 1 36 33 34 1
|
||||
position -0.000249022996 0.00399444997 0
|
||||
orientation 0 0 1 -0.523599029
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.231372997 0.231372997 0.231372997
|
||||
endnode
|
||||
endmodelgeom Wht_M_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Wht_M_Bone
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Wht_M_Bone
|
||||
node dummy Wht_M_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh Cylinder03
|
||||
parent Wht_M_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.16666985 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Wht_M_Bone
|
||||
|
||||
donemodel Wht_M_Bone
|
||||
310
_content/hak/hyper_gore_prc/wht_m_head.mdl
Normal file
310
_content/hak/hyper_gore_prc/wht_m_head.mdl
Normal file
@@ -0,0 +1,310 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: WHT_M_head
|
||||
filedependancy WHT_M_head.max
|
||||
newmodel WHT_M_head
|
||||
setsupermodel WHT_M_head NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom WHT_M_head
|
||||
node dummy WHT_M_head
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh head
|
||||
parent WHT_M_head
|
||||
#part-number 1
|
||||
ambient 0.0901961029 0.0901961029 0.0901961029
|
||||
diffuse 0.662744999 0.662744999 0.662744999
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 41
|
||||
0.0494690984 -0.0185116008 0.0924085006
|
||||
-0.00969148986 -0.082356602 0.0741847977
|
||||
0.0241401009 -0.0796677023 0.0735478029
|
||||
0.0187950004 0.0862390026 0.0462879986
|
||||
0.062035799 0.0958177 -0.0264215991
|
||||
0.00844261982 0.112956002 -0.0155106001
|
||||
0.0561197996 -0.0646561012 0.0430650003
|
||||
0.0756898969 -0.0464849994 -0.00496413978
|
||||
0.0770030022 0.0393777005 -0.0644596964
|
||||
0.0107485 0.0859963968 -0.0886441991
|
||||
0.0560479015 0.0530174002 0.0541239008
|
||||
0.0881910995 0.0305087008 0.0154085997
|
||||
-0.00711916015 -0.0194837004 0.103372999
|
||||
-0.000192181004 -0.0437894017 -0.0487693995
|
||||
0.0518052988 -0.0976620987 -0.0293057002
|
||||
0.0229011998 -0.140396997 -0.00084389298
|
||||
0.00829054974 0.0207940005 -0.122642003
|
||||
0.0515708998 -0.0787542984 -0.00950863026
|
||||
0.0117188003 -0.122399002 0.0263046995
|
||||
-0.00934026018 -0.0948961973 0.0529951006
|
||||
-0.00980680995 -0.127327994 0.0226399992
|
||||
-0.0101472 -0.145160004 0.00744289998
|
||||
-0.0107485997 -0.117487997 0.0511142015
|
||||
0.0697776005 -0.0897786021 0.0289597996
|
||||
0.0812676027 -0.0655099005 -0.0187257994
|
||||
0.0517793 -0.0121219996 -0.103534997
|
||||
-0.0614946 -0.0110747004 0.0861682966
|
||||
-0.0425802991 -0.075195998 0.0697956979
|
||||
-0.0541852005 0.0604052991 0.0479247011
|
||||
-0.0453982987 0.103018001 -0.032463301
|
||||
-0.0845128968 0.0420834012 0.0056963102
|
||||
-0.0686748996 -0.0562922992 0.0360468999
|
||||
-0.0634000972 0.0487876013 -0.0723555014
|
||||
-0.0411350988 -0.136105001 -0.00444508018
|
||||
-0.0607383996 -0.0901193023 -0.0356348008
|
||||
-0.0602022 -0.0712632015 -0.0157944001
|
||||
-0.0307586994 -0.119552001 0.0239158999
|
||||
-0.0801694989 -0.0360393003 -0.0137291998
|
||||
-0.0838925987 -0.0794795975 0.0203178003
|
||||
-0.0866570994 -0.0542555004 -0.0281693004
|
||||
-0.0410487019 -0.00590059021 -0.108755998
|
||||
tverts 92
|
||||
0.0950110033 0.402054012 0
|
||||
0.0117517002 0.419555992 0
|
||||
0.0460949987 0.355767012 0
|
||||
0.635186017 0.571569026 0
|
||||
0.926971972 0.566012979 0
|
||||
0.963126004 0.520716012 0
|
||||
0.218668997 0.330172002 0
|
||||
0.199146003 0.417026997 0
|
||||
0.299382001 0.363113999 0
|
||||
0.266808003 0.359553009 0
|
||||
0.327591002 0.399473011 0
|
||||
0.328736991 0.416552007 0
|
||||
0.635915995 0.514123976 0
|
||||
0.0083260797 0.311224997 0
|
||||
0.195176005 0.345600992 0
|
||||
0.00759532023 0.406313986 0
|
||||
0.333889008 0.381922007 0
|
||||
0.00644478993 0.414902002 0
|
||||
0.00525313988 0.314947009 0
|
||||
0.336053997 0.319801003 0
|
||||
0.333629012 0.354007989 0
|
||||
0.952482998 0.577102005 0
|
||||
0.093264401 0.323042989 0
|
||||
0.342952013 0.308596998 0
|
||||
0.0114387004 0.315932989 0
|
||||
0.0288437996 0.338753015 0
|
||||
0.335577995 0.418217987 0
|
||||
0.0666934028 0.363274992 0
|
||||
0.00459777983 0.406251013 0
|
||||
0.191095993 0.325477004 0
|
||||
0.656434 0.541652024 0
|
||||
0.694284022 0.566173971 0
|
||||
0.959324002 0.578767002 0
|
||||
0.343515992 0.307363003 0
|
||||
0.298556 0.331331015 0
|
||||
0.00482702022 0.314866006 0
|
||||
0.00896655023 0.41821 0
|
||||
0.154964 0.379509985 0
|
||||
0.328752995 0.420037001 0
|
||||
0.0277146995 0.377745003 0
|
||||
0.241711006 0.374799997 0
|
||||
0.111250997 0.363038987 0
|
||||
0.334446013 0.421442002 0
|
||||
0.329342991 0.421512008 0
|
||||
0.16099 0.390215009 0
|
||||
0.27580899 0.395943999 0
|
||||
0.971105993 0.510262012 0
|
||||
0.899555027 0.556493998 0
|
||||
0.220428005 0.395913988 0
|
||||
0.106518 0.396851987 0
|
||||
0.00503807981 0.411339015 0
|
||||
0.270298004 0.311224997 0
|
||||
0.331155002 0.416592985 0
|
||||
0.334787995 0.357578993 0
|
||||
0.0911101997 0.321954995 0
|
||||
0.32892701 0.400637001 0
|
||||
0.321449012 0.417302996 0
|
||||
0.305752993 0.383038998 0
|
||||
0.331546009 0.315928012 0
|
||||
0.00951420981 0.420498013 0
|
||||
0.337249994 0.420437008 0
|
||||
0.00524854986 0.311585009 0
|
||||
0.00525311008 0.421766996 0
|
||||
0.947791994 0.548690021 0
|
||||
0.929498971 0.543587983 0
|
||||
0.952624023 0.555131972 0
|
||||
0.954900026 0.577142 0
|
||||
0.0999779999 0.339477003 0
|
||||
0.0542666987 0.415416002 0
|
||||
0.0288437996 0.388054013 0
|
||||
0.0114866998 0.314078987 0
|
||||
0.0465525985 0.363274992 0
|
||||
0.0113113998 0.373382986 0
|
||||
0.197809994 0.333694011 0
|
||||
0.656434 0.576837003 0
|
||||
0.639077008 0.516978025 0
|
||||
0.674143016 0.566173971 0
|
||||
0.162248999 0.31558001 0
|
||||
0.320201993 0.345791012 0
|
||||
0.0115406001 0.314866006 0
|
||||
0.338070005 0.417914003 0
|
||||
0.333200008 0.316753 0
|
||||
0.00451995013 0.420037001 0
|
||||
0.592536986 0.638899028 0
|
||||
0.926146984 0.534229994 0
|
||||
0.728178978 0.579450011 0
|
||||
0.158245996 0.371255994 0
|
||||
0.285611987 0.415906012 0
|
||||
0.335914999 0.317373991 0
|
||||
0.113995001 0.390215009 0
|
||||
0.228814006 0.387726992 0
|
||||
0.108277999 0.385962009 0
|
||||
colors 41
|
||||
0.145098048 0.72156867 0.215686287
|
||||
0.0235294132 0.329411784 0.243137269
|
||||
0.121568635 0.862745149 0.215686287
|
||||
0.952941233 0.733333377 0.631372586
|
||||
0.337254922 0.435294143 0.533333365
|
||||
0.99607849 0.917647113 0.262745114
|
||||
0.615686311 0.341176491 0.337254922
|
||||
0.294117664 0.00784313772 0.227450994
|
||||
0.968627508 0.203921581 0.0941176526
|
||||
0.0705882395 0.20784315 0.305882371
|
||||
0.168627461 0.772549065 0.156862754
|
||||
0.494117676 0.807843185 0.0470588263
|
||||
0.968627508 0.611764742 0.200000012
|
||||
0.109803928 0.698039257 0.0588235329
|
||||
0.231372563 0.168627461 0.203921581
|
||||
0.341176491 0.709803964 0.752941221
|
||||
0.13725491 0.92941182 0.874509856
|
||||
0.235294132 0.474509832 0.576470622
|
||||
0.247058838 0.435294143 0.698039257
|
||||
0.0509803952 0.490196107 0.0313725509
|
||||
0.0980392215 0.827451029 0.254901976
|
||||
0.121568635 0.61960788 0.298039233
|
||||
0.0666666706 0.152941186 0.941176526
|
||||
0.384313748 0.631372586 0.121568635
|
||||
0.79215691 0.905882407 0.317647078
|
||||
0.10196079 0.850980442 0.8941177
|
||||
0.807843185 0.709803964 0.329411784
|
||||
0.933333389 0.854902011 0.286274527
|
||||
0.764705928 0.760784359 0.270588251
|
||||
0.690196119 0.423529437 0.643137293
|
||||
0.533333365 0.788235341 0.223529425
|
||||
0.478431401 0.325490215 0.466666694
|
||||
0.192156874 0.188235305 0.2392157
|
||||
0.917647113 0.701960826 0.819607892
|
||||
0.027450982 0.156862754 0.321568646
|
||||
0.968627508 0.458823557 0.690196119
|
||||
0.945098095 0.431372575 0.741176514
|
||||
0.866666718 0.992156921 0.388235317
|
||||
0.764705928 0.615686311 0.278431389
|
||||
0.41176473 0.886274562 0.490196107
|
||||
0.184313736 0.839215736 0.988235353
|
||||
faces 78
|
||||
0 1 2 1 0 1 2 1
|
||||
3 4 5 1 3 4 5 1
|
||||
0 6 7 1 6 7 8 1
|
||||
4 8 9 1 9 10 11 1
|
||||
3 10 4 1 3 12 4 1
|
||||
10 0 11 1 13 14 8 1
|
||||
3 12 10 1 15 16 13 1
|
||||
13 14 15 1 17 18 19 1
|
||||
16 9 8 1 20 11 10 1
|
||||
5 4 9 1 5 4 21 1
|
||||
14 17 15 1 22 23 24 1
|
||||
15 17 18 1 22 25 23 1
|
||||
6 19 18 1 25 26 23 1
|
||||
2 1 19 1 27 1 26 1
|
||||
18 20 21 1 23 28 24 1
|
||||
19 22 18 1 26 28 23 1
|
||||
13 17 14 1 29 7 22 1
|
||||
7 6 23 1 6 25 7 1
|
||||
0 2 6 1 6 27 25 1
|
||||
6 2 19 1 30 31 32 1
|
||||
23 6 18 1 7 25 22 1
|
||||
0 12 1 1 33 16 1 1
|
||||
13 24 17 1 10 8 7 1
|
||||
12 0 10 1 16 33 13 1
|
||||
16 8 25 1 20 10 34 1
|
||||
7 23 24 1 7 29 10 1
|
||||
25 24 13 1 34 10 29 1
|
||||
13 16 25 1 35 36 37 1
|
||||
18 22 20 1 23 28 38 1
|
||||
8 4 11 1 10 8 7 1
|
||||
0 7 11 1 6 39 34 1
|
||||
25 8 7 1 34 10 40 1
|
||||
7 24 25 1 7 40 41 1
|
||||
15 18 21 1 37 23 42 1
|
||||
13 15 21 1 17 43 19 1
|
||||
17 23 18 1 7 44 22 1
|
||||
24 23 17 1 6 44 7 1
|
||||
11 7 8 1 45 39 8 1
|
||||
10 11 4 1 46 47 4 1
|
||||
26 27 1 1 48 49 50 2
|
||||
28 5 29 1 51 52 53 2
|
||||
26 30 31 1 54 34 7 2
|
||||
29 5 32 1 55 56 57 2
|
||||
3 5 28 1 58 52 51 2
|
||||
28 30 26 1 51 53 14 2
|
||||
3 28 12 1 58 51 59 2
|
||||
13 33 34 1 60 61 62 2
|
||||
16 32 9 1 63 64 65 2
|
||||
5 9 32 1 66 65 64 2
|
||||
34 33 35 1 67 24 68 2
|
||||
33 36 35 1 67 68 69 2
|
||||
31 36 19 1 69 68 70 2
|
||||
27 19 1 1 71 70 50 2
|
||||
36 21 20 1 68 24 72 2
|
||||
19 36 22 1 70 68 72 2
|
||||
13 34 35 1 73 67 7 2
|
||||
37 38 31 1 54 7 69 2
|
||||
26 31 27 1 54 69 71 2
|
||||
31 19 27 1 74 75 76 2
|
||||
38 36 31 1 7 67 69 2
|
||||
26 1 12 1 77 50 59 2
|
||||
13 35 39 1 57 7 53 2
|
||||
12 28 26 1 59 51 77 2
|
||||
16 40 32 1 78 34 57 2
|
||||
37 39 38 1 7 57 73 2
|
||||
40 13 39 1 34 73 57 2
|
||||
13 40 16 1 79 80 81 2
|
||||
36 20 22 1 68 82 72 2
|
||||
32 30 29 1 57 7 53 2
|
||||
31 30 37 1 83 84 85 2
|
||||
40 37 32 1 34 40 57 2
|
||||
37 40 39 1 7 86 40 2
|
||||
33 21 36 1 80 87 68 2
|
||||
13 21 33 1 60 61 88 2
|
||||
35 36 38 1 7 67 89 2
|
||||
39 35 38 1 54 7 89 2
|
||||
30 32 37 1 90 53 91 2
|
||||
28 29 30 1 77 53 90 2
|
||||
position -0.00196692999 -0.0101281004 0.00451949006
|
||||
orientation 0 0 0 0
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.231372997 0.231372997 0.231372997
|
||||
endnode
|
||||
endmodelgeom WHT_M_head
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact WHT_M_head
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot WHT_M_head
|
||||
node dummy WHT_M_head
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh head
|
||||
parent WHT_M_head
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.26667023 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact WHT_M_head
|
||||
|
||||
donemodel WHT_M_head
|
||||
213
_content/hak/hyper_gore_prc/wht_m_pelves.mdl
Normal file
213
_content/hak/hyper_gore_prc/wht_m_pelves.mdl
Normal file
@@ -0,0 +1,213 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Wht_M_pelves
|
||||
filedependancy Wht_M_pelves.max
|
||||
newmodel Wht_M_pelves
|
||||
setsupermodel Wht_M_pelves NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Wht_M_pelves
|
||||
node dummy Wht_M_pelves
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh sk_pelvis_1
|
||||
parent Wht_M_pelves
|
||||
#part-number 1
|
||||
ambient 0.0901961029 0.0901961029 0.0901961029
|
||||
diffuse 0.662744999 0.662744999 0.662744999
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 40
|
||||
0 -0.0298611 -0.0384255983
|
||||
-0.0475728996 -0.0250527002 0.0498493984
|
||||
0 0.0279846992 0.032882601
|
||||
-0.0400316007 0.0132400002 0.120801002
|
||||
0 0.0462253988 0.121180996
|
||||
-0.0528382994 -0.00478291977 -0.0339396
|
||||
-0.0871056989 -0.0252924003 0.0945449993
|
||||
-0.149621993 0.0404907018 0.0679636002
|
||||
0 0.0178760998 0.139337003
|
||||
-0.0584058985 0.00941915996 -0.112003997
|
||||
-0.0633253008 0.0653692037 -0.0446407013
|
||||
-0.0718548 0.0739564002 -0.150355995
|
||||
-0.0039642998 0.120979004 -0.0922586024
|
||||
-0.00349339005 0.0824291036 -0.115556002
|
||||
-0.0997897983 0.0903299972 -0.0435461998
|
||||
-0.110105 -0.034991201 -0.0415286012
|
||||
-0.142522007 0.0978470966 0.0100407004
|
||||
0 -0.0262656007 0.103589997
|
||||
0 -0.040789701 0.0376208983
|
||||
0 -0.0584556982 0.0237389002
|
||||
-0.0271786004 -0.0427742004 -0.0209864993
|
||||
0 -0.0454909988 -0.101037003
|
||||
-0.0667423978 -0.0254538003 -0.0232494995
|
||||
-0.111057997 0.0980492011 -0.0857843012
|
||||
0.0475728996 -0.0250527002 0.0498493984
|
||||
0.0400316007 0.0132400002 0.120800003
|
||||
0.0528382994 -0.00478291977 -0.0339396
|
||||
0.0871056989 -0.0252924003 0.0945449993
|
||||
0.149621993 0.0404907018 0.0679635033
|
||||
0.0633253008 0.0653692037 -0.0446407013
|
||||
0.0584058985 0.00941915996 -0.112003997
|
||||
0.0039642998 0.120979004 -0.0922586024
|
||||
0.0718548 0.0739564002 -0.150355995
|
||||
0.00349339005 0.0824291036 -0.115556002
|
||||
0.110105 -0.034991201 -0.0415286012
|
||||
0.0997897983 0.0903299972 -0.0435461998
|
||||
0.142522007 0.0978470966 0.0100407004
|
||||
0.0271786004 -0.0427742004 -0.0209864993
|
||||
0.0667423978 -0.0254538003 -0.0232494995
|
||||
0.111057997 0.0980492011 -0.0857843012
|
||||
tverts 40
|
||||
0.180992007 0.398580015 0
|
||||
0.118891001 0.307722986 0
|
||||
0.180992007 0.384855986 0
|
||||
0.128736004 0.383251995 0
|
||||
0.180992007 0.38092801 0
|
||||
0.0585935004 0.325908005 0
|
||||
0.067286402 0.307193995 0
|
||||
0.00654589012 0.390349001 0
|
||||
0.180992007 0.380232006 0
|
||||
0.086942099 0.348369986 0
|
||||
0.0983285978 0.383399993 0
|
||||
0.087194398 0.384671986 0
|
||||
0.175816998 0.422089994 0
|
||||
0.176431999 0.385693014 0
|
||||
0.0507288016 0.403097004 0
|
||||
0.0372639 0.307884008 0
|
||||
0.00512848981 0.419654995 0
|
||||
0.180992007 0.305050999 0
|
||||
0.180992007 0.374505997 0
|
||||
0.180992007 0.335592002 0
|
||||
0.145513996 0.370135009 0
|
||||
0.180992007 0.364149988 0
|
||||
0.0938680023 0.306838989 0
|
||||
0.0360190012 0.420100987 0
|
||||
0.243092999 0.307722986 0
|
||||
0.233247995 0.383251995 0
|
||||
0.306952 0.325908005 0
|
||||
0.294698 0.307193995 0
|
||||
0.345257014 0.390349001 0
|
||||
0.263655007 0.383399993 0
|
||||
0.275041997 0.348369986 0
|
||||
0.186167002 0.422089994 0
|
||||
0.274789989 0.384671986 0
|
||||
0.185552001 0.385693014 0
|
||||
0.324719995 0.307884008 0
|
||||
0.311255008 0.403097004 0
|
||||
0.346673995 0.419654995 0
|
||||
0.216470003 0.370135009 0
|
||||
0.268115997 0.306838989 0
|
||||
0.325964987 0.420100987 0
|
||||
faces 76
|
||||
0 1 2 1 0 1 2 1
|
||||
3 4 2 1 3 4 2 1
|
||||
1 3 2 1 1 3 2 1
|
||||
1 0 5 2 1 0 5 1
|
||||
6 5 7 2 6 5 7 1
|
||||
4 3 8 1 4 3 8 1
|
||||
9 10 5 1 9 10 5 1
|
||||
11 12 13 4 11 12 13 1
|
||||
14 15 16 4 14 15 16 1
|
||||
17 8 3 2 17 8 3 1
|
||||
17 1 18 1 17 1 18 1
|
||||
17 3 1 1 17 3 1 1
|
||||
19 20 21 1 19 20 21 1
|
||||
15 7 16 4 15 7 16 1
|
||||
22 0 20 4 22 0 20 1
|
||||
14 12 23 4 14 12 23 1
|
||||
15 23 9 4 15 23 9 1
|
||||
12 16 10 2 12 16 10 1
|
||||
15 1 6 4 15 1 6 1
|
||||
6 1 5 2 6 1 5 1
|
||||
9 11 10 1 9 11 10 1
|
||||
16 7 5 2 16 7 5 1
|
||||
12 14 16 4 12 14 16 1
|
||||
15 14 23 4 15 14 23 1
|
||||
10 16 5 2 10 16 5 1
|
||||
10 13 12 1 10 13 12 1
|
||||
22 9 5 4 22 9 5 1
|
||||
23 11 9 4 23 11 9 1
|
||||
15 9 22 4 15 9 22 1
|
||||
0 22 5 4 0 22 5 1
|
||||
15 22 1 4 15 22 1 1
|
||||
19 1 20 1 19 1 20 1
|
||||
15 6 7 4 15 6 7 1
|
||||
1 22 20 4 1 22 20 1
|
||||
20 0 21 8 20 0 21 1
|
||||
11 23 12 4 11 23 12 1
|
||||
10 11 13 1 10 11 13 1
|
||||
18 1 19 1 18 1 19 1
|
||||
24 0 2 16 24 0 2 1
|
||||
4 25 2 16 4 25 2 1
|
||||
25 24 2 16 25 24 2 1
|
||||
0 24 26 32 0 24 26 1
|
||||
26 27 28 32 26 27 28 1
|
||||
25 4 8 16 25 4 8 1
|
||||
29 30 26 1 29 30 26 1
|
||||
31 32 33 64 31 32 33 1
|
||||
34 35 36 64 34 35 36 1
|
||||
8 17 25 4 8 17 25 1
|
||||
24 17 18 16 24 17 18 1
|
||||
25 17 24 16 25 17 24 1
|
||||
37 19 21 16 37 19 21 1
|
||||
28 34 36 64 28 34 36 1
|
||||
0 38 37 64 0 38 37 1
|
||||
31 35 39 64 31 35 39 1
|
||||
39 34 30 64 39 34 30 1
|
||||
36 31 29 32 36 31 29 1
|
||||
24 34 27 64 24 34 27 1
|
||||
24 27 26 32 24 27 26 1
|
||||
32 30 29 1 32 30 29 1
|
||||
28 36 26 32 28 36 26 1
|
||||
35 31 36 64 35 31 36 1
|
||||
35 34 39 64 35 34 39 1
|
||||
36 29 26 32 36 29 26 1
|
||||
33 29 31 1 33 29 31 1
|
||||
30 38 26 64 30 38 26 1
|
||||
32 39 30 64 32 39 30 1
|
||||
30 34 38 64 30 34 38 1
|
||||
38 0 26 64 38 0 26 1
|
||||
38 34 24 64 38 34 24 1
|
||||
24 19 37 16 24 19 37 1
|
||||
27 34 28 64 27 34 28 1
|
||||
38 24 37 64 38 24 37 1
|
||||
0 37 21 128 0 37 21 1
|
||||
39 32 31 64 39 32 31 1
|
||||
32 29 33 1 32 29 33 1
|
||||
24 18 19 16 24 18 19 1
|
||||
position 0.00356383994 0.0292470008 0
|
||||
orientation -0.142500088 -0.531816304 -0.834784448 -2.70147991
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.25097999 0.25097999 0.25097999
|
||||
endnode
|
||||
endmodelgeom Wht_M_pelves
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Wht_M_pelves
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Wht_M_pelves
|
||||
node dummy Wht_M_pelves
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh sk_pelvis_1
|
||||
parent Wht_M_pelves
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.19999981 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Wht_M_pelves
|
||||
|
||||
donemodel Wht_M_pelves
|
||||
153
_content/hak/hyper_gore_prc/wht_s_bone.mdl
Normal file
153
_content/hak/hyper_gore_prc/wht_s_bone.mdl
Normal file
@@ -0,0 +1,153 @@
|
||||
#MAXMODEL ASCII
|
||||
# model: Wht_s_Bone
|
||||
filedependancy Wht_s_Bone.max
|
||||
newmodel Wht_s_Bone
|
||||
setsupermodel Wht_s_Bone NULL
|
||||
classification effect
|
||||
setanimationscale 1
|
||||
#MAXGEOM ASCII
|
||||
beginmodelgeom Wht_s_Bone
|
||||
node dummy Wht_s_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh sk_llarm_1
|
||||
parent Wht_s_Bone
|
||||
#part-number 1
|
||||
ambient 0.0901961029 0.0901961029 0.0901961029
|
||||
diffuse 0.662744999 0.662744999 0.662744999
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
shadow 0
|
||||
bitmap chunk64
|
||||
verts 26
|
||||
-0.0287855007 -0.00141283998 -0.0102465004
|
||||
-0.00118737004 -0.00128663995 0.0168686006
|
||||
0.00334323011 0.0314493999 -0.0101373
|
||||
0.0314687006 -0.00141286 -0.00670559006
|
||||
-0.000785856973 -0.0356387012 -0.0102289002
|
||||
-0.0220612995 -0.0029333001 -0.0447665006
|
||||
-0.00993037038 0.00509093003 -0.0474053994
|
||||
-0.00413536979 -0.00293331011 -0.0459440015
|
||||
-0.0114281001 -0.0102442 -0.0495350994
|
||||
-0.0245466009 0.00115141994 -0.232650995
|
||||
-0.0167212002 0.0118100997 -0.232632995
|
||||
-0.00889583956 0.00115141005 -0.232650995
|
||||
-0.0167212002 -0.00505323987 -0.232636005
|
||||
-0.0212721992 0.000611415016 -0.280620009
|
||||
-0.00471193017 0.0221522003 -0.281176001
|
||||
0.0147529002 0.000611406984 -0.275683999
|
||||
-0.0047119502 -0.0195148997 -0.280645013
|
||||
0.00152103999 0.000138803007 -0.293139011
|
||||
0.0142457997 0.00945505034 -0.256067008
|
||||
0.00192502001 0.000133326001 -0.284916013
|
||||
-0.00243258011 0.000133324007 -0.246206
|
||||
0.0128071997 -0.00918840989 -0.254624993
|
||||
0.0173633005 -0.0074794502 -0.0464828983
|
||||
-0.00176935003 -0.0204328001 -0.0376581997
|
||||
0.0173633005 -0.0399735011 -0.0285043009
|
||||
-0.00474022981 -0.0149726998 -0.00915282965
|
||||
tverts 26
|
||||
0.0105319005 0.41909501 0
|
||||
0.283692986 0.310880989 0
|
||||
0.332881004 0.416496009 0
|
||||
0.339047015 0.310337007 0
|
||||
0.0152081 0.311787993 0
|
||||
0.103621997 0.358162999 0
|
||||
0.184607998 0.328907996 0
|
||||
0.280128002 0.374713004 0
|
||||
0.0145677999 0.411770999 0
|
||||
0.0114708999 0.311931014 0
|
||||
0.104166999 0.357865989 0
|
||||
0.196861997 0.311931014 0
|
||||
0.162397996 0.410499007 0
|
||||
0.0502581 0.311967999 0
|
||||
0.0134955002 0.416622013 0
|
||||
0.324694008 0.415996999 0
|
||||
0.331530005 0.414375007 0
|
||||
0.320255011 0.30993101 0
|
||||
0.332125008 0.416281015 0
|
||||
0.325040013 0.309906989 0
|
||||
0.273422986 0.309906989 0
|
||||
0.333003014 0.309926987 0
|
||||
0.333218992 0.416592985 0
|
||||
0.0169962998 0.31111899 0
|
||||
0.0151843997 0.416049987 0
|
||||
0.335675001 0.308642 0
|
||||
faces 44
|
||||
0 1 2 1 0 1 2 1
|
||||
2 1 3 1 2 1 3 1
|
||||
3 1 4 1 3 1 4 1
|
||||
4 1 0 1 4 1 0 1
|
||||
5 0 6 1 5 0 6 1
|
||||
6 0 2 1 6 0 2 1
|
||||
6 2 7 1 6 2 7 1
|
||||
7 2 3 1 7 2 3 1
|
||||
7 3 8 1 7 3 8 1
|
||||
8 3 4 1 8 3 4 1
|
||||
8 4 5 1 8 4 5 1
|
||||
5 4 0 1 5 4 0 1
|
||||
9 5 10 1 9 5 10 1
|
||||
10 5 6 1 10 5 6 1
|
||||
10 6 11 1 10 6 11 1
|
||||
11 6 7 1 11 6 7 1
|
||||
11 7 12 1 11 7 12 1
|
||||
12 7 8 1 12 7 8 1
|
||||
12 8 9 1 12 8 9 1
|
||||
9 8 5 1 9 8 5 1
|
||||
13 9 14 1 13 9 14 1
|
||||
14 9 10 1 14 9 10 1
|
||||
14 10 15 1 14 10 15 1
|
||||
15 10 11 1 15 10 11 1
|
||||
15 11 16 1 15 11 16 1
|
||||
16 11 12 1 16 11 12 1
|
||||
16 12 13 1 16 12 13 1
|
||||
13 12 9 1 13 12 9 1
|
||||
17 13 14 1 17 13 14 1
|
||||
17 14 15 1 17 14 15 1
|
||||
17 15 16 1 17 15 16 1
|
||||
17 16 13 1 17 16 13 1
|
||||
18 19 20 1 18 19 20 1
|
||||
21 19 18 1 21 19 18 1
|
||||
20 19 21 1 20 19 21 1
|
||||
22 20 23 1 22 20 23 1
|
||||
18 20 22 1 18 20 22 1
|
||||
24 18 22 1 24 18 22 1
|
||||
21 18 24 1 21 18 24 1
|
||||
23 21 24 1 23 21 24 1
|
||||
20 21 23 1 20 21 23 1
|
||||
23 25 22 1 23 25 22 1
|
||||
22 25 24 1 22 25 24 1
|
||||
24 25 23 1 24 25 23 1
|
||||
position -0.0055374098 0.126877993 0
|
||||
orientation 0.577350259 -0.577350259 -0.577350259 -2.09439993
|
||||
alpha 1
|
||||
scale 1
|
||||
setfillumcolor 0.211765006 0.211765006 0.211765006
|
||||
endnode
|
||||
endmodelgeom Wht_s_Bone
|
||||
|
||||
#MAXANIM ASCII
|
||||
newanim impact Wht_s_Bone
|
||||
length 512.0
|
||||
transtime 0
|
||||
animroot Wht_s_Bone
|
||||
node dummy Wht_s_Bone
|
||||
parent NULL
|
||||
#part-number 0
|
||||
endnode
|
||||
node trimesh sk_llarm_1
|
||||
parent Wht_s_Bone
|
||||
#part-number 1
|
||||
ambient 0.200000003 0.200000003 0.200000003
|
||||
diffuse 0.800000012 0.800000012 0.800000012
|
||||
specular 0 0 0
|
||||
shininess 1
|
||||
alphakey 3
|
||||
0 1
|
||||
4.19999981 1
|
||||
512.0 0
|
||||
endnode
|
||||
doneanim impact Wht_s_Bone
|
||||
|
||||
donemodel Wht_s_Bone
|
||||
Reference in New Issue
Block a user