Editing Photon Blasts

From Ephinea PSO Wiki
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
[[File:Mag PB.png|frame|A Mag with three Photon Blasts]]
[[File:Mag PB.png|frame|A Mag with three Photon Blasts]]
[[Category:Needs Verification]]
'''Photon Blasts''' are special attacks [[Mags]] can perform. Photon Blasts can only be used after a Mag has reached level 10 and has learned its first Photon Blast, and only once the Mag's Photon Blast gauge has reached 100, with the gauge increasing through either dealing or receiving damage.


Once the player has built to 100 Photon Blast (commonly abbreviated "PB"), the Photon Blast can be unleashed by pressing the appropriate button on the alternate palette; any other actions assigned to the alternate palette will become unavailable until a Photon Blast is used, the Mag is unequipped, or the player returns to Pioneer 2.
Photon Blasts are special attacks performed by a Mag by unleashing its power built up over time. They can be used after a Mag is level 10 and learns its first Photon Blast, and the player has built the Photon Blast gauge by dealing and receiving damage. Once the player has built to 100%, the Photon Blast can be unleashed by pressing the appropriate face button on the alternate palette; any other actions on the alternate palette will be temporarily unavailable.


Every Mag can learn up to a maximum of three Photon Blasts. Photon Blasts are learned at levels 10, 35, and 50. It is possible for a Mag to have less than three Photon Blasts if, during evolution, it learns a Photon Blast it has ''already'' learned (e.g. if a Mag learns the Photon Blast [[File:Golla.png|20px]][[Photon Blasts#Golla|Golla]] at level 35, then evolves at level 50 into a Mag that learns it again). If the Mag does not learn a Photon Blast at level 50, it may learn another one if it evolves again into another Mag that has a Photon Blast not previously learned.
A Mag can learn up to 3 different Photon Blasts, learning another Photon Blast at 35, and potentially a third at level 50 if the Photon Blast of the newly evolved Mag has not been learned previously. If the Mag does not learn a Photon Blast at level 50, it may learn another one if it evolves into another Mag that has a Photon Blast not previously learned.


{| class="wikitable"
{| class="wikitable"
Line 12: Line 10:
!Formula
!Formula
|-
|-
|Damage dealt
|Dealt damage
|<code>Damage dealt / (character level * 15.0)</code>
|<code>Damage dealt / (character level * 15.0)</code>
|-
|-
|Damage taken
|Received damage
|<code>(Damage taken * 20.0) / (character level * 15.0)</code>
|<code>(Damage taken * 20.0) / (character level * 15.0)</code>
|}
|}


==Photon Blast Strength==  
== Photon Blast Strength ==  
Each Photon Blast has a formula for calculating its strength. This calculation depends on the Mag and the [[stats]] of the character that's observed as going first in the Photon Blast chain<!--there should probably be a section on chains but too lazy rn-->. After performing this calculation specific to the Photon Blast type, the game then modifies the strength of the Photon Blast using a formula that considers the PB amount and the number of PBs in the chain.
Each Photon Blast has a formula for calculating its strength. This calculation depends on the mag and player stats of the player that's observed as going first in the Photon Blast chain. After performing this calculation specific to the Photon Blast type, the game then modifies the strength of the Photon Blast using a formula that considers the PB amount and the number of PBs in the chain.


All Photon Blast damage is considered light-based damage, similar to {{Grants}}.
All Photon Blast damage is performed as light based damage similar to Grants.


Note that all Photon Blast damage, healing, and status effects are done entirely client-side. Due to latency or desync, a chain can sometimes appear incorrect for a player, which can result in inconsistent {{Shifta}} and {{Deband}} levels on that player's client.
Note that all Photon Blast damage, healing, and status effects are done entirely client-side. Due to latency or desync, a chain can sometimes appear incorrect for a player which gives varying Shifta and Deband levels on that player's client.


* Base Strength = The first calculation performed specific to the PB.
* PB Strength = The strength of the PB after accounting for other PBs and donations.
* PB amount = The amount of Photon Blast gauge seen by the player that went first. This is typically 100 or 100 plus some amount of donated PB.
* PB amount = The amount of Photon Blast gauge seen by the player that went first. This is typically 100 or 100 plus some amount of donated PB.
* Number of PBs = The number of Photon Blasts observed in the chain.
* Number of PBs = The number of Photon Blasts observed in the chain.
* Mag Synchro = The synchro of the first player's Mag.
* Mag Synchro = The synchro of the first player's Mag.
* Mag IQ = The IQ of the first player's Mag.
* Mag IQ = The IQ of the first player's Mag.
* ATP = The sum of the first player's base ATP with Shifta and their ATP from equipped items. This excludes the class variance and uses the minimum ATP for weapons.
* ATP = The sum of the first player's base ATP with Shifta and their ATP from equipped items.
* EVP = The first player's EVP stat.
* EVP = The first player's EVP stat.
* ATA = The first player's ATA stat.
* ATA = The first player's ATA stat.
* MST = The first player's MST stat.


The calculations below perform integer truncation after finishing each line.
==== Farlla ====
 
===[[File:Farlla.png|24px]]Farlla===
Spinning attack that hits all nearby enemies.  
Spinning attack that hits all nearby enemies.  


<pre>
<code>((PB amount) * (Number of PBs) * 0.01) * ((Mag Synchro) * ATP * 0.025 + (Mag IQ) * 2.5 + 500.0)</code>
Base Strength = (Mag Synchro) * ATP * 0.025 + (Mag IQ) * 2.5 + 500.0
PB Strength = (Base Strength) * (PB amount) * (Number of PBs) * 0.01 + MST
Damage = ((PB Strength) / 5) * ((100 - (Enemy ELT)) / 100)
</pre>


===[[File:Estlla.png|24px]]Estlla===
==== Estlla ====
Linear attack that strikes enemies in front.
Linear attack that strikes enemies in front.


<pre>
<code>((PB amount) * (Number of PBs) * 0.01) * ((Mag Synchro) * EVP * 0.15 + (Mag IQ) * 15.0 + 350.0)</code>
Base Strength = (Mag Synchro) * EVP * 0.15 + (Mag IQ) * 15.0 + 350.0
PB Strength = (Base Strength) * (PB amount) * (Number of PBs) * 0.01 + MST
Damage = ((PB Strength) / 5) * ((100 - (Enemy ELT)) / 100)
</pre>


===[[File:Golla.png|24px]]Golla===
==== Golla ====
Concentrated attack that focuses one enemy.
Concentrated attack that focuses one enemy.


<pre>
<code>((PB amount) * (Number of PBs) * 0.01) * ((Mag Synchro) * ATP * 0.075 + (Mag IQ) * 7.5 + 1200.0)</code>
Base Strength = (Mag Synchro) * ATP * 0.075 + (Mag IQ) * 7.5 + 1200.0
PB Strength = (Base Strength) * (PB amount) * (Number of PBs) * 0.01 + MST
Damage = ((PB Strength) / 5) * ((100 - (Enemy ELT)) / 100)
</pre>


===[[File:Pilla.png|24px]]Pilla===
==== Pilla ====
Aerial attack that hits nearby enemies.
Aerial attack that hits nearby enemies.


<pre>
<code>((PB amount) * (Number of PBs) * 0.01) * ((Mag Synchro) * ATP * 0.075 + (Mag IQ) * 7.5 + 500.0)</code>
Base Strength = (Mag Synchro) * ATP * 0.075 + (Mag IQ) * 7.5 + 1200.0
PB Strength = (Base Strength) * (PB amount) * (Number of PBs) * 0.01 + MST
Damage = ((PB Strength) / 5) * ((100 - (Enemy ELT)) / 100)
</pre>


===[[File:Leilla.png|24px]]Leilla===
==== Leilla ====
Restores health of a player.
Restores health of a player.


When the Photon Blast is initiated, either {{Anti}} or {{Reverser}} is cast on each player in the chain depending if the player is alive or not. Then, for players that were alive, they will receive {{Resta}} using a base power calculated below.  
When the Photon Blast is initiated, either anti or reverser is cast on each player in the chain depending if the player is alive or not. For players that were alive, they will receive healing calculated as follows.


<pre>
<code>((PB amount) * (Number of PBs) * 0.01) * ((Mag IQ) * 0.5 + 150.0)</code>
Base Strength = (Mag IQ) * 0.5 + 150.0
Resta Power = (Base Strength) * (PB amount) * (Number of PBs) * 0.01
Amount Healed = (MST * 0.5) + (Resta Power)
</pre>


===[[File:Mylla & Youlla.png|24px]]Mylla & Youlla===
==== Mylla & Youlla ====
Raises attack and defense status of a player.
Raises attack and defense status of a player.


This Photon Blast (commonly referred to as "Twins") is most often used to provide high-level {{Shifta}} and {{Deband}} for the party. When the Photon Blast is initiated, either {{Anti}} or {{Reverser}} is cast on each player in the chain depending if the player is alive or not. Then, for players that were alive, they will receive Shifta and Deband of a level calculated by the formula below. Players that are revived by this Photon Blast chain will not receive Shifta and Deband.
Also referred to as Twins, this Photon Blast is commonly used to provide higher level Shifta and Deband for the party. When the Photon Blast is initiated, either anti or reverser is cast on each player in the chain depending if the player is alive or not. Then the calculated level of Shifta and Deband is applied to the player. Players that are revived by this Photon Blast chain will not receive Shifta and Deband.
 
The level of Shifta and Deband can be calculated using the following formula.


<code>1 + ((PB amount) * (Number of PBs) * 0.01) * ((Mag IQ) * 0.1)</code>
<code>1 + ((PB amount) * (Number of PBs) * 0.01) * ((Mag IQ) * 0.1)</code>


==Trivia==  
==== Trivia ====  
Pilla is a direct upgrade in strength compared to Farlla, as Pilla uses the same calculation as Golla. This is likely a mistake in Pilla's base power, or a bug in the mapping of Photon Blasts to calculations inside the client. There is an unused Photon Blast damage calculation that ''would'' match to an internal identifier for Pilla, but Pilla is instead mapped to Golla's calculation.
Pilla is a direct upgrade in strength compared to Farlla because Pilla is using the same calculation as Golla while having the same base power as Farlla. This is likely a mistake in Pilla's base power or a bug in the mapping of Photon Blast to calculations inside the client. There is an unused Photon Blast damage calculation that would match to an internal identifier for Pilla, but instead Pilla is mapped to Golla.
 
The unused Photon Blast calculation is provided below, where "X" is either 500 or 1200, depending on which should be the correct Pilla base power.


<pre>
The unused Photon Blast calculation is provided below.
Base Strength = (Mag Synchro) * ATA * 0.075 * (Mag IQ) * 7.5 + X
PB Strength = (Base Strength) * (PB amount) * (Number of PBs) * 0.01 + MST
Damage = ((PB Strength) / 5) * ((100 - (Enemy ELT)) / 100)
</pre>


{{Mags}}
<code>((PB amount) * (Number of PBs) * 0.01 * ((Mag Synchro) * ATA * 0.075 * (Mag IQ) * 7.5 + 500.0)</code>
[[Category:Mags]]
Please note that all contributions to Ephinea PSO Wiki are considered to be released under the CC BY-NC-SA 4.0 (see Ephinea PSO Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)