User:CanvasK: Difference between revisions
m (Undid edit by CanvasK: Porple fixed this one. Thanks, Porple! Though on Android Chrome I had to scroll it into the middle of the screen for it to resize) Tag: Undo |
(→WebM test: Porple changed another thing. The odd resizing I was experiencing on mobile appears to be fixed too! This man was up at 2 am trying to change things for literally the only webm on the site) |
||
Line 16: | Line 16: | ||
Cons of WebM: | Cons of WebM: | ||
#Not as many browsers support it | #Not as many browsers support it | ||
#Doesn't | #Doesn't autoplay; May be a good thing considering point #4 | ||
#Doesn't | #<s>Doesn't autoloop</s> Loops if the time is <15 seconds | ||
#Much greater CPU usage | #Much greater CPU usage | ||
Revision as of 21:43, July 13, 2020
A man with too much time on his hands and an unusual obsession with Spirits. I know next to nothing about competitive Smash, so don't expect any edits or answers regarding it. Feel free to use information on this page and my sub-pages for the mainspace. If you use the information for non-wiki uses give credit, I guess (I doubt anyone else has worked out this boring and tedious info (Though I don't actively track usage so ¯\_(ツ)_/¯)).
WebM test
This is a comparison of WebM and GIF
WebM: 60 fps, full color-space, 1.07 MiB/1.12 MB (1,122,784 bytes)
GIF: 15 fps, 256 colors, 3.82 MiB/4.01 MB (4,012,511 bytes) (Can be reduced to 3.53 MiB (3,707,356 bytes) if optimized and re-uploaded)
Pros of WebM:
- Smaller file size
- Higher potential frame rate
- Larger color space
Cons of WebM:
- Not as many browsers support it
- Doesn't autoplay; May be a good thing considering point #4
Doesn't autoloopLoops if the time is <15 seconds- Much greater CPU usage
Quick links
Facility test data | Spirit translations | Unused spirit effects | Spirit changelog |
To-do
- Keep an eye on Spirit Battles. Someones gotta
- Look into making a python script for collecting
Spirit Experience
This is the results of testing experience.
The amount of experience a Spirit needs to reach lv.99 is based on its max power, rank, number of slots, if it is enhanceable, and if it is neutral or not. Power does not refer to 'Team Power'; power is attack+defense, team power is power modified by styles and skills.
Max Experience
The equation is:
max_exp = Power * slot_multiplier + class_exp
If the Spirit is neutral, divide the result by 2.
Slot Multiplier
- 0 slots: 0.5
- 1 slot : 0.55
- 2 slots: 0.605
- 3 slots: 0.6655
If the Spirit is enhanceable, multiply this value by 1.5.
Class Experience
For non-enhanceable:
- 1: 12000
- 2: 20000
- 3: 40000
- 4: 60000
For enhanceable:
- Starts at class 1:
- 2: 22000
- 3: 32000
- 4: 42000
- Starts at class 2:
- 3: 30000
- 4: 40000
- Starts at class 3:
- 4: 50000
Experience Growth
With max_exp
determined it is possible to find the experience needed to reach any level.
Exp at any level = max_exp × (ratio^(level - 1) - 1)/(ratio^(98) - 1)
Exp to the next level = max_exp × (ratio^(level - 1))/(ratio^(98) - 1) × (ratio - 1)
Ratio
Ratio is based on class.
- 1: 1.03
- 2: 1.035
- 3: 1.04
- 4: 1.04
Exceptions
Between versions 1.0.0 and 1.1.0 Baby Mario (Superstar Mario), Tiki (Naga's Voice), K.K. Slider, Soma Cruz, and Dr. Kawashima (Concentration Training) had their stats changed without their max experience being updated. This causes them to require less experience than normal. Link (Link's Awakening) is also an exception, but instead requires more experience than normal (24276 vs 22851). Possible explanations are that his Power was 1.5× higher at one point or he was enhance-able from class 2 to 4.
Limiter
The "Limiter", as I call it, is a hidden function involving Spirits and their damage multipliers. It only affects damage multipliers related to Sword types, Throw types (not attacks, types... I think), and 'Generic', 'Generic' being a term I use for damage multipliers that affect everything.
The first step to the function is to combine all of the related multipliers (Fist to fist, sword to sword, generic to generic, etc.) to get the raw_combined_mult
(terms are my own, not official). This includes both positive (>1.0×) and negative multipliers (<1.0×) from traits, skills, and styles.
Next step, if the multiplier is for sword or generic, is to go through the following:
IF raw_combined_mult < 1.3: do nothing IF raw_combined_mult > 1.3 AND raw_combined_mult < 1.5: final_combined_mult = raw_combined_mult * 0.5 + 0.65 IF raw_combined_mult > 1.5: final_combined_mult = raw_combined_mult * 0.2 + 1.2
The final_combined_mult
is what is used when an attack hits. Critical Hit ↑, Metal Killer, and Giant Killer do not use generic, they act outside everything similar to the 1v1 multiplier. Skills that will easily get you to experience the limiter are Trade-Off Attacks ↑ and Poison Power Up. Poison Power Up has a multiplier of 2.0×, but the limiter causes it to come out as 1.6×. Trade-Off Attacks ↑ has a multiplier of 1.23×, requiring an additional multiplier of 1.057× to reach the limiter. Trade-Off Attacks ↑ (1.23×) + Trade-Off Abilities ↑ (1.18×) will give 1.3757× instead of 1.4514×.