Skip to content

Instantly share code, notes, and snippets.

@Saishy
Created January 25, 2019 19:42
Show Gist options
  • Select an option

  • Save Saishy/2db4492f3453fb4d0a5d01c6da5ee731 to your computer and use it in GitHub Desktop.

Select an option

Save Saishy/2db4492f3453fb4d0a5d01c6da5ee731 to your computer and use it in GitHub Desktop.
A list of VFX from Slay the Spire and where to find them.
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\actions\defect\LightningOrbEvokeAction.java (2 hits)
Line 41: /* 41 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.LightningEffect(m.drawX, m.drawY), speedTime));
Line 58: /* 58 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.LightningEffect(m3.drawX, m3.drawY), speedTime));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\actions\defect\LightningOrbPassiveAction.java (4 hits)
Line 45: /* 45 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.LightningEffect(m.drawX, m.drawY), speedTime));
Line 48: /* 48 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new OrbFlareEffect(this.orb, OrbFlareEffect.OrbFlareColor.LIGHTNING), speedTime));
Line 65: /* 65 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.LightningEffect(m3.drawX, m3.drawY), speedTime));
Line 71: /* 71 */ AbstractDungeon.actionManager.addToTop(new VFXAction(new OrbFlareEffect(this.orb, OrbFlareEffect.OrbFlareColor.LIGHTNING), speedTime));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\actions\unique\WhirlwindAction.java (2 hits)
Line 54: /* 54 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new WhirlwindEffect(), 0.0F));
Line 58: /* 58 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this.p, new CleaveEffect(), 0.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\Blizzard.java (2 hits)
Line 56: /* 56 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BlizzardEffect(frostCount,
Line 59: /* 59 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BlizzardEffect(frostCount,
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\Claw.java (1 hit)
Line 46: /* 46 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.ClawEffect(m.hb.cX, m.hb.cY, Color.CYAN, Color.WHITE), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\DoomAndGloom.java (1 hit)
Line 47: /* 47 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new CleaveEffect(), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\Hyperbeam.java (1 hit)
Line 47: /* 47 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new com.megacrit.cardcrawl.vfx.combat.MindblastEffect(p.dialogX, p.dialogY, p.flipHorizontal), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\Rainbow.java (1 hit)
Line 44: /* 44 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.RainbowCardEffect()));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\Scrape.java (1 hit)
Line 45: /* 45 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new ScrapeEffect(m.hb.cX, m.hb.cY), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\blue\SweepingBeam.java (1 hit)
Line 44: /* 44 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new com.megacrit.cardcrawl.vfx.combat.SweepingBeamEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, AbstractDungeon.player.flipHorizontal), 0.4F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\colorless\MindBlast.java (1 hit)
Line 42: /* 42 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.MindblastEffect(p.dialogX, p.dialogY, p.flipHorizontal)));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\green\DaggerSpray.java (2 hits)
Line 41: /* 41 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new DaggerSprayEffect(
Line 45: /* 45 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new DaggerSprayEffect(
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\green\DaggerThrow.java (1 hit)
Line 43: /* 43 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.ThrowDaggerEffect(m.hb.cX, m.hb.cY)));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\green\DieDieDie.java (2 hits)
Line 46: /* 46 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BorderLongFlashEffect(Color.LIGHT_GRAY.cpy())));
Line 47: /* 47 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new DieDieDieEffect(), 0.7F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\green\GrandFinale.java (1 hit)
Line 42: /* 42 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.GrandFinalEffect(), 1.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\green\PiercingWail.java (2 hits)
Line 50: /* 50 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new ShockWaveEffect(p.hb.cX, p.hb.cY, Settings.GREEN_TEXT_COLOR, ShockWaveEffect.ShockWaveType.CHAOTIC), 0.3F));
Line 56: /* 56 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new ShockWaveEffect(p.hb.cX, p.hb.cY, Settings.GREEN_TEXT_COLOR, ShockWaveEffect.ShockWaveType.CHAOTIC), 1.5F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Anger.java (1 hit)
Line 46: /* 46 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new com.megacrit.cardcrawl.vfx.combat.VerticalAuraEffect(com.badlogic.gdx.graphics.Color.FIREBRICK, p.hb.cX, p.hb.cY), 0.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Bludgeon.java (1 hit)
Line 43: /* 43 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.WeightyImpactEffect(m.hb.cX, m.hb.cY)));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Clash.java (1 hit)
Line 43: /* 43 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.ClashEffect(m.hb.cX, m.hb.cY), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Cleave.java (1 hit)
Line 42: /* 42 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new CleaveEffect(), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Corruption.java (4 hits)
Line 44: /* 44 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new VerticalAuraEffect(Color.BLACK, p.hb.cX, p.hb.cY), 0.33F));
Line 47: /* 47 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new VerticalAuraEffect(Color.PURPLE, p.hb.cX, p.hb.cY), 0.33F));
Line 49: /* 49 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new VerticalAuraEffect(Color.CYAN, p.hb.cX, p.hb.cY), 0.0F));
Line 51: /* 51 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new BorderLongFlashEffect(Color.MAGENTA), 0.0F, true));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Hemokinesis.java (1 hit)
Line 45: /* 45 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.HemokinesisEffect(p.hb.cX, p.hb.cY, m.hb.cX, m.hb.cY), 0.5F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\IronWave.java (1 hit)
Line 48: /* 48 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new IronWaveEffect(p.hb.cX, p.hb.cY, m.hb.cX), 0.5F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Offering.java (1 hit)
Line 44: /* 44 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.OfferingEffect(), 0.5F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\Rage.java (1 hit)
Line 47: /* 47 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(p, new ShockWaveEffect(p.hb.cX, p.hb.cY, com.badlogic.gdx.graphics.Color.ORANGE, ShockWaveEffect.ShockWaveType.CHAOTIC), 1.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\SearingBlow.java (1 hit)
Line 46: /* 46 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.SearingBlowEffect(m.hb.cX, m.hb.cY, this.timesUpgraded), 0.2F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\cards\red\ThunderClap.java (1 hit)
Line 49: /* 49 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.LightningEffect(mo.drawX, mo.drawY), 0.05F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\beyond\AwakenedOne.java (3 hits)
Line 176: /* 176 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.IntenseZoomEffect(this.hb.cX, this.hb.cY, true), 0.05F, true));
Line 185: /* 185 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new ShockWaveEffect(this.hb.cX, this.hb.cY, new Color(0.1F, 0.0F, 0.2F, 1.0F), ShockWaveEffect.ShockWaveType.CHAOTIC), 0.3F));
Line 190: /* 190 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new ShockWaveEffect(this.hb.cX, this.hb.cY, new Color(0.3F, 0.2F, 0.4F, 1.0F), ShockWaveEffect.ShockWaveType.CHAOTIC), 1.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\beyond\Reptomancer.java (3 hits)
Line 86: /* 86 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BiteEffect(AbstractDungeon.player.hb.cX +
Line 95: /* 95 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BiteEffect(AbstractDungeon.player.hb.cX +
Line 132: /* 132 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BiteEffect(AbstractDungeon.player.hb.cX +
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\city\BronzeAutomaton.java (2 hits)
Line 134: /* 134 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new LaserBeamEffect(this.hb.cX, this.hb.cY + 60.0F * Settings.scale), 1.5F));
Line 191: /* 191 */ AbstractDungeon.actionManager.addToTop(new VFXAction(m, new com.megacrit.cardcrawl.vfx.combat.InflameEffect(m), 0.2F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\city\BronzeOrb.java (2 hits)
Line 64: /* 64 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.BorderFlashEffect(Color.SKY)));
Line 65: /* 65 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.SmallLaserEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, this.hb.cX, this.hb.cY), 0.3F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\city\Champ.java (6 hits)
Line 145: /* 145 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new InflameEffect(this), 0.25F));
Line 146: /* 146 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new InflameEffect(this), 0.25F));
Line 147: /* 147 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new InflameEffect(this), 0.25F));
Line 157: /* 157 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new GoldenSlashEffect(AbstractDungeon.player.hb.cX - 60.0F * Settings.scale, AbstractDungeon.player.hb.cY, false), vfxSpeed));
Line 176: /* 176 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new GoldenSlashEffect(AbstractDungeon.player.hb.cX - 60.0F * Settings.scale, AbstractDungeon.player.hb.cY, true), vfxSpeed));
Line 187: /* 187 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new GoldenSlashEffect(AbstractDungeon.player.hb.cX + 60.0F * Settings.scale, AbstractDungeon.player.hb.cY, true), vfxSpeed));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\city\Snecko.java (2 hits)
Line 86: /* 86 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.IntimidateEffect(this.hb.cX, this.hb.cY), 0.5F));
Line 95: /* 95 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BiteEffect(AbstractDungeon.player.hb.cX +
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\city\TheCollector.java (2 hits)
Line 148: /* 148 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new CollectorCurseEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY), 2.0F));
Line 270: /* 270 */ AbstractDungeon.actionManager.addToTop(new VFXAction(m, new com.megacrit.cardcrawl.vfx.combat.InflameEffect(m), 0.2F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\ending\CorruptHeart.java (6 hits)
Line 102: /* 102 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.HeartMegaDebuffEffect()));
Line 173: /* 173 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.BorderFlashEffect(new Color(0.8F, 0.5F, 1.0F, 1.0F))));
Line 175: /* 175 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.HeartBuffEffect(this.hb.cX, this.hb.cY)));
Line 211: /* 211 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BloodShotEffect(this.hb.cX, this.hb.cY, AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, this.bloodHitCount), 0.25F));
Line 221: /* 221 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BloodShotEffect(this.hb.cX, this.hb.cY, AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, this.bloodHitCount), 0.6F));
Line 238: /* 238 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.ViceCrushEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY), 0.5F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\exordium\Hexaghost.java (5 hits)
Line 138: /* 138 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.GhostIgniteEffect(AbstractDungeon.player.hb.cX +
Line 163: /* 163 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new BorderFlashEffect(Color.CHARTREUSE)));
Line 175: /* 175 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.FireballEffect(this.hb.cX, this.hb.cY, AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY), 0.5F));
Line 196: /* 196 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.InflameEffect(this), 0.5F));
Line 206: /* 206 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new ScreenOnFireEffect(), 1.0F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\exordium\LouseDefensive.java (2 hits)
Line 99: /* 99 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new WebEffect(AbstractDungeon.player, this.hb.cX - 70.0F * Settings.scale, this.hb.cY + 10.0F * Settings.scale)));
Line 108: /* 108 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new WebEffect(AbstractDungeon.player, this.hb.cX - 70.0F * Settings.scale, this.hb.cY + 10.0F * Settings.scale)));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\exordium\Sentry.java (5 hits)
Line 90: /* 90 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new ShockWaveEffect(this.hb.cX, this.hb.cY, Color.ROYAL, ShockWaveEffect.ShockWaveType.ADDITIVE), 0.5F));
Line 97: /* 97 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new ShockWaveEffect(this.hb.cX, this.hb.cY, Color.ROYAL, ShockWaveEffect.ShockWaveType.ADDITIVE), 0.1F));
Line 109: /* 109 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.BorderFlashEffect(Color.SKY)));
Line 111: /* 111 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new SmallLaserEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, this.hb.cX, this.hb.cY), 0.1F));
Line 120: /* 120 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new SmallLaserEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, this.hb.cX, this.hb.cY), 0.3F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\exordium\SlimeBoss.java (1 hit)
Line 133: /* 133 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new com.megacrit.cardcrawl.vfx.combat.WeightyImpactEffect(AbstractDungeon.player.hb.cX, AbstractDungeon.player.hb.cY, new Color(0.1F, 1.0F, 0.1F, 0.0F))));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\monsters\exordium\TheGuardian.java (2 hits)
Line 209: /* 209 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.CleaveEffect(true), 0.15F));
Line 301: /* 301 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this, new com.megacrit.cardcrawl.vfx.combat.IntenseZoomEffect(this.hb.cX, this.hb.cY, false), 0.05F, true));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\orbs\Dark.java (1 hit)
Line 66: /* 66 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new OrbFlareEffect(this, com.megacrit.cardcrawl.vfx.combat.OrbFlareEffect.OrbFlareColor.DARK), speedTime));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\orbs\Lightning.java (5 hits)
Line 84: /* 84 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new OrbFlareEffect(this, OrbFlareEffect.OrbFlareColor.LIGHTNING), speedTime));
Line 112: /* 112 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new OrbFlareEffect(this, OrbFlareEffect.OrbFlareColor.LIGHTNING), speedTime));
Line 114: /* 114 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new LightningEffect(m.drawX, m.drawY), speedTime));
Line 124: /* 124 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new OrbFlareEffect(this, OrbFlareEffect.OrbFlareColor.LIGHTNING), speedTime));
Line 135: /* 135 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new LightningEffect(m3.drawX, m3.drawY), speedTime));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\potions\ExplosivePotion.java (1 hit)
Line 38: /* 38 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new ExplosionSmallEffect(m.hb.cX, m.hb.cY), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\powers\ExplosivePower.java (1 hit)
Line 45: /* 45 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new ExplosionSmallEffect(this.owner.hb.cX, this.owner.hb.cY), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\powers\FadingPower.java (1 hit)
Line 40: /* 40 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new ExplosionSmallEffect(this.owner.hb.cX, this.owner.hb.cY), 0.1F));
D:\GameDev\SlayTheSpireMods\BaseGame\com\megacrit\cardcrawl\powers\ThousandCutsPower.java (2 hits)
Line 36: /* 36 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(new CleaveEffect()));
Line 38: /* 38 */ AbstractDungeon.actionManager.addToBottom(new VFXAction(this.owner, new CleaveEffect(), 0.2F));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment