Files
SmArtKar 5979234e9e Removes butterflies from the plasma flower MOD core, reduces the amount of particles spawned (#95623)
## About The Pull Request

The plasma flower MOD core from the Garden of Eden ruin no longer spawns
butterflies as you run around, and the amount of pollen particles it
creates on the user has been quartered.

## Why It's Good For The Game

Butterflies are incredibly annoying to deal with and can block your own
swings in combat, and don't serve a purpose beyond creating a ton of
visual clutter. Same applies to the pollen particles, there's so many
you can barely see your own sprite underneath. Quartering them still
leaves plenty there to look nice.

## Changelog
🆑
del: Plasma flower MOD core no longer spawns butterflies around the user
qol: Plasma flower MOD core's pollen visual now spawns less particles
/🆑
2026-04-12 11:16:14 -04:00

33 lines
835 B
Plaintext

// Plant related particles.
/particles/pollen
icon = 'icons/effects/particles/pollen.dmi'
icon_state = "pollen"
width = 100
height = 100
count = 1000
spawning = 4
lifespan = 0.7 SECONDS
fade = 1 SECONDS
grow = -0.01
velocity = list(0, 0)
position = generator(GEN_CIRCLE, 0, 16, NORMAL_RAND)
drift = generator(GEN_VECTOR, list(0, -0.2), list(0, 0.2))
gravity = list(0, 0.95)
scale = generator(GEN_VECTOR, list(0.3, 0.3), list(1,1), NORMAL_RAND)
rotation = 30
spin = generator(GEN_NUM, -20, 20)
// Subtype for the lavaland flower MODcore
/particles/pollen/modsuit
spawning = 1
// Subtype for mushroom spores specific to mushfolk/mushroom people
/particles/pollen/mushroom
icon = 'icons/effects/particles/pollen.dmi'
icon_state = "pollen"
width = 75
height = 75
spawning = 6
fade = 0.7 SECONDS
color = "#b89d44"