Skip to content

Commit

Permalink
this is why we need OD CI
Browse files Browse the repository at this point in the history
  • Loading branch information
amylizzle committed Oct 12, 2023
1 parent 7b6288e commit a7aeb62
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/events/ion_storm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -167,24 +167,24 @@
logTheThing(LOG_DIARY, null, "[L] gets [drug_type] like effect applied by ion storm")
L.AddComponent(/datum/component/hallucination/trippy_colors, timeout=timeout_seconds)
if(prob(60)) //monkey mode
L.AddComponent(/datum/component/hallucination/fake_attack, timeout=timeout_seconds, image_list=initial(drug_type.monkey_images), name_list=initial(drug_type.monkey_names), attacker_prob=20, max_attackers=3)
L.AddComponent(/datum/component/hallucination/fake_attack, timeout=timeout_seconds, image_list=drug_type.monkey_images, name_list=drug_type.monkey_names, attacker_prob=20, max_attackers=3)
else
L.AddComponent(/datum/component/hallucination/fake_attack, timeout=timeout_seconds, image_list=null, name_list=null, attacker_prob=20, max_attackers=3)
L.AddComponent(/datum/component/hallucination/random_sound, timeout=timeout_seconds, sound_list=initial(drug_type.halluc_sounds), sound_prob=5)
L.AddComponent(/datum/component/hallucination/random_image_override, timeout=timeout_seconds, image_list=initial(drug_type.critter_image_list), target_list=list(/mob/living/carbon/human), range=6, image_prob=10, image_time=20, override=TRUE)
L.AddComponent(/datum/component/hallucination/random_sound, timeout=timeout_seconds, sound_list=drug_type.halluc_sounds, sound_prob=5)
L.AddComponent(/datum/component/hallucination/random_image_override, timeout=timeout_seconds, image_list=drug_type.critter_image_list, target_list=list(/mob/living/carbon/human), range=6, image_prob=10, image_time=20, override=TRUE)
if(2) //lsbee
var/datum/reagent/drug/lsd_bee/drug_type = /datum/reagent/drug/lsd_bee //it's a path so we can grab the static vars, and not do init
logTheThing(LOG_DIARY, null, "[L] gets [drug_type] like effect applied by ion storm")
var/bee_halluc = initial(drug_type.bee_halluc)
var/bee_halluc = drug_type.bee_halluc
var/image/imagekey = pick(bee_halluc)
L.AddComponent(/datum/component/hallucination/fake_attack, timeout=timeout_seconds, image_list=list(imagekey), name_list=bee_halluc[imagekey], attacker_prob=10)
if(3)
var/datum/reagent/drug/catdrugs/drug_type = /datum/reagent/drug/catdrugs //it's a path so we can grab the static vars, and not do init
logTheThing(LOG_DIARY, null, "[L] gets [drug_type] like effect applied by ion storm")
var/cat_halluc = initial(drug_type.cat_halluc)
var/cat_halluc = drug_type.cat_halluc
var/image/imagekey = pick(cat_halluc)
L.AddComponent(/datum/component/hallucination/fake_attack, timeout=timeout_seconds, image_list=list(imagekey), name_list=cat_halluc[imagekey], attacker_prob=7, max_attackers=3)
L.AddComponent(/datum/component/hallucination/random_sound, timeout=timeout_seconds, sound_list=initial(drug_type.cat_sounds), sound_prob=20)
L.AddComponent(/datum/component/hallucination/random_sound, timeout=timeout_seconds, sound_list=drug_type.cat_sounds, sound_prob=20)
if(4) //hellshroom
logTheThing(LOG_DIARY, null, "[L] gets hellshroom like effect applied by ion storm")
var/bats = rand(2,3)
Expand Down

0 comments on commit a7aeb62

Please sign in to comment.