Chainsaw Effect
#1
Greetings all.Hello

I have a question considering the Chainsaw Tool for the Tools Command.
I would like to change it in which that when the user of the tool puts on the Jason Mask and and results in Instant Death. I Would like to change to where it instead deals massive damage. The other possibility where the User spins around the enemy with the Chainsaw, I would like change it to where it spreads the damage out to all of the enemies in the Battle.
Would this be Possible?
Shine 
Reply
#2
It is possible, but the tools are hard coded by assembly code. Unfortunately, for the original game, you can't change it only with the alteration of the data of the Tools items. You need to change the code by hex editing. The relevant codes are:

Pointers for the Tools:
Code:
C2/2B1A: 2A 2B     (Noise Blaster)
C2/2B1C: 2F 2B     (Bio Blaster) (do nothing)
C2/2B1E: 2F 2B     (Flash) (do nothing)
C2/2B20: 30 2B     (Chainsaw)
C2/2B22: 53 2B     (Debilitator)
C2/2B24: 4D 2B     (Drill)
C2/2B26: 57 2B     (Air Anchor)
C2/2B28: 5D 2B     (Autocrossbow)

The Chainsaw code:
Code:
C2/2B30: 20 5A 4B     JSR $4B5A   (0 to 255)
C2/2B33: 29 03        AND #$03
C2/2B35: D0 16        BNE $2B4D   (75% chance)
C2/2B37: A9 08        LDA #$08
C2/2B39: 85 B6        STA $B6     (Animation)
C2/2B3B: 9C A6 11     STZ $11A6   (Battle power)
C2/2B3E: A9 80        LDA #$80
C2/2B40: 0C AA 11     TSB $11AA   (Set death status)
C2/2B43: A9 10        LDA #$10    
C2/2B45: 8D A4 11     STA $11A4   (Set stamina can block)
C2/2B48: A9 02        LDA #$02
C2/2B4A: 0C A2 11     TSB $11A2   (Set miss if death prot.)
C2/2B4D: A9 20        LDA #$20
C2/2B4F: 0C A2 11     TSB $11A2   (Set ignore defense)
C2/2B52: 60           RTS

You can also try the Custom Tools patch. It will replace the Tools attack data with a specific spell data, but you must edit all Tools data and probably update or replace existing spells or attacks data for the use of the new Tools. You can consult the documentation for better details:

http://www.romhacking.net/hacks/2076/
Reply
#3
Thank you HatZen, this helps a lot. Objection!
Shine 
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  New Status Effect - Old Xontract 3 2,450 01-08-2024, 12:26 PM
Last Post: Warrax
  Edit Chainsaw codes doofenH 27 20,204 04-11-2021, 07:54 PM
Last Post: Lightning
  Air Anchor door: Opposite effect with hidden switch? FlamePurge 2 2,106 08-28-2020, 12:42 PM
Last Post: FlamePurge
Summoner Undead status and "randomly kill" (assassin) effect Lightning 0 1,439 04-14-2019, 04:55 PM
Last Post: Lightning
  Missing "throw" (Hawkeye effect) Animations Kugawattan 9 8,353 04-05-2016, 02:52 PM
Last Post: DrakeyC
  Change the Health command effect Blue Mage Gab 18 15,631 12-08-2015, 08:31 AM
Last Post: Zozma
  Changing NPC sprite in FF6LE has no effect justincreedon 7 7,659 06-15-2015, 10:34 PM
Last Post: justincreedon
  $F4 Sound Effect List? malachitate 9 9,644 03-21-2014, 08:12 PM
Last Post: malachitate
  Odin and Raiden's effect tsushiy 2 3,520 03-01-2014, 10:33 AM
Last Post: tsushiy
  editing tools (chainsaw, drill, flash, ...) luxador 10 14,250 06-05-2013, 02:19 PM
Last Post: madsiur

Forum Jump:


Users browsing this thread: 1 Guest(s)