forked from DRRP-Team/DRRP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDECORATE.dec
57 lines (48 loc) · 1.35 KB
/
DECORATE.dec
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
/**
* Copyright (c) 2017-2019 DRRP-Team
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include actors/Items.dec
// #include actors/Weapons.dec
#include actors/Environment.dec
#include actors/Damages.dec
#include actors/DRPGWeapons.dec
#include actors/Monsters.dec
#include actors/Characters.dec
#include actors/Invisible.dec
#include actors/Decorations.dec
//#include actors/System.dec
/** Manifest
* Items 10600-10700
* Weapons 10556-10599
* Characters 10500-10555
* Decorations 10701-10800
* Invisible 10801-10900
* Monsters
* 1 level = 10259-10299
* 2 level = 10300-10358
* 3 level = 10359-10400
*/
// HELLO FROM RUSSIA'N'UKRAINE!
// Mir, Trud, Maiy!
// (c) DSSKULL
Actor DoomRPGPlayer : DoomPlayer {
Health 30
Player.RunHealth 245654
Player.MaxHealth 30
Player.DisplayName "Marine"
Player.MugShotMaxHealth 30
Player.WeaponSlot 0, FireExt
Player.WeaponSlot 1, DRRPAxe
Player.WeaponSlot 2, DRRPPistol
Player.WeaponSlot 3, DRRPShotgun, DRRPSuperShotgun
Player.WeaponSlot 4, DRRPChaingun
Player.WeaponSlot 5, DRRPRocketLauncher
Player.WeaponSlot 6, DRRPPlasmagun
Player.WeaponSlot 7, DRRPBFG9000
Player.WeaponSlot 8, HellHoundGun, CerberusGun, DemonWolfGun
Player.StartItem "DRRPPistol"
Player.StartItem "Clip", 8
}