Skyrim

File information

Last updated

Original upload

Created by

esiotrot291117

Uploaded by

esiotrot291117

Virus scan

Safe to use

About this mod

All the perks of being an Afflicted, and more!

Permissions and credits
Just In!!!
- The shout can be acquired by activated the Pillar of Peryite (read below)
- Spray (being corrosive and not poisonous) now will affect Dwarven and Undead, but Spit and Spew (being poisons) will be resisted.

Description

Ever thought that Peryite should of given you more than just a lousy shield?
Ever wished that you could puke on others in Skyrim?
Well if you did, what's wrong with you?! (Deep inside we all want to... your not alone)
Anyway, this mod allows you to learn how to spit, spew, and spray your enemies with vomit-induced goodness.
(comes in the form of a shout, so yes you will need dragon souls)

VILE VAPORS

Spit (SpiderSpitModel)
- Causes 25 damage to health for 3 seconds
- Mid-range projectile
- Restore time: 5 second

Spew (ChaurusSpitModel)
- Causes 50 damage to health and stamina for 3 seconds
- Mid-range projectile
- Restore time: 10 seconds

Spray (AfflictedSpitModel)
- Causes 100 damage to health for 6 seconds
- Short-range projectile
- Restore time: 20 seconds

TO ACQUIRE THE SHOUT

Go up to the Shrine to Peryite and activate a small "Pillar of Peryite" to learn the Vile Vapors Shout and all 3 words of power!
(dragon souls will be needed to unlock).


Console command for gaining dragon souls
player.setav dragonsouls XX
(X being the number of how many you want)

OR
(HARDER AND NOT RECOMMENDED)

After Installing, launch the Nexus Mod Manager and move the ESP until it lies under Updates.esm, it should look like this in the manager:

Skyrim.esm 00 1
Update.esm
PeryitesBlessing.esp 01 2

(use picture for more detail)

Once in-game, bring up the console using "~" and type
player.teachword 02000D66 [Press Enter]
player.teachword 02000D67 [Press Enter]
player.teachword 02000D68 [Press Enter]

**If you know your load order and do not want to change the position of the ESP, just substitute the order into the first two numbers of the word ID (XX000D66 and so on)**

------------------------------------------------------------------------------------------------------------------------------
Installation

Simply extract the "Data" file to your Skyrim directory, which should be:
"C:\Program Files (x86)\Steam\SteamApps\common\skyrim\"

I can do Papyrus!

Endorsements and Kudos
will be much appreciated!

But above all,
ENJOY THE MOD!


MY OTHER MODS:

Build-A-Dwarven Army

Enhanced Wolf Armor

Shrouded Hood High-Res and Blood-Faded Texture



The script (a reference for any one wanting to make their own shouts):
Note: indents and color coding has been removed due to site restrictions*
-----------------------------------------------------------------------------------------------
Scriptname PeryitesBlessingScript extends ObjectReference

int count

Event OnActivate(ObjectReference akActionRef)

if (Game.GetPlayer().AddShout(AfflictedBreathShoutPlayable))
Game.TeachWord (WordSpit)
Game.TeachWord (WordSpew)
Game.TeachWord (WordSpray)
Debug.Trace("Peryite's Blessing acquired")
Debug.MessageBox("May you puke well.")
endIf
endEvent
Shout Property AfflictedBreathShoutPlayable Auto

WordOfPower Property WordSpit Auto

WordOfPower Property WordSpew Auto

WordOfPower Property WordSpray Auto
-----------------------------------------------------------------------------------------------