Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function hh.shruglife()
- local affs = gmcp.Char.Afflictions.List
- --below is a list of all tree cured afflictions except weariness(shrugging blocker)
- local treeables = {
- "itching",
- "paralysis",
- "fear",
- "brokenrightarm",
- "brokenleftarm",
- "brokenrightleg",
- "brokenleftleg",
- "lapsingconsciousness",
- "aeon",
- "lovers",
- "confusion",
- "epilepsy",
- "pacified",
- "blackout",
- "dazed",
- "justice",
- "slashedthroat",
- "hellsight",
- "peace",
- "dazzled",
- "shyness",
- "dizziness",
- "slickness",
- "asthma",
- "nausea",
- "selarnia",
- "scytherus",
- "haemophilia",
- "clumsiness",
- "hallucinations",
- "healthleech",
- "dementia",
- "recklessness",
- "anorexia",
- "masochism",
- "impatience",
- "stupidity",
- "generosity",
- "addiction",
- "deadening",
- "manaleech",
- "stuttering",
- "paranoia",
- "agoraphobia",
- "loneliness",
- "claustrophobia",
- "vertigo",
- "hypersomnia",
- "shivering",
- "frozen",
- "burning",
- "sensitivity",
- "hypochondria",
- "lethargy",
- "disloyalty",
- "darkshade",
- "voyria",
- "dissonance",
- "phlogisticated",
- "silver",
- "airdisrupt",
- "spiritburn",
- "tenderskin",
- "waterdisrupt",
- "guilt",
- "skullfractures",
- "wristfractures",
- "crackedribs",
- "torntendons",
- "indifference",
- "retribution",
- "shadowmadness",
- "parasite",
- "depression",
- "timeloop",
- "crushedthroat",
- "tension",
- "unweavingspirit",
- "grievouswounds",
- "pyramides",
- "flushings",
- "rebbies",
- "mycalium",
- "sandfever" }
- local count = 0
- for _,aff in pairs(treeables) do
- if table.contains(affs, aff) then
- count = count + 1
- end
- end
- if count >= 3 and hh.shrugging_bal then
- shrug_life = true
- end
- return shrug_life
- end
- --hh.snek.prepender = "shrugging" and hh.shruglife() or ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement