Vampire Survivors
0 of 0

File information

Last updated

Original upload

Created by

Owyn

Uploaded by

OwynTyler

Virus scan

Safe to use

Tags for this mod

About this mod

For All Characters - +20% curse per character level, +1.5% move speed, +5% magnet - (you can set up your own growth stats for level ups - explained in the full description)

Permissions and credits
If you want to set up your own level up +stats, here's how to make this mod yourself:

1) open your main.bundle.js file in \Vampire Survivors\resources\app\.webpack\renderer\ with a notepad++, put all the text contents from it into https://beautifier.io/ and press "Beautify Code" - then copy the result back into the main.bundle.js file - now we have readable code

2) search (ctrl+f) for '&& 'level' !=' or `['onEveryLevelUp']` text - BEFORE it is a function which handles every level up

3) add your per level up +stats there, e.g.:
```
this['moveSpeed'] += 0.015; // +1.5 %
this['curse'] += 0.02; // +20 %
```
so it'd look like this:

every stat is called the same as in the game, except for might, it's called 'power'