Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
aera-ngmansion committed Dec 21, 2016
1 parent dd6001c commit 23b9f31
Show file tree
Hide file tree
Showing 10 changed files with 82 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Engine Hacks/Bow2Decrease/Bow2Decrease.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@thumb
ldr r0, [r5, #76]
mov r1, #130
and r0, r1
bne decrease
mov r0, #30
ldrh r0, [r5, r0]
bl WEAPON
cmp r0, #3
beq decrease
cmp r0, #2
beq non
ldr r1, =$0203a4d0
ldrb r1, [r1, #2]
cmp r1, #1
bne decrease
non
ldr r0, =$0802b770
mov pc, r0
decrease
ldr r0, =$0802b756
mov pc, r0

WEAPON
ldr r3, =$080172f0
mov pc, r3
Binary file added Engine Hacks/Bow2Decrease/Bow2Decrease.gba
Binary file not shown.
13 changes: 13 additions & 0 deletions Engine Hacks/Bow2Decrease/EA.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
PUSH

ORG 0x2B74C
WORD $469F4B00
POIN BowDecrease

////////////////
POP

BowDecrease:
#incbin "Bow2Decrease.gba"
ALIGN 4

3 changes: 3 additions & 0 deletions Engine Hacks/Bow2Decrease/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
弓とかは外しても減る

追加で減るものは、弓と、斧以外の間接攻撃です
Binary file modified Engine Hacks/Skill_Icon/iconEX.gba
Binary file not shown.
14 changes: 14 additions & 0 deletions Engine Hacks/TalkFix/EA.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
////////////////話す修正
PUSH

ORG 0x32308
WORD $468F4900
POIN TalkFix

POP

TalkFix:
#incbin "TalkFixFE8J.gba"
ALIGN 4

///////////////支援修正
1 change: 1 addition & 0 deletions Engine Hacks/TalkFix/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
話すを選んだ後に完全に行動終了しなくなる(蒼炎の挙動になる)
21 changes: 21 additions & 0 deletions Engine Hacks/TalkFix/TalkFixFE8J.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@thumb

ldr r0, [r0]
ldrb r1, [r0, #4]
mov r0, r5
ldr r5,[sp]
mov r2,#0x17
strb r2,[r4,#0x11
ldr r4, [r5,#4]
sub r4, #0x30
str r4, [r5,#4]
ldr r4,=0x202bce9
mov r5,#80
strb r5,[r4]
ldr r4,=0x8086288
mov lr,r4
@dcw 0xf800
ldr r0, =$08032313
bx r0

;the original version was made by Circleseverywhere
Binary file added Engine Hacks/TalkFix/TalkFixFE8J.gba
Binary file not shown.
2 changes: 2 additions & 0 deletions Engine Hacks/_MasterHackInstaller.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
#include "LeaderAIFix\EA.txt"
#include "OriginSkill\EA.txt"

#include "TalkFix\EA.txt"
#include "Bow2Decrease\EA.txt"


// #include "magic\MAGICforN.txt"

0 comments on commit 23b9f31

Please sign in to comment.