├── .github └── FUNDING.yml ├── Callback Macros ├── ActorGetFlag.js ├── ActorSetFlag.js ├── ActorUnSetFlag.js ├── ActorUpdate.js ├── SpellOff.js └── TokenUpdate.js ├── Chaos Turn.js ├── Creature Abilities └── Life Drain.js ├── Fiendish Resilience.js ├── Item Macros ├── Boots of Speed.js ├── Boots of Springing.js ├── LifeStealing.js ├── Manual.js └── Ring of Invisibility.js ├── Paladin Aura.js ├── Randomize Wildcards.js ├── Spell Macros ├── 1st Level │ ├── Absorb Elements.js │ ├── Armor of Agathys.js │ ├── Faerie Fire.js │ ├── Goodberry.js │ ├── Grease ActiveAuras.js │ ├── Heroism.js │ ├── Hex.js │ ├── Searing Smite.js │ ├── Thunderous Smite.js │ └── sleep.js ├── 2nd Level │ ├── AlterSelf.js │ ├── Blindness-Deafness.js │ ├── Branding Smite.js │ ├── Darkness.js │ ├── Darkvision.js │ ├── Dragons Breath.js │ ├── Enhance Ability.js │ ├── EnlargeReduce.js │ ├── Flame Blade.js │ ├── Invisiblility.js │ ├── Levitate.js │ ├── Magic Weapon.js │ ├── Misty Step.js │ ├── Moonbeam ActiveAuras.js │ ├── Moonbeam.js │ ├── Pyrotechnics.js │ ├── Ray of Enfeeblement.js │ ├── SpikeGrowth ActiveAuras.js │ ├── Spirit Guardians ActiveAuras.js │ └── Spiritual Weapon.js ├── 3rd Level │ ├── Call Lightning.js │ ├── Elemental Weapon.js │ ├── Minute Meteors.js │ ├── Protection from energy.js │ ├── Sleet Storm ActiveAuras.js │ ├── Stinking Cloud ActiveAuras.js │ └── Stinking Cloud.js ├── 4th Level │ ├── Banishment.js │ ├── Black Tentables ActiveAuras.js │ ├── Confusion.js │ ├── Death Ward.js │ ├── Elemental Bane.js │ ├── Fire Shield.js │ ├── Sickening Radiance.js │ └── Staggering Smite.js ├── 5th Level │ ├── Banishing Smite.js │ ├── Cloudkill ActiveAuras.js │ ├── Contagion.js │ ├── Holy Weapon.js │ ├── Incendiary Cloud ActiveAuras.js │ └── Insect Plague ActiveAuras.js ├── 6th Level │ ├── Eyebite.js │ ├── Flesh to Stone.js │ ├── Heroes' feast.js │ └── Irresistible Dance.js ├── 7th Level │ ├── Arcane sword.js │ ├── Crown of Stars.js │ ├── Divine Word.js │ └── Regenerate.js ├── 8th Level │ └── Holy Aura.js ├── 9th Level │ └── test ├── Branding Smite copy 6.js ├── Cantrip │ ├── Light.js │ └── Shillelagh.js ├── Elemental Weapon copy.js ├── Instructions ├── Searing Smite copy.js ├── Sickening Radiance copy.js └── Wrathfull Smite.js ├── Swade macros └── Damage calculator.js ├── SymbioticEntity.js ├── Undead Fortitude.js ├── Usefull Bits └── Grid Coords.js └── midi crit stuff.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Callback Macros/ActorGetFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/ActorGetFlag.js -------------------------------------------------------------------------------- /Callback Macros/ActorSetFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/ActorSetFlag.js -------------------------------------------------------------------------------- /Callback Macros/ActorUnSetFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/ActorUnSetFlag.js -------------------------------------------------------------------------------- /Callback Macros/ActorUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/ActorUpdate.js -------------------------------------------------------------------------------- /Callback Macros/SpellOff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/SpellOff.js -------------------------------------------------------------------------------- /Callback Macros/TokenUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Callback Macros/TokenUpdate.js -------------------------------------------------------------------------------- /Chaos Turn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Chaos Turn.js -------------------------------------------------------------------------------- /Creature Abilities/Life Drain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Creature Abilities/Life Drain.js -------------------------------------------------------------------------------- /Fiendish Resilience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Fiendish Resilience.js -------------------------------------------------------------------------------- /Item Macros/Boots of Speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Item Macros/Boots of Speed.js -------------------------------------------------------------------------------- /Item Macros/Boots of Springing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Item Macros/Boots of Springing.js -------------------------------------------------------------------------------- /Item Macros/LifeStealing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Item Macros/LifeStealing.js -------------------------------------------------------------------------------- /Item Macros/Manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Item Macros/Manual.js -------------------------------------------------------------------------------- /Item Macros/Ring of Invisibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Item Macros/Ring of Invisibility.js -------------------------------------------------------------------------------- /Paladin Aura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Paladin Aura.js -------------------------------------------------------------------------------- /Randomize Wildcards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Randomize Wildcards.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Absorb Elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Absorb Elements.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Armor of Agathys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Armor of Agathys.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Faerie Fire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Faerie Fire.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Goodberry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Goodberry.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Grease ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Grease ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Heroism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Heroism.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Hex.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Searing Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Searing Smite.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/Thunderous Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/Thunderous Smite.js -------------------------------------------------------------------------------- /Spell Macros/1st Level/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/1st Level/sleep.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/AlterSelf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/AlterSelf.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Blindness-Deafness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Blindness-Deafness.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Branding Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Branding Smite.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Darkness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Darkness.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Darkvision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Darkvision.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Dragons Breath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Dragons Breath.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Enhance Ability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Enhance Ability.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/EnlargeReduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/EnlargeReduce.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Flame Blade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Flame Blade.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Invisiblility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Invisiblility.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Levitate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Levitate.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Magic Weapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Magic Weapon.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Misty Step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Misty Step.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Moonbeam ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Moonbeam ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Moonbeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Moonbeam.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Pyrotechnics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Pyrotechnics.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Ray of Enfeeblement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Ray of Enfeeblement.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/SpikeGrowth ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/SpikeGrowth ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Spirit Guardians ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Spirit Guardians ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/2nd Level/Spiritual Weapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/2nd Level/Spiritual Weapon.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Call Lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Call Lightning.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Elemental Weapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Elemental Weapon.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Minute Meteors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Minute Meteors.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Protection from energy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Protection from energy.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Sleet Storm ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Sleet Storm ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Stinking Cloud ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Stinking Cloud ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/3rd Level/Stinking Cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/3rd Level/Stinking Cloud.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Banishment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Banishment.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Black Tentables ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Black Tentables ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Confusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Confusion.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Death Ward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Death Ward.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Elemental Bane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Elemental Bane.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Fire Shield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Fire Shield.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Sickening Radiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Sickening Radiance.js -------------------------------------------------------------------------------- /Spell Macros/4th Level/Staggering Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/4th Level/Staggering Smite.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Banishing Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Banishing Smite.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Cloudkill ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Cloudkill ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Contagion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Contagion.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Holy Weapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Holy Weapon.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Incendiary Cloud ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Incendiary Cloud ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/5th Level/Insect Plague ActiveAuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/5th Level/Insect Plague ActiveAuras.js -------------------------------------------------------------------------------- /Spell Macros/6th Level/Eyebite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/6th Level/Eyebite.js -------------------------------------------------------------------------------- /Spell Macros/6th Level/Flesh to Stone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/6th Level/Flesh to Stone.js -------------------------------------------------------------------------------- /Spell Macros/6th Level/Heroes' feast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/6th Level/Heroes' feast.js -------------------------------------------------------------------------------- /Spell Macros/6th Level/Irresistible Dance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/6th Level/Irresistible Dance.js -------------------------------------------------------------------------------- /Spell Macros/7th Level/Arcane sword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/7th Level/Arcane sword.js -------------------------------------------------------------------------------- /Spell Macros/7th Level/Crown of Stars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/7th Level/Crown of Stars.js -------------------------------------------------------------------------------- /Spell Macros/7th Level/Divine Word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/7th Level/Divine Word.js -------------------------------------------------------------------------------- /Spell Macros/7th Level/Regenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/7th Level/Regenerate.js -------------------------------------------------------------------------------- /Spell Macros/8th Level/Holy Aura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/8th Level/Holy Aura.js -------------------------------------------------------------------------------- /Spell Macros/9th Level/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Spell Macros/Branding Smite copy 6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Branding Smite copy 6.js -------------------------------------------------------------------------------- /Spell Macros/Cantrip/Light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Cantrip/Light.js -------------------------------------------------------------------------------- /Spell Macros/Cantrip/Shillelagh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Cantrip/Shillelagh.js -------------------------------------------------------------------------------- /Spell Macros/Elemental Weapon copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Elemental Weapon copy.js -------------------------------------------------------------------------------- /Spell Macros/Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Instructions -------------------------------------------------------------------------------- /Spell Macros/Searing Smite copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Searing Smite copy.js -------------------------------------------------------------------------------- /Spell Macros/Sickening Radiance copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Sickening Radiance copy.js -------------------------------------------------------------------------------- /Spell Macros/Wrathfull Smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Spell Macros/Wrathfull Smite.js -------------------------------------------------------------------------------- /Swade macros/Damage calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Swade macros/Damage calculator.js -------------------------------------------------------------------------------- /SymbioticEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/SymbioticEntity.js -------------------------------------------------------------------------------- /Undead Fortitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Undead Fortitude.js -------------------------------------------------------------------------------- /Usefull Bits/Grid Coords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kandashi/Macros/HEAD/Usefull Bits/Grid Coords.js -------------------------------------------------------------------------------- /midi crit stuff.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------