Files
Bubberstation/code/modules/events/wizard/rpgloot.dm
T
69827604c4 Improves the RPG loot wizard event. (#77218)
## About The Pull Request
As the title says. Adds a bunch more stat changes to various different
items and a somewhat simple way of modifying them whilst minimizing
side-effects as much as possible.
Added a new negative curse of polymorph suffix that can randomly
polymorph you once you pick up the item.
Curse of hunger items won't start on items that are not on a turf.
Curse of polymorph will only activate when equipped.

Bodyparts, two-handed melees, bags, guns and grenades, to name a few,
have a bunch of type-specific stat changes depending on their quality.

Some items won't gain fantasy suffixes during the RPG loot event, like
stacks, chairs and paper, to make gamifying the stats a bit harder.
I'm sure there'll still be other ways to game the event, but it's not
that big of a deal since these are the easiest ways to game it.
High level items also have a cool unusual effect aura

## Why It's Good For The Game
Makes the RPG item event cooler. Right now, it's a bit lame since
everything only gains force value and wound bonus on attack. This makes
the statistic increases more type-based and make it interesting to use

It's okay for some items to be powerful since this is a wizard event and
a very impactful one too. By making the curse of hunger items not spawn
on people, it'll also make it a less painful event too.

## Changelog
🆑
add: Expanded the RPG loot wizard event by giving various different
items their own statistic boost.
/🆑

---------

Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com>
2023-07-31 17:09:53 +00:00

118 lines
4.5 KiB
Plaintext

/datum/round_event_control/wizard/rpgloot //its time to minmax your shit
name = "RPG Loot"
weight = 3
typepath = /datum/round_event/wizard/rpgloot
max_occurrences = 1
earliest_start = 0 MINUTES
description = "Every item in the world will have fantastical names."
min_wizard_trigger_potency = 4
max_wizard_trigger_potency = 7
/datum/round_event/wizard/rpgloot/start()
GLOB.rpgloot_controller = new /datum/rpgloot_controller
/obj/item/upgradescroll
name = "item fortification scroll"
desc = "Somehow, this piece of paper can be applied to items to make them \"better\". Apparently there's a risk of losing the item if it's already \"too good\". <i>This all feels so arbitrary...</i>"
icon = 'icons/obj/scrolls.dmi'
icon_state = "scroll"
worn_icon_state = "scroll"
w_class = WEIGHT_CLASS_TINY
var/upgrade_amount = 1
var/can_backfire = TRUE
var/uses = 1
/obj/item/upgradescroll/apply_fantasy_bonuses(bonus)
. = ..()
if(bonus >= 15)
can_backfire = FALSE
upgrade_amount = modify_fantasy_variable("upgrade_amount", upgrade_amount, round(bonus / 4), minimum = 1)
/obj/item/upgradescroll/remove_fantasy_bonuses(bonus)
upgrade_amount = reset_fantasy_variable("upgrade_amount", upgrade_amount)
can_backfire = TRUE
return ..()
/obj/item/upgradescroll/pre_attack(obj/item/target, mob/living/user)
. = ..()
if(. || !istype(target) || !user.combat_mode)
return
target.AddComponent(/datum/component/fantasy, upgrade_amount, null, null, can_backfire, TRUE)
uses -= 1
if(!uses)
visible_message(span_warning("[src] vanishes, its magic completely consumed from the fortification."))
qdel(src)
return TRUE
/obj/item/upgradescroll/unlimited
name = "unlimited foolproof item fortification scroll"
desc = "Somehow, this piece of paper can be applied to items to make them \"better\". This scroll is made from the tongues of dead paper wizards, and can be used an unlimited number of times, with no drawbacks."
uses = INFINITY
can_backfire = FALSE
///Holds the global datum for rpgloot, so anywhere may check for its existence (it signals into whatever it needs to modify, so it shouldn't require fetching)
GLOBAL_DATUM(rpgloot_controller, /datum/rpgloot_controller)
/**
* ## rpgloot controller!
*
* Stored in a global datum, and created when rpgloot is turned on via event or VV'ing the GLOB.rpgloot_controller to be a new /datum/rpgloot_controller.
* Makes every item in the world fantasy, but also hooks into global signals for new items created to also bless them with fantasy.
*
* What do I mean by fantasy?
* * Items will have random qualities assigned to them
* * Good quality items will have positive buffs/special powers applied to them
* * Bad quality items will get the opposite!
* * All of this is reflected in a fitting name for the item
* * See fantasy.dm and read the component for more information :)
*/
/datum/rpgloot_controller
/datum/rpgloot_controller/New()
. = ..()
//second operation takes MUCH longer, so lets set up signals first.
RegisterSignal(SSdcs, COMSIG_GLOB_ATOM_AFTER_POST_INIT, PROC_REF(on_new_item_in_existence))
handle_current_items()
///signal sent by a new item being created.
/datum/rpgloot_controller/proc/on_new_item_in_existence(datum/source, obj/item/created_item)
SIGNAL_HANDLER
if(!istype(created_item))
return
if(created_item.item_flags & SKIP_FANTASY_ON_SPAWN)
return
created_item.AddComponent(/datum/component/fantasy)
/**
* ### handle_current_items
*
* Gives every viable item in the world the fantasy component.
* If the item it is giving fantasy to is a storage item, there's a chance it'll drop in an item fortification scroll. neat!
*/
/datum/rpgloot_controller/proc/handle_current_items()
var/upgrade_scroll_chance = 0
for(var/obj/item/fantasy_item in world)
CHECK_TICK
if(!(fantasy_item.flags_1 & INITIALIZED_1) || QDELETED(fantasy_item))
continue
fantasy_item.AddComponent(/datum/component/fantasy)
if(isnull(fantasy_item.loc))
continue
if(istype(fantasy_item, /obj/item/storage))
var/obj/item/storage/storage_item = fantasy_item
var/datum/storage/storage_component = storage_item.atom_storage
if(prob(upgrade_scroll_chance) && storage_item.contents.len < storage_component.max_slots && !storage_item.invisibility)
var/obj/item/upgradescroll/scroll = new(get_turf(storage_item))
storage_item.atom_storage?.attempt_insert(scroll, override = TRUE, force = STORAGE_SOFT_LOCKED)
upgrade_scroll_chance = max(0,upgrade_scroll_chance-100)
if(isturf(scroll.loc))
qdel(scroll)
upgrade_scroll_chance += 25