#==============================================================================# ■ Luna Add-On: Customizable Yanfly Engine Ace Victory#==============================================================================# This lets you customize Yanfly's Victory Aftermath Script graphically.#==============================================================================$imported = {} if $imported.nil?$imported["YEL-YEAVictory"] = true#==============================================================================# ■ BattleLuna#==============================================================================module BattleLuna module Addon module YEA_VICTORY CORE = { # Begin CORE :message => false, # Enable/Disable Victory Quotes :spoil => false, # Set this to false to disable spoil window. :lvup => false, # Set this to false to disable levelup window. :spoil_with_exp => false, # Show spoil window with EXP window :wait_exp => true, # Set this to true to wait for EXP tick. :hide_hud => true, # Hide HUD when victory. } # End CORE TITLE_WINDOW = { # Begin TITLE_WINDOW :enable => true, :x => 0, :y => 0, :z => 300, :width => 640, :height => 480, :back_type => 0, # 0 - normal window, 1 - gradient, 2 - picture :background_variable => 1, # Set a Variable to change Window # BG Type 0 settings :type_0 => { :opacity => 255, }, # BG Type 1 settings :type_1 => { :color1 => [0, 0, 0, 128], :color2 => [0, 0, 0, 128], :vertical => false, }, # BG Type 2 settings :type_2 => { :picture => "Actor_Victory", # Graphics/System :opacity => 255, :offset_x => 0, :offset_y => 0, }, } # End TITLE_WINDOW