Rivals of Aether

Rivals of Aether

Jigglypuff with OP fox lasers
pamanda  [developer] 20 Feb, 2020 @ 12:41pm
how to edit (what I've found out)
//config.ini:(
Do Not Change url unless you have copy pasted it into your non-workshop rivals of aether folder, then it becomes irrelevant.
rest is self explanatory
name:"" changes in game name
description:"" changes the characters description
author:"" changes who steam thinks made it
DO NOT change type:"" and version is irrelevant until you decide to upload it.
)
Scripts folder:(
//init
change jumps:
find: "max_djumps = 5;" for double jumps.
jump startup found at the top of the same block of text (originally 3)
attacks:(
//nspecial
NSPECIAL2 is purely for my coding reference, leftover code from the original.
to change the knockback and hitstun element find the following:
set_hitbox_value(AT_NSPECIAL, 1, HG_BASE_KNOCKBACK, 10);
set_hitbox_value(AT_NSPECIAL, 1, HG_KNOCKBACK_SCALING, .4);
set_hitbox_value(AT_NSPECIAL, 1, HG_BASE_HITPAUSE, 5);
set_hitbox_value(AT_NSPECIAL, 1, HG_HITSTUN_MULTIPLIER, 0.5);
and change ONLY the numbers.
))