[tekken2a] Tekken 2 Ver.A - Fix block stun juggles
Posted: Sat Oct 09, 2021 4:52 am
Just like Tekken 1, the original Ver.A release of Tekken 2 also had a number of guard-breaking combos.
While Nina's Forward Flip Kick and King's Exploder were no longer broken in Tekken 2, King's Elbow Sting and Jack's (Jack-2 and P.Jack) Gigaton Punch 1 were still unchanged. Additionally, some of the newer moves were also guaranteed on the second hit, such as Heihachi's Hell Axle (which was also in the PS1 version of Tekken 1 and unblockable there too) and Baek's Hunting Hawk (which is an extension of the Hell Axle).
As with Tekken 1, for the Elbow Sting block stun, the faster-recovering Neutron Bomb block stun saves the day. Note that Jack's Body Press also uses the same block stun (when the opponent has not been flattened instead), but the faster recovery doesn't seem to affect it.
If there's an easier way to do this, let me know, it would be nice being able to only need one cheat instead of hacking the movelist pointers for all 23 characters every time.
While Nina's Forward Flip Kick and King's Exploder were no longer broken in Tekken 2, King's Elbow Sting and Jack's (Jack-2 and P.Jack) Gigaton Punch 1 were still unchanged. Additionally, some of the newer moves were also guaranteed on the second hit, such as Heihachi's Hell Axle (which was also in the PS1 version of Tekken 1 and unblockable there too) and Baek's Hunting Hawk (which is an extension of the Hell Axle).
As with Tekken 1, for the Elbow Sting block stun, the faster-recovering Neutron Bomb block stun saves the day. Note that Jack's Body Press also uses the same block stun (when the opponent has not been flattened instead), but the faster recovery doesn't seem to affect it.
Code: Select all
<mamecheat version="1">
<cheat desc="Fix King's unblockable Elbow Sting block stun follow-ups"><comment>Also for Armor King and Roger/Alex - This allows you to block combos which would normally juggle after the Elbow Sting</comment>
<script state="on">
<action>temp0=maincpu.pd@801720EC</action>
</script>
<script state="run">
<action>maincpu.pd@801720EC=8013DA64</action><!-- Kazuya -->
<action>maincpu.pd@80173BC4=8013DA64</action><!-- Paul -->
<action>maincpu.pd@8017569C=8013DA64</action><!-- Law -->
<action>maincpu.pd@80177174=8013DA64</action><!-- Jack-2 -->
<action>maincpu.pd@80178C4C=8013DA64</action><!-- Nina -->
<action>maincpu.pd@8017A724=8013DA64</action><!-- King -->
<action>maincpu.pd@8017C1FC=8013DA64</action><!-- Yoshimitsu -->
<action>maincpu.pd@8017DCD4=8013DA64</action><!-- Michelle -->
<action>maincpu.pd@8017F7AC=8013DA64</action><!-- Wang -->
<action>maincpu.pd@80181284=8013DA64</action><!-- Heihachi -->
<action>maincpu.pd@80182D5C=8013DA64</action><!-- Lee -->
<action>maincpu.pd@80184834=8013DA64</action><!-- P.Jack -->
<action>maincpu.pd@8018630C=8013DA64</action><!-- Armor King -->
<action>maincpu.pd@80187DE4=8013DA64</action><!-- Anna -->
<action>maincpu.pd@801898BC=8013DA64</action><!-- Ganryu -->
<action>maincpu.pd@8018B394=8013DA64</action><!-- Kuma -->
<action>maincpu.pd@8018CE6C=8013DA64</action><!-- Kunimitsu -->
<action>maincpu.pd@8018E944=8013DA64</action><!-- Devil -->
<action>maincpu.pd@8019041C=8013DA64</action><!-- Lei -->
<action>maincpu.pd@80191EF4=8013DA64</action><!-- Jun -->
<action>maincpu.pd@801939CC=8013DA64</action><!-- Bruce -->
<action>maincpu.pd@801954A4=8013DA64</action><!-- Baek -->
<action>maincpu.pd@80196F7C=8013DA64</action><!-- Roger -->
</script>
<script state="off">
<action>maincpu.pd@801720EC=temp0</action>
<action>maincpu.pd@80173BC4=temp0</action>
<action>maincpu.pd@8017569C=temp0</action>
<action>maincpu.pd@80177174=temp0</action>
<action>maincpu.pd@80178C4C=temp0</action>
<action>maincpu.pd@8017A724=temp0</action>
<action>maincpu.pd@8017C1FC=temp0</action>
<action>maincpu.pd@8017DCD4=temp0</action>
<action>maincpu.pd@8017F7AC=temp0</action>
<action>maincpu.pd@80181284=temp0</action>
<action>maincpu.pd@80182D5C=temp0</action>
<action>maincpu.pd@80184834=temp0</action>
<action>maincpu.pd@8018630C=temp0</action>
<action>maincpu.pd@80187DE4=temp0</action>
<action>maincpu.pd@801898BC=temp0</action>
<action>maincpu.pd@8018B394=temp0</action>
<action>maincpu.pd@8018CE6C=temp0</action>
<action>maincpu.pd@8018E944=temp0</action>
<action>maincpu.pd@8019041C=temp0</action>
<action>maincpu.pd@80191EF4=temp0</action>
<action>maincpu.pd@801939CC=temp0</action>
<action>maincpu.pd@801954A4=temp0</action>
<action>maincpu.pd@80196F7C=temp0</action>
</script>
</cheat>
</mamecheat>