tms for fusions

This commit is contained in:
infinitefusion
2021-08-14 10:45:55 -04:00
parent da32acad53
commit 0672b5823e
17 changed files with 236 additions and 212 deletions

View File

@@ -548,6 +548,7 @@ class Game_Character
end
def move_upper_left
@through=true
unless @direction_fix
@direction = (@direction == 6 ? 4 : @direction == 2 ? 8 : @direction)
end
@@ -556,9 +557,11 @@ class Game_Character
@y -= 1
increase_steps
end
@through=false
end
def move_upper_right
@through=true
unless @direction_fix
@direction = (@direction == 4 ? 6 : @direction == 2 ? 8 : @direction)
end
@@ -567,9 +570,11 @@ class Game_Character
@y -= 1
increase_steps
end
@through=false
end
def move_lower_left
@through=true
unless @direction_fix
@direction = (@direction == 6 ? 4 : @direction == 8 ? 2 : @direction)
end
@@ -578,9 +583,11 @@ class Game_Character
@y += 1
increase_steps
end
@through=false
end
def move_lower_right
@through=true
unless @direction_fix
@direction = (@direction == 4 ? 6 : @direction == 8 ? 2 : @direction)
end
@@ -589,6 +596,7 @@ class Game_Character
@y += 1
increase_steps
end
@through=false
end
def moveLeft90 # anticlockwise