EBoneCapone11C wrote: ↑Sun Mar 01, 2020 6:03 am
Has anyone seen if we can increase the area of effect for skills like Frost Nova? I've been browsing through the folders but I haven't found anything yet.
In the Skills\NewSkills\Player folder you'll find the skills. Shapes are defined in them like this:
<Shapes>
<Entry ShapeName="Player_AetherBlast_Shape_Circle" />
</Shapes>
In the Skills\Shapes folder you'll find the files that define the parameters of the shapes, like this:
<Shape ID="Player_AetherBlast_Shape" Type="Cone">
<Data Radius="5.5" Angle="120" BoundingBoxHeight="2" />
<Position ForwardOffset="0" StartingAngle="0" />
</Shape>
<Shape ID="Player_AetherBlast_Shape_Big" Type="Cone">
<Data Radius="6.5" Angle="120" BoundingBoxHeight="2" />
<Position ForwardOffset="0" StartingAngle="0" />
</Shape>
<Shape ID="Player_AetherBlast_Shape_Circle" Type="Circle">
<Data Radius="4.5" BoundingBoxHeight="4" />
</Shape>
<Shape ID="Player_AetherBlast_Shape_Circle_Big" Type="Circle">
<Data Radius="5" BoundingBoxHeight="4" />
</Shape>
I haven't done anything with these myself, but I'd start there.