Hexen item replacer adjustments
This commit is contained in:
parent
68099809c0
commit
06b52dfa3e
3 changed files with 7 additions and 7 deletions
|
|
@ -398,7 +398,7 @@ certain encounters, or prepare surprise attacks.
|
|||
|
||||
This powerup lasts 60 seconds and cannot be toggled.
|
||||
|
||||
### Ragekit, replaces Berserk, Tome of Power, Dark Servant, Dragonskin Bracers
|
||||
### Ragekit, replaces Berserk, Tome of Power, Dark Servant, Boots of Speed
|
||||
|
||||
The ragekit is a special item that has some... interesting effects.
|
||||
|
||||
|
|
@ -415,7 +415,7 @@ from previous SWWM versions.
|
|||
For 60 seconds, you can walk on hazardous floors or even take a nice swim in
|
||||
corrosive slime, scorching magma, freezing waters, or other extremes.
|
||||
|
||||
### Gravity suppressor, replaces Wings of Wrath, Boots of Speed
|
||||
### Gravity suppressor, replaces Wings of Wrath
|
||||
|
||||
Continuing with the "replace jump boots with flight" decision in previous mods,
|
||||
this time you'll be getting a proper easy to control antigravity powerup.
|
||||
|
|
@ -430,7 +430,7 @@ Artifact.
|
|||
|
||||
You're fucking invincible for a total of 30 seconds.
|
||||
|
||||
### Hammerspace Embiggener, replaces Backpack, Bag of Holding, Porkalator
|
||||
### Hammerspace Embiggener, replaces Backpack, Bag of Holding, Porkalator, Dragonskin Bracers
|
||||
|
||||
Each of these you pick up increase ammo capacity by half of its base value, up
|
||||
to 5x, and also give you some extra ammo like a normal backpack.
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
[default]
|
||||
SWWM_MODVER="\chSWWM \cwGZ\c- r402 (Fri 26 Jun 16:07:38 CEST 2020)";
|
||||
SWWM_MODVER="\chSWWM \cwGZ\c- r402 (Sat 27 Jun 19:19:54 CEST 2020)";
|
||||
|
|
|
|||
|
|
@ -3274,7 +3274,7 @@ Class SWWMHandler : EventHandler
|
|||
else if ( e.Replacee == 'Mana2' ) e.Replacement = 'FabricatorTier2';
|
||||
else if ( e.Replacee == 'Mana3' ) e.Replacement = 'FabricatorTier3';
|
||||
else if ( e.Replacee == 'ArtiBoostMana' ) e.Replacement = 'FabricatorTier4';
|
||||
else if ( (e.Replacee == 'Backpack') || (e.Replacee == 'BagOfHolding') || (e.Replacee == 'ArtiPork') ) e.Replacement = 'HammerspaceEmbiggener';
|
||||
else if ( (e.Replacee == 'Backpack') || (e.Replacee == 'BagOfHolding') || (e.Replacee == 'ArtiPork') || (e.Replacee == 'ArtiBoostArmor') ) e.Replacement = 'HammerspaceEmbiggener';
|
||||
else if ( (e.Replacee == 'FWeaponPiece1') || (e.Replacee == 'FWeaponPiece2')
|
||||
|| (e.Replacee == 'CWeaponPiece1') || (e.Replacee == 'CWeaponPiece3')
|
||||
|| (e.Replacee == 'MWeaponPiece2') || (e.Replacee == 'MWeaponPiece3') )
|
||||
|
|
@ -3301,9 +3301,9 @@ Class SWWMHandler : EventHandler
|
|||
else if ( (e.Replacee == 'Megasphere') || (e.Replacee == 'ArtiEgg') || (e.Replacee == 'PlatinumHelm') ) e.Replacement = 'GrilledCheeseSandwich';
|
||||
else if ( (e.Replacee == 'Blursphere') || (e.Replacee == 'ArtiInvisibility') || (e.Replacee == 'AmuletOfWarding') ) e.Replacement = 'GhostArtifact';
|
||||
else if ( e.Replacee == 'Radsuit' ) e.Replacement = 'EBarrier';
|
||||
else if ( (e.Replacee == 'ArtiFly') || (e.Replacee == 'ArtiSpeedBoots') ) e.Replacement = 'GravitySuppressor';
|
||||
else if ( (e.Replacee == 'ArtiFly') ) e.Replacement = 'GravitySuppressor';
|
||||
else if ( (e.Replacee == 'InvulnerabilitySphere') || (e.Replacee == 'ArtiInvulnerability') || (e.Replacee == 'ArtiInvulnerability2') ) e.Replacement = 'FuckingInvinciball';
|
||||
else if ( (e.Replacee == 'Berserk') || (e.Replacee == 'ArtiTomeOfPower') || (e.Replacee == 'ArtiDarkServant') || (e.Replacee == 'ArtiBoostArmor') ) e.Replacement = 'Ragekit';
|
||||
else if ( (e.Replacee == 'Berserk') || (e.Replacee == 'ArtiTomeOfPower') || (e.Replacee == 'ArtiDarkServant') || (e.Replacee == 'ArtiSpeedBoots') ) e.Replacement = 'Ragekit';
|
||||
else if ( (e.Replacee == 'AllMap') || (e.Replacee == 'SuperMap') ) e.Replacement = 'Omnisight';
|
||||
else if ( (e.Replacee == 'Infrared') || (e.Replacee == 'ArtiTorch') ) e.Replacement = 'SWWMLamp';
|
||||
else if ( (e.Replacee == 'GreenArmor') || (e.Replacee == 'SilverShield') || (e.Replacee == 'MeshArmor') ) e.Replacement = 'BlastSuitItem';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue