-
Notifications
You must be signed in to change notification settings - Fork 0
/
GORE!!!.txt
4576 lines (4050 loc) · 92.3 KB
/
GORE!!!.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
actor BigGibBase
{ Radius 10
Height 10
+CLIENTSIDEONLY
+NOTELEPORT
+MOVEWITHSECTOR
+DONTSPLASH
+NOBLOCKMONST
-NOBLOCKMAP
+GHOST
+THRUACTORS
+FLOORCLIP
+SLIDESONWALLS
+FORCEXYBILLBOARD
DamageFactor "CauseObjectsToSplash", 0.0
DamageFactor "GibRemoving", 0.5
//+SOLID
-SOLID
+SHOOTABLE
damagefactor "Crush", 50.0
damagefactor "Shrapnel", 100.0
damagefactor "Plasma", 20.0
damagefactor "TeleportRemover", 1000.0
painchance "Flames", 0
painchance "Fire", 0
painchance "Burn", 0
painchance "KillMe", 0
damagefactor "Kick", 3.0
damagefactor "SuperKick", 3.0
damagefactor "ExtremePunches", 2.0
Mass 1000
Health 100
damagefactor "Blood", 0.0 damagefactor "GreenBlood", 0.0 damagefactor "BlueBlood", 0.0 damagefactor "Taunt", 0.0 damagefactor "KillMe", 0.0 damagefactor "Avoid", 0.0 damagefactor "Taunt", 0.0
damagefactor "Trample", 5000.0
painchance 255
States {
Spawn:
TNT1 A 1900 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Loop
Death:
TNT1 AAA 0 A_CustomMissile ("XDeath1", 5, 0, random (0, 360), 2, random (0, 160))
TNT1 AAAAAAA 0 A_CustomMissile ("XDeathSkinPiece2", 5, 0, random (0, 360), 2, random (0, 160))
TNT1 AAAA 0 A_CustomMissile ("XDeathSkinPiece1", 5, 0, random (0, 360), 2, random (0, 160))
TNT1 AAAA 0 A_CustomMissile ("SmallSuperGore", 10, 0, random (0, 360), 2, random (10, 170))
Stop
Death.plasma:
Death.Burn:
Death.Fire:
Death.Flames:
TNT1 A 0
TNT1 A 0 A_NoBlocking
TNT1 A 0 A_Jump(128, "DeathFire2")
TNT1 A 0 A_CustomMissile ("XDeathBurnedMeat", 32, 0, random (0, 360), 2, random (0, 160))
EXPL AAA 0 A_CustomMissile ("ExplosionSmoke", 32, 0, random (0, 360), 2, random (0, 360))
TNT1 A 0
Stop
DeathFire2:
TNT1 A 0 A_CustomMissile ("XDeathBurnedMeat3", 32, 0, random (0, 360), 2, random (0, 160))
EXPL AAA 0 A_CustomMissile ("ExplosionSmoke", 32, 0, random (0, 360), 2, random (0, 360))
TNT1 A 0
Stop
Death.Trample:
TNT1 A 0 A_GiveToTarget("BootsSmearedWithRedBlood", 6)
Death.Crush:
Death.Stomp:
Death.SuperPunch:
Death.ExtremePunches:
TNT1 AAA 0 A_CustomMissile ("XDeath1", 5, 0, random (0, 360), 2, random (0, 30))
TNT1 AAAA 0 A_CustomMissile ("BloodMist", 5, 0, random (0, 360), 2, random (0, 30))
TNT1 AAAAAAA 0 A_CustomMissile ("XDeathSkinPiece2", 5, 0, random (0, 360), 2, random (10, 30))
TNT1 AAAA 0 A_CustomMissile ("XDeathSkinPiece1", 5, 0, random (0, 360), 2, random (10, 130))
TNT1 AAAA 0 A_CustomMissile ("SmallSuperGore", 10, 0, random (0, 360), 2, random (10, 30))
TNT1 A 0 A_SpawnItem("SplatteredSmall")
XME2 L 1
XME2 L -1
Stop
Death.TeleportRemover:
TNT1 A 0
TNT1 A 0 A_ChangeFlag("NOCLIP", 1)
TNT1 A 0 A_ChangeFlag("SHOOTABLE", 0)
TNT1 A 0 A_ChangeFlag("NOBLOCKMAP", 1)
TNT1 A 0 A_NoBlocking
Stop
Death.GibRemoving:
TNT1 A 0
TNT1 A 0 A_ChangeFlag("NOCLIP", 1)
TNT1 A 0 A_ChangeFlag("SHOOTABLE", 0)
TNT1 A 0 A_ChangeFlag("NOBLOCKMAP", 1)
TNT1 A 0 A_NoBlocking
Stop
Death.Desintegrate:
TNT1 A 0
TNT1 AAAA 0 A_CustomMissile ("Brutal_FlyingBloodFake", 0, 0, random (0, 360), 2, random (0, 90))
TNT1 A 0 A_CustomMissile ("Brutal_FlyingBlood", 7, 0, random (0, 360), 2, random (30, 60))
TNT1 A 0 A_CustomMissile ("BloodMistSmall", 7, 0, random (0, 360), 2, random (30, 60))
Stop
}}
actor LimbBase: BigGibBase
{ Radius 6
Height 10
Mass 1000
Painchance 256
Health 35
+FORCEXYBILLBOARD
+DONTSPLASH
+SHOOTABLE
-CLIENTSIDEONLY
+NOBLOCKMONST
//+SOLID
+THRUACTORS
+FLOORCLIP
damagefactor "Crush", 50.0
DeathSound "misc/xdeath4"
damagefactor "Blood", 0.0 damagefactor "GreenBlood", 0.0 damagefactor "BlueBlood", 0.0 damagefactor "Taunt", 0.0 damagefactor "KillMe", 0.0 damagefactor "Avoid", 0.0 damagefactor "Taunt", 0.0
//damagefactor "Plasma", 99000.0
damagefactor "Trample", 2.0
damagefactor "Kick", 9.0
damagefactor "Explosive", 0.1
damagefactor "ExplosiveImpact", 9.1
damagefactor "Shrapnel", 100.0
damagefactor "Melee", 9.0
damagefactor "SuperPunch", 9.0
damagefactor "Plasma", 20.0
painchance 255
States {
Spawn:
TNT1 A 1900 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Loop
Death:
TNT1 AAAAAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
XDT3 BCDEFGH 3
Death.Crush:
TNT1 A 1 A_CustomMissile ("XDeath1", 5, 5, random (0, 360), 2, random (0, 160))
TNT1 A 0 A_CustomMissile ("XDeath2", 5, 0, random (0, 360), 2, random (0, 160))
TNT1 A 0 A_CustomMissile ("XDeath3", 5, -5, random (0, 360), 2, random (0, 160))
CRSB A 9009
Stop
Stop}}
ACTOR TinyGib
{
Radius 2
Height 8
Speed 6
Mass 1
gravity 0.5
Scale 0.8
Decal BrutalBloodSplat
+MOVEWITHSECTOR
+CLIENTSIDEONLY
+NOBLOCKMAP
+NOTELEPORT
+MISSILE
+FORCEXYBILLBOARD
+DONTSPLASH
+NOBLOCKMONST
seesound "bloood"
deathsound "bloood"
States
{
Spawn:
TNT1 A 1
Loop
}
}
actor BloodTrails
{
Decal BrutalBloodSplat
game Doom
Alpha 0.4
+FORCEXYBILLBOARD
+GHOST
+NOBLOCKMAP
Gravity 0.05
+NOCLIP
+DontSplash
-EXPLODEONWATER
-ALLOWPARTICLES
+CLIENTSIDEONLY
-NOGRAVITY
Scale 1.2
states
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
//BLER GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG 1 A_FadeOut(0.01)
TNT1 AAAAAA 0 A_CustomMissile ("BloodTr255G", 0, 0, random (0, 360), 2, random (0, 180))
//BLOD A 0 A_SpawnItem ("Big_Blood", 0, 10)
stop
}
}
// Blood trails spawned by FlyingBlood
actor Brutal_FlyingBloodTrail8
{
game Doom
scale 0.70
mass 1
Decal BrutalBloodSplat
+LOWGRAVITY
+NOTELEPORT
+NOBLOCKMAP
+NOCLIP
+FORCEXYBILLBOARD
+CLIENTSIDEONLY
-DONTSPLASH
+MISSILE
-NOGRAVITY
Speed 3
states
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
BTRL A 8
BTRL B 8
BTRL C 8
BTRL D 8
stop
Splash:
BLOD A 0
stop
}
}
Actor GreenBloodTrail
{
-NOGRAVITY
+NOCLIP
radius 16
height 16
gravity 0.5
Scale 1.5
translation "168:191=112:127","16:47=120:127"
+FORCEXYBILLBOARD
+NOBLOCKMAP
states
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
TNT1 A 0
TNT1 A 0 Thing_ChangeTid(0,386)
BLOD ABCD 2
stop
Splash:
TNT1 A 0
Stop
}
}
Actor BlueBloodTrail
{
-NOGRAVITY
+NOCLIP
radius 16
height 16
gravity 0.5
Scale 1.5
translation "168:191=192:207","16:47=240:247"
decal CacoBloodSplat
+FORCEXYBILLBOARD
states
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
TNT1 A 0
TNT1 A 0 Thing_ChangeTid(0,386)
BLOD ABCD 2
stop
Splash:
TNT1 A 0
Stop
}
}
ACTOR XDeath1
{
Radius 8
Height 8
Speed 10
Scale 1.2
Mass 1
+NOBLOCKMAP
+MISSILE
+NOTELEPORT
+MOVEWITHSECTOR
+CLIENTSIDEONLY
+RIPPER
+BLOODLESSIMPACT
-DONTSPLASH
+THRUGHOST
+THRUACTORS
+FLOORCLIP
damagetype Blood
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath1"
Decal BrutalBloodSuper
Mass 1
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Underwater")
BLOD A 4 A_CustomMissile ("XDeath1Trail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
XDT1 EFGHIJKL 5
Stop
TNT1 A 1
Underwater:
Splash:
BLUD C 0 ThrustThingZ (0,35,1,0)
XDT1 AB 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
BLUD C 0 ThrustThingZ (0,35,1,0)
XDT1 CD 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
}
}
ACTOR XDeath2: XDeath1
{
+CLIENTSIDEONLY
+DONTSPLASH
Speed 10
Gravity 0.4
DeathSound "misc/xdeath2"
Decal BrutalBloodSuper
Scale 1.1
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
XME1 ABCD 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
TNT1 AAAAAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_CheckFloor("SpawnFloor")
TNT1 A 0 A_SpawnItemEx ("DetectCeilBloodSimplerLarge",0,0,0,0,0,0,0,SXF_NOCHECKPOSITION,0)
TNT1 A 0 A_SpawnItemEx ("DetectCeilXDeath2",0,0,0,0,0,0,0,SXF_NOCHECKPOSITION,0)
Stop
SpawnFloor:
XME1 E 1
TNT1 A 0 ACS_ExecuteAlways(798, 0, 0, 0, 0)//Check Effects
XME1 E 3
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Living:
XME1 E 600
TNT1 A 0 A_JumpIfInventory("lowgraphicsmode", 1, "Vanish")
Loop
Vanish:
TNT1 A 5
Stop
}
}
ACTOR XDeath2b: XDeath2
{
Speed 4
}
ACTOR XDeath3: XDeath2
{
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath3"
Decal BrutalBloodSuper
Scale 1.1
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
XME2 ABCD 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
TNT1 AAAAAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_CheckFloor("SpawnFloor")
TNT1 A 0 A_SpawnItemEx ("DetectCeilBloodSimplerLarge",0,0,0,0,0,0,0,SXF_NOCHECKPOSITION,0)
TNT1 A 0 A_SpawnItemEx ("DetectCeilXDeath3",0,0,0,0,0,0,0,SXF_NOCHECKPOSITION,0)
Stop
SpawnFloor:
XME2 E 1
TNT1 A 0 ACS_ExecuteAlways(798, 0, 0, 0, 0)//Check Effects
XME2 E 3
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Living:
XME2 E 600
TNT1 A 0 A_JumpIfInventory("lowgraphicsmode", 1, "Vanish")
Loop
Vanish:
TNT1 A 5
Stop
}
}
ACTOR XDeath3b: XDeath3
{
Speed 4
}
ACTOR XDeath4: XDeath2
{
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath3"
Scale 1.1
+DOOMBOUNCE
BounceFactor 0.3
wallbouncefactor 0.2
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
XME3 ABCDEFGH 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
TNT1 A 0
TNT1 A 0 A_Jump(255, "Death1", "Death2")
GOto Death1
Death1:
TNT1 A 0
TNT1 A 0 ACS_ExecuteAlways(798, 0, 0, 0, 0)//Check Effects
XME3 GH 3
XME3 A 1
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Living1:
XME3 A 600//duration
TNT1 A 0 A_JumpIfInventory("lowgraphicsmode", 1, "Vanish")
Loop
Death2:
XME3 I 1
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
XME3 I 1
Living2:
XME3 I 600//duration
TNT1 A 0 A_JumpIfInventory("lowgraphicsmode", 1, "Vanish")
Loop
Vanish:
TNT1 A 1
Stop
}
}
ACTOR XDeath5: XDeath2
{
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath3"
Scale 1.1
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
XME5 ABCD 3 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
TNT1 AAAAAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
TNT1 A 0 ACS_ExecuteAlways(798, 0, 0, 0, 0)//Check Effects
XME5 E 3
Living:
XME5 E 800//duration
TNT1 A 0 A_JumpIfInventory("lowgraphicsmode", 1, "Vanish")
Loop
Vanish:
TNT1 A 1
Stop
}
}
ACTOR XDeathOrgan1: XDeath2
{
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath3"
Scale 0.9
Speed 4
States
{
Spawn:
XME8 A 4 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
XME8 A 1
XME8 A -1
Stop
}
}
ACTOR XDeathOrgan1b: XDeathOrgan1
{
XScale -0.7
YScale 0.5
}
ACTOR XDeathOrgan2: XDeathOrgan1
{
States
{
Spawn:
XME8 B 4 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
XME8 B 1
XME8 B -1
Stop
}
}
ACTOR XDeathGuts: XDeath2
{
Scale 1.1
SeeSound "misc/xdeath4"
DeathSound "misc/xdeath3"
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
XME4 AAAABBBBCCCCDDDD 2
Loop
Death:
TNT1 AAAAAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 180), 2, random (0, 180))
//TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
XME4 E 9009
Stop
}
}
ACTOR GoreSound: XDeath2
{
SeeSound "misc/xdeath4"
DeathSound "none"
Decal "None"
States
{
Spawn:
TNT1 A 0 A_JumpIf(waterlevel > 1, "Splash")
TNT1 A 2
Loop
Death:
TNT1 BCDE 1
Stop
Splash:
TNT1 A 1
Stop
}
}
ACTOR ShakeShakeShake: XDeath2
{
SeeSound "none"
DeathSound "none"
Decal "None"
Gravity 1.0
Speed 1
States
{
Spawn:
TNT1 A 5
Goto Death
Death:
TNT1 A 1
EXPL A 0 Radius_Quake (4, 24, 0, 15, 0)
TNT1 A 20
Stop
}
}
//ACTOR XDeathMarineHead
//{
// Radius 8
// Height 8
// Speed 16
//Mass 6
//BounceFactor 0.4
// +DOOMBOUNCE
// +NOBLOCKMAP
// +MISSILE
// +NOTELEPORT
// +DONTSPLASH
// +MOVEWITHSECTOR
// DeathSound "misc/xdeath1"
// Decal BrutalBloodSplat
// States
// {
// Spawn:
// TNT1 A 0 A_JumpIf(waterlevel > 1, "Death")
// MHEA A 15 A_CustomMissile("Brutal_FlyingBloodTrail",0,0,180,2)
// Loop
// Death:
// MHEA A 9009
// Stop
// }
//}
/////////////////
//ARMS
/////////////////
ACTOR XDeathArm1
{
Radius 8
Height 8
Scale 1.1
Speed 8
Mass 1
gravity 0.5
Decal BrutalBloodSplat
BounceFactor 0.2
wallbouncefactor 0.2
BounceCount 3
+DOOMBOUNCE
+MOVEWITHSECTOR
+CLIENTSIDEONLY
+NOBLOCKMAP
+NOTELEPORT
+MISSILE
+EXPLODEONWATER
+SKYEXPLODE
-DONTSPLASH
seesound "bloood"
deathsound "bloood"
States
{
Spawn:
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
TNT1 A 0 A_JumpIf(waterlevel > 1, "Death")
XARM AEBCFDG 5 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death:
XDT5 I 1
XDT5 I 0 A_SpawnItem("Gib_Arm")
Stop
}
}
actor Gib_Arm: LimbBase
{
Scale 1.1
States
{
Spawn:
XDT5 I 1900 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
Loop
Death.plasma: Death.Burn: Death.Flames: TNT1 A 0 A_CustomMissile ("XDeathBurnedArm", 32, 0, random (0, 360), 2, random (0, 160)) Stop
Death:
TNT1 AAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
TNT1 A 0 A_CustomMissile ("GibHand", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_CustomMissile ("GibArmPart", 0, 0, random (0, 180), 2, random (0, 180))
Stop
Death.Kick:
Death.Melee:
Death.SuperPunch:
XDT5 I 1 A_FaceTarget
TNT1 A 0 A_CustomMissile ("XDeathArm1", 5, 0, random (170, 190), 2, random (20, 40))
Stop
Pain:
TNT1 A 0
TNT1 A 0 ThrustThingZ(0,20,0,1)
XARM ABCD 3
Goto Spawn
Death.ExplosiveImpact:
TNT1 A 0
TNT1 A 0 A_ChangeFlag("NOBLOCKMAP", 0)
TNT1 A 0 ThrustThingZ(0,30,0,1)
XARM A 6
XARM ABCDABCDABCD 6 A_CheckFloor("Landz")
Goto Landz
Landz:
XDT5 I 0 A_SpawnItem("Gib_Arm")
Stop
}}
ACTOR XDeathArm1Kicked: XDeathArm1
{
+ACTIVATEMCROSS
+ACTIVATEIMPACT
+CANUSEWALLS
States
{
Spawn:
TNT1 A 0 A_ChangeFlag("NOCLIP", 1)
XARM A 2
TNT1 A 0 A_ChangeFlag("NOCLIP", 0)
TNT1 A 0
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
TNT1 A 0 A_JumpIf(waterlevel > 1, "Death")
XARM ABCD 6 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
Goto Spawn+3
}
}
actor GibArmPart: TinyGib
{
Scale 1.0
States
{
Spawn:
XDT5 Z 1
Loop
Death:
XDT5 Z 1
Loop
}}
actor GibHand: TinyGib
{
Scale 1.0
States
{
Spawn:
XDT5 Y 1
Loop
Death:
XDT5 Y 1
Loop
}}
ACTOR XDeathArm2: XDeathArm1
{
Speed 10
}
ACTOR XDeathBullArm1: XDeathArm1
{
Scale 1.0
Speed 10
Gravity 0.4
BounceFactor 0.4
wallbouncefactor 0.2
+SKYEXPLODE
Species "Marines"
+THRUSPECIES
BounceCount 5
Radius 10
States
{
Spawn:
TNT1 A 0
TNT1 A 0 A_JumpIf(waterlevel > 1, "Death")
HND8 ABCDEFGH 3 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death.plasma: Death.Burn: Death.Flames: TNT1 A 0 A_CustomMissile ("XDeathBurnedDemonArm", 32, 0, random (0, 360), 2, random (0, 160)) Stop
Death:
HND8 I 1
HND8 A 0 A_SpawnItem("Gib_DemonArm",0,0,0,1)
Stop
}
}
ACTOR XDeathDemonArm: XDeathBullArm1
{
Scale 1.0
}
actor Gib_DemonArm: LimbBase
{
Scale 1.0
States
{
Spawn:
HND8 GH 2
Goto Spawn1
Spawn1:
HND8 I 40000
Loop
Death:
TNT1 AAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
TNT1 A 0 A_CustomMissile ("GibDemonHand", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_CustomMissile ("GibDemonArmPart", 0, 0, random (0, 180), 2, random (0, 180))
Stop
Death.Kick:
Death.Melee:
Death.SuperPunch:
HND8 AA 1 A_FaceTarget
TNT1 A 0 A_CustomMissile ("XDeathBullArm1Kicked", 5, 0, random (170, 190), 2, random (20, 40))
Stop
Pain:
TNT1 A 0
TNT1 A 0 ThrustThingZ(0,20,0,1)
HND8 ABCDEFGH 2
Goto Spawn1
Death.ExplosiveImpact:
TNT1 A 0
TNT1 A 0 A_ChangeFlag("NOBLOCKMAP", 0)
TNT1 A 0 ThrustThingZ(0,30,0,1)
HND8 A 5
HND8 ABCDEFGHABCDEFGHABCDEFGH 5 A_CheckFloor("Landz")
Goto Landz
Landz:
XDT5 I 0 A_SpawnItem("Gib_DemonArm")
Stop
}}
ACTOR XDeathBullArm1Kicked: XDeathBullArm1
{
+ACTIVATEMCROSS
+ACTIVATEIMPACT
+CANUSEWALLS
}
actor GibDemonArmPart: TinyGib
{
Scale 1.0
States
{
Spawn:
HND8 Z 1
Loop
Death:
HND8 Z 1
Loop
}}
actor GibDemonHand: TinyGib
{
Scale 0.9
States
{
Spawn:
HND8 Y 1
Loop
Death:
HND8 Y 1
Loop
}}
ACTOR XDeathImpArm: XDeathArm1
{
Scale 1.1
Speed 8
Gravity 0.4
States
{
Spawn:
TNT1 A 0
TNT1 A 0 A_JumpIf(waterlevel > 1, "Death")
HND4 ABCDEFGH 4 A_CustomMissile ("Brutal_FlyingBloodTrail5", 0, 0, random (0, 360), 2, random (0, 360))
Loop
Death.plasma: TNT1 A 0 A_CustomMissile ("XDeathBurnedImpArm", 32, 0, random (0, 360), 2, random (0, 160)) Stop
Death:
HND4 X 1
HND4 X 0 A_SpawnItem("Gib_ImpArm",0,0,0,1)
Stop
}
}
actor Gib_ImpArm: LimbBase
{
Scale 1.1
States
{
Spawn:
HND4 X 1900
Loop
Death.plasma: Death.Burn: Death.Flames: TNT1 A 0 A_CustomMissile ("XDeathBurnedImpArm", 32, 0, random (0, 360), 2, random (0, 160)) Stop
Death:
TNT1 AAAA 0 A_CustomMissile ("Brutal_FlyingBloodTrail", 0, 0, random (0, 360), 2, random (0, 360))
TNT1 A 0 A_CustomMissile ("GibImpHand", 0, 0, random (0, 180), 2, random (0, 180))
TNT1 A 0 A_CustomMissile ("GibImpArmPart", 0, 0, random (0, 180), 2, random (0, 180))
Stop
Stop
Death.Kick:
Death.Melee:
Death.SuperPunch:
HND4 AA 1 A_FaceTarget
TNT1 A 0 A_CustomMissile ("XDeathImpArm", 5, 0, random (170, 190), 2, random (20, 40))
Stop
Pain:
TNT1 A 0
TNT1 A 0 ThrustThingZ(0,20,0,1)
HND4 ABCDEFGH 3
Goto Spawn
Death.ExplosiveImpact:
TNT1 A 0
TNT1 A 0 A_ChangeFlag("NOBLOCKMAP", 0)
TNT1 A 0 ThrustThingZ(0,30,0,1)
HND4 X 5
HND4 ABCDEFGHABCDEFGHABCDEFGH 5 A_CheckFloor("Landz")
Goto Landz
Landz:
XDT5 I 0 A_SpawnItem("Gib_ImpArm")
Stop
}}
actor GibImpArmPart: TinyGib
{
Scale 1.1
States
{
Spawn:
HND4 Z 1
Loop
Death:
HND4 Z 1
Loop
}}
actor GibImpHand: TinyGib
{
Scale 0.8
States
{
Spawn:
HND4 Y 1
Loop
Death:
HND4 Y 1
Loop
}}
ACTOR XDeathHalfImpUpperPart32
{
Radius 2
Height 2
Scale 1.1
Speed 6
Gravity 0.3
Mass 4
Decal BrutalBloodSplat
BounceFactor 0.2
wallbouncefactor 0.2
+MISSILE
+MOVEWITHSECTOR
+CLIENTSIDEONLY
+NOBLOCKMAP
+NOTELEPORT
States
{
Spawn:
//TNT1 A 0 A_SpawnItem("Brutal_LiquidBlood",0,0,0,1)
HND4 IJKLMNOPQ 3 A_CustomMissile("Brutal_LiquidBlood",0,0,0,1)
Loop
Death:
TNT1 A 0 A_SpawnItem ("Brutal_BloodSpot", 0, 1)
TNT1 AAA 0 A_spawnItem("Blood", 0, 10)
HND4 Q 1 A_SpawnItem("Gib_HalfImpUpperPart32",0,0,0,1)
TNT1 A 0
Stop
}
}
actor Gib_HalfImpUpperPart32: BigGibBase
{
damagefactor "ExplosiveImpact", 5.0
damagefactor "Kick", 5.0
States
{
Spawn: