6.4 update (minus sprites)

This commit is contained in:
infinitefusion
2024-12-21 09:43:11 -05:00
parent f70c2cfde4
commit 1e325366d2
1717 changed files with 140299 additions and 27845 deletions

View File

@@ -28,6 +28,8 @@ class Game_Temp
attr_accessor :unimportedSprites
attr_accessor :nb_imported_sprites
attr_accessor :loading_screen
attr_accessor :custom_sprites_list
attr_accessor :base_sprites_list
#-----------------------------------------------------------------------------
# * Object Initialization
@@ -55,6 +57,9 @@ class Game_Temp
@message_window_showing = false
@transition_processing = false
@mart_prices = {}
@custom_sprites_list ={}
@base_sprites_list ={}
end
def clear_mart_prices

View File

@@ -9,6 +9,7 @@ class Game_Switches
# * Object Initialization
#-----------------------------------------------------------------------------
def initialize
echoln caller
@data = []
end
#-----------------------------------------------------------------------------

View File

@@ -57,7 +57,7 @@ class Game_Picture
# opacity : opacity level
# blend_type : blend method
#-----------------------------------------------------------------------------
def show(name, origin, x, y, zoom_x, zoom_y, opacity, blend_type)
def show(name, origin, x, y, zoom_x=100, zoom_y=100, opacity=255, blend_type=0)
@name = name
@origin = origin
@x = x.to_f

View File

@@ -9,7 +9,6 @@ class Game_Player < Game_Character
attr_accessor :bump_se
attr_accessor :charsetData
attr_accessor :encounter_count
attr_accessor :outfit_changed
attr_accessor :x
attr_accessor :y

View File

@@ -11,6 +11,7 @@ class Game_CommonEvent
#-----------------------------------------------------------------------------
def initialize(common_event_id)
@common_event_id = common_event_id
@interpreter = nil
refresh
end

View File

@@ -141,6 +141,7 @@ end
class DependentEvents
attr_reader :lastUpdate
attr_reader :realEvents
attr_writer :follows_player
def createEvent(eventData)