diff --git a/Data/Scripts/902_Anim GameData/001_Animation.rb b/Data/Scripts/902_Anim GameData/001_Animation.rb index 548213417..8d05f83e3 100644 --- a/Data/Scripts/902_Anim GameData/001_Animation.rb +++ b/Data/Scripts/902_Anim GameData/001_Animation.rb @@ -226,6 +226,10 @@ module GameData return [:common, :opp_common].include?(@type) end + def opposing_animation? + return [:opp_move, :opp_common].include?(@type) + end + alias __new_anim__get_property_for_PBS get_property_for_PBS unless method_defined?(:__new_anim__get_property_for_PBS) def get_property_for_PBS(key) ret = __new_anim__get_property_for_PBS(key) diff --git a/Data/Scripts/903_Anim Compiler/100_convert old anims to new.rb b/Data/Scripts/903_Anim Compiler/100_convert old anims to new.rb new file mode 100644 index 000000000..e1e8bfb70 --- /dev/null +++ b/Data/Scripts/903_Anim Compiler/100_convert old anims to new.rb @@ -0,0 +1,175 @@ +module AnimationConverter + module_function + + def convert_old_animations_to_new + list = pbLoadBattleAnimations + raise "No animations found." if !list || list.length == 0 + + last_move = nil # For filename purposes + last_version = 0 + last_type = :move + + list.each do |anim| + next if !anim.name || anim.name == "" || anim.length <= 1 + + # Get folder and filename for new PBS file + folder = "Converted/" + folder += (anim.name[/^Common:/]) ? "Common/" : "Move/" + filename = anim.name.gsub(/^Common:/, "") + filename.gsub!(/^Move:/, "") + filename.gsub!(/^OppMove:/, "") + # Update record of move and version + type = :move + if anim.name[/^Common:/] + type = :common + elsif anim.name[/^OppMove:/] + type = :opp_move + elsif anim.name[/^Move:/] + type = :move + end + if filename == anim.name + last_version += 1 + type = last_type + pbs_path = folder + last_move + else + last_move = filename + last_version = 0 + last_type = type + pbs_path = folder + filename + end + last_move = filename if !last_move + # Generate basic animaiton properties + + new_anim = { + :type => type, + :move => last_move, + :version => last_version, + :name => filename, + :particles => [], + :pbs_path => pbs_path + } + + add_frames_to_new_anim_hash(anim, new_anim) + add_se_commands_to_new_anim_hash(anim, new_anim) + + new_anim[:particles].compact! + GameData::Animation.register(new_anim) + Compiler.write_battle_animation_file(new_anim[:pbs_path]) + end + + end + + def add_frames_to_new_anim_hash(anim, hash) + # Set up previous frame's values + default_frame = [] + default_frame[AnimFrame::X] = -999 + default_frame[AnimFrame::Y] = -999 + default_frame[AnimFrame::ZOOMX] = 100 + default_frame[AnimFrame::ZOOMY] = 100 + default_frame[AnimFrame::BLENDTYPE] = 0 + default_frame[AnimFrame::ANGLE] = 0 + default_frame[AnimFrame::OPACITY] = 255 + default_frame[AnimFrame::COLORRED] = 0 + default_frame[AnimFrame::COLORGREEN] = 0 + default_frame[AnimFrame::COLORBLUE] = 0 + default_frame[AnimFrame::COLORALPHA] = 0 + default_frame[AnimFrame::TONERED] = 0 + default_frame[AnimFrame::TONEGREEN] = 0 + default_frame[AnimFrame::TONEBLUE] = 0 + default_frame[AnimFrame::TONEGRAY] = 0 + + default_frame[AnimFrame::VISIBLE] = 1 # Boolean + default_frame[AnimFrame::MIRROR] = 0 # Boolean + + default_frame[AnimFrame::FOCUS] = 4 # 1=target, 2=user, 3=user and target, 4=screen + + last_frame_values = [] + # Go through each frame + anim.length.times do |frame_num| + frame = anim[frame_num] + frame.each_with_index do |cel, i| + next if !cel + # i=0 for "User", i=1 for "Target" + hash[:particles][i] ||= { + :name => "Particle #{i}" + } + particle = hash[:particles][i] + if i == 0 + particle[:name] = "User" + elsif i == 1 + particle[:name] = "Target" + else + particle[:visible] = [[0, 0, true]] + end + + last_frame = last_frame_values[i] || default_frame.clone + # Copy commands across + [ + [AnimFrame::X, :x], + [AnimFrame::Y, :y], + [AnimFrame::ZOOMX, :zoom_x], + [AnimFrame::ZOOMY, :zoom_y], + [AnimFrame::BLENDTYPE, :blending], + [AnimFrame::ANGLE, :angle], + [AnimFrame::OPACITY, :opacity], + [AnimFrame::COLORRED, :color_red], + [AnimFrame::COLORGREEN, :color_green], + [AnimFrame::COLORBLUE, :color_blue], + [AnimFrame::COLORALPHA, :color_alpha], + [AnimFrame::TONERED, :tone_red], + [AnimFrame::TONEGREEN, :tone_green], + [AnimFrame::TONEBLUE, :tone_blue], + [AnimFrame::TONEGRAY, :tone_gray], + [AnimFrame::VISIBLE, :visible], # Boolean + [AnimFrame::MIRROR, :flip], # Boolean + ].each do |property| + next if cel[property[0]] == last_frame[property[0]] + particle[property[1]] ||= [] + val = cel[property[0]].to_i + val = (val == 1) if [:visible, :flip].include?(property[1]) + particle[property[1]].push([frame_num, 0, val]) + last_frame[property[0]] = cel[property[0]] + end + # Set graphic + particle[:graphic] = anim.graphic + # Set focus for non-User/non-Target + if i > 1 + particle[:focus] = [:screen, :target, :user, :user_and_target, :screen][cel[AnimFrame::FOCUS]] + end + # Remember this cel's values at this frame + last_frame_values[i] = last_frame + end + end + end + + def add_se_commands_to_new_anim_hash(anim, new_anim) + anim.timing.each do |cmd| + next if cmd.timingType != 0 # Play SE + particle = new_anim[:particles].last + if particle[:name] != "SE" + particle = { :name => "SE" } + new_anim[:particles].push(particle) + end + # Add command + if cmd.name && cmd.name != "" + particle[:se] ||= [] + particle[:se].push([cmd.frame, 0, cmd.name, cmd.volume, cmd.pitch]) + else # Play user's cry + particle[:user_cry] ||= [] + particle[:user_cry].push([cmd.frame, 0, cmd.volume, cmd.pitch]) + end + end + end +end + +#=============================================================================== +# Add to Debug menu. +#=============================================================================== +MenuHandlers.add(:debug_menu, :convert_anims, { + "name" => "Convert old animation to PBS files", + "parent" => :main, + "description" => "This is just for the sake of having lots of example animation PBS files.", + "effect" => proc { + AnimationConverter.convert_old_animations_to_new + } +}) diff --git a/Data/Scripts/904_Anim Editor/010_AnimationSelector.rb b/Data/Scripts/904_Anim Editor/010_AnimationSelector.rb index 9d079f8f8..901d15b8d 100644 --- a/Data/Scripts/904_Anim Editor/010_AnimationSelector.rb +++ b/Data/Scripts/904_Anim Editor/010_AnimationSelector.rb @@ -2,152 +2,243 @@ # #=============================================================================== class AnimationEditor::AnimationSelector - ANIMATIONS_LIST_X = 4 - ANIMATIONS_LIST_Y = 4 - ANIMATIONS_LIST_WIDTH = 300 - ANIMATIONS_LIST_HEIGHT = AnimationEditor::WINDOW_HEIGHT - (ANIMATIONS_LIST_Y * 2) + QUIT_BUTTON_WIDTH = 80 + QUIT_BUTTON_HEIGHT = 30 - LOAD_BUTTON_WIDTH = 200 - LOAD_BUTTON_HEIGHT = 48 - LOAD_BUTTON_X = ANIMATIONS_LIST_WIDTH + 100 - LOAD_BUTTON_Y = ANIMATIONS_LIST_Y + (ANIMATIONS_LIST_HEIGHT / 2) - (LOAD_BUTTON_HEIGHT / 2) + TYPE_BUTTONS_X = 2 + TYPE_BUTTONS_Y = 62 + TYPE_BUTTON_WIDTH = 100 + TYPE_BUTTON_HEIGHT = 48 + + MOVES_LIST_X = TYPE_BUTTONS_X + TYPE_BUTTON_WIDTH + 4 + MOVES_LIST_Y = TYPE_BUTTONS_Y + 4 + MOVES_LIST_WIDTH = 200 + MOVES_LIST_HEIGHT = 26 * UIControls::List::ROW_HEIGHT + + ANIMATIONS_LIST_X = MOVES_LIST_X + MOVES_LIST_WIDTH + 8 + ANIMATIONS_LIST_Y = MOVES_LIST_Y + ANIMATIONS_LIST_WIDTH = 300 + ANIMATIONS_LIST_HEIGHT = MOVES_LIST_HEIGHT + + ACTION_BUTTON_WIDTH = 200 + ACTION_BUTTON_HEIGHT = 48 + ACTION_BUTTON_X = ANIMATIONS_LIST_X + ANIMATIONS_LIST_WIDTH + 4 + ACTION_BUTTON_Y = TYPE_BUTTONS_Y + ((ANIMATIONS_LIST_HEIGHT - (ACTION_BUTTON_HEIGHT * 3)) / 2) + 4 def initialize - generate_list + generate_lists @viewport = Viewport.new(0, 0, AnimationEditor::WINDOW_WIDTH, AnimationEditor::WINDOW_HEIGHT) @viewport.z = 99999 @screen_bitmap = BitmapSprite.new(AnimationEditor::WINDOW_WIDTH, AnimationEditor::WINDOW_HEIGHT, @viewport) draw_editor_background - @load_animation_id = nil + @animation_type = 0 # 0=move, 1=common + @quit = false create_controls + refresh end def dispose @screen_bitmap.dispose + @components.dispose @viewport.dispose end - # TODO: Make separate arrays for move and common animations. Group animations - # for the same move/common animation together somehow to be listed in - # the main list - individual animations are shown in the secondary list. - # The display names will need improving accordingly. Usage of - # @animations in this class will need redoing. - def generate_list - @animations = [] - GameData::Animation.keys.each do |id| - anim = GameData::Animation.get(id) - if anim.version > 0 - name = "#{anim.type}: #{anim.move} (#{anim.version}) - #{anim.name}" - else - name = "#{anim.type}: #{anim.move} - #{anim.name}" - end - @animations.push([id, name]) + LABEL_OFFSET_X = -4 + LABEL_OFFSET_Y = -32 + + def create_controls + @components = UIControls::ControlsContainer.new(0, 0, AnimationEditor::WINDOW_WIDTH, AnimationEditor::WINDOW_HEIGHT) + # Quit button + btn = UIControls::Button.new(QUIT_BUTTON_WIDTH, QUIT_BUTTON_HEIGHT, @viewport, _INTL("Quit")) + btn.set_fixed_size + @components.add_control_at(:quit, btn, 0, 0) + # New button + btn = UIControls::Button.new(QUIT_BUTTON_WIDTH, QUIT_BUTTON_HEIGHT, @viewport, _INTL("New")) + btn.set_fixed_size + @components.add_control_at(:new, btn, QUIT_BUTTON_WIDTH, 0) + # Type label + label = UIControls::Label.new(TYPE_BUTTON_WIDTH, TYPE_BUTTON_HEIGHT, @viewport, _INTL("Anim types")) + label.header = true + @components.add_control_at(:type_label, label, TYPE_BUTTONS_X + LABEL_OFFSET_X + 4, TYPE_BUTTONS_Y + LABEL_OFFSET_Y + 4) + # Animation type toggle buttons + [[:moves, _INTL("Moves")], [:commons, _INTL("Common")]].each_with_index do |val, i| + btn = UIControls::Button.new(TYPE_BUTTON_WIDTH, TYPE_BUTTON_HEIGHT, @viewport, val[1]) + btn.set_fixed_size + @components.add_control_at(val[0], btn, TYPE_BUTTONS_X, TYPE_BUTTONS_Y + (i * TYPE_BUTTON_HEIGHT)) end - # TODO: For scrollbar testing purposes. - rand(400).times do |i| - @animations.push([42 + i, "Extra animation #{i + 1}"]) + # TODO: Filter text box for :moves_list's contents. Applies the filter upon + # every change to the text box's value. Perhaps it should only do so + # after 0.5 seconds of non-typing. What exactly should the filter be + # applied to? Animation's name, move's name (if there is one), what + # else? + # Moves list label + label = UIControls::Label.new(MOVES_LIST_WIDTH, TYPE_BUTTON_HEIGHT, @viewport, _INTL("Moves")) + label.header = true + @components.add_control_at(:moves_label, label, MOVES_LIST_X + LABEL_OFFSET_X, MOVES_LIST_Y + LABEL_OFFSET_Y) + # Moves list + list = UIControls::List.new(MOVES_LIST_WIDTH, MOVES_LIST_HEIGHT, @viewport, []) + @components.add_control_at(:moves_list, list, MOVES_LIST_X, MOVES_LIST_Y) + # Animations list label + label = UIControls::Label.new(ANIMATIONS_LIST_WIDTH, TYPE_BUTTON_HEIGHT, @viewport, _INTL("Animations")) + label.header = true + @components.add_control_at(:animations_label, label, ANIMATIONS_LIST_X + LABEL_OFFSET_X, ANIMATIONS_LIST_Y + LABEL_OFFSET_Y) + # Animations list + list = UIControls::List.new(ANIMATIONS_LIST_WIDTH, ANIMATIONS_LIST_HEIGHT, @viewport, []) + @components.add_control_at(:animations_list, list, ANIMATIONS_LIST_X, ANIMATIONS_LIST_Y) + # Edit, Copy and Delete buttons + [[:edit, _INTL("Edit animation")], [:copy, _INTL("Copy animation")], [:delete, _INTL("Delete animation")]].each_with_index do |val, i| + btn = UIControls::Button.new(ACTION_BUTTON_WIDTH, ACTION_BUTTON_HEIGHT, @viewport, val[1]) + btn.set_fixed_size + @components.add_control_at(val[0], btn, ACTION_BUTTON_X, ACTION_BUTTON_Y + (i * ACTION_BUTTON_HEIGHT)) end end def draw_editor_background # Fill the whole screen with white - @screen_bitmap.bitmap.fill_rect(0, 0, AnimationEditor::WINDOW_WIDTH, AnimationEditor::WINDOW_HEIGHT, Color.black) - # Outline around animations list + @screen_bitmap.bitmap.fill_rect(0, 0, AnimationEditor::WINDOW_WIDTH, AnimationEditor::WINDOW_HEIGHT, Color.white) + # Outlines around lists areas = [ - [ANIMATIONS_LIST_X, ANIMATIONS_LIST_Y, ANIMATIONS_LIST_WIDTH, ANIMATIONS_LIST_HEIGHT], - [LOAD_BUTTON_X, LOAD_BUTTON_Y, LOAD_BUTTON_WIDTH, LOAD_BUTTON_HEIGHT] + [MOVES_LIST_X, MOVES_LIST_Y, MOVES_LIST_WIDTH, MOVES_LIST_HEIGHT], + [ANIMATIONS_LIST_X, ANIMATIONS_LIST_Y, ANIMATIONS_LIST_WIDTH, ANIMATIONS_LIST_HEIGHT] ] areas.each do |area| - # Draw outlines around area - @screen_bitmap.bitmap.outline_rect(area[0] - 3, area[1] - 3, area[2] + 6, area[3] + 6, Color.white) @screen_bitmap.bitmap.outline_rect(area[0] - 2, area[1] - 2, area[2] + 4, area[3] + 4, Color.black) - @screen_bitmap.bitmap.outline_rect(area[0] - 1, area[1] - 1, area[2] + 2, area[3] + 2, Color.white) - # Fill the area with white - # TODO: This line was quoted out previously, and I'm not sure why. - @screen_bitmap.bitmap.fill_rect(area[0], area[1], area[2], area[3], Color.white) end end - def create_controls - @controls = {} - # TODO: Buttons to toggle between listing moves that have animations, and - # common animations (and overworld animations). - # Animations list - @list = UIControls::List.new(ANIMATIONS_LIST_WIDTH, ANIMATIONS_LIST_HEIGHT, @viewport, @animations) - @list.x = ANIMATIONS_LIST_X - @list.y = ANIMATIONS_LIST_Y - @controls[:list] = @list - # TODO: A secondary list for displaying all the animations related to the - # selected move. For common anims/overworld anims, this will only ever - # list one animation. The first animation listed in here will be - # selected by default. - # TODO: Filter text box for @list's contents. Applies the filter upon every - # change to the text box's value. Perhaps it should only do so after - # 0.5 seconds of non-typing. What exactly should the filter be applied - # to? Animation's name, move's name (if there is one), what else? - # TODO: Filter dropdown list to pick a move type? Other filter options? - # "Load animation" button - @load_button = UIControls::Button.new(LOAD_BUTTON_WIDTH, LOAD_BUTTON_HEIGHT, @viewport, _INTL("Load animation")) - @load_button.x = LOAD_BUTTON_X - @load_button.y = LOAD_BUTTON_Y - @load_button.set_fixed_size - @load_button.set_interactive_rects - @controls[:load] = @load_button - # TODO: "New animation" button, "Delete animation" button, "Duplicate - # animation" button, "Quit" button. - repaint + #----------------------------------------------------------------------------- + + def generate_lists + @move_list = [] + @common_list = [] + @move_animations = {} + @common_animations = {} + GameData::Animation.keys.each do |id| + anim = GameData::Animation.get(id) + name = "" + name += _INTL("[Foe]") + " " if anim.opposing_animation? + name += "[#{anim.version}]" + " " if anim.version > 0 + name += anim.name + if anim.move_animation? + move_name = GameData::Move.try_get(anim.move)&.name || anim.move + @move_list.push([anim.move, move_name]) if !@move_animations[anim.move] + @move_animations[anim.move] ||= [] + @move_animations[anim.move].push([id, name]) + elsif anim.common_animation? + @common_list.push([anim.move, anim.move]) if !@common_animations[anim.move] + @common_animations[anim.move] ||= [] + @common_animations[anim.move].push([id, name]) + end + end + @move_list.sort! + @common_list.sort! + @move_animations.values.each do |val| + val.sort! { |a, b| a[1] <=> b[1] } + end + @common_animations.values.each do |val| + val.sort! { |a, b| a[1] <=> b[1] } + end end - def repaint - @controls.each { |ctrl| ctrl[1].repaint } + def selected_move_animations + val = @components.get_control(:moves_list).value + return [] if !val + return @move_animations[val] if @animation_type == 0 + return @common_animations[val] if @animation_type == 1 + return [] + end + + def selected_animation_id + return @components.get_control(:animations_list).value + end + + #----------------------------------------------------------------------------- + + def refresh + # Put the correct list into the moves list + case @animation_type + when 0 + @components.get_control(:moves).disable + @components.get_control(:commons).enable + @components.get_control(:moves_list).values = @move_list + @components.get_control(:moves_label).label = _INTL("Moves") + when 1 + @components.get_control(:moves).enable + @components.get_control(:commons).disable + @components.get_control(:moves_list).values = @common_list + @components.get_control(:moves_label).label = _INTL("Common animations") + end + # Put the correct list into the animations list + @components.get_control(:animations_list).values = selected_move_animations + # Enable/disable buttons depending on what is selected + if @components.get_control(:animations_list).value + @components.get_control(:edit).enable + @components.get_control(:copy).enable + @components.get_control(:delete).enable + else + @components.get_control(:edit).disable + @components.get_control(:copy).disable + @components.get_control(:delete).disable + end + end + + #----------------------------------------------------------------------------- + + def apply_button_press(button) + case button + when :quit + @quit = true + return # Don't need to refresh the screen + when :new + # TODO: New animation. + when :moves + @animation_type = 0 + @components.get_control(:moves_list).selected = -1 + @components.get_control(:animations_list).selected = -1 + when :commons + @animation_type = 1 + @components.get_control(:moves_list).selected = -1 + @components.get_control(:animations_list).selected = -1 + when :edit + anim_id = selected_animation_id + if anim_id + screen = AnimationEditor.new(anim_id, GameData::Animation.get(anim_id).clone_as_hash) + screen.run + # TODO: Might want to select whichever options in each list get to + # the animation with ID anim_id. + generate_lists + end + when :copy + anim_id = selected_animation_id + if anim_id + # TODO: Copy animation. + end + when :delete + anim_id = selected_animation_id + if anim_id + # TODO: Delete animation. + end + end + refresh end def update - # Update all controls - if @captured - @captured.update - @captured = nil if !@captured.busy? - else - @controls.each do |ctrl| - ctrl[1].update - @captured = ctrl[1] if ctrl[1].busy? + @components.update + if @components.changed? + @components.values.each_pair do |property, value| + apply_button_press(property) end + @components.clear_changed end - # Check for changes in controls - @list.clear_changed if @list.changed? # We don't need @list's value now - if @load_button.changed? - # TODO: This will need to get the animation ID from the sublist instead. - @load_animation_id = @list.value - @load_button.clear_changed - end - repaint # Only repaints if needed end def run Input.text_input = false loop do - inputting_text = Input.text_input Graphics.update Input.update update - # Open editor with animation -# @load_animation_id = 2 # TODO: For quickstart testing purposes. - if @load_animation_id - screen = AnimationEditor.new(@load_animation_id, GameData::Animation.get(@load_animation_id).clone_as_hash) - screen.run - @load_animation_id = nil -# break # TODO: For quickstart testing purposes. - # Refresh list of animations, in case the edited one changed its type, - # move, version or name - generate_list - @list.values = @animations - repaint - next - end - # Typing text into a text box; don't want key presses to trigger anything - next if inputting_text - # Inputs - break if Input.trigger?(Input::BACK) + break if !@components.busy? && @quit end dispose end diff --git a/Data/Scripts/904_Anim Editor/Anim Editor elements/003_ParticleList.rb b/Data/Scripts/904_Anim Editor/Anim Editor elements/003_ParticleList.rb index a35dca01c..4a48387ed 100644 --- a/Data/Scripts/904_Anim Editor/Anim Editor elements/003_ParticleList.rb +++ b/Data/Scripts/904_Anim Editor/Anim Editor elements/003_ParticleList.rb @@ -85,7 +85,7 @@ class AnimationEditor::ParticleList < UIControls::BaseControl @row_index = 0 # Particle information to display (one row each) @particles = [] # Reference to particle data from the editor scene - @expanded_particles = [0] # Each element is index in @particles + @expanded_particles = [] # Each element is index in @particles @particle_list = [] # Each element is index in @particles or [index, property] @visibilities = [] # Per particle @commands = {} diff --git a/PBS/Animations/Converted/Common/Attract.txt b/PBS/Animations/Converted/Common/Attract.txt new file mode 100644 index 000000000..f5869b092 --- /dev/null +++ b/PBS/Animations/Converted/Common/Attract.txt @@ -0,0 +1,116 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Attract] +Name = Attract + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 7,355 + SetY = 7,50 + SetX = 8,341 + SetY = 8,65 + SetX = 9,350 + SetY = 9,67 + SetX = 10,376 + SetY = 10,85 + SetX = 11,361 + SetY = 11,90 + SetX = 12,377 + SetY = 12,74 + SetX = 13,390 + SetY = 13,54 + SetX = 14,404 + SetY = 14,27 + SetY = 15,19 + SetOpacity = 15,192 + SetY = 16,11 + SetOpacity = 16,128 + SetY = 17,3 + SetOpacity = 17,64 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 8,349 + SetY = 8,50 + SetX = 9,333 + SetY = 9,61 + SetX = 10,350 + SetY = 10,86 + SetX = 11,361 + SetY = 11,88 + SetX = 12,348 + SetY = 12,90 + SetX = 13,353 + SetY = 13,71 + SetX = 14,336 + SetY = 14,50 + SetY = 15,42 + SetOpacity = 15,192 + SetY = 16,34 + SetOpacity = 16,128 + SetY = 17,26 + SetOpacity = 17,64 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 12,397 + SetY = 12,93 + SetX = 13,411 + SetY = 13,72 + SetX = 14,412 + SetY = 14,44 + SetX = 15,414 + SetY = 15,40 + SetOpacity = 15,192 + SetY = 16,32 + SetOpacity = 16,128 + SetY = 17,24 + SetOpacity = 17,64 + + Graphic = poi.hear.mus + Focus = Target + SetX = 0,374 + SetY = 0,67 + SetVisible = 0,true + SetX = 1,407 + SetY = 1,65 + SetX = 2,432 + SetY = 2,60 + SetX = 3,436 + SetY = 3,49 + SetX = 4,415 + SetY = 4,32 + SetX = 5,348 + SetY = 5,36 + SetX = 6,325 + SetY = 6,42 + SetX = 7,308 + SetY = 7,68 + SetX = 8,343 + SetY = 8,79 + SetX = 9,369 + SetY = 9,85 + SetX = 10,376 + SetY = 10,73 + SetX = 11,375 + SetY = 11,64 + SetY = 12,47 + SetY = 13,31 + SetY = 14,7 + SetY = 15,-1 + SetOpacity = 15,192 + SetY = 16,-9 + SetOpacity = 16,128 + SetY = 17,-17 + SetOpacity = 17,64 + + Play = 0,infatuated,100,100 diff --git a/PBS/Animations/Converted/Common/Bind.txt b/PBS/Animations/Converted/Common/Bind.txt new file mode 100644 index 000000000..8d8ba9ca8 --- /dev/null +++ b/PBS/Animations/Converted/Common/Bind.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Bind] +Name = Bind + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = Target + SetX = 0,440 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,94 + SetX = 2,488 + SetY = 2,102 + SetX = 3,464 + SetY = 3,94 + SetX = 4,432 + SetX = 5,464 + SetX = 6,496 + SetY = 6,102 + SetX = 7,480 + + Graphic = Struggle + Focus = Target + SetX = 0,320 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,94 + SetX = 2,240 + SetY = 2,102 + SetX = 3,264 + SetY = 3,94 + SetX = 4,296 + SetX = 5,256 + SetX = 6,216 + SetX = 7,264 + + Play = 0,Slash10,80,100 + Play = 3,Slash10,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Common/Burn.txt b/PBS/Animations/Converted/Common/Burn.txt new file mode 100644 index 000000000..00cd7ee39 --- /dev/null +++ b/PBS/Animations/Converted/Common/Burn.txt @@ -0,0 +1,20 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Burn] +Name = Burn + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,384 + SetY = 0,96 + SetZoomX = 0,200 + SetZoomY = 0,200 + SetVisible = 0,true + + Play = 0,Fire2,80,100 diff --git a/PBS/Animations/Converted/Common/Confusion.txt b/PBS/Animations/Converted/Common/Confusion.txt new file mode 100644 index 000000000..c41559284 --- /dev/null +++ b/PBS/Animations/Converted/Common/Confusion.txt @@ -0,0 +1,49 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Confusion] +Name = Confusion + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = confused + Focus = Target + SetX = 0,384 + SetY = 0,63 + SetVisible = 0,true + SetY = 1,64 + SetY = 2,57 + SetX = 3,385 + SetY = 3,63 + SetX = 4,384 + SetY = 4,64 + SetX = 5,388 + SetY = 5,59 + SetX = 6,389 + SetY = 6,57 + SetX = 7,391 + SetX = 8,384 + SetY = 8,55 + SetX = 9,382 + SetY = 9,59 + SetX = 10,396 + SetY = 10,56 + SetX = 11,386 + SetY = 11,53 + SetX = 12,383 + SetX = 13,386 + SetY = 13,52 + SetY = 14,45 + SetX = 15,391 + SetY = 15,42 + SetX = 16,392 + SetY = 16,41 + SetOpacity = 16,233 + SetX = 17,394 + SetY = 17,39 + SetOpacity = 17,154 + + Play = 0,throw,80,100 diff --git a/PBS/Animations/Converted/Common/FireSpin.txt b/PBS/Animations/Converted/Common/FireSpin.txt new file mode 100644 index 000000000..17597c6cd --- /dev/null +++ b/PBS/Animations/Converted/Common/FireSpin.txt @@ -0,0 +1,132 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,FireSpin] +Name = FireSpin + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,355 + SetY = 0,136 + SetVisible = 0,true + + Graphic = fly copy + Focus = Target + SetX = 0,393 + SetY = 0,138 + SetVisible = 0,true + + Graphic = fly copy + Focus = Target + SetX = 0,428 + SetY = 0,137 + SetVisible = 0,true + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,355 + SetY = 1,121 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,394 + SetY = 1,123 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,431 + SetY = 1,122 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,359 + SetY = 2,108 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,395 + SetY = 2,107 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,433 + SetY = 2,105 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 3,357 + SetY = 3,92 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 3,396 + SetY = 3,91 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 3,431 + SetY = 3,89 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,356 + SetY = 4,77 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,397 + SetY = 4,78 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,435 + SetY = 4,76 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,355 + SetY = 5,62 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,397 + SetY = 5,63 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,434 + SetY = 5,61 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,374 + SetY = 5,137 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,415 + SetY = 5,138 + + Play = 0,throw,80,100 diff --git a/PBS/Animations/Converted/Common/Frozen.txt b/PBS/Animations/Converted/Common/Frozen.txt new file mode 100644 index 000000000..157f962e6 --- /dev/null +++ b/PBS/Animations/Converted/Common/Frozen.txt @@ -0,0 +1,64 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Frozen] +Name = Frozen + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 016-Ice01 + Focus = Target + SetX = 0,328 + SetY = 0,14 + SetVisible = 0,true + SetX = 1,360 + SetY = 1,30 + SetX = 8,384 + SetY = 8,38 + SetX = 9,440 + SetY = 9,102 + SetX = 10,456 + SetY = 10,134 + SetX = 11,432 + SetY = 11,14 + SetX = 12,456 + SetY = 12,46 + SetX = 13,464 + SetY = 13,94 + + Graphic = 016-Ice01 + Focus = Target + SetVisible = 0,true + SetX = 1,384 + SetY = 1,94 + SetOpacity = 6,192 + SetOpacity = 7,255 + SetX = 9,432 + SetY = 9,14 + SetX = 10,408 + SetY = 10,54 + SetX = 11,344 + SetY = 11,78 + SetX = 12,328 + SetY = 12,110 + SetX = 13,352 + SetY = 13,142 + + Graphic = 016-Ice01 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetOpacity = 1,128 + SetOpacity = 2,255 + SetOpacity = 7,192 + SetOpacity = 8,255 + SetOpacity = 10,100 + SetX = 14,408 + SetY = 14,134 + SetOpacity = 14,255 + + Play = 0,Ice5,80,100 diff --git a/PBS/Animations/Converted/Common/Hail.txt b/PBS/Animations/Converted/Common/Hail.txt new file mode 100644 index 000000000..aa5c04c19 --- /dev/null +++ b/PBS/Animations/Converted/Common/Hail.txt @@ -0,0 +1,168 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Hail] +Name = Hail + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,37 + SetY = 0,26 + SetVisible = 0,true + SetX = 1,207 + SetY = 1,56 + SetX = 2,84 + SetY = 2,43 + SetX = 3,171 + SetY = 3,56 + SetX = 4,118 + SetY = 4,97 + SetX = 5,357 + SetY = 5,200 + SetX = 6,10 + SetY = 6,9 + SetX = 7,109 + SetY = 7,105 + SetX = 8,136 + SetY = 8,77 + SetX = 9,69 + SetY = 9,208 + SetX = 10,136 + SetY = 10,107 + + Graphic = weather + Focus = Screen + SetX = 0,164 + SetY = 0,136 + SetVisible = 0,true + SetX = 1,464 + SetY = 1,117 + SetX = 3,441 + SetY = 3,241 + SetX = 5,225 + SetY = 5,69 + SetX = 8,180 + SetY = 8,199 + SetX = 9,163 + SetY = 9,99 + SetX = 11,176 + SetY = 11,119 + + Graphic = weather + Focus = Screen + SetX = 0,302 + SetY = 0,79 + SetVisible = 0,true + SetX = 1,201 + SetY = 1,204 + SetX = 2,228 + SetY = 2,98 + SetX = 3,278 + SetY = 3,164 + SetX = 6,334 + SetY = 6,226 + SetX = 8,444 + SetY = 8,137 + SetX = 9,303 + SetY = 9,240 + SetX = 10,444 + SetY = 10,89 + SetX = 12,474 + SetY = 12,59 + + Graphic = weather + Focus = Screen + SetX = 0,440 + SetY = 0,194 + SetVisible = 0,true + SetX = 1,51 + SetY = 1,161 + SetX = 2,263 + SetY = 2,253 + SetX = 3,436 + SetY = 3,52 + SetX = 4,390 + SetY = 4,210 + SetX = 6,465 + SetY = 6,116 + SetX = 7,454 + SetY = 7,82 + SetX = 8,276 + SetY = 8,136 + SetX = 9,465 + SetY = 9,160 + SetX = 10,285 + SetY = 10,105 + SetX = 11,419 + SetY = 11,272 + SetX = 12,230 + SetY = 12,142 + + Graphic = weather + Focus = Screen + SetX = 0,362 + SetY = 0,252 + SetVisible = 0,true + SetX = 2,78 + SetY = 2,206 + SetX = 4,259 + SetY = 4,87 + SetX = 5,181 + SetY = 5,217 + SetX = 6,298 + SetY = 6,96 + SetX = 7,191 + SetY = 7,222 + SetX = 8,365 + SetY = 8,231 + SetX = 9,337 + SetY = 9,93 + SetX = 10,82 + SetY = 10,240 + SetX = 11,489 + SetY = 11,96 + SetX = 12,198 + SetY = 12,28 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 4,72 + SetY = 4,220 + SetX = 6,161 + SetY = 6,265 + SetX = 7,296 + SetY = 7,172 + SetX = 11,281 + SetY = 11,268 + SetX = 12,41 + SetY = 12,229 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 9,28 + SetY = 9,57 + SetX = 10,294 + SetY = 10,234 + SetX = 11,111 + SetY = 11,246 + SetX = 12,167 + SetY = 12,237 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 11,299 + SetY = 11,47 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 12,449 + SetY = 12,237 diff --git a/PBS/Animations/Converted/Common/HealthDown.txt b/PBS/Animations/Converted/Common/HealthDown.txt new file mode 100644 index 000000000..b88442155 --- /dev/null +++ b/PBS/Animations/Converted/Common/HealthDown.txt @@ -0,0 +1,170 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,HealthDown] +Name = HealthDown + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ! + Focus = Target + SetX = 0,334 + SetY = 0,43 + SetVisible = 0,true + SetOpacity = 0,126 + SetToneRed = 0,255 + SetToneGreen = 0,64 + SetToneBlue = 0,-128 + SetY = 1,63 + SetY = 2,83 + SetY = 3,103 + SetY = 4,123 + SetY = 5,143 + SetOpacity = 5,79 + SetY = 6,163 + SetOpacity = 6,32 + SetX = 7,398 + SetY = 7,169 + SetX = 8,383 + SetY = 8,159 + SetX = 9,409 + SetY = 9,188 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 1,419 + SetY = 1,64 + SetOpacity = 1,126 + SetToneRed = 1,255 + SetToneGreen = 1,64 + SetToneBlue = 1,-128 + SetY = 2,84 + SetY = 3,104 + SetY = 4,124 + SetY = 5,144 + SetOpacity = 5,79 + SetY = 6,164 + SetOpacity = 6,32 + SetX = 7,368 + SetY = 7,187 + SetX = 8,343 + SetY = 8,178 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 1,406 + SetY = 1,87 + SetOpacity = 1,126 + SetToneRed = 1,255 + SetToneGreen = 1,64 + SetToneBlue = 1,-128 + SetY = 2,107 + SetY = 3,127 + SetY = 4,147 + SetY = 5,167 + SetOpacity = 5,79 + SetY = 6,187 + SetOpacity = 6,32 + SetX = 7,383 + SetY = 7,139 + SetOpacity = 7,79 + SetX = 8,409 + SetY = 8,168 + + Graphic = ! + Focus = Target + SetX = 0,419 + SetY = 0,44 + SetVisible = 0,true + SetOpacity = 0,126 + SetToneRed = 0,255 + SetToneGreen = 0,64 + SetToneBlue = 0,-128 + SetX = 1,398 + SetY = 1,49 + SetY = 2,69 + SetY = 3,89 + SetY = 4,109 + SetY = 5,129 + SetY = 6,149 + SetOpacity = 6,79 + SetX = 7,343 + SetY = 7,158 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,368 + SetY = 2,87 + SetOpacity = 2,126 + SetToneRed = 2,255 + SetToneGreen = 2,64 + SetToneBlue = 2,-128 + SetY = 3,107 + SetY = 4,127 + SetY = 5,147 + SetY = 6,167 + SetOpacity = 6,79 + SetX = 7,409 + SetY = 7,148 + SetOpacity = 7,126 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,383 + SetY = 2,39 + SetOpacity = 2,126 + SetToneRed = 2,255 + SetToneGreen = 2,64 + SetToneBlue = 2,-128 + SetY = 3,59 + SetY = 4,79 + SetY = 5,99 + SetY = 6,119 + + Graphic = ! + Focus = Target + SetX = 0,406 + SetY = 0,67 + SetVisible = 0,true + SetOpacity = 0,126 + SetToneRed = 0,255 + SetToneGreen = 0,64 + SetToneBlue = 0,-128 + SetX = 1,368 + SetX = 3,343 + SetY = 3,78 + SetY = 4,98 + SetY = 5,118 + SetY = 6,138 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 3,409 + SetY = 3,68 + SetOpacity = 3,126 + SetToneRed = 3,255 + SetToneGreen = 3,64 + SetToneBlue = 3,-128 + SetY = 4,88 + SetY = 5,108 + SetY = 6,128 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,343 + SetY = 2,58 + SetOpacity = 2,126 + SetToneRed = 2,255 + SetToneGreen = 2,64 + SetToneBlue = 2,-128 + + Play = 0,decrease,100,140 diff --git a/PBS/Animations/Converted/Common/HealthUp.txt b/PBS/Animations/Converted/Common/HealthUp.txt new file mode 100644 index 000000000..05fde7f52 --- /dev/null +++ b/PBS/Animations/Converted/Common/HealthUp.txt @@ -0,0 +1,38 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,HealthUp] +Name = HealthUp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 1,432 + SetY = 1,54 + SetX = 10,344 + SetY = 10,70 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 4,344 + SetY = 4,70 + + Graphic = leech-seed + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + SetX = 10,432 + SetY = 10,54 + SetX = 11,344 + SetY = 11,70 + + Play = 0,Recovery,75,100 + Play = 2,Recovery,80,100 + Play = 5,Recovery,80,100 diff --git a/PBS/Animations/Converted/Common/LeechSeed.txt b/PBS/Animations/Converted/Common/LeechSeed.txt new file mode 100644 index 000000000..b01686e44 --- /dev/null +++ b/PBS/Animations/Converted/Common/LeechSeed.txt @@ -0,0 +1,111 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,LeechSeed] +Name = LeechSeed + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,339 + SetY = 1,98 + SetX = 2,345 + SetY = 2,154 + SetX = 3,294 + SetY = 3,192 + SetX = 4,236 + SetY = 4,217 + SetX = 5,179 + SetY = 5,230 + SetX = 10,108 + SetY = 10,192 + SetX = 16,147 + SetY = 16,173 + SetX = 17,96 + SetY = 17,230 + SetX = 18,160 + SetY = 18,211 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,384 + SetY = 2,98 + SetX = 3,313 + SetY = 3,123 + SetX = 4,256 + SetY = 4,148 + SetX = 5,192 + SetY = 5,179 + SetX = 6,121 + SetY = 6,224 + SetX = 7,134 + SetX = 11,147 + SetY = 11,173 + SetX = 16,96 + SetY = 16,230 + SetX = 17,160 + SetY = 17,211 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,371 + SetY = 3,98 + SetX = 4,345 + SetY = 4,148 + SetX = 5,294 + SetY = 5,192 + SetX = 6,243 + SetY = 6,211 + SetX = 7,185 + SetY = 7,224 + SetX = 8,134 + SetX = 12,96 + SetY = 12,230 + SetX = 16,160 + SetY = 16,211 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,313 + SetY = 4,104 + SetX = 5,249 + SetY = 5,116 + SetX = 6,179 + SetY = 6,148 + SetX = 13,160 + SetY = 13,211 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,384 + SetY = 0,98 + SetVisible = 0,true + SetY = 1,110 + SetX = 2,275 + SetY = 2,98 + SetX = 3,204 + SetY = 3,123 + SetX = 4,147 + SetY = 4,167 + SetX = 5,134 + SetY = 5,224 + SetX = 7,128 + SetY = 7,186 + SetX = 9,134 + SetY = 9,224 + SetX = 16,108 + SetY = 16,192 + SetX = 17,147 + SetY = 17,173 + SetX = 18,96 + SetY = 18,230 + SetX = 19,160 + SetY = 19,211 diff --git a/PBS/Animations/Converted/Common/Paralysis.txt b/PBS/Animations/Converted/Common/Paralysis.txt new file mode 100644 index 000000000..b5ac92c97 --- /dev/null +++ b/PBS/Animations/Converted/Common/Paralysis.txt @@ -0,0 +1,55 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Paralysis] +Name = Paralysis + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = Target + SetVisible = 0,true + SetX = 1,424 + SetY = 1,102 + SetX = 2,456 + SetY = 2,86 + SetX = 3,440 + SetX = 4,336 + SetX = 5,408 + SetY = 5,110 + SetX = 6,280 + SetY = 6,102 + SetX = 7,424 + SetX = 8,456 + SetY = 8,86 + SetX = 9,440 + SetX = 10,336 + SetX = 11,408 + SetY = 11,110 + + Graphic = Struggle + Focus = Target + SetVisible = 0,true + SetX = 1,336 + SetY = 1,94 + SetX = 2,304 + SetY = 2,78 + SetX = 3,328 + SetY = 3,94 + SetX = 4,448 + SetX = 5,312 + SetX = 6,456 + SetY = 6,86 + SetX = 7,336 + SetY = 7,94 + SetX = 8,304 + SetY = 8,78 + SetX = 9,328 + SetY = 9,94 + SetX = 10,448 + SetX = 11,312 + + Play = 0,Paralyze3,80,100 diff --git a/PBS/Animations/Converted/Common/ParentalBond.txt b/PBS/Animations/Converted/Common/ParentalBond.txt new file mode 100644 index 000000000..a15dcdda1 --- /dev/null +++ b/PBS/Animations/Converted/Common/ParentalBond.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,ParentalBond] +Name = ParentalBond + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Tackle_B + Focus = Target + SetVisible = 0,true + SetX = 2,384 + SetY = 2,99 + SetOpacity = 2,150 + SetOpacity = 3,255 + SetOpacity = 8,150 + SetOpacity = 9,100 + + Play = 0,Blow1,80,100 diff --git a/PBS/Animations/Converted/Common/Poison.txt b/PBS/Animations/Converted/Common/Poison.txt new file mode 100644 index 000000000..c2117053b --- /dev/null +++ b/PBS/Animations/Converted/Common/Poison.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Poison] +Name = Poison + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 1,384 + SetY = 1,86 + + Play = 0,Poison,80,100 diff --git a/PBS/Animations/Converted/Common/Rain.txt b/PBS/Animations/Converted/Common/Rain.txt new file mode 100644 index 000000000..8a3955508 --- /dev/null +++ b/PBS/Animations/Converted/Common/Rain.txt @@ -0,0 +1,251 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Rain] +Name = Rain + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,197 + SetY = 0,25 + SetVisible = 0,true + SetX = 1,72 + SetY = 1,49 + SetX = 2,60 + SetY = 2,42 + SetX = 3,43 + SetY = 3,62 + SetY = 4,66 + SetX = 5,480 + SetY = 5,78 + SetX = 6,201 + SetY = 6,65 + SetX = 7,80 + SetY = 7,62 + SetX = 8,265 + SetY = 8,218 + SetX = 9,99 + SetY = 9,55 + + Graphic = weather + Focus = Screen + SetX = 0,275 + SetY = 0,47 + SetVisible = 0,true + SetX = 1,229 + SetY = 1,216 + SetX = 2,193 + SetY = 2,131 + SetX = 3,205 + SetY = 3,111 + SetX = 4,122 + SetY = 4,73 + SetX = 5,361 + SetY = 5,34 + SetX = 6,278 + SetY = 6,211 + SetX = 7,239 + SetY = 7,122 + SetX = 8,398 + SetY = 8,251 + SetX = 9,253 + SetY = 9,148 + + Graphic = weather + Focus = Screen + SetX = 0,355 + SetY = 0,51 + SetVisible = 0,true + SetX = 1,109 + SetY = 1,217 + SetX = 2,265 + SetY = 2,233 + SetX = 3,289 + SetY = 3,227 + SetX = 4,148 + SetY = 4,143 + SetX = 5,404 + SetY = 5,152 + SetX = 6,397 + SetY = 6,257 + SetX = 7,172 + SetY = 7,23 + SetX = 8,270 + SetY = 8,110 + SetX = 9,254 + SetY = 9,274 + + Graphic = weather + Focus = Screen + SetX = 0,450 + SetY = 0,50 + SetVisible = 0,true + SetX = 1,223 + SetY = 1,110 + SetX = 2,228 + SetY = 2,82 + SetX = 3,279 + SetY = 3,63 + SetX = 4,203 + SetY = 4,141 + SetX = 5,274 + SetY = 5,69 + SetX = 6,478 + SetY = 6,170 + SetX = 7,25 + SetY = 7,169 + SetX = 8,491 + SetY = 8,59 + SetX = 9,418 + SetY = 9,243 + + Graphic = weather + Focus = Screen + SetX = 0,83 + SetY = 0,81 + SetVisible = 0,true + SetX = 1,399 + SetY = 1,120 + SetX = 2,350 + SetY = 2,43 + SetX = 3,31 + SetY = 3,176 + SetX = 4,101 + SetY = 4,242 + SetX = 5,54 + SetY = 5,71 + SetX = 6,480 + SetY = 6,53 + SetX = 7,263 + SetY = 7,251 + SetX = 8,492 + SetY = 8,204 + SetX = 9,181 + SetY = 9,238 + + Graphic = weather + Focus = Screen + SetX = 0,231 + SetY = 0,170 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,83 + SetX = 2,399 + SetY = 2,154 + SetX = 3,475 + SetY = 3,231 + SetX = 4,185 + SetY = 4,249 + SetX = 5,155 + SetY = 5,126 + SetX = 6,28 + SetY = 6,111 + SetX = 7,146 + SetY = 7,249 + SetX = 8,91 + SetY = 8,63 + SetX = 9,108 + SetY = 9,245 + + Graphic = weather + Focus = Screen + SetX = 0,352 + SetY = 0,212 + SetVisible = 0,true + SetX = 1,362 + SetY = 1,63 + SetX = 2,488 + SetY = 2,60 + SetX = 3,482 + SetY = 3,85 + SetX = 4,290 + SetY = 4,114 + SetX = 5,210 + SetY = 5,242 + SetX = 6,119 + SetY = 6,59 + SetX = 7,29 + SetY = 7,266 + SetX = 8,35 + SetY = 8,173 + SetX = 9,25 + SetY = 9,205 + + Graphic = weather + Focus = Screen + SetX = 0,467 + SetY = 0,254 + SetVisible = 0,true + SetX = 1,376 + SetY = 1,192 + SetX = 2,434 + SetY = 2,253 + SetX = 3,381 + SetY = 3,12 + SetX = 4,440 + SetY = 4,119 + SetX = 5,55 + SetY = 5,232 + SetX = 6,77 + SetY = 6,215 + SetX = 7,367 + SetY = 7,134 + SetX = 8,187 + SetY = 8,144 + SetX = 9,148 + SetY = 9,25 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 1,482 + SetY = 1,244 + SetX = 2,121 + SetY = 2,249 + SetX = 3,382 + SetY = 3,209 + SetX = 4,378 + SetY = 4,150 + SetX = 5,422 + SetY = 5,252 + SetX = 7,471 + SetY = 7,126 + SetX = 9,247 + SetY = 9,72 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 2,27 + SetY = 2,241 + SetX = 3,88 + SetY = 3,177 + SetX = 4,337 + SetY = 4,243 + SetX = 5,319 + SetY = 5,241 + SetX = 7,363 + SetY = 7,237 + SetX = 9,365 + SetY = 9,42 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 4,409 + SetY = 4,203 + SetX = 7,443 + SetY = 7,194 + SetX = 9,479 + SetY = 9,180 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 9,474 + SetY = 9,41 diff --git a/PBS/Animations/Converted/Common/Sandstorm.txt b/PBS/Animations/Converted/Common/Sandstorm.txt new file mode 100644 index 000000000..b2716c99a --- /dev/null +++ b/PBS/Animations/Converted/Common/Sandstorm.txt @@ -0,0 +1,288 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Sandstorm] +Name = Sandstorm + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,-350 + SetY = 0,-30 + SetVisible = 0,true + SetX = 1,153 + SetY = 1,62 + SetX = 2,-350 + SetY = 2,-30 + SetX = 3,153 + SetY = 3,62 + SetX = 4,139 + SetY = 4,48 + SetX = 5,-350 + SetY = 5,-30 + SetX = 6,153 + SetY = 6,62 + SetX = 7,-350 + SetY = 7,-30 + SetX = 8,153 + SetY = 8,62 + SetX = 9,32 + SetY = 9,252 + + Graphic = weather + Focus = Screen + SetX = 0,31 + SetY = 0,69 + SetVisible = 0,true + SetX = 1,56 + SetY = 1,85 + SetX = 2,31 + SetY = 2,69 + SetX = 3,56 + SetY = 3,85 + SetX = 4,42 + SetY = 4,82 + SetX = 5,31 + SetY = 5,69 + SetX = 6,56 + SetY = 6,85 + SetX = 7,31 + SetY = 7,69 + SetX = 8,56 + SetY = 8,85 + SetX = 9,119 + SetY = 9,175 + + Graphic = weather + Focus = Screen + SetX = 0,156 + SetY = 0,106 + SetVisible = 0,true + SetX = 1,74 + SetY = 1,223 + SetX = 2,156 + SetY = 2,106 + SetX = 3,74 + SetY = 3,223 + SetX = 4,157 + SetY = 4,167 + SetX = 5,156 + SetY = 5,106 + SetX = 6,74 + SetY = 6,223 + SetX = 7,156 + SetY = 7,106 + SetX = 8,74 + SetY = 8,223 + SetX = 9,143 + SetY = 9,267 + + Graphic = weather + Focus = Screen + SetX = 0,165 + SetY = 0,220 + SetVisible = 0,true + SetX = 1,220 + SetY = 1,207 + SetX = 2,165 + SetY = 2,220 + SetX = 3,220 + SetY = 3,207 + SetX = 4,58 + SetY = 4,225 + SetX = 5,165 + SetY = 5,220 + SetX = 6,220 + SetY = 6,207 + SetX = 7,165 + SetY = 7,220 + SetX = 8,220 + SetY = 8,207 + SetX = 9,222 + SetY = 9,197 + + Graphic = weather + Focus = Screen + SetX = 0,267 + SetY = 0,178 + SetVisible = 0,true + SetX = 1,352 + SetY = 1,253 + SetX = 2,267 + SetY = 2,178 + SetX = 3,352 + SetY = 3,253 + SetX = 4,178 + SetY = 4,273 + SetX = 5,267 + SetY = 5,178 + SetX = 6,352 + SetY = 6,253 + SetX = 7,267 + SetY = 7,178 + SetX = 8,352 + SetY = 8,253 + SetX = 9,162 + SetY = 9,82 + + Graphic = weather + Focus = Screen + SetX = 0,309 + SetY = 0,248 + SetVisible = 0,true + SetX = 1,464 + SetY = 1,227 + SetX = 2,309 + SetY = 2,248 + SetX = 3,464 + SetY = 3,227 + SetX = 4,284 + SetY = 4,217 + SetX = 5,309 + SetY = 5,248 + SetX = 6,464 + SetY = 6,227 + SetX = 7,309 + SetY = 7,248 + SetX = 8,464 + SetY = 8,227 + SetX = 9,49 + SetY = 9,61 + + Graphic = weather + Focus = Screen + SetX = 0,388 + SetY = 0,142 + SetVisible = 0,true + SetX = 1,484 + SetY = 1,76 + SetX = 2,388 + SetY = 2,142 + SetX = 3,484 + SetY = 3,76 + SetX = 4,377 + SetY = 4,143 + SetX = 5,388 + SetY = 5,142 + SetX = 6,484 + SetY = 6,76 + SetX = 7,388 + SetY = 7,142 + SetX = 8,484 + SetY = 8,76 + SetX = 9,21 + SetY = 9,158 + + Graphic = weather + Focus = Screen + SetX = 0,448 + SetY = 0,243 + SetVisible = 0,true + SetX = 1,378 + SetY = 1,130 + SetX = 2,448 + SetY = 2,243 + SetX = 3,378 + SetY = 3,130 + SetX = 4,403 + SetY = 4,259 + SetX = 5,448 + SetY = 5,243 + SetX = 6,378 + SetY = 6,130 + SetX = 7,448 + SetY = 7,243 + SetX = 8,378 + SetY = 8,130 + SetX = 9,350 + SetY = 9,240 + + Graphic = weather + Focus = Screen + SetX = 0,35 + SetY = 0,216 + SetVisible = 0,true + SetX = 1,285 + SetY = 1,142 + SetX = 2,35 + SetY = 2,216 + SetX = 3,285 + SetY = 3,142 + SetX = 4,500 + SetY = 4,230 + SetX = 5,35 + SetY = 5,216 + SetX = 6,285 + SetY = 6,142 + SetX = 7,35 + SetY = 7,216 + SetX = 8,285 + SetY = 8,142 + SetX = 9,481 + SetY = 9,206 + + Graphic = weather + Focus = Screen + SetX = 0,276 + SetY = 0,34 + SetVisible = 0,true + SetX = 1,316 + SetY = 1,22 + SetX = 2,276 + SetY = 2,34 + SetX = 3,316 + SetY = 3,22 + SetX = 4,481 + SetY = 4,77 + SetX = 5,276 + SetY = 5,34 + SetX = 6,316 + SetY = 6,22 + SetX = 7,276 + SetY = 7,34 + SetX = 8,316 + SetY = 8,22 + SetX = 9,456 + SetY = 9,64 + + Graphic = weather + Focus = Screen + SetX = 0,487 + SetY = 0,32 + SetVisible = 0,true + SetX = 4,358 + SetY = 4,16 + SetX = 5,487 + SetY = 5,32 + SetX = 9,311 + SetY = 9,55 + + Graphic = weather + Focus = Screen + SetX = 0,492 + SetY = 0,135 + SetVisible = 0,true + SetX = 4,267 + SetY = 4,63 + SetX = 5,492 + SetY = 5,135 + SetX = 9,328 + SetY = 9,146 + + Graphic = weather + Focus = Screen + SetX = 0,387 + SetY = 0,18 + SetVisible = 0,true + SetX = 9,251 + SetY = 9,305 + + Graphic = weather + Focus = Screen + SetX = 0,148 + SetY = 0,9 + SetVisible = 0,true diff --git a/PBS/Animations/Converted/Common/Shadow.txt b/PBS/Animations/Converted/Common/Shadow.txt new file mode 100644 index 000000000..69e8f6a00 --- /dev/null +++ b/PBS/Animations/Converted/Common/Shadow.txt @@ -0,0 +1,70 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Shadow] +Name = Shadow + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,126 + SetX = 4,296 + SetY = 4,86 + SetX = 6,360 + SetY = 6,110 + SetX = 7,416 + SetY = 7,54 + SetX = 8,368 + SetY = 8,22 + SetX = 9,416 + SetY = 9,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 3,296 + SetY = 3,86 + SetX = 4,360 + SetY = 4,110 + SetX = 6,416 + SetY = 6,54 + SetX = 7,368 + SetY = 7,22 + SetX = 8,416 + SetY = 8,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 5,416 + SetY = 5,54 + SetX = 6,368 + SetY = 6,22 + SetX = 7,416 + SetY = 7,118 + + Graphic = leech-seed + Focus = Target + SetX = 0,360 + SetY = 0,110 + SetVisible = 0,true + SetX = 4,440 + SetY = 4,126 + SetX = 6,296 + SetY = 6,86 + SetX = 7,344 + SetY = 7,142 + SetX = 8,416 + SetY = 8,54 + SetX = 9,368 + SetY = 9,22 + SetX = 10,416 + SetY = 10,118 + + Play = 0,Saint6,75,100 diff --git a/PBS/Animations/Converted/Common/ShadowSky.txt b/PBS/Animations/Converted/Common/ShadowSky.txt new file mode 100644 index 000000000..268835620 --- /dev/null +++ b/PBS/Animations/Converted/Common/ShadowSky.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,ShadowSky] +Name = ShadowSky + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,258 + SetY = 0,132 + SetZoomX = 0,327 + SetZoomY = 0,242 + SetVisible = 0,true + SetOpacity = 0,128 + SetOpacity = 1,192 + SetOpacity = 2,249 + SetOpacity = 8,192 + SetOpacity = 9,128 diff --git a/PBS/Animations/Converted/Common/Shiny.txt b/PBS/Animations/Converted/Common/Shiny.txt new file mode 100644 index 000000000..67a6dcded --- /dev/null +++ b/PBS/Animations/Converted/Common/Shiny.txt @@ -0,0 +1,70 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Shiny] +Name = Shiny + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,126 + SetX = 4,327 + SetY = 4,78 + SetX = 6,366 + SetY = 6,129 + SetX = 7,416 + SetY = 7,54 + SetX = 8,368 + SetY = 8,67 + SetX = 9,416 + SetY = 9,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 3,327 + SetY = 3,78 + SetX = 4,366 + SetY = 4,129 + SetX = 6,416 + SetY = 6,54 + SetX = 7,368 + SetY = 7,67 + SetX = 8,416 + SetY = 8,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 5,416 + SetY = 5,54 + SetX = 6,368 + SetY = 6,67 + SetX = 7,416 + SetY = 7,118 + + Graphic = leech-seed + Focus = Target + SetX = 0,360 + SetY = 0,110 + SetVisible = 0,true + SetX = 4,440 + SetY = 4,126 + SetX = 6,327 + SetY = 6,78 + SetX = 7,366 + SetY = 7,129 + SetX = 8,416 + SetY = 8,54 + SetX = 9,368 + SetY = 9,67 + SetX = 10,416 + SetY = 10,118 + + Play = 0,Shiny sparkle,100,100 diff --git a/PBS/Animations/Converted/Common/Sleep.txt b/PBS/Animations/Converted/Common/Sleep.txt new file mode 100644 index 000000000..6366e3274 --- /dev/null +++ b/PBS/Animations/Converted/Common/Sleep.txt @@ -0,0 +1,70 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Sleep] +Name = Sleep + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 028-State01 + Focus = Target + SetVisible = 0,true + SetX = 3,424 + SetY = 3,54 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,376 + SetY = 4,78 + SetX = 5,352 + SetY = 5,94 + SetX = 6,366 + SetY = 6,48 + SetX = 7,361 + SetY = 7,34 + SetX = 8,432 + SetY = 8,70 + SetX = 9,441 + SetY = 9,54 + SetX = 10,452 + SetY = 10,38 + SetX = 11,463 + SetY = 11,20 + + Graphic = 028-State01 + Focus = Target + SetVisible = 0,true + SetX = 5,370 + SetY = 5,64 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetX = 7,424 + SetY = 7,86 + + Graphic = 028-State01 + Focus = Target + SetVisible = 0,true + SetX = 1,408 + SetY = 1,78 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,416 + SetY = 2,67 + SetX = 4,431 + SetY = 4,41 + SetX = 5,436 + SetY = 5,29 + SetX = 6,343 + SetY = 6,79 + SetX = 7,334 + SetY = 7,66 + SetX = 8,325 + SetY = 8,53 + SetX = 9,317 + SetY = 9,39 + SetX = 10,309 + SetY = 10,25 + + Play = 0,Sleep,80,100 diff --git a/PBS/Animations/Converted/Common/StatDown.txt b/PBS/Animations/Converted/Common/StatDown.txt new file mode 100644 index 000000000..74666f4d1 --- /dev/null +++ b/PBS/Animations/Converted/Common/StatDown.txt @@ -0,0 +1,143 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,StatDown] +Name = StatDown + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ! + Focus = Target + SetX = 0,334 + SetY = 0,43 + SetVisible = 0,true + SetOpacity = 0,126 + SetY = 1,63 + SetY = 2,83 + SetY = 3,103 + SetY = 4,123 + SetY = 5,143 + SetOpacity = 5,79 + SetY = 6,163 + SetOpacity = 6,32 + SetX = 7,398 + SetY = 7,169 + SetX = 8,383 + SetY = 8,159 + SetX = 9,409 + SetY = 9,188 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 1,419 + SetY = 1,64 + SetOpacity = 1,126 + SetY = 2,84 + SetY = 3,104 + SetY = 4,124 + SetY = 5,144 + SetOpacity = 5,79 + SetY = 6,164 + SetOpacity = 6,32 + SetX = 7,368 + SetY = 7,187 + SetX = 8,343 + SetY = 8,178 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 1,406 + SetY = 1,87 + SetOpacity = 1,126 + SetY = 2,107 + SetY = 3,127 + SetY = 4,147 + SetY = 5,167 + SetOpacity = 5,79 + SetY = 6,187 + SetOpacity = 6,32 + SetX = 7,383 + SetY = 7,139 + SetOpacity = 7,79 + SetX = 8,409 + SetY = 8,168 + + Graphic = ! + Focus = Target + SetX = 0,419 + SetY = 0,44 + SetVisible = 0,true + SetOpacity = 0,126 + SetX = 1,398 + SetY = 1,49 + SetY = 2,69 + SetY = 3,89 + SetY = 4,109 + SetY = 5,129 + SetY = 6,149 + SetOpacity = 6,79 + SetX = 7,343 + SetY = 7,158 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,368 + SetY = 2,87 + SetOpacity = 2,126 + SetY = 3,107 + SetY = 4,127 + SetY = 5,147 + SetY = 6,167 + SetOpacity = 6,79 + SetX = 7,409 + SetY = 7,148 + SetOpacity = 7,126 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,383 + SetY = 2,39 + SetOpacity = 2,126 + SetY = 3,59 + SetY = 4,79 + SetY = 5,99 + SetY = 6,119 + + Graphic = ! + Focus = Target + SetX = 0,406 + SetY = 0,67 + SetVisible = 0,true + SetOpacity = 0,126 + SetX = 1,368 + SetX = 3,343 + SetY = 3,78 + SetY = 4,98 + SetY = 5,118 + SetY = 6,138 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 3,409 + SetY = 3,68 + SetOpacity = 3,126 + SetY = 4,88 + SetY = 5,108 + SetY = 6,128 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,343 + SetY = 2,58 + SetOpacity = 2,126 + + Play = 0,decrease,100,100 diff --git a/PBS/Animations/Converted/Common/StatUp.txt b/PBS/Animations/Converted/Common/StatUp.txt new file mode 100644 index 000000000..dbbb93721 --- /dev/null +++ b/PBS/Animations/Converted/Common/StatUp.txt @@ -0,0 +1,111 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,StatUp] +Name = StatUp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ! + Focus = Target + SetX = 0,343 + SetY = 0,234 + SetVisible = 0,true + SetOpacity = 0,126 + SetY = 1,210 + SetY = 2,178 + SetY = 3,146 + SetY = 4,114 + SetY = 5,82 + SetY = 6,62 + SetY = 7,42 + SetY = 8,22 + SetOpacity = 8,63 + SetY = 9,2 + SetOpacity = 9,0 + + Graphic = ! + Focus = Target + SetX = 0,391 + SetY = 0,202 + SetVisible = 0,true + SetOpacity = 0,126 + SetY = 1,170 + SetY = 2,138 + SetY = 3,98 + SetY = 4,66 + SetY = 5,34 + SetY = 6,14 + SetY = 7,-6 + SetY = 8,-26 + SetOpacity = 8,63 + SetY = 9,-46 + SetOpacity = 9,0 + + Graphic = ! + Focus = Target + SetX = 0,439 + SetY = 0,234 + SetVisible = 0,true + SetOpacity = 0,126 + SetY = 1,210 + SetX = 2,447 + SetY = 2,178 + SetX = 3,439 + SetY = 3,146 + SetY = 4,114 + SetY = 5,82 + SetY = 6,62 + SetY = 7,42 + SetY = 8,22 + SetOpacity = 8,63 + SetY = 9,2 + SetOpacity = 9,0 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 2,375 + SetY = 2,234 + SetOpacity = 2,126 + SetY = 3,202 + SetY = 4,170 + SetY = 5,138 + SetY = 6,118 + SetY = 7,98 + SetY = 8,78 + SetOpacity = 8,63 + SetY = 9,58 + SetOpacity = 9,0 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 3,423 + SetY = 3,234 + SetOpacity = 3,126 + SetY = 4,202 + SetY = 5,170 + SetY = 6,150 + SetY = 7,130 + SetY = 8,110 + SetOpacity = 8,63 + SetY = 9,90 + SetOpacity = 9,0 + + Graphic = ! + Focus = Target + SetVisible = 0,true + SetX = 5,359 + SetY = 5,234 + SetOpacity = 5,126 + SetY = 6,194 + SetY = 8,174 + SetOpacity = 8,63 + SetY = 9,154 + SetOpacity = 9,0 + + Play = 0,increase,100,100 diff --git a/PBS/Animations/Converted/Common/Sun.txt b/PBS/Animations/Converted/Common/Sun.txt new file mode 100644 index 000000000..826992724 --- /dev/null +++ b/PBS/Animations/Converted/Common/Sun.txt @@ -0,0 +1,41 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Sun] +Name = Sun + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,64 + SetY = 0,64 + SetVisible = 0,true + SetOpacity = 0,64 + SetX = 1,72 + SetY = 1,72 + SetOpacity = 1,128 + SetX = 2,80 + SetY = 2,80 + SetOpacity = 2,192 + SetX = 3,88 + SetY = 3,88 + SetOpacity = 3,224 + SetX = 4,94 + SetY = 4,94 + SetOpacity = 4,255 + SetX = 12,88 + SetY = 12,88 + SetOpacity = 12,224 + SetX = 13,80 + SetY = 13,80 + SetOpacity = 13,192 + SetX = 14,72 + SetY = 14,72 + SetOpacity = 14,128 + SetX = 15,64 + SetY = 15,64 + SetOpacity = 15,64 diff --git a/PBS/Animations/Converted/Common/SuperShiny.txt b/PBS/Animations/Converted/Common/SuperShiny.txt new file mode 100644 index 000000000..a1d1e3820 --- /dev/null +++ b/PBS/Animations/Converted/Common/SuperShiny.txt @@ -0,0 +1,70 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,SuperShiny] +Name = SuperShiny + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,126 + SetX = 4,327 + SetY = 4,78 + SetX = 6,366 + SetY = 6,129 + SetX = 7,416 + SetY = 7,54 + SetX = 8,368 + SetY = 8,67 + SetX = 9,416 + SetY = 9,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 3,327 + SetY = 3,78 + SetX = 4,366 + SetY = 4,129 + SetX = 6,416 + SetY = 6,54 + SetX = 7,368 + SetY = 7,67 + SetX = 8,416 + SetY = 8,118 + + Graphic = leech-seed + Focus = Target + SetVisible = 0,true + SetX = 5,416 + SetY = 5,54 + SetX = 6,368 + SetY = 6,67 + SetX = 7,416 + SetY = 7,118 + + Graphic = leech-seed + Focus = Target + SetX = 0,360 + SetY = 0,110 + SetVisible = 0,true + SetX = 4,440 + SetY = 4,126 + SetX = 6,327 + SetY = 6,78 + SetX = 7,366 + SetY = 7,129 + SetX = 8,416 + SetY = 8,54 + SetX = 9,368 + SetY = 9,67 + SetX = 10,416 + SetY = 10,118 + + Play = 0,Shiny sparkle,100,100 diff --git a/PBS/Animations/Converted/Common/Toxic.txt b/PBS/Animations/Converted/Common/Toxic.txt new file mode 100644 index 000000000..2118dde8e --- /dev/null +++ b/PBS/Animations/Converted/Common/Toxic.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Toxic] +Name = Toxic + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 1,384 + SetY = 1,86 + + Play = 0,Poison,80,80 diff --git a/PBS/Animations/Converted/Common/Wrap.txt b/PBS/Animations/Converted/Common/Wrap.txt new file mode 100644 index 000000000..3859df54b --- /dev/null +++ b/PBS/Animations/Converted/Common/Wrap.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Common,Wrap] +Name = Wrap + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = Target + SetX = 0,440 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,94 + SetX = 2,488 + SetY = 2,102 + SetX = 3,464 + SetY = 3,94 + SetX = 4,432 + SetX = 5,464 + SetX = 6,496 + SetY = 6,102 + SetX = 7,480 + + Graphic = Struggle + Focus = Target + SetX = 0,320 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,94 + SetX = 2,240 + SetY = 2,102 + SetX = 3,264 + SetY = 3,94 + SetX = 4,296 + SetX = 5,256 + SetX = 6,216 + SetX = 7,264 + + Play = 0,Slash10,80,100 + Play = 3,Slash10,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/ABSORB.txt b/PBS/Animations/Converted/Move/ABSORB.txt new file mode 100644 index 000000000..a043a9215 --- /dev/null +++ b/PBS/Animations/Converted/Move/ABSORB.txt @@ -0,0 +1,188 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ABSORB] +Name = ABSORB + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,358 + SetY = 0,91 + SetVisible = 0,true + SetX = 1,300 + SetY = 1,98 + SetX = 2,198 + SetY = 2,129 + SetX = 3,134 + SetY = 3,179 + SetX = 4,108 + SetY = 4,192 + SetX = 5,166 + SetY = 5,224 + SetX = 6,179 + SetY = 6,198 + SetX = 7,128 + SetY = 7,211 + SetX = 8,153 + SetY = 8,192 + SetX = 9,89 + SetY = 9,186 + SetX = 12,147 + SetY = 12,148 + SetFlip = 13,true + SetX = 13,115 + SetY = 13,230 + SetFlip = 14,false + SetX = 14,102 + SetY = 14,142 + SetFlip = 15,true + SetX = 15,96 + SetY = 15,192 + SetFlip = 16,false + SetX = 16,160 + SetY = 16,173 + SetX = 17,128 + SetY = 17,217 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,396 + SetY = 1,104 + SetX = 2,364 + SetY = 2,148 + SetX = 3,281 + SetY = 3,192 + SetX = 4,217 + SetY = 4,211 + SetX = 5,140 + SetY = 5,198 + SetX = 6,108 + SetY = 6,186 + SetX = 7,172 + SetY = 7,224 + SetX = 8,89 + SetY = 8,186 + SetX = 9,160 + SetY = 9,211 + SetX = 11,147 + SetY = 11,148 + SetX = 12,160 + SetY = 12,211 + SetX = 13,102 + SetY = 13,142 + SetFlip = 14,true + SetX = 14,96 + SetY = 14,192 + SetFlip = 15,false + SetX = 15,160 + SetY = 15,173 + SetX = 16,128 + SetY = 16,217 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,364 + SetY = 1,85 + SetX = 2,300 + SetY = 2,116 + SetX = 3,243 + SetY = 3,148 + SetX = 4,172 + SetY = 4,179 + SetX = 5,256 + SetY = 5,186 + SetX = 6,236 + SetY = 6,198 + SetX = 7,134 + SetY = 7,173 + SetX = 9,147 + SetY = 9,148 + SetX = 11,160 + SetY = 11,211 + SetFlip = 12,true + SetX = 12,121 + SetY = 12,230 + SetX = 13,96 + SetY = 13,192 + SetFlip = 14,false + SetX = 14,160 + SetY = 14,173 + SetX = 15,128 + SetY = 15,217 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,384 + SetY = 2,91 + SetX = 3,345 + SetY = 3,129 + SetX = 4,313 + SetY = 4,154 + SetX = 5,153 + SetY = 5,167 + SetX = 6,192 + SetY = 6,142 + SetX = 7,230 + SetY = 7,154 + SetFlip = 10,true + SetX = 10,121 + SetY = 10,230 + SetFlip = 12,false + SetX = 12,102 + SetY = 12,142 + SetX = 13,160 + SetY = 13,173 + SetX = 14,128 + SetY = 14,217 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,345 + SetY = 2,85 + SetX = 3,307 + SetY = 3,98 + SetX = 4,230 + SetY = 4,116 + SetX = 5,332 + SetY = 5,161 + SetX = 6,307 + SetY = 6,129 + SetX = 11,102 + SetY = 11,142 + SetFlip = 12,true + SetX = 12,96 + SetY = 12,192 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,390 + SetY = 3,110 + SetX = 4,371 + SetY = 4,135 + SetX = 5,275 + SetY = 5,110 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,345 + SetY = 4,91 + SetX = 5,364 + SetY = 5,98 + + Play = 0,Absorb2,80,100 + Play = 0,Absorb2,80,100 + Play = 2,Absorb2,80,100 + Play = 5,Absorb2,80,100 + Play = 7,Absorb2,80,100 + Play = 8,Saint7,80,100 diff --git a/PBS/Animations/Converted/Move/ACID.txt b/PBS/Animations/Converted/Move/ACID.txt new file mode 100644 index 000000000..eb44a3ac3 --- /dev/null +++ b/PBS/Animations/Converted/Move/ACID.txt @@ -0,0 +1,53 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ACID] +Name = ACID + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison2 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,147 + SetY = 1,211 + SetX = 2,172 + SetY = 2,179 + SetX = 3,217 + SetY = 3,142 + SetX = 4,275 + SetY = 4,104 + SetX = 5,326 + SetY = 5,91 + SetY = 6,85 + + Graphic = poison2 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,153 + SetY = 3,211 + SetX = 4,204 + SetY = 4,148 + SetX = 5,268 + SetY = 5,91 + + Graphic = poison2 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,161 + SetX = 2,217 + SetY = 2,129 + SetX = 3,300 + SetY = 3,104 + SetX = 4,358 + SetY = 4,110 + SetOpacity = 12,100 + + Play = 0,throw,80,100 + Play = 3,Poison,80,100 diff --git a/PBS/Animations/Converted/Move/ACIDARMOR.txt b/PBS/Animations/Converted/Move/ACIDARMOR.txt new file mode 100644 index 000000000..b2cb5a71d --- /dev/null +++ b/PBS/Animations/Converted/Move/ACIDARMOR.txt @@ -0,0 +1,24 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ACIDARMOR] +Name = ACIDARMOR + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + SetX = 4,400 + SetY = 4,86 + SetX = 5,392 + SetY = 6,78 + + Play = 0,throw,80,100 + Play = 0,Sound2,80,100 + Play = 0,Pollen,80,100 diff --git a/PBS/Animations/Converted/Move/ACIDSPRAY.txt b/PBS/Animations/Converted/Move/ACIDSPRAY.txt new file mode 100644 index 000000000..fa4fb5cab --- /dev/null +++ b/PBS/Animations/Converted/Move/ACIDSPRAY.txt @@ -0,0 +1,133 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ACIDSPRAY] +Name = ACIDSPRAY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,341 + SetY = 0,8 + SetZoomX = 0,85 + SetZoomY = 0,85 + SetVisible = 0,true + SetY = 1,17 + SetX = 3,335 + SetY = 3,48 + SetX = 4,340 + SetY = 4,76 + SetX = 5,339 + SetY = 5,93 + SetX = 6,365 + SetY = 6,104 + SetAngle = 6,180 + SetX = 7,330 + SetY = 7,116 + SetX = 8,413 + SetY = 8,151 + SetZoomX = 8,79 + SetZoomY = 8,79 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,366 + SetY = 1,8 + SetZoomX = 1,85 + SetZoomY = 1,85 + SetX = 3,354 + SetY = 3,30 + SetX = 4,355 + SetY = 4,55 + SetY = 5,81 + SetX = 6,338 + SetY = 6,92 + SetAngle = 6,180 + SetX = 7,357 + SetY = 7,125 + SetX = 8,390 + SetY = 8,128 + SetZoomX = 8,79 + SetZoomY = 8,79 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,394 + SetY = 1,17 + SetZoomX = 1,85 + SetZoomY = 1,85 + SetX = 3,384 + SetY = 3,40 + SetX = 4,376 + SetY = 4,63 + SetX = 6,382 + SetY = 6,91 + SetAngle = 6,180 + SetX = 7,420 + SetY = 7,129 + SetX = 8,364 + SetY = 8,134 + SetZoomX = 8,79 + SetZoomY = 8,79 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,418 + SetY = 2,9 + SetZoomX = 2,85 + SetZoomY = 2,85 + SetX = 3,408 + SetY = 3,23 + SetX = 4,402 + SetY = 4,71 + SetX = 5,401 + SetY = 5,89 + SetX = 6,407 + SetY = 6,102 + SetAngle = 6,180 + SetX = 7,380 + SetY = 7,127 + SetX = 8,341 + SetY = 8,129 + SetZoomX = 8,79 + SetZoomY = 8,79 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,441 + SetY = 2,12 + SetZoomX = 2,85 + SetZoomY = 2,85 + SetX = 3,438 + SetY = 3,37 + SetX = 4,431 + SetY = 4,65 + SetX = 5,430 + SetY = 5,83 + SetY = 6,101 + SetAngle = 6,180 + SetX = 7,399 + SetY = 7,116 + SetX = 8,306 + SetY = 8,125 + SetZoomX = 8,79 + SetZoomY = 8,79 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,361 + SetY = 5,86 + SetZoomX = 5,85 + SetZoomY = 5,85 + SetAngle = 5,180 + + Play = 0,Substitute,80,100 diff --git a/PBS/Animations/Converted/Move/ACROBATICS.txt b/PBS/Animations/Converted/Move/ACROBATICS.txt new file mode 100644 index 000000000..9edff535c --- /dev/null +++ b/PBS/Animations/Converted/Move/ACROBATICS.txt @@ -0,0 +1,44 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ACROBATICS] +Name = ACROBATICS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 2,376 + SetY = 2,133 + SetZoomX = 2,41 + SetZoomY = 2,41 + SetZoomX = 3,39 + SetZoomY = 3,39 + SetZoomX = 5,62 + SetZoomY = 5,62 + SetX = 6,360 + SetY = 6,131 + SetZoomX = 6,84 + SetZoomY = 6,84 + + Graphic = finger.spoon + Focus = Target + SetX = 0,392 + SetY = 0,86 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetZoomX = 1,47 + SetZoomY = 1,47 + SetZoomX = 3,70 + SetZoomY = 3,70 + SetZoomX = 4,81 + SetZoomY = 4,81 + SetZoomX = 5,86 + SetZoomY = 5,86 + + Play = 0,Take Down,100,112 diff --git a/PBS/Animations/Converted/Move/ACUPRESSURE.txt b/PBS/Animations/Converted/Move/ACUPRESSURE.txt new file mode 100644 index 000000000..7fe639f06 --- /dev/null +++ b/PBS/Animations/Converted/Move/ACUPRESSURE.txt @@ -0,0 +1,97 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ACUPRESSURE] +Name = ACUPRESSURE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = mixed status + Focus = Target + SetX = 0,399 + SetY = 0,93 + SetVisible = 0,true + SetX = 1,397 + SetY = 1,94 + SetX = 2,395 + SetX = 3,394 + SetY = 3,96 + SetY = 4,93 + SetX = 5,397 + SetY = 5,94 + SetX = 6,393 + SetY = 6,92 + SetX = 7,395 + SetY = 7,95 + SetX = 8,393 + SetY = 8,92 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 4,385 + SetY = 4,84 + SetX = 5,389 + SetY = 5,88 + SetX = 6,397 + SetY = 7,90 + SetX = 8,395 + SetY = 8,80 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 5,367 + SetY = 5,127 + SetX = 6,369 + SetY = 6,124 + SetX = 7,367 + SetY = 7,125 + SetX = 8,446 + SetY = 8,116 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 6,427 + SetY = 6,92 + SetX = 7,449 + SetY = 7,119 + SetX = 8,366 + SetY = 8,121 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 7,428 + SetY = 7,91 + SetY = 8,90 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 8,430 + SetY = 8,92 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 8,445 + SetY = 8,115 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 8,368 + SetY = 8,121 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 8,395 + SetY = 8,80 + + Play = 0,Acupressure,100,100 diff --git a/PBS/Animations/Converted/Move/AERIALACE.txt b/PBS/Animations/Converted/Move/AERIALACE.txt new file mode 100644 index 000000000..17cb1aa7b --- /dev/null +++ b/PBS/Animations/Converted/Move/AERIALACE.txt @@ -0,0 +1,372 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AERIALACE] +Name = AERIALACE + + SetX = 0,128 + SetY = 0,224 + SetOpacity = 1,170 + SetOpacity = 2,85 + SetOpacity = 3,0 + SetOpacity = 6,255 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Aerial Ace + Focus = Target + SetX = 0,468 + SetY = 0,46 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,76 + SetY = 1,230 + SetOpacity = 1,255 + SetOpacity = 2,170 + SetOpacity = 3,85 + SetX = 4,331 + SetY = 4,173 + SetOpacity = 4,255 + SetToneRed = 4,214 + SetToneGreen = 4,100 + SetToneBlue = 4,100 + SetX = 5,351 + SetY = 5,151 + SetToneRed = 5,0 + SetToneGreen = 5,0 + SetToneBlue = 5,0 + SetX = 6,390 + SetY = 6,118 + SetX = 7,415 + SetY = 7,95 + SetX = 8,452 + SetY = 8,62 + SetX = 9,476 + SetY = 9,36 + SetOpacity = 9,128 + SetX = 10,287 + SetY = 10,32 + SetOpacity = 10,255 + SetX = 11,268 + SetY = 11,6 + SetOpacity = 11,128 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 1,442 + SetY = 1,71 + SetToneRed = 1,-37 + SetToneGreen = 1,-37 + SetToneBlue = 1,-37 + SetX = 2,59 + SetY = 2,258 + SetToneRed = 2,0 + SetToneGreen = 2,0 + SetToneBlue = 2,0 + SetOpacity = 3,170 + SetOpacity = 4,85 + SetX = 6,381 + SetY = 6,118 + SetOpacity = 6,128 + SetX = 7,391 + SetY = 7,82 + SetOpacity = 7,255 + SetX = 8,327 + SetY = 8,92 + SetX = 9,292 + SetY = 9,66 + SetX = 10,309 + SetY = 10,3 + SetOpacity = 10,128 + SetX = 11,490 + SetY = 11,6 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 2,411 + SetY = 2,98 + SetToneRed = 2,-74 + SetToneGreen = 2,-74 + SetToneBlue = 2,-74 + SetX = 3,100 + SetY = 3,272 + SetToneRed = 3,0 + SetToneGreen = 3,0 + SetToneBlue = 3,0 + SetX = 4,163 + SetY = 4,259 + SetX = 5,140 + SetY = 5,230 + SetX = 6,393 + SetY = 6,110 + SetOpacity = 6,128 + SetX = 7,368 + SetY = 7,98 + SetOpacity = 7,255 + SetX = 8,350 + SetY = 8,57 + SetX = 9,307 + SetY = 9,23 + SetX = 10,353 + SetY = 10,21 + SetX = 11,345 + SetY = 11,-3 + SetOpacity = 11,128 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 3,371 + SetY = 3,137 + SetX = 4,100 + SetY = 4,272 + SetOpacity = 4,170 + SetX = 5,163 + SetY = 5,259 + SetX = 6,140 + SetY = 6,230 + SetX = 7,419 + SetY = 7,74 + SetOpacity = 7,255 + SetX = 8,392 + SetY = 8,57 + SetX = 9,356 + SetY = 9,38 + SetX = 10,477 + SetY = 10,24 + SetX = 11,411 + SetY = 11,7 + SetOpacity = 11,128 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 5,100 + SetY = 5,272 + SetOpacity = 5,85 + SetX = 6,163 + SetY = 6,259 + SetX = 7,139 + SetY = 7,230 + SetX = 8,479 + SetY = 8,89 + SetOpacity = 8,255 + SetX = 9,507 + SetY = 9,97 + SetOpacity = 9,128 + SetX = 10,410 + SetY = 10,37 + SetOpacity = 10,255 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 6,410 + SetY = 6,109 + SetOpacity = 6,128 + SetX = 7,440 + SetY = 7,98 + SetOpacity = 7,255 + SetX = 8,479 + SetY = 8,145 + SetX = 9,502 + SetY = 9,158 + SetOpacity = 9,128 + SetX = 10,510 + SetY = 10,59 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 6,408 + SetY = 6,125 + SetOpacity = 6,128 + SetX = 7,439 + SetY = 7,127 + SetOpacity = 7,255 + SetX = 8,443 + SetY = 8,57 + SetX = 9,453 + SetY = 9,38 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 6,363 + SetY = 6,112 + SetOpacity = 6,128 + SetX = 7,405 + SetY = 7,77 + SetOpacity = 7,255 + SetX = 8,420 + SetY = 8,66 + SetX = 9,411 + SetY = 9,32 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 7,432 + SetY = 7,86 + SetX = 8,455 + SetY = 8,78 + SetX = 9,487 + SetY = 9,62 + + Play = 0,Ace,80,100 +#------------------------------- +[OppMove,AERIALACE] +Name = AERIALACE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + SetOpacity = 1,170 + SetOpacity = 2,85 + SetOpacity = 3,0 + SetOpacity = 5,255 + + Graphic = Aerial Ace + Focus = User + SetX = 0,229 + SetY = 0,168 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,209 + SetY = 1,185 + SetOpacity = 1,255 + SetX = 2,176 + SetY = 2,216 + SetX = 3,144 + SetY = 3,248 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 1,333 + SetY = 1,114 + SetOpacity = 2,170 + SetOpacity = 3,85 + SetX = 4,433 + SetY = 4,108 + SetOpacity = 4,255 + SetOpacity = 5,170 + SetOpacity = 6,85 + + Graphic = Aerial Ace + Focus = User + SetVisible = 0,true + SetX = 2,368 + SetY = 2,140 + SetX = 3,418 + SetY = 3,134 + SetOpacity = 4,170 + SetX = 5,182 + SetY = 5,251 + SetOpacity = 5,128 + SetX = 6,129 + SetY = 6,192 + SetOpacity = 6,255 + SetX = 7,112 + SetY = 7,172 + SetX = 8,87 + SetY = 8,169 + SetX = 9,68 + SetY = 9,160 + SetX = 10,53 + SetY = 10,151 + SetOpacity = 10,170 + SetX = 11,31 + SetY = 11,139 + SetOpacity = 11,85 + + Graphic = Aerial Ace + Focus = Target + SetVisible = 0,true + SetX = 3,368 + SetY = 3,140 + SetOpacity = 3,170 + SetOpacity = 4,85 + SetX = 5,418 + SetY = 5,134 + + Graphic = Aerial Ace + Focus = User + SetVisible = 0,true + SetX = 5,158 + SetY = 5,237 + SetOpacity = 5,128 + SetX = 6,92 + SetY = 6,243 + SetOpacity = 6,255 + SetX = 7,79 + SetY = 7,240 + SetX = 8,64 + SetY = 8,252 + SetX = 9,35 + SetY = 9,256 + SetX = 10,17 + SetY = 10,260 + SetOpacity = 10,170 + + Graphic = Aerial Ace + Focus = User + SetVisible = 0,true + SetX = 5,125 + SetY = 5,227 + SetOpacity = 5,128 + SetX = 6,171 + SetY = 6,189 + SetOpacity = 6,255 + SetX = 7,195 + SetY = 7,167 + SetX = 8,204 + SetY = 8,153 + SetX = 9,228 + SetY = 9,129 + SetOpacity = 9,170 + SetX = 10,239 + SetY = 10,122 + SetOpacity = 10,85 + + Graphic = Aerial Ace + Focus = User + SetVisible = 0,true + SetX = 5,101 + SetY = 5,250 + SetOpacity = 5,128 + SetX = 6,197 + SetY = 6,244 + SetOpacity = 6,255 + SetX = 7,196 + SetY = 7,239 + SetX = 8,228 + SetY = 8,232 + SetX = 9,264 + SetY = 9,242 + SetX = 10,283 + SetY = 10,244 + SetOpacity = 10,170 + SetX = 11,298 + SetY = 11,246 + SetOpacity = 11,85 + + Graphic = Aerial Ace + Focus = User + SetVisible = 0,true + SetX = 5,147 + SetY = 5,274 + SetOpacity = 5,128 + SetX = 6,173 + SetY = 6,277 + SetOpacity = 6,255 + SetX = 7,189 + SetY = 7,274 + SetX = 8,211 + SetY = 8,284 + + Play = 0,Ace,80,100 diff --git a/PBS/Animations/Converted/Move/AGILITY.txt b/PBS/Animations/Converted/Move/AGILITY.txt new file mode 100644 index 000000000..bae4af56a --- /dev/null +++ b/PBS/Animations/Converted/Move/AGILITY.txt @@ -0,0 +1,87 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AGILITY] +Name = AGILITY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ! + Focus = User + SetX = 0,30 + SetY = 0,188 + SetAngle = 0,90 + SetVisible = 0,true + SetX = 1,55 + SetX = 2,80 + SetX = 3,110 + SetX = 4,135 + SetX = 5,160 + SetX = 6,185 + SetX = 7,210 + SetX = 8,235 + SetX = 9,260 + + Graphic = ! + Focus = User + SetX = 0,75 + SetY = 0,131 + SetAngle = 0,90 + SetVisible = 0,true + SetX = 1,105 + SetX = 2,140 + SetX = 3,175 + SetX = 4,210 + SetX = 5,245 + SetX = 6,280 + SetX = 7,315 + + Graphic = ! + Focus = User + SetVisible = 0,true + SetX = 1,40 + SetY = 1,273 + SetAngle = 1,90 + SetX = 2,65 + SetX = 3,90 + SetX = 4,115 + SetX = 5,140 + SetX = 6,165 + SetX = 7,190 + SetX = 8,215 + SetX = 9,240 + + Graphic = ! + Focus = User + SetVisible = 0,true + SetX = 2,30 + SetY = 2,144 + SetAngle = 2,90 + SetX = 3,65 + SetX = 4,100 + SetX = 5,135 + SetX = 6,170 + SetX = 7,205 + SetX = 8,240 + SetX = 9,275 + + Graphic = ! + Focus = User + SetX = 0,52 + SetY = 0,237 + SetAngle = 0,90 + SetVisible = 0,true + SetX = 1,82 + SetX = 2,112 + SetX = 3,142 + SetX = 4,172 + SetX = 5,202 + SetX = 6,232 + SetX = 7,262 + SetX = 8,292 + SetX = 9,322 + + Play = 0,Psych Up,100,82 diff --git a/PBS/Animations/Converted/Move/ALLYSWITCH.txt b/PBS/Animations/Converted/Move/ALLYSWITCH.txt new file mode 100644 index 000000000..032ca80f7 --- /dev/null +++ b/PBS/Animations/Converted/Move/ALLYSWITCH.txt @@ -0,0 +1,52 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ALLYSWITCH] +Name = ALLYSWITCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = User + SetX = 0,137 + SetY = 0,222 + SetVisible = 0,true + SetX = 1,139 + SetY = 1,224 + SetX = 2,137 + SetY = 2,222 + SetZoomX = 3,110 + SetZoomY = 3,110 + SetY = 4,220 + SetZoomX = 4,125 + SetZoomY = 4,125 + SetX = 5,141 + SetY = 5,217 + SetZoomX = 5,165 + SetZoomY = 5,165 + SetX = 6,142 + SetY = 6,216 + SetZoomX = 6,186 + SetZoomY = 6,186 + SetX = 7,143 + SetY = 7,215 + SetZoomX = 7,202 + SetZoomY = 7,202 + SetY = 8,213 + SetZoomX = 8,230 + SetZoomY = 8,230 + SetX = 9,148 + SetY = 9,207 + SetZoomX = 9,300 + SetZoomY = 9,300 + SetOpacity = 14,212 + SetOpacity = 15,170 + SetOpacity = 16,127 + SetOpacity = 17,85 + SetOpacity = 18,42 + SetOpacity = 19,0 + + Play = 0,Uproar,100,100 diff --git a/PBS/Animations/Converted/Move/AMNESIA.txt b/PBS/Animations/Converted/Move/AMNESIA.txt new file mode 100644 index 000000000..950913c9a --- /dev/null +++ b/PBS/Animations/Converted/Move/AMNESIA.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AMNESIA] +Name = AMNESIA + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = mixed + Focus = Target + SetX = 0,428 + SetY = 0,80 + SetVisible = 0,true + SetOpacity = 0,200 + SetOpacity = 1,220 + SetOpacity = 2,250 + SetOpacity = 3,255 + + Play = 0,Yawn,100,100 diff --git a/PBS/Animations/Converted/Move/ANCIENTPOWER.txt b/PBS/Animations/Converted/Move/ANCIENTPOWER.txt new file mode 100644 index 000000000..6d3e30c2e --- /dev/null +++ b/PBS/Animations/Converted/Move/ANCIENTPOWER.txt @@ -0,0 +1,312 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ANCIENTPOWER] +Name = ANCIENTPOWER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetX = 0,39 + SetY = 0,228 + SetVisible = 0,true + SetX = 1,43 + SetY = 1,205 + SetX = 2,53 + SetY = 2,190 + SetX = 3,55 + SetY = 3,172 + SetX = 4,64 + SetY = 4,145 + SetX = 5,96 + SetY = 5,124 + SetY = 6,132 + SetY = 7,124 + SetY = 8,132 + SetX = 9,80 + SetY = 9,140 + SetX = 10,64 + SetY = 12,164 + SetY = 13,156 + SetY = 14,164 + SetY = 15,172 + SetY = 16,180 + SetY = 17,188 + SetX = 20,80 + SetY = 20,180 + SetX = 21,96 + SetY = 21,164 + SetX = 22,128 + SetY = 22,148 + SetX = 23,144 + SetY = 23,140 + SetY = 24,148 + SetX = 25,168 + SetY = 25,140 + SetX = 26,200 + SetY = 26,116 + SetX = 27,256 + SetY = 27,108 + SetX = 28,320 + SetY = 28,84 + SetX = 29,360 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetX = 0,305 + SetY = 0,244 + SetVisible = 0,true + SetX = 1,304 + SetY = 1,212 + SetX = 2,300 + SetY = 2,193 + SetX = 3,291 + SetY = 3,173 + SetX = 4,272 + SetY = 4,157 + SetX = 5,253 + SetY = 5,128 + SetY = 6,136 + SetY = 7,128 + SetY = 8,136 + SetX = 9,256 + SetY = 9,144 + SetX = 10,272 + SetY = 10,136 + SetX = 12,288 + SetY = 12,152 + SetX = 13,296 + SetY = 13,144 + SetY = 14,152 + SetY = 15,160 + SetY = 16,168 + SetY = 17,176 + SetX = 20,312 + SetY = 20,160 + SetX = 21,336 + SetY = 21,144 + SetX = 22,360 + SetY = 22,128 + SetX = 23,392 + SetY = 23,104 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetX = 0,140 + SetY = 0,275 + SetVisible = 0,true + SetY = 1,251 + SetX = 2,139 + SetY = 2,236 + SetX = 3,140 + SetY = 3,207 + SetX = 4,139 + SetY = 4,180 + SetX = 5,140 + SetY = 5,152 + SetY = 6,160 + SetY = 7,152 + SetY = 8,160 + SetY = 9,176 + SetY = 10,200 + SetX = 11,168 + SetY = 11,216 + SetY = 12,224 + SetX = 13,176 + SetY = 13,232 + SetY = 14,240 + SetY = 15,248 + SetY = 16,256 + SetY = 17,264 + SetX = 20,192 + SetY = 20,240 + SetX = 21,208 + SetY = 21,224 + SetX = 22,232 + SetY = 22,200 + SetX = 23,240 + SetY = 23,192 + SetX = 24,272 + SetY = 24,176 + SetX = 25,296 + SetY = 25,160 + SetX = 26,328 + SetY = 26,136 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,72 + SetY = 6,235 + SetY = 7,211 + SetX = 8,80 + SetY = 8,195 + SetX = 9,112 + SetY = 9,163 + SetX = 10,96 + SetY = 10,171 + SetX = 11,112 + SetY = 11,147 + SetX = 12,120 + SetY = 12,123 + SetY = 13,107 + SetY = 14,115 + SetY = 15,123 + SetY = 16,131 + SetY = 17,139 + SetX = 20,152 + SetY = 20,131 + SetX = 21,176 + SetY = 21,123 + SetX = 22,200 + SetY = 22,107 + SetX = 23,208 + SetY = 23,99 + SetX = 24,232 + SetY = 24,91 + SetX = 25,264 + SetY = 25,107 + SetX = 26,304 + SetY = 26,99 + SetX = 27,360 + SetY = 27,91 + SetX = 28,400 + SetY = 28,107 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,240 + SetY = 6,241 + SetY = 7,217 + SetY = 8,193 + SetX = 9,216 + SetY = 9,161 + SetX = 10,232 + SetY = 10,185 + SetY = 11,217 + SetX = 12,256 + SetY = 12,225 + SetX = 13,272 + SetY = 13,217 + SetY = 14,225 + SetY = 15,233 + SetY = 16,241 + SetY = 17,249 + SetX = 20,288 + SetY = 20,233 + SetX = 21,312 + SetY = 21,217 + SetX = 22,336 + SetY = 22,193 + SetX = 23,360 + SetY = 23,161 + SetX = 24,384 + SetY = 24,137 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,160 + SetY = 6,265 + SetY = 7,241 + SetX = 10,112 + SetY = 10,245 + SetX = 11,104 + SetY = 11,221 + SetX = 12,96 + SetY = 12,213 + SetX = 13,88 + SetY = 14,221 + SetY = 15,229 + SetY = 16,237 + SetY = 17,245 + SetX = 20,112 + SetY = 20,237 + SetX = 21,136 + SetY = 21,229 + SetX = 22,160 + SetY = 22,213 + SetX = 23,168 + SetY = 24,221 + SetX = 25,192 + SetY = 25,197 + SetX = 26,240 + SetY = 26,173 + SetX = 27,288 + SetY = 27,165 + SetX = 28,328 + SetY = 28,141 + SetX = 29,368 + SetY = 29,133 + SetX = 30,409 + SetY = 30,112 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 8,184 + SetY = 8,221 + SetY = 9,197 + SetY = 10,141 + SetX = 11,216 + SetY = 11,133 + SetX = 12,232 + SetY = 12,125 + SetX = 13,240 + SetY = 13,109 + SetY = 14,117 + SetY = 15,125 + SetY = 16,133 + SetY = 17,141 + SetX = 20,256 + SetY = 20,133 + SetX = 21,280 + SetY = 21,125 + SetX = 22,304 + SetY = 22,109 + SetX = 23,312 + SetY = 23,100 + SetX = 24,344 + SetY = 24,92 + SetX = 25,392 + SetY = 25,84 + + Graphic = Ancient-PowerFilesheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 10,184 + SetY = 10,280 + SetY = 11,248 + SetX = 12,152 + SetY = 12,240 + SetX = 13,160 + SetY = 13,232 + SetY = 14,240 + SetY = 15,248 + SetY = 16,256 + SetY = 17,264 + SetX = 20,176 + SetY = 20,240 + SetX = 21,200 + SetY = 21,224 + SetX = 22,224 + SetY = 22,208 + SetX = 23,240 + SetY = 23,216 + SetY = 24,224 + SetX = 25,304 + SetY = 25,200 + SetX = 26,328 + SetY = 26,176 + SetX = 27,368 + SetY = 27,160 + SetX = 28,432 + SetY = 28,136 + + Play = 0,Earth4,100,100 + Play = 24,Earth5,100,100 diff --git a/PBS/Animations/Converted/Move/AQUARING.txt b/PBS/Animations/Converted/Move/AQUARING.txt new file mode 100644 index 000000000..535c45261 --- /dev/null +++ b/PBS/Animations/Converted/Move/AQUARING.txt @@ -0,0 +1,66 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AQUARING] +Name = AQUARING + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,389 + SetY = 2,108 + SetX = 3,387 + SetY = 3,100 + SetX = 4,368 + SetY = 4,96 + SetX = 5,381 + SetY = 5,93 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,396 + SetY = 3,111 + SetX = 4,374 + SetY = 4,97 + SetX = 5,386 + SetY = 5,92 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,380 + SetY = 4,94 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,386 + SetY = 4,104 + + Graphic = fly copy + Focus = UserAndTarget + SetX = 0,394 + SetY = 0,105 + SetVisible = 0,true + SetX = 1,395 + SetY = 1,107 + SetX = 2,388 + SetY = 2,94 + SetZoomX = 2,110 + SetZoomY = 2,110 + SetX = 3,379 + SetY = 3,98 + SetZoomX = 3,100 + SetZoomY = 3,100 + SetX = 4,382 + SetY = 4,100 + SetX = 5,394 + SetY = 5,104 + + Play = 0,Weatherball,80,100 diff --git a/PBS/Animations/Converted/Move/AROMATHERAPY.txt b/PBS/Animations/Converted/Move/AROMATHERAPY.txt new file mode 100644 index 000000000..7e25e5d70 --- /dev/null +++ b/PBS/Animations/Converted/Move/AROMATHERAPY.txt @@ -0,0 +1,156 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AROMATHERAPY] +Name = AROMATHERAPY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Anima (1) + Focus = Screen + SetX = 0,608 + SetY = 0,-50 + SetVisible = 0,true + SetX = 1,560 + SetY = 1,-2 + SetX = 2,496 + SetY = 2,30 + SetX = 3,416 + SetY = 3,70 + SetX = 4,296 + SetY = 4,134 + SetX = 5,176 + SetY = 5,190 + SetX = 6,120 + SetY = 6,222 + SetX = 7,104 + SetY = 7,118 + SetX = 8,224 + SetY = 8,190 + SetX = 9,248 + SetY = 9,174 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 1,664 + SetY = 1,22 + SetX = 2,608 + SetY = 2,94 + SetX = 3,520 + SetY = 3,182 + SetX = 4,480 + SetY = 4,230 + SetX = 5,304 + SetY = 5,62 + SetX = 6,200 + SetY = 6,94 + SetX = 7,296 + SetY = 7,150 + SetX = 8,336 + SetY = 8,118 + SetX = 9,112 + SetY = 9,142 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 2,584 + SetY = 2,-34 + SetX = 3,528 + SetY = 3,-2 + SetX = 4,424 + SetY = 4,38 + SetX = 5,312 + SetY = 5,134 + SetX = 6,256 + SetY = 6,214 + SetX = 7,88 + SetY = 7,126 + SetX = 8,184 + SetY = 8,86 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 2,464 + SetY = 2,-42 + SetX = 3,408 + SetY = 3,6 + SetX = 4,376 + SetY = 4,70 + SetX = 5,448 + SetY = 5,166 + SetX = 6,376 + SetY = 6,222 + SetX = 7,512 + SetY = 7,198 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 3,672 + SetY = 3,46 + SetX = 4,544 + SetY = 4,102 + SetX = 5,560 + SetY = 5,222 + SetX = 6,392 + SetY = 6,94 + SetX = 7,416 + SetY = 7,62 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 3,664 + SetY = 3,118 + SetX = 4,616 + SetY = 4,166 + SetX = 5,480 + SetY = 5,54 + SetX = 6,160 + SetY = 6,70 + SetX = 7,280 + SetY = 7,30 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 3,640 + SetY = 3,-26 + SetX = 4,576 + SetY = 4,14 + SetX = 5,224 + SetY = 5,22 + SetX = 6,128 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 4,336 + SetY = 4,-26 + SetX = 5,184 + SetY = 5,-34 + SetX = 6,600 + SetY = 6,118 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 5,680 + SetY = 5,30 + SetX = 6,504 + SetY = 6,6 + + Graphic = Anima (1) + Focus = Screen + SetVisible = 0,true + SetX = 5,552 + SetY = 5,-26 + SetX = 6,368 + + Play = 0,Saint8,80,100 diff --git a/PBS/Animations/Converted/Move/AURORABEAM.txt b/PBS/Animations/Converted/Move/AURORABEAM.txt new file mode 100644 index 000000000..635dbd6df --- /dev/null +++ b/PBS/Animations/Converted/Move/AURORABEAM.txt @@ -0,0 +1,229 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,AURORABEAM] +Name = AURORABEAM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,313 + SetY = 1,186 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,108 + SetY = 2,148 + SetX = 3,185 + SetY = 3,179 + SetX = 4,128 + SetY = 4,236 + SetZoomX = 4,100 + SetZoomY = 4,100 + SetY = 6,230 + SetZoomX = 6,200 + SetZoomY = 6,200 + SetX = 7,166 + SetY = 7,205 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetX = 8,243 + SetY = 8,154 + SetX = 9,326 + SetY = 9,129 + SetX = 10,358 + SetY = 10,110 + SetZoomX = 13,150 + SetZoomY = 13,150 + SetOpacity = 13,100 + SetY = 14,98 + SetZoomX = 14,200 + SetZoomY = 14,200 + SetY = 15,110 + SetZoomX = 15,100 + SetZoomY = 15,100 + SetOpacity = 15,50 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,102 + SetY = 1,72 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,230 + SetY = 2,205 + SetX = 3,128 + SetY = 3,236 + SetZoomX = 3,100 + SetZoomY = 3,100 + SetX = 4,121 + SetY = 4,230 + SetZoomX = 4,150 + SetZoomY = 4,150 + SetX = 5,128 + SetY = 5,224 + SetZoomX = 5,200 + SetZoomY = 5,200 + SetY = 6,236 + SetZoomX = 6,100 + SetZoomY = 6,100 + SetX = 7,192 + SetY = 7,186 + SetX = 8,288 + SetY = 8,123 + SetX = 9,358 + SetY = 9,110 + SetX = 10,320 + SetY = 10,135 + SetX = 11,326 + SetY = 11,129 + SetX = 12,358 + SetY = 12,110 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,128 + SetY = 1,236 + SetX = 2,192 + SetY = 2,66 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,108 + SetY = 3,192 + SetX = 4,83 + SetY = 4,167 + SetX = 5,70 + SetY = 5,110 + SetX = 7,192 + SetY = 7,179 + SetZoomX = 7,150 + SetZoomY = 7,150 + SetX = 8,166 + SetY = 8,205 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetX = 9,275 + SetY = 9,154 + SetY = 10,167 + SetX = 11,358 + SetY = 11,110 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetX = 3,179 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,192 + SetY = 4,192 + SetX = 5,172 + SetY = 5,104 + SetX = 8,198 + SetY = 8,186 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetX = 9,236 + SetY = 9,173 + SetX = 10,358 + SetY = 10,110 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,64 + SetY = 2,66 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,83 + SetY = 3,91 + SetX = 4,160 + SetY = 4,186 + SetX = 5,236 + SetY = 5,173 + SetX = 8,288 + SetY = 8,110 + SetZoomX = 8,120 + SetZoomY = 8,120 + SetX = 9,198 + SetY = 9,198 + SetZoomX = 9,100 + SetZoomY = 9,100 + + Graphic = 023-Burst01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,345 + SetY = 2,236 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,236 + SetY = 3,242 + SetX = 4,204 + SetY = 4,249 + SetX = 5,256 + SetX = 9,364 + SetY = 9,104 + SetZoomX = 9,120 + SetZoomY = 9,120 + + Graphic = 023-Burst01 + Focus = User + SetVisible = 0,true + SetX = 2,313 + SetY = 2,110 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,179 + SetY = 3,104 + SetX = 4,128 + SetY = 4,173 + + Graphic = 023-Burst01 + Focus = User + SetVisible = 0,true + SetX = 3,115 + SetY = 3,148 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,64 + SetY = 4,53 + + Graphic = 023-Burst01 + Focus = User + SetVisible = 0,true + SetX = 3,326 + SetY = 3,224 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,198 + SetY = 4,53 + + Graphic = 023-Burst01 + Focus = User + SetVisible = 0,true + SetX = 3,262 + SetY = 3,148 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,300 + + Graphic = 023-Burst01 + Focus = User + SetVisible = 0,true + SetX = 4,339 + SetY = 4,236 + SetZoomX = 4,50 + SetZoomY = 4,50 + + Play = 1,Twine,80,100 + Play = 10,Fire3,80,100 diff --git a/PBS/Animations/Converted/Move/BARRIER.txt b/PBS/Animations/Converted/Move/BARRIER.txt new file mode 100644 index 000000000..d2c036b2d --- /dev/null +++ b/PBS/Animations/Converted/Move/BARRIER.txt @@ -0,0 +1,56 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BARRIER] +Name = BARRIER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 1,356 + SetY = 1,65 + SetX = 2,437 + SetX = 3,440 + SetY = 3,63 + SetX = 4,369 + SetY = 4,126 + SetX = 5,374 + SetY = 5,130 + SetX = 6,448 + SetY = 6,74 + SetX = 7,453 + SetY = 7,66 + SetX = 8,364 + SetY = 8,89 + SetX = 9,367 + + Graphic = anim sheet + Focus = Target + SetX = 0,392 + SetY = 0,95 + SetVisible = 0,true + SetOpacity = 0,154 + SetX = 1,393 + SetY = 1,90 + SetX = 2,392 + SetY = 2,95 + SetY = 3,91 + SetX = 4,395 + SetY = 4,92 + SetX = 5,397 + SetY = 5,88 + SetX = 6,398 + SetY = 6,92 + SetX = 7,394 + SetY = 7,90 + SetX = 8,395 + SetY = 8,97 + SetX = 9,379 + SetY = 9,85 + + Play = 0,Flash2,80,100 diff --git a/PBS/Animations/Converted/Move/BEATUP.txt b/PBS/Animations/Converted/Move/BEATUP.txt new file mode 100644 index 000000000..ef260272a --- /dev/null +++ b/PBS/Animations/Converted/Move/BEATUP.txt @@ -0,0 +1,229 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BEATUP] +Name = BEATUP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Play = 0,Blow4,80,100 +#------------------------------- +[Move,BEATUP,1] +Name = Beat Up hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Play = 0,Blow4,80,100 +#------------------------------- +[Move,BEATUP,2] +Name = Beat Up hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Play = 0,Blow4,80,100 +#------------------------------- +[Move,BEATUP,3] +Name = Beat Up hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Play = 0,Blow4,80,100 +#------------------------------- +[Move,BEATUP,4] +Name = Beat Up hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Play = 0,Blow4,80,100 +#------------------------------- +[Move,BEATUP,5] +Name = Beat Up hit 6 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,86 + SetOpacity = 1,100 + SetX = 2,384 + SetY = 2,94 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,50 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetZoomX = 3,125 + SetZoomY = 3,125 + SetOpacity = 3,100 + + Play = 0,Blow4,80,100 diff --git a/PBS/Animations/Converted/Move/BIND.txt b/PBS/Animations/Converted/Move/BIND.txt new file mode 100644 index 000000000..6b773d2c4 --- /dev/null +++ b/PBS/Animations/Converted/Move/BIND.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BIND] +Name = BIND + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = Target + SetX = 0,440 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,94 + SetX = 2,488 + SetY = 2,102 + SetX = 3,464 + SetY = 3,94 + SetX = 4,432 + SetX = 5,464 + SetX = 6,496 + SetY = 6,102 + SetX = 7,480 + + Graphic = Struggle + Focus = Target + SetX = 0,320 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,94 + SetX = 2,240 + SetY = 2,102 + SetX = 3,264 + SetY = 3,94 + SetX = 4,296 + SetX = 5,256 + SetX = 6,216 + SetX = 7,264 + + Play = 0,Slash10,80,100 + Play = 3,Slash10,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/BITE.txt b/PBS/Animations/Converted/Move/BITE.txt new file mode 100644 index 000000000..70f19d810 --- /dev/null +++ b/PBS/Animations/Converted/Move/BITE.txt @@ -0,0 +1,24 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BITE] +Name = BITE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Crunch + Focus = Target + SetX = 0,386 + SetY = 0,96 + SetVisible = 0,true + SetOpacity = 0,128 + SetOpacity = 2,192 + SetX = 3,385 + SetY = 3,97 + SetOpacity = 3,255 + SetOpacity = 13,128 + + Play = 9,Sword2,80,100 diff --git a/PBS/Animations/Converted/Move/BLASTBURN.txt b/PBS/Animations/Converted/Move/BLASTBURN.txt new file mode 100644 index 000000000..53f0b8c02 --- /dev/null +++ b/PBS/Animations/Converted/Move/BLASTBURN.txt @@ -0,0 +1,207 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BLASTBURN] +Name = BLASTBURN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Firebird + Focus = Target + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetFlip = 1,true + SetAngle = 1,20 + SetX = 2,160 + SetY = 2,161 + SetAngle = 2,0 + SetX = 3,217 + SetY = 3,129 + SetAngle = 3,20 + SetX = 4,256 + SetY = 4,110 + SetAngle = 4,0 + SetFlip = 5,false + SetX = 5,377 + SetY = 5,123 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetX = 6,358 + SetY = 6,110 + SetZoomX = 6,100 + SetZoomY = 6,100 + SetX = 7,352 + SetY = 7,116 + SetX = 8,441 + SetY = 8,154 + SetX = 9,345 + SetY = 9,110 + SetX = 10,358 + SetY = 10,91 + SetAngle = 10,180 + SetX = 11,448 + SetY = 11,110 + SetAngle = 11,90 + SetX = 12,294 + SetY = 12,98 + SetAngle = 12,45 + SetX = 13,300 + SetY = 13,161 + SetAngle = 13,270 + SetX = 14,364 + SetY = 14,123 + SetAngle = 14,0 + SetX = 15,332 + SetY = 15,104 + SetX = 16,358 + SetOpacity = 16,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetFlip = 5,true + SetX = 5,358 + SetY = 5,110 + SetFlip = 6,false + SetX = 6,345 + SetY = 6,123 + SetZoomX = 6,90 + SetZoomY = 6,90 + SetX = 7,371 + SetY = 7,154 + SetZoomX = 7,50 + SetZoomY = 7,50 + SetX = 8,345 + SetY = 8,161 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetX = 9,435 + SetY = 9,154 + SetX = 10,396 + SetY = 10,186 + SetX = 11,294 + SetY = 11,98 + SetAngle = 11,270 + SetX = 12,339 + SetY = 12,85 + SetX = 13,352 + SetY = 13,167 + SetAngle = 13,0 + SetX = 14,422 + SetY = 14,161 + SetOpacity = 14,100 + SetX = 15,390 + SetY = 15,110 + SetOpacity = 15,255 + SetX = 16,332 + SetOpacity = 16,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 6,358 + SetY = 6,123 + SetX = 7,390 + SetY = 7,104 + SetX = 8,377 + SetY = 8,98 + SetY = 9,198 + SetX = 10,409 + SetY = 10,154 + SetAngle = 10,45 + SetX = 11,320 + SetY = 11,116 + SetAngle = 11,0 + SetX = 12,435 + SetY = 12,161 + SetX = 13,332 + SetY = 13,91 + SetX = 14,307 + SetY = 14,98 + SetOpacity = 14,100 + SetX = 15,358 + SetY = 15,104 + SetOpacity = 15,255 + SetX = 16,396 + SetY = 16,110 + SetOpacity = 16,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 7,364 + SetY = 7,154 + SetX = 9,326 + SetY = 9,142 + SetX = 10,454 + SetY = 10,79 + SetAngle = 10,45 + SetX = 11,332 + SetY = 11,161 + SetAngle = 11,0 + SetX = 12,435 + SetY = 12,85 + SetX = 13,403 + SetY = 13,167 + SetX = 14,358 + SetY = 14,72 + SetOpacity = 14,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 9,384 + SetY = 9,91 + SetX = 10,345 + SetY = 10,98 + SetAngle = 10,135 + SetX = 11,422 + SetY = 11,161 + SetAngle = 11,0 + SetX = 12,377 + SetY = 12,173 + SetX = 13,422 + SetY = 13,110 + SetX = 14,326 + SetY = 14,167 + SetOpacity = 14,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 9,441 + SetY = 9,167 + SetX = 10,339 + SetY = 10,123 + SetX = 11,377 + SetY = 11,85 + SetX = 13,396 + SetY = 13,123 + SetX = 14,441 + SetY = 14,79 + SetOpacity = 14,100 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 10,371 + SetY = 10,66 + SetX = 11,320 + SetX = 13,441 + SetY = 13,79 + SetOpacity = 13,100 + SetX = 14,396 + SetY = 14,104 + SetOpacity = 14,250 + + Graphic = Firebird + Focus = Target + SetVisible = 0,true + SetX = 10,339 + SetY = 10,179 + + Play = 3,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/BLOCK.txt b/PBS/Animations/Converted/Move/BLOCK.txt new file mode 100644 index 000000000..29e8b9088 --- /dev/null +++ b/PBS/Animations/Converted/Move/BLOCK.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BLOCK] +Name = BLOCK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = block + Focus = Target + SetX = 0,385 + SetY = 0,96 + SetVisible = 0,true + + Play = 0,buzzer,80,100 diff --git a/PBS/Animations/Converted/Move/BLUEFLARE.txt b/PBS/Animations/Converted/Move/BLUEFLARE.txt new file mode 100644 index 000000000..b06b53173 --- /dev/null +++ b/PBS/Animations/Converted/Move/BLUEFLARE.txt @@ -0,0 +1,34 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BLUEFLARE] +Name = BLUEFLARE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet.2 + Focus = Target + SetX = 0,382 + SetY = 0,103 + SetVisible = 0,true + SetX = 1,379 + SetY = 1,93 + SetX = 2,384 + SetY = 2,94 + SetX = 4,390 + SetY = 4,96 + SetX = 5,385 + SetY = 5,94 + SetX = 6,392 + SetX = 8,384 + SetY = 8,95 + SetX = 9,383 + SetX = 10,384 + SetY = 10,96 + SetX = 11,385 + SetY = 11,92 + + Play = 0,Slam,100,110 diff --git a/PBS/Animations/Converted/Move/BODYSLAM.txt b/PBS/Animations/Converted/Move/BODYSLAM.txt new file mode 100644 index 000000000..4b8192cef --- /dev/null +++ b/PBS/Animations/Converted/Move/BODYSLAM.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BODYSLAM] +Name = BODYSLAM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Damage1,80,100 diff --git a/PBS/Animations/Converted/Move/BRICKBREAK.txt b/PBS/Animations/Converted/Move/BRICKBREAK.txt new file mode 100644 index 000000000..f0f1063e6 --- /dev/null +++ b/PBS/Animations/Converted/Move/BRICKBREAK.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BRICKBREAK] +Name = BRICKBREAK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,296 + SetY = 0,38 + SetVisible = 0,true + SetX = 1,320 + SetAngle = 1,345 + SetX = 2,352 + SetY = 2,62 + SetAngle = 2,330 + SetX = 3,384 + SetY = 3,86 + SetAngle = 3,315 + SetX = 4,400 + SetY = 4,118 + SetAngle = 4,300 + SetX = 5,416 + SetY = 5,142 + SetAngle = 5,285 + SetX = 6,432 + SetY = 6,158 + SetX = 7,440 + SetY = 7,166 + + Play = 4,Blow7,80,100 diff --git a/PBS/Animations/Converted/Move/BUBBLE.txt b/PBS/Animations/Converted/Move/BUBBLE.txt new file mode 100644 index 000000000..da11ec2ca --- /dev/null +++ b/PBS/Animations/Converted/Move/BUBBLE.txt @@ -0,0 +1,221 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BUBBLE] +Name = BUBBLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,153 + SetY = 1,224 + SetX = 2,198 + SetY = 2,198 + SetX = 3,230 + SetY = 3,173 + SetX = 4,275 + SetY = 4,154 + SetX = 5,332 + SetY = 5,116 + SetX = 6,358 + SetY = 6,110 + SetX = 7,371 + SetX = 8,211 + SetY = 8,186 + SetX = 9,377 + SetY = 9,104 + SetX = 10,384 + SetY = 10,66 + SetY = 11,53 + SetX = 12,358 + SetY = 12,110 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,134 + SetY = 1,217 + SetX = 2,153 + SetY = 2,205 + SetX = 3,179 + SetY = 3,186 + SetX = 4,211 + SetY = 4,154 + SetX = 5,256 + SetY = 5,142 + SetX = 6,294 + SetY = 6,123 + SetX = 7,128 + SetY = 7,236 + SetX = 8,339 + SetY = 8,85 + SetX = 9,345 + SetY = 9,66 + SetX = 10,422 + SetY = 10,72 + SetX = 11,416 + SetY = 11,91 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,128 + SetY = 1,236 + SetX = 2,179 + SetY = 2,198 + SetX = 3,198 + SetY = 3,167 + SetX = 4,243 + SetY = 4,161 + SetX = 5,236 + SetY = 5,123 + SetX = 6,281 + SetY = 6,104 + SetX = 7,320 + SetY = 7,72 + SetX = 8,371 + SetY = 8,98 + SetX = 9,345 + SetX = 10,358 + SetY = 10,91 + SetX = 11,352 + SetY = 11,98 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetX = 3,166 + SetY = 3,205 + SetX = 4,128 + SetY = 4,236 + SetX = 5,160 + SetY = 5,205 + SetX = 6,211 + SetY = 6,173 + SetX = 7,352 + SetY = 7,79 + SetX = 8,403 + SetY = 8,104 + SetX = 9,390 + SetY = 9,72 + SetX = 10,384 + SetY = 10,98 + SetX = 11,396 + SetY = 11,79 + SetOpacity = 11,100 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,140 + SetY = 3,211 + SetX = 4,211 + SetY = 4,186 + SetX = 5,300 + SetY = 5,148 + SetX = 6,275 + SetY = 6,129 + SetX = 7,281 + SetY = 7,123 + SetX = 8,358 + SetY = 8,60 + SetX = 9,377 + SetY = 9,47 + SetX = 10,339 + SetY = 10,60 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,179 + SetY = 4,224 + SetX = 5,236 + SetY = 5,186 + SetX = 6,332 + SetY = 6,110 + SetY = 7,104 + SetX = 8,390 + SetY = 8,47 + SetX = 9,416 + SetY = 9,110 + SetX = 10,358 + SetY = 10,85 + SetOpacity = 10,100 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,186 + SetX = 5,192 + SetY = 5,154 + SetX = 6,256 + SetY = 6,173 + SetX = 7,230 + SetY = 7,135 + SetX = 8,281 + SetY = 8,104 + SetX = 9,313 + SetY = 9,98 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,128 + SetY = 5,236 + SetX = 6,230 + SetY = 6,142 + SetX = 7,313 + SetX = 8,326 + SetY = 8,116 + SetY = 9,129 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,160 + SetY = 6,236 + SetX = 7,217 + SetY = 7,179 + SetX = 8,275 + SetY = 8,148 + SetX = 9,288 + SetY = 9,129 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,352 + SetY = 6,85 + SetOpacity = 6,100 + SetFlip = 7,true + SetX = 7,377 + SetY = 7,104 + SetFlip = 8,false + SetX = 8,224 + SetY = 8,161 + SetOpacity = 8,255 + SetFlip = 9,true + SetX = 9,384 + SetY = 9,98 + SetOpacity = 9,100 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 8,358 + SetY = 8,91 + SetOpacity = 8,100 + + Play = 0,Water5,80,100 diff --git a/PBS/Animations/Converted/Move/BUBBLEBEAM.txt b/PBS/Animations/Converted/Move/BUBBLEBEAM.txt new file mode 100644 index 000000000..e143f6567 --- /dev/null +++ b/PBS/Animations/Converted/Move/BUBBLEBEAM.txt @@ -0,0 +1,393 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BUBBLEBEAM] +Name = BUBBLEBEAM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,205 + SetX = 2,243 + SetY = 2,179 + SetX = 3,160 + SetY = 3,192 + SetX = 4,326 + SetY = 4,123 + SetX = 5,275 + SetY = 5,129 + SetX = 6,166 + SetY = 6,211 + SetX = 7,224 + SetY = 7,192 + SetX = 8,236 + SetY = 8,135 + SetX = 9,249 + SetY = 9,179 + SetX = 10,384 + SetY = 10,66 + SetX = 11,185 + SetY = 11,205 + SetX = 12,281 + SetY = 12,154 + SetX = 13,358 + SetY = 13,91 + SetX = 14,390 + SetX = 15,358 + SetY = 15,110 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,140 + SetY = 1,186 + SetX = 2,192 + SetY = 2,173 + SetX = 3,224 + SetY = 3,167 + SetX = 4,300 + SetY = 4,85 + SetX = 5,358 + SetY = 5,110 + SetX = 6,371 + SetY = 6,79 + SetX = 7,384 + SetY = 7,110 + SetX = 8,339 + SetY = 8,85 + SetX = 9,364 + SetY = 9,53 + SetX = 10,217 + SetY = 10,154 + SetX = 11,416 + SetY = 11,91 + SetX = 12,390 + SetX = 13,371 + SetY = 13,72 + SetX = 14,358 + SetY = 14,98 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,192 + SetY = 1,179 + SetX = 2,204 + SetY = 2,148 + SetX = 3,217 + SetY = 3,129 + SetX = 4,134 + SetY = 4,230 + SetX = 5,307 + SetY = 5,98 + SetX = 6,281 + SetY = 6,104 + SetX = 7,332 + SetY = 7,72 + SetX = 8,339 + SetY = 8,116 + SetX = 9,345 + SetY = 9,98 + SetX = 10,358 + SetY = 10,91 + SetX = 11,352 + SetY = 11,98 + SetX = 12,339 + SetAngle = 12,90 + SetX = 13,377 + SetY = 13,85 + SetAngle = 13,0 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetX = 3,262 + SetY = 3,116 + SetY = 4,161 + SetX = 5,313 + SetY = 5,154 + SetX = 6,211 + SetY = 6,173 + SetX = 7,281 + SetY = 7,79 + SetX = 8,332 + SetY = 8,53 + SetX = 9,364 + SetY = 9,85 + SetX = 10,384 + SetY = 10,98 + SetX = 11,396 + SetY = 11,79 + SetOpacity = 11,100 + SetX = 12,371 + SetY = 12,135 + SetOpacity = 12,255 + SetX = 13,326 + SetY = 13,98 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,211 + SetX = 3,198 + SetY = 3,179 + SetX = 4,275 + SetY = 4,123 + SetX = 5,371 + SetY = 5,91 + SetX = 6,326 + SetX = 7,281 + SetY = 7,123 + SetX = 8,217 + SetY = 8,161 + SetX = 9,224 + SetY = 9,167 + SetX = 10,256 + SetY = 10,186 + SetX = 11,377 + SetY = 11,72 + SetX = 12,307 + SetY = 12,161 + SetX = 13,364 + SetY = 13,98 + SetOpacity = 13,50 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,275 + SetY = 3,154 + SetX = 4,313 + SetY = 4,148 + SetX = 5,256 + SetY = 5,104 + SetX = 6,204 + SetY = 6,148 + SetX = 7,339 + SetY = 7,110 + SetX = 8,211 + SetY = 8,142 + SetX = 9,140 + SetY = 9,211 + SetX = 10,294 + SetY = 10,85 + SetX = 11,192 + SetY = 11,173 + SetAngle = 11,135 + SetX = 12,428 + SetY = 12,142 + SetAngle = 12,0 + SetX = 13,320 + SetY = 13,148 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,211 + SetY = 3,161 + SetX = 4,198 + SetX = 5,307 + SetY = 5,60 + SetX = 6,371 + SetY = 6,129 + SetX = 7,147 + SetY = 7,211 + SetX = 8,281 + SetY = 8,104 + SetX = 9,339 + SetY = 9,53 + SetX = 10,275 + SetY = 10,116 + SetX = 11,224 + SetX = 12,371 + SetY = 12,41 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,160 + SetY = 3,217 + SetX = 4,275 + SetY = 4,116 + SetX = 5,179 + SetY = 5,148 + SetX = 6,390 + SetY = 6,98 + SetOpacity = 6,100 + SetX = 7,307 + SetY = 7,173 + SetOpacity = 7,255 + SetX = 8,294 + SetY = 8,135 + SetX = 9,339 + SetY = 9,129 + SetX = 10,300 + SetY = 10,72 + SetX = 11,288 + SetY = 11,91 + SetX = 12,211 + SetY = 12,173 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,185 + SetY = 4,186 + SetX = 5,230 + SetY = 5,167 + SetX = 6,313 + SetY = 6,135 + SetX = 7,262 + SetY = 7,129 + SetX = 8,396 + SetY = 8,135 + SetX = 9,288 + SetY = 9,129 + SetX = 10,371 + SetY = 10,104 + SetX = 11,294 + SetY = 11,47 + SetX = 12,403 + SetY = 12,85 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,172 + SetY = 4,224 + SetX = 5,313 + SetY = 5,79 + SetX = 6,249 + SetY = 6,167 + SetX = 7,198 + SetY = 7,135 + SetY = 8,110 + SetX = 9,249 + SetY = 9,142 + SetX = 10,230 + SetY = 10,186 + SetX = 11,416 + SetY = 11,154 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,288 + SetY = 4,211 + SetX = 5,281 + SetY = 5,135 + SetX = 6,377 + SetY = 6,91 + SetX = 7,384 + SetOpacity = 7,100 + SetX = 9,192 + SetY = 9,148 + SetOpacity = 9,255 + SetX = 10,294 + SetY = 10,154 + SetX = 11,256 + SetY = 11,186 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,243 + SetY = 4,211 + SetX = 5,134 + SetY = 5,217 + SetX = 6,313 + SetY = 6,85 + SetY = 7,104 + SetX = 8,396 + SetY = 8,98 + SetOpacity = 8,100 + SetY = 9,123 + SetOpacity = 9,255 + SetX = 10,377 + SetY = 10,154 + SetX = 11,345 + SetY = 11,135 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,217 + SetY = 4,129 + SetY = 5,211 + SetX = 6,396 + SetY = 6,135 + SetX = 7,147 + SetY = 7,217 + SetX = 8,377 + SetY = 8,79 + SetX = 9,320 + SetY = 9,161 + SetX = 10,243 + SetY = 10,135 + SetX = 11,147 + SetY = 11,224 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,288 + SetY = 4,179 + SetX = 5,371 + SetY = 5,135 + SetX = 6,185 + SetY = 6,179 + SetX = 7,236 + SetX = 8,166 + SetY = 8,186 + SetX = 9,198 + SetY = 9,179 + SetX = 10,275 + SetY = 10,198 + SetX = 11,409 + SetY = 11,79 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,185 + SetY = 6,236 + SetX = 7,249 + SetY = 7,123 + SetX = 8,300 + SetY = 8,161 + SetX = 9,249 + SetY = 9,116 + SetX = 10,160 + SetY = 10,186 + + Graphic = 018-Water01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,307 + SetY = 6,186 + SetX = 7,326 + SetY = 7,41 + SetX = 8,243 + SetY = 8,104 + SetX = 9,326 + SetY = 9,116 + SetX = 10,153 + SetY = 10,217 + + Play = 0,Water5,80,100 + Play = 3,Blow1,80,100 + Play = 7,Blow1,80,100 + Play = 9,Blow1,80,100 + Play = 11,Blow1,80,100 + Play = 13,Blow1,80,100 diff --git a/PBS/Animations/Converted/Move/BULKUP.txt b/PBS/Animations/Converted/Move/BULKUP.txt new file mode 100644 index 000000000..92604056c --- /dev/null +++ b/PBS/Animations/Converted/Move/BULKUP.txt @@ -0,0 +1,72 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BULKUP] +Name = BULKUP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = animsheet + Focus = Target + SetX = 0,344 + SetY = 0,102 + SetVisible = 0,true + SetOpacity = 0,200 + SetY = 1,94 + SetOpacity = 1,150 + SetY = 2,86 + SetOpacity = 2,100 + SetY = 3,78 + SetOpacity = 3,50 + SetY = 6,102 + SetOpacity = 6,200 + SetY = 7,94 + SetOpacity = 7,150 + SetY = 8,86 + SetOpacity = 8,100 + SetY = 9,78 + SetOpacity = 9,50 + SetY = 12,102 + SetOpacity = 12,200 + SetY = 13,94 + SetOpacity = 13,150 + SetY = 14,86 + SetOpacity = 14,100 + SetY = 15,78 + SetOpacity = 15,50 + + Graphic = animsheet + Focus = Target + SetX = 0,464 + SetY = 0,102 + SetVisible = 0,true + SetOpacity = 0,200 + SetY = 1,94 + SetOpacity = 1,150 + SetY = 2,86 + SetOpacity = 2,100 + SetY = 3,78 + SetOpacity = 3,50 + SetY = 6,102 + SetOpacity = 6,200 + SetY = 7,94 + SetOpacity = 7,150 + SetY = 8,86 + SetOpacity = 8,100 + SetY = 9,78 + SetOpacity = 9,50 + SetY = 12,102 + SetOpacity = 12,200 + SetY = 13,94 + SetOpacity = 13,150 + SetY = 14,86 + SetOpacity = 14,100 + SetY = 15,78 + SetOpacity = 15,50 + + Play = 0,fog2,80,150 + Play = 6,fog2,80,150 + Play = 12,fog2,80,150 diff --git a/PBS/Animations/Converted/Move/BULLETPUNCH.txt b/PBS/Animations/Converted/Move/BULLETPUNCH.txt new file mode 100644 index 000000000..0d964e561 --- /dev/null +++ b/PBS/Animations/Converted/Move/BULLETPUNCH.txt @@ -0,0 +1,104 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BULLETPUNCH] +Name = BULLETPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetX = 0,386 + SetY = 0,99 + SetVisible = 0,true + SetX = 1,391 + SetY = 1,95 + SetX = 2,403 + SetY = 2,98 + SetOpacity = 2,64 + SetX = 3,405 + SetY = 3,72 + SetOpacity = 3,255 + SetX = 4,423 + SetY = 4,73 + SetOpacity = 4,64 + SetX = 5,355 + SetY = 5,131 + SetOpacity = 5,255 + SetX = 6,364 + SetY = 6,128 + SetOpacity = 6,107 + SetX = 7,418 + SetY = 7,135 + SetOpacity = 7,255 + SetX = 8,425 + SetY = 8,131 + SetOpacity = 8,108 + SetX = 9,370 + SetY = 9,107 + SetOpacity = 9,255 + SetX = 10,415 + SetY = 10,88 + SetOpacity = 10,84 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,426 + SetY = 2,69 + SetX = 4,372 + SetY = 4,142 + SetX = 6,446 + SetY = 6,141 + SetX = 8,395 + SetY = 8,115 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,405 + SetY = 2,67 + SetX = 4,352 + SetY = 4,133 + SetX = 6,427 + SetY = 6,135 + SetX = 8,379 + SetY = 8,109 + + Graphic = punches + Focus = Target + SetX = 0,398 + SetY = 0,100 + SetVisible = 0,true + SetX = 1,406 + SetY = 1,95 + SetX = 2,384 + SetY = 2,94 + SetOpacity = 2,84 + SetX = 3,420 + SetY = 3,67 + SetOpacity = 3,255 + SetX = 4,406 + SetY = 4,78 + SetOpacity = 4,44 + SetX = 5,368 + SetY = 5,135 + SetOpacity = 5,255 + SetX = 6,351 + SetY = 6,133 + SetOpacity = 6,64 + SetX = 7,432 + SetOpacity = 7,255 + SetX = 8,435 + SetOpacity = 8,36 + SetX = 9,387 + SetY = 9,103 + SetOpacity = 9,255 + SetX = 10,396 + SetY = 10,88 + SetOpacity = 10,44 + + Play = 0,Comet Punch,100,59 diff --git a/PBS/Animations/Converted/Move/BULLETSEED.txt b/PBS/Animations/Converted/Move/BULLETSEED.txt new file mode 100644 index 000000000..ed67310f3 --- /dev/null +++ b/PBS/Animations/Converted/Move/BULLETSEED.txt @@ -0,0 +1,526 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,BULLETSEED] +Name = BULLETSEED + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,198 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,173 + SetX = 2,249 + SetY = 2,148 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,332 + SetY = 6,66 + SetOpacity = 6,100 + SetX = 7,422 + SetY = 7,60 + SetX = 8,326 + SetY = 8,47 + SetX = 9,428 + SetY = 9,98 + SetX = 10,352 + SetY = 10,47 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,154 + SetX = 4,307 + SetY = 4,135 + SetX = 5,358 + SetY = 5,104 + SetX = 6,403 + SetY = 6,72 + SetX = 7,345 + SetY = 7,66 + SetX = 8,416 + SetY = 8,85 + SetX = 9,364 + SetY = 9,79 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,172 + SetY = 2,198 + SetX = 3,211 + SetY = 3,179 + SetX = 4,262 + SetY = 4,167 + SetX = 5,307 + SetY = 5,135 + SetX = 6,358 + SetY = 6,98 + SetX = 7,364 + SetY = 8,110 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,205 + SetX = 4,217 + SetY = 4,192 + SetX = 5,262 + SetY = 5,167 + SetX = 6,307 + SetY = 6,129 + SetX = 7,313 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,217 + SetX = 5,217 + SetY = 5,192 + SetX = 6,256 + SetY = 6,161 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 5,throw,80,100 + Play = 5,Knock,80,100 + Play = 7,Knock,80,100 + Play = 8,throw,80,100 + Play = 9,Knock,80,100 +#------------------------------- +[Move,BULLETSEED,1] +Name = Bullet Seed hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,217 + SetX = 5,217 + SetY = 5,192 + SetX = 6,256 + SetY = 6,161 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,198 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,173 + SetX = 2,249 + SetY = 2,148 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,332 + SetY = 6,66 + SetOpacity = 6,100 + SetX = 7,422 + SetY = 7,60 + SetX = 8,326 + SetY = 8,47 + SetX = 9,428 + SetY = 9,98 + SetX = 10,352 + SetY = 10,47 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,154 + SetX = 4,307 + SetY = 4,135 + SetX = 5,358 + SetY = 5,104 + SetX = 6,403 + SetY = 6,72 + SetX = 7,345 + SetY = 7,66 + SetX = 8,416 + SetY = 8,85 + SetX = 9,364 + SetY = 9,79 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,172 + SetY = 2,198 + SetX = 3,211 + SetY = 3,179 + SetX = 4,262 + SetY = 4,167 + SetX = 5,307 + SetY = 5,135 + SetX = 6,358 + SetY = 6,98 + SetX = 7,364 + SetY = 8,110 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,205 + SetX = 4,217 + SetY = 4,192 + SetX = 5,262 + SetY = 5,167 + SetX = 6,307 + SetY = 6,129 + SetX = 7,313 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 5,throw,80,100 + Play = 5,Knock,80,100 + Play = 7,Knock,80,100 + Play = 8,throw,80,100 + Play = 9,Knock,80,100 +#------------------------------- +[Move,BULLETSEED,2] +Name = Bullet Seed hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,205 + SetX = 4,217 + SetY = 4,192 + SetX = 5,262 + SetY = 5,167 + SetX = 6,307 + SetY = 6,129 + SetX = 7,313 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,217 + SetX = 5,217 + SetY = 5,192 + SetX = 6,256 + SetY = 6,161 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,198 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,173 + SetX = 2,249 + SetY = 2,148 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,332 + SetY = 6,66 + SetOpacity = 6,100 + SetX = 7,422 + SetY = 7,60 + SetX = 8,326 + SetY = 8,47 + SetX = 9,428 + SetY = 9,98 + SetX = 10,352 + SetY = 10,47 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,154 + SetX = 4,307 + SetY = 4,135 + SetX = 5,358 + SetY = 5,104 + SetX = 6,403 + SetY = 6,72 + SetX = 7,345 + SetY = 7,66 + SetX = 8,416 + SetY = 8,85 + SetX = 9,364 + SetY = 9,79 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,172 + SetY = 2,198 + SetX = 3,211 + SetY = 3,179 + SetX = 4,262 + SetY = 4,167 + SetX = 5,307 + SetY = 5,135 + SetX = 6,358 + SetY = 6,98 + SetX = 7,364 + SetY = 8,110 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 5,throw,80,100 + Play = 5,Knock,80,100 + Play = 7,Knock,80,100 + Play = 8,throw,80,100 + Play = 9,Knock,80,100 +#------------------------------- +[Move,BULLETSEED,3] +Name = Bullet Seed hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,172 + SetY = 2,198 + SetX = 3,211 + SetY = 3,179 + SetX = 4,262 + SetY = 4,167 + SetX = 5,307 + SetY = 5,135 + SetX = 6,358 + SetY = 6,98 + SetX = 7,364 + SetY = 8,110 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,205 + SetX = 4,217 + SetY = 4,192 + SetX = 5,262 + SetY = 5,167 + SetX = 6,307 + SetY = 6,129 + SetX = 7,313 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,217 + SetX = 5,217 + SetY = 5,192 + SetX = 6,256 + SetY = 6,161 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,198 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,173 + SetX = 2,249 + SetY = 2,148 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,332 + SetY = 6,66 + SetOpacity = 6,100 + SetX = 7,422 + SetY = 7,60 + SetX = 8,326 + SetY = 8,47 + SetX = 9,428 + SetY = 9,98 + SetX = 10,352 + SetY = 10,47 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,154 + SetX = 4,307 + SetY = 4,135 + SetX = 5,358 + SetY = 5,104 + SetX = 6,403 + SetY = 6,72 + SetX = 7,345 + SetY = 7,66 + SetX = 8,416 + SetY = 8,85 + SetX = 9,364 + SetY = 9,79 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 5,throw,80,100 + Play = 5,Knock,80,100 + Play = 7,Knock,80,100 + Play = 8,throw,80,100 + Play = 9,Knock,80,100 +#------------------------------- +[Move,BULLETSEED,4] +Name = Bullet Seed hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,154 + SetX = 4,307 + SetY = 4,135 + SetX = 5,358 + SetY = 5,104 + SetX = 6,403 + SetY = 6,72 + SetX = 7,345 + SetY = 7,66 + SetX = 8,416 + SetY = 8,85 + SetX = 9,364 + SetY = 9,79 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,172 + SetY = 2,198 + SetX = 3,211 + SetY = 3,179 + SetX = 4,262 + SetY = 4,167 + SetX = 5,307 + SetY = 5,135 + SetX = 6,358 + SetY = 6,98 + SetX = 7,364 + SetY = 8,110 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,205 + SetX = 4,217 + SetY = 4,192 + SetX = 5,262 + SetY = 5,167 + SetX = 6,307 + SetY = 6,129 + SetX = 7,313 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,217 + SetX = 5,217 + SetY = 5,192 + SetX = 6,256 + SetY = 6,161 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,198 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,173 + SetX = 2,249 + SetY = 2,148 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,332 + SetY = 6,66 + SetOpacity = 6,100 + SetX = 7,422 + SetY = 7,60 + SetX = 8,326 + SetY = 8,47 + SetX = 9,428 + SetY = 9,98 + SetX = 10,352 + SetY = 10,47 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 5,throw,80,100 + Play = 5,Knock,80,100 + Play = 7,Knock,80,100 + Play = 8,throw,80,100 + Play = 9,Knock,80,100 diff --git a/PBS/Animations/Converted/Move/CHARGE.txt b/PBS/Animations/Converted/Move/CHARGE.txt new file mode 100644 index 000000000..d593e3dcc --- /dev/null +++ b/PBS/Animations/Converted/Move/CHARGE.txt @@ -0,0 +1,105 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CHARGE] +Name = CHARGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = electric2 + Focus = User + SetX = 0,328 + SetY = 0,238 + SetVisible = 0,true + SetX = 1,296 + SetX = 2,216 + SetY = 2,230 + SetX = 3,184 + SetX = 4,176 + SetX = 6,72 + SetY = 6,262 + SetX = 7,168 + SetY = 7,190 + SetX = 8,24 + SetX = 9,192 + SetY = 9,174 + SetX = 10,64 + SetY = 10,294 + SetOpacity = 11,100 + + Graphic = electric2 + Focus = User + SetVisible = 0,true + SetX = 1,-32 + SetY = 1,230 + SetX = 2,0 + SetX = 3,40 + SetX = 4,64 + SetX = 5,72 + SetY = 5,254 + SetX = 6,168 + SetY = 6,190 + SetX = 7,24 + SetX = 8,48 + SetY = 8,302 + SetX = 9,16 + SetY = 9,198 + SetOpacity = 10,100 + SetX = 11,232 + SetY = 11,222 + + Graphic = electric2 + Focus = User + SetVisible = 0,true + SetX = 3,328 + SetY = 3,238 + SetX = 4,280 + SetX = 5,216 + SetY = 5,230 + SetX = 6,72 + SetY = 6,238 + SetX = 7,48 + SetY = 7,302 + SetX = 8,176 + SetY = 8,222 + SetX = 10,208 + SetX = 11,200 + SetY = 11,310 + + Graphic = electric2 + Focus = User + SetVisible = 0,true + SetX = 4,-72 + SetY = 4,238 + SetX = 5,-24 + SetX = 6,56 + SetY = 6,190 + SetY = 7,238 + SetX = 8,192 + SetY = 8,174 + + Graphic = electric2 + Focus = User + SetVisible = 0,true + SetX = 5,344 + SetY = 5,246 + SetX = 6,304 + SetX = 7,216 + SetY = 7,238 + SetX = 8,176 + SetY = 8,278 + + Graphic = electric2 + Focus = User + SetVisible = 0,true + SetX = 7,176 + SetY = 7,286 + + Play = 0,Thunder3,80,100 + Play = 2,Thunder3,80,100 + Play = 4,Thunder3,80,100 + Play = 5,Thunder3,80,100 + Play = 7,Thunder3,80,100 diff --git a/PBS/Animations/Converted/Move/CHARM.txt b/PBS/Animations/Converted/Move/CHARM.txt new file mode 100644 index 000000000..517d67946 --- /dev/null +++ b/PBS/Animations/Converted/Move/CHARM.txt @@ -0,0 +1,59 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CHARM] +Name = CHARM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = electric2 + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,142 + SetX = 3,432 + SetY = 3,134 + SetX = 4,424 + SetY = 4,126 + SetY = 5,118 + SetX = 6,352 + SetY = 6,78 + SetY = 7,70 + + Graphic = electric2 + Focus = Target + SetVisible = 0,true + SetX = 5,376 + SetY = 5,102 + + Graphic = electric2 + Focus = Target + SetX = 0,336 + SetY = 0,126 + SetVisible = 0,true + SetX = 1,344 + SetY = 1,118 + SetX = 2,352 + SetY = 2,110 + SetY = 3,102 + SetY = 4,94 + SetX = 5,344 + SetY = 5,86 + SetOpacity = 5,100 + SetX = 6,424 + SetY = 6,110 + SetOpacity = 6,255 + SetX = 7,432 + SetY = 7,102 + SetOpacity = 7,100 + SetX = 8,352 + SetY = 8,62 + SetOpacity = 8,255 + SetX = 9,344 + SetY = 9,54 + SetX = 10,336 + SetY = 10,46 + SetOpacity = 10,100 diff --git a/PBS/Animations/Converted/Move/CLEARSMOG.txt b/PBS/Animations/Converted/Move/CLEARSMOG.txt new file mode 100644 index 000000000..535bebd48 --- /dev/null +++ b/PBS/Animations/Converted/Move/CLEARSMOG.txt @@ -0,0 +1,26 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CLEARSMOG] +Name = CLEARSMOG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = UserAndTarget + SetX = 0,384 + SetY = 0,98 + SetVisible = 0,true + SetX = 2,385 + SetY = 2,95 + SetY = 3,98 + SetX = 4,382 + SetY = 4,97 + SetX = 5,383 + SetY = 5,101 + SetX = 6,382 + + Play = 0,Snore,86,100 diff --git a/PBS/Animations/Converted/Move/CLOSECOMBAT.txt b/PBS/Animations/Converted/Move/CLOSECOMBAT.txt new file mode 100644 index 000000000..e705bc9a1 --- /dev/null +++ b/PBS/Animations/Converted/Move/CLOSECOMBAT.txt @@ -0,0 +1,229 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CLOSECOMBAT] +Name = CLOSECOMBAT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 4,383 + SetY = 4,57 + SetOpacity = 4,47 + SetX = 5,401 + SetY = 5,118 + SetOpacity = 5,20 + SetX = 6,339 + SetY = 6,91 + SetOpacity = 6,72 + SetX = 8,385 + SetY = 8,99 + SetOpacity = 8,154 + SetX = 9,428 + SetY = 9,121 + SetOpacity = 9,255 + SetX = 10,396 + SetY = 10,138 + SetX = 11,389 + SetY = 11,139 + SetOpacity = 11,154 + SetX = 12,378 + SetY = 12,100 + SetOpacity = 12,255 + SetX = 13,372 + SetY = 13,116 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 1,361 + SetY = 1,125 + SetX = 2,344 + SetY = 2,154 + SetOpacity = 2,144 + SetX = 3,341 + SetY = 3,148 + SetOpacity = 3,43 + SetX = 4,422 + SetY = 4,75 + SetOpacity = 4,55 + SetX = 5,431 + SetY = 5,142 + SetOpacity = 5,54 + SetX = 6,372 + SetY = 6,78 + SetOpacity = 6,44 + SetX = 8,422 + SetY = 8,86 + SetOpacity = 8,170 + SetX = 9,395 + SetY = 9,142 + SetOpacity = 9,255 + SetX = 10,434 + SetY = 10,119 + SetX = 11,425 + SetY = 11,123 + SetOpacity = 11,114 + SetX = 12,410 + SetY = 12,91 + SetOpacity = 12,255 + SetX = 13,402 + SetY = 13,97 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 1,332 + SetY = 1,147 + SetX = 2,370 + SetY = 2,133 + SetOpacity = 2,172 + SetX = 3,361 + SetY = 3,136 + SetOpacity = 3,81 + SetX = 4,404 + SetY = 4,67 + SetOpacity = 4,63 + SetX = 5,417 + SetY = 5,124 + SetOpacity = 5,89 + SetX = 6,365 + SetY = 6,77 + SetOpacity = 6,74 + SetX = 8,407 + SetY = 8,85 + SetOpacity = 8,178 + SetX = 9,417 + SetY = 9,131 + SetOpacity = 9,255 + SetY = 10,125 + SetX = 11,411 + SetOpacity = 11,164 + SetX = 12,393 + SetY = 12,91 + SetOpacity = 12,255 + SetX = 13,388 + SetY = 13,103 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 1,353 + SetY = 1,137 + SetX = 2,361 + SetY = 2,134 + SetOpacity = 2,144 + SetY = 3,131 + SetOpacity = 3,36 + SetX = 4,395 + SetY = 4,109 + SetOpacity = 4,115 + SetX = 5,340 + SetY = 5,93 + SetOpacity = 5,154 + SetX = 6,378 + SetY = 6,99 + SetOpacity = 6,255 + SetX = 7,383 + SetY = 7,107 + SetX = 8,424 + SetY = 8,123 + SetX = 11,373 + SetY = 11,108 + SetX = 13,354 + SetY = 13,69 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 2,417 + SetY = 2,104 + SetX = 3,374 + SetY = 3,85 + SetOpacity = 3,164 + SetX = 4,431 + SetY = 4,133 + SetOpacity = 4,154 + SetX = 5,369 + SetY = 5,82 + SetOpacity = 5,143 + SetX = 6,408 + SetY = 6,86 + SetOpacity = 6,255 + SetX = 7,418 + SetY = 7,87 + SetX = 11,402 + SetY = 11,103 + SetX = 13,384 + SetY = 13,63 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 2,379 + SetY = 2,83 + SetX = 3,421 + SetY = 3,107 + SetOpacity = 3,144 + SetX = 4,414 + SetY = 4,119 + SetOpacity = 4,174 + SetX = 5,357 + SetY = 5,89 + SetOpacity = 5,144 + SetX = 6,401 + SetY = 6,96 + SetOpacity = 6,255 + SetX = 7,400 + SetY = 7,94 + SetX = 11,393 + SetY = 11,104 + SetX = 13,374 + SetY = 13,71 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 2,400 + SetY = 2,94 + SetX = 3,397 + SetY = 3,90 + SetOpacity = 3,154 + SetX = 4,338 + SetY = 4,89 + SetOpacity = 4,255 + SetX = 5,375 + SetY = 5,110 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 3,413 + SetY = 3,138 + SetX = 4,369 + SetY = 4,72 + SetX = 5,406 + SetY = 5,95 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 3,377 + SetY = 3,126 + SetX = 4,359 + SetY = 4,82 + SetX = 5,398 + SetY = 5,103 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 3,399 + SetY = 3,127 + + Play = 0,Comet Punch,100,105 diff --git a/PBS/Animations/Converted/Move/COMETPUNCH.txt b/PBS/Animations/Converted/Move/COMETPUNCH.txt new file mode 100644 index 000000000..46bbfe90f --- /dev/null +++ b/PBS/Animations/Converted/Move/COMETPUNCH.txt @@ -0,0 +1,176 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,COMETPUNCH] +Name = COMETPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,432 + SetY = 2,78 + SetX = 3,368 + SetY = 3,30 + SetX = 5,432 + SetY = 5,110 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,352 + SetY = 0,102 + SetVisible = 0,true + SetX = 3,432 + SetY = 3,78 + SetX = 5,368 + SetY = 5,30 + SetX = 6,432 + SetY = 6,110 + + Play = 0,Blow1,80,100 + Play = 2,Blow1,80,100 + Play = 5,Blow1,80,100 +#------------------------------- +[Move,COMETPUNCH,1] +Name = Comet Punch hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,352 + SetY = 0,102 + SetVisible = 0,true + SetX = 3,432 + SetY = 3,78 + SetX = 5,368 + SetY = 5,30 + SetX = 6,432 + SetY = 6,110 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,432 + SetY = 2,78 + SetX = 3,368 + SetY = 3,30 + SetX = 5,432 + SetY = 5,110 + + Play = 0,Blow1,80,100 + Play = 2,Blow1,80,100 + Play = 5,Blow1,80,100 +#------------------------------- +[Move,COMETPUNCH,2] +Name = Comet Punch hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,432 + SetY = 2,78 + SetX = 3,368 + SetY = 3,30 + SetX = 5,432 + SetY = 5,110 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,352 + SetY = 0,102 + SetVisible = 0,true + SetX = 3,432 + SetY = 3,78 + SetX = 5,368 + SetY = 5,30 + SetX = 6,432 + SetY = 6,110 + + Play = 0,Blow1,80,100 + Play = 2,Blow1,80,100 + Play = 5,Blow1,80,100 +#------------------------------- +[Move,COMETPUNCH,3] +Name = Comet Punch hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,352 + SetY = 0,102 + SetVisible = 0,true + SetX = 3,432 + SetY = 3,78 + SetX = 5,368 + SetY = 5,30 + SetX = 6,432 + SetY = 6,110 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,432 + SetY = 2,78 + SetX = 3,368 + SetY = 3,30 + SetX = 5,432 + SetY = 5,110 + + Play = 0,Blow1,80,100 + Play = 2,Blow1,80,100 + Play = 5,Blow1,80,100 +#------------------------------- +[Move,COMETPUNCH,4] +Name = Comet Punch hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,432 + SetY = 2,78 + SetX = 3,368 + SetY = 3,30 + SetX = 5,432 + SetY = 5,110 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,352 + SetY = 0,102 + SetVisible = 0,true + SetX = 3,432 + SetY = 3,78 + SetX = 5,368 + SetY = 5,30 + SetX = 6,432 + SetY = 6,110 + + Play = 0,Blow1,80,100 + Play = 2,Blow1,80,100 + Play = 5,Blow1,80,100 diff --git a/PBS/Animations/Converted/Move/CONFUSERAY.txt b/PBS/Animations/Converted/Move/CONFUSERAY.txt new file mode 100644 index 000000000..984f810b0 --- /dev/null +++ b/PBS/Animations/Converted/Move/CONFUSERAY.txt @@ -0,0 +1,52 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CONFUSERAY] +Name = CONFUSERAY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = estranho + Focus = UserAndTarget + SetX = 0,153 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,166 + SetY = 1,205 + SetX = 2,172 + SetY = 2,198 + SetX = 3,185 + SetY = 3,192 + SetX = 4,198 + SetY = 4,186 + SetX = 5,211 + SetY = 5,179 + SetX = 6,224 + SetY = 6,173 + SetX = 7,236 + SetY = 7,167 + SetX = 8,249 + SetY = 8,161 + SetX = 9,262 + SetY = 9,154 + SetX = 10,275 + SetY = 10,148 + SetX = 11,288 + SetY = 11,142 + SetX = 12,300 + SetY = 12,135 + SetX = 13,313 + SetY = 13,129 + SetX = 14,326 + SetY = 14,123 + SetX = 15,339 + SetY = 15,116 + SetX = 16,358 + SetY = 16,110 + SetOpacity = 17,100 + + Play = 1,Twine,80,100 + Play = 12,Confuse,80,100 diff --git a/PBS/Animations/Converted/Move/COTTONGUARD.txt b/PBS/Animations/Converted/Move/COTTONGUARD.txt new file mode 100644 index 000000000..421b13336 --- /dev/null +++ b/PBS/Animations/Converted/Move/COTTONGUARD.txt @@ -0,0 +1,87 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,COTTONGUARD] +Name = COTTONGUARD + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = animsheet + Focus = User + SetX = 0,113 + SetY = 0,263 + SetVisible = 0,true + SetX = 1,123 + SetY = 1,272 + SetX = 2,135 + SetY = 2,268 + SetY = 3,223 + SetX = 4,149 + SetY = 4,210 + SetX = 5,135 + SetY = 5,267 + SetX = 6,184 + SetY = 6,233 + + Graphic = animsheet + Focus = User + SetVisible = 0,true + SetX = 1,156 + SetY = 1,258 + SetX = 2,166 + SetY = 2,247 + SetX = 3,167 + SetY = 3,243 + SetX = 4,154 + SetY = 4,234 + SetX = 5,165 + SetY = 5,256 + SetX = 6,154 + SetY = 6,217 + + Graphic = animsheet + Focus = User + SetVisible = 0,true + SetX = 3,133 + SetY = 3,263 + SetX = 4,170 + SetY = 4,259 + SetX = 5,146 + SetY = 5,237 + SetX = 6,141 + SetY = 6,252 + + Graphic = animsheet + Focus = User + SetVisible = 0,true + SetX = 3,167 + SetY = 3,266 + SetX = 4,138 + SetY = 4,269 + SetX = 5,163 + SetY = 5,214 + SetX = 6,178 + SetY = 6,265 + + Graphic = animsheet + Focus = User + SetVisible = 0,true + SetX = 3,176 + SetY = 3,220 + SetX = 4,190 + SetY = 4,236 + SetX = 5,180 + SetY = 5,232 + SetX = 6,138 + SetY = 6,269 + + Graphic = animsheet + Focus = User + SetVisible = 0,true + SetX = 4,129 + SetY = 4,237 + + Play = 0,Substitute,80,100 diff --git a/PBS/Animations/Converted/Move/COTTONSPORE.txt b/PBS/Animations/Converted/Move/COTTONSPORE.txt new file mode 100644 index 000000000..46a500475 --- /dev/null +++ b/PBS/Animations/Converted/Move/COTTONSPORE.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,COTTONSPORE] +Name = COTTONSPORE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Special5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sand,80,100 diff --git a/PBS/Animations/Converted/Move/COUNTER.txt b/PBS/Animations/Converted/Move/COUNTER.txt new file mode 100644 index 000000000..e0167d6d8 --- /dev/null +++ b/PBS/Animations/Converted/Move/COUNTER.txt @@ -0,0 +1,134 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,COUNTER] +Name = COUNTER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,384 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,408 + SetY = 1,80 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,384 + SetY = 2,99 + SetZoomX = 2,100 + SetZoomY = 2,100 + SetX = 3,392 + SetY = 3,111 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,352 + SetY = 4,24 + SetX = 5,416 + SetY = 5,104 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,387 + SetY = 1,99 + SetX = 2,408 + SetY = 2,70 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,360 + SetY = 3,115 + SetX = 4,339 + SetY = 4,22 + SetX = 5,400 + SetY = 5,92 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,352 + SetY = 1,99 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,360 + SetY = 2,78 + SetX = 3,368 + SetY = 3,97 + SetX = 4,376 + SetY = 4,8 + SetX = 5,416 + SetY = 5,53 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,400 + SetY = 2,101 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,352 + SetY = 3,63 + SetY = 4,121 + SetX = 5,377 + SetY = 5,112 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,408 + SetY = 3,85 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,392 + SetY = 4,61 + SetX = 5,368 + SetY = 5,54 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,386 + SetY = 3,98 + SetX = 4,384 + SetZoomX = 4,50 + SetZoomY = 4,50 + SetX = 5,336 + SetY = 5,10 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,384 + SetY = 4,96 + SetX = 5,400 + SetY = 5,39 + SetZoomX = 5,50 + SetZoomY = 5,50 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,352 + SetY = 5,131 + SetZoomX = 5,50 + SetZoomY = 5,50 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,376 + SetY = 5,26 + SetZoomX = 5,50 + SetZoomY = 5,50 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,399 + SetY = 5,92 + + Play = 0,MiningCollapse,80,100 diff --git a/PBS/Animations/Converted/Move/CRUNCH.txt b/PBS/Animations/Converted/Move/CRUNCH.txt new file mode 100644 index 000000000..a8a99eb00 --- /dev/null +++ b/PBS/Animations/Converted/Move/CRUNCH.txt @@ -0,0 +1,90 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CRUNCH] +Name = CRUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = teeth + Focus = Target + SetX = 0,396 + SetY = 0,97 + SetVisible = 0,true + SetX = 1,391 + SetY = 1,98 + SetX = 2,387 + SetY = 2,99 + SetY = 3,97 + SetX = 4,381 + SetY = 4,92 + SetX = 5,389 + SetX = 6,388 + SetY = 6,96 + SetX = 7,389 + SetY = 7,99 + SetX = 8,388 + SetY = 8,93 + SetX = 9,384 + SetY = 9,94 + SetX = 10,395 + SetY = 10,98 + SetX = 11,391 + SetY = 11,93 + SetX = 12,384 + SetY = 12,97 + + Graphic = teeth + Focus = Target + SetVisible = 0,true + SetX = 7,444 + SetY = 7,115 + SetX = 8,418 + SetY = 8,95 + SetX = 9,379 + SetY = 9,112 + SetX = 10,331 + SetY = 10,128 + + Graphic = teeth + Focus = Target + SetVisible = 0,true + SetX = 7,343 + SetY = 7,94 + SetX = 8,329 + SetY = 8,104 + SetX = 9,425 + SetY = 9,119 + SetX = 10,437 + SetY = 10,116 + + Graphic = teeth + Focus = Target + SetVisible = 0,true + SetX = 8,343 + SetY = 8,95 + SetX = 9,327 + SetY = 9,115 + SetX = 10,387 + SetY = 10,141 + + Graphic = teeth + Focus = Target + SetVisible = 0,true + SetX = 8,442 + SetY = 8,99 + SetX = 9,391 + SetY = 9,152 + SetX = 10,404 + SetY = 10,114 + + Graphic = teeth + Focus = Target + SetVisible = 0,true + SetX = 10,325 + SetY = 10,96 + + Play = 7,Super Fang,100,111 diff --git a/PBS/Animations/Converted/Move/CRUSHCLAW.txt b/PBS/Animations/Converted/Move/CRUSHCLAW.txt new file mode 100644 index 000000000..8d14eb5a0 --- /dev/null +++ b/PBS/Animations/Converted/Move/CRUSHCLAW.txt @@ -0,0 +1,30 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CRUSHCLAW] +Name = CRUSHCLAW + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = dragon claw + Focus = Target + SetX = 0,387 + SetY = 0,84 + SetVisible = 0,true + SetX = 1,392 + SetY = 1,87 + SetX = 2,402 + SetY = 2,93 + SetX = 3,400 + SetY = 3,112 + SetX = 4,397 + SetY = 4,105 + SetY = 5,110 + SetX = 6,392 + SetX = 7,384 + + Play = 0,Slash,100,135 + Play = 4,Slash,100,135 diff --git a/PBS/Animations/Converted/Move/CURSE.txt b/PBS/Animations/Converted/Move/CURSE.txt new file mode 100644 index 000000000..96df1b0bd --- /dev/null +++ b/PBS/Animations/Converted/Move/CURSE.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CURSE] +Name = CURSE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ghost1 + Focus = Target + SetX = 0,392 + SetY = 0,14 + SetAngle = 0,90 + SetVisible = 0,true + SetY = 1,54 + SetY = 2,70 + SetY = 3,78 + SetX = 4,384 + + Play = 2,Darkness6,80,100 diff --git a/PBS/Animations/Converted/Move/CUT.txt b/PBS/Animations/Converted/Move/CUT.txt new file mode 100644 index 000000000..b886d071d --- /dev/null +++ b/PBS/Animations/Converted/Move/CUT.txt @@ -0,0 +1,20 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,CUT] +Name = CUT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 004-Attack02 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Slash10,80,100 + Play = 3,Slash2,80,100 + Play = 6,Slash11,80,100 diff --git a/PBS/Animations/Converted/Move/DEFENSECURL.txt b/PBS/Animations/Converted/Move/DEFENSECURL.txt new file mode 100644 index 000000000..1fa57c611 --- /dev/null +++ b/PBS/Animations/Converted/Move/DEFENSECURL.txt @@ -0,0 +1,34 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DEFENSECURL] +Name = DEFENSECURL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = User + SetX = 0,133 + SetY = 0,224 + SetVisible = 0,true + SetOpacity = 0,100 + SetX = 1,131 + SetY = 1,223 + SetOpacity = 1,110 + SetX = 2,134 + SetY = 2,221 + SetOpacity = 2,140 + SetX = 3,131 + SetOpacity = 3,170 + SetY = 4,222 + SetOpacity = 4,230 + SetX = 5,127 + SetY = 5,219 + SetOpacity = 5,255 + SetX = 6,132 + SetOpacity = 6,233 + + Play = 0,Defense Curl,100,100 diff --git a/PBS/Animations/Converted/Move/DETECT.txt b/PBS/Animations/Converted/Move/DETECT.txt new file mode 100644 index 000000000..c315e2446 --- /dev/null +++ b/PBS/Animations/Converted/Move/DETECT.txt @@ -0,0 +1,28 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DETECT] +Name = DETECT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = UserAndTarget + SetX = 0,422 + SetY = 0,66 + SetVisible = 0,true + SetX = 1,423 + SetY = 1,68 + SetX = 2,416 + SetY = 2,73 + SetX = 3,420 + SetY = 3,72 + SetX = 4,408 + SetY = 4,74 + SetX = 5,409 + SetY = 5,78 + + Play = 0,Flash2,80,85 diff --git a/PBS/Animations/Converted/Move/DISABLE.txt b/PBS/Animations/Converted/Move/DISABLE.txt new file mode 100644 index 000000000..5d42c0824 --- /dev/null +++ b/PBS/Animations/Converted/Move/DISABLE.txt @@ -0,0 +1,38 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DISABLE] +Name = DISABLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,385 + SetY = 4,96 + SetAngle = 4,45 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,388 + SetY = 6,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,385 + SetY = 0,101 + SetVisible = 0,true + SetX = 1,384 + SetY = 1,98 + SetY = 2,99 + SetX = 3,385 + SetY = 3,96 + SetX = 4,387 + SetY = 4,98 + + Play = 0,Sword2,80,121 diff --git a/PBS/Animations/Converted/Move/DIZZYPUNCH.txt b/PBS/Animations/Converted/Move/DIZZYPUNCH.txt new file mode 100644 index 000000000..87e0160e3 --- /dev/null +++ b/PBS/Animations/Converted/Move/DIZZYPUNCH.txt @@ -0,0 +1,193 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DIZZYPUNCH] +Name = DIZZYPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetX = 0,384 + SetY = 0,97 + SetVisible = 0,true + SetY = 1,96 + SetY = 2,91 + SetX = 4,387 + SetY = 4,96 + SetX = 6,383 + SetY = 6,97 + SetX = 7,388 + SetY = 7,91 + SetX = 8,384 + SetY = 8,96 + SetY = 9,97 + SetY = 10,96 + SetY = 11,91 + SetX = 13,387 + SetY = 13,96 + SetX = 15,383 + SetY = 15,97 + SetX = 16,388 + SetY = 16,91 + SetX = 17,384 + SetY = 17,96 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 1,388 + SetY = 1,102 + SetX = 2,390 + SetY = 2,98 + SetX = 4,445 + SetY = 4,88 + SetX = 5,415 + SetY = 5,124 + SetX = 6,378 + SetY = 6,128 + SetY = 7,118 + SetX = 8,407 + SetY = 8,111 + SetX = 10,388 + SetY = 10,102 + SetX = 11,390 + SetY = 11,98 + SetX = 13,445 + SetY = 13,88 + SetX = 14,415 + SetY = 14,124 + SetX = 15,378 + SetY = 15,128 + SetY = 16,118 + SetX = 17,407 + SetY = 17,111 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,447 + SetY = 2,80 + SetX = 4,469 + SetY = 4,105 + SetX = 5,428 + SetY = 5,142 + SetX = 6,356 + SetY = 6,156 + SetX = 7,364 + SetY = 7,146 + SetX = 8,422 + SetY = 8,139 + SetX = 11,447 + SetY = 11,80 + SetX = 13,469 + SetY = 13,105 + SetX = 14,428 + SetY = 14,142 + SetX = 15,356 + SetY = 15,156 + SetX = 16,364 + SetY = 16,146 + SetX = 17,422 + SetY = 17,139 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,471 + SetY = 2,88 + SetX = 4,356 + SetY = 4,68 + SetX = 5,351 + SetY = 5,38 + SetX = 6,411 + SetY = 6,54 + SetX = 7,422 + SetY = 7,50 + SetX = 8,357 + SetY = 8,112 + SetX = 11,471 + SetY = 11,88 + SetX = 13,356 + SetY = 13,68 + SetX = 14,351 + SetY = 14,38 + SetX = 15,411 + SetY = 15,54 + SetX = 16,422 + SetY = 16,50 + SetX = 17,357 + SetY = 17,112 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 3,346 + SetY = 3,82 + SetX = 4,329 + SetY = 4,60 + SetX = 6,432 + SetY = 6,30 + SetX = 7,442 + SetY = 7,28 + SetX = 8,336 + SetY = 8,129 + SetX = 12,346 + SetY = 12,82 + SetX = 13,329 + SetY = 13,60 + SetX = 15,432 + SetY = 15,30 + SetX = 16,442 + SetY = 16,28 + SetX = 17,336 + SetY = 17,129 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 3,316 + SetY = 3,91 + SetX = 5,377 + SetY = 5,58 + SetX = 7,356 + SetY = 7,67 + SetX = 8,377 + SetY = 8,58 + SetX = 12,316 + SetY = 12,91 + SetX = 14,377 + SetY = 14,58 + SetX = 16,356 + SetY = 16,67 + SetX = 17,377 + SetY = 17,58 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,426 + SetY = 7,103 + SetX = 8,361 + SetY = 8,36 + SetX = 16,426 + SetY = 16,103 + SetX = 17,361 + SetY = 17,36 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 8,427 + SetY = 8,74 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 8,447 + SetY = 8,64 + + Play = 0,Dizzy Punch,100,100 diff --git a/PBS/Animations/Converted/Move/DOUBLEEDGE.txt b/PBS/Animations/Converted/Move/DOUBLEEDGE.txt new file mode 100644 index 000000000..55e09ccfc --- /dev/null +++ b/PBS/Animations/Converted/Move/DOUBLEEDGE.txt @@ -0,0 +1,48 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DOUBLEEDGE] +Name = DOUBLEEDGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Divine_Smash + Focus = Target + SetVisible = 0,true + SetX = 1,198 + SetY = 1,236 + SetY = 2,179 + SetX = 3,96 + SetY = 3,167 + SetX = 8,358 + SetY = 8,110 + + Graphic = Divine_Smash + Focus = User + SetVisible = 0,true + SetX = 2,96 + SetY = 2,230 + + Graphic = Divine_Smash + Focus = Target + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetY = 1,192 + SetY = 2,129 + SetX = 3,198 + SetY = 3,116 + SetX = 4,96 + SetY = 4,129 + SetX = 5,358 + SetY = 5,110 + SetOpacity = 5,50 + SetOpacity = 7,255 + SetX = 10,352 + SetAngle = 10,90 + + Play = 0,throw,80,100 + Play = 6,Damage1,80,100 diff --git a/PBS/Animations/Converted/Move/DOUBLEKICK.txt b/PBS/Animations/Converted/Move/DOUBLEKICK.txt new file mode 100644 index 000000000..184a1d627 --- /dev/null +++ b/PBS/Animations/Converted/Move/DOUBLEKICK.txt @@ -0,0 +1,73 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DOUBLEKICK] +Name = DOUBLEKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,336 + SetY = 0,94 + SetZoomX = 0,110 + SetZoomY = 0,110 + SetVisible = 0,true + SetOpacity = 0,100 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetX = 3,440 + SetY = 3,78 + SetOpacity = 5,100 + + Graphic = normal1 + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,78 + SetZoomX = 2,110 + SetZoomY = 2,110 + SetOpacity = 2,100 + + Play = 1,Blow3,80,100 + Play = 3,Blow3,80,100 +#------------------------------- +[Move,DOUBLEKICK,1] +Name = Double Kick hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,78 + SetZoomX = 2,110 + SetZoomY = 2,110 + SetOpacity = 2,100 + + Graphic = normal1 + Focus = Target + SetX = 0,336 + SetY = 0,94 + SetZoomX = 0,110 + SetZoomY = 0,110 + SetVisible = 0,true + SetOpacity = 0,100 + SetZoomX = 1,100 + SetZoomY = 1,100 + SetOpacity = 1,255 + SetX = 3,440 + SetY = 3,78 + SetOpacity = 5,100 + + Play = 1,Blow3,80,100 + Play = 3,Blow3,80,100 diff --git a/PBS/Animations/Converted/Move/DOUBLESLAP.txt b/PBS/Animations/Converted/Move/DOUBLESLAP.txt new file mode 100644 index 000000000..714c55ca7 --- /dev/null +++ b/PBS/Animations/Converted/Move/DOUBLESLAP.txt @@ -0,0 +1,176 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DOUBLESLAP] +Name = DOUBLESLAP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 3,100 + SetX = 7,384 + SetOpacity = 7,255 + + Graphic = many + Focus = Target + SetX = 0,520 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,480 + SetX = 2,424 + SetX = 3,392 + SetX = 4,224 + SetX = 5,296 + SetX = 6,344 + SetX = 7,384 + SetOpacity = 8,100 + + Play = 3,Blow5,80,100 + Play = 7,Blow5,80,100 +#------------------------------- +[Move,DOUBLESLAP,1] +Name = DoubleSlap hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,520 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,480 + SetX = 2,424 + SetX = 3,392 + SetX = 4,224 + SetX = 5,296 + SetX = 6,344 + SetX = 7,384 + SetOpacity = 8,100 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 3,100 + SetX = 7,384 + SetOpacity = 7,255 + + Play = 3,Blow5,80,100 + Play = 7,Blow5,80,100 +#------------------------------- +[Move,DOUBLESLAP,2] +Name = DoubleSlap hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 3,100 + SetX = 7,384 + SetOpacity = 7,255 + + Graphic = many + Focus = Target + SetX = 0,520 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,480 + SetX = 2,424 + SetX = 3,392 + SetX = 4,224 + SetX = 5,296 + SetX = 6,344 + SetX = 7,384 + SetOpacity = 8,100 + + Play = 3,Blow5,80,100 + Play = 7,Blow5,80,100 +#------------------------------- +[Move,DOUBLESLAP,3] +Name = DoubleSlap hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,520 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,480 + SetX = 2,424 + SetX = 3,392 + SetX = 4,224 + SetX = 5,296 + SetX = 6,344 + SetX = 7,384 + SetOpacity = 8,100 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 3,100 + SetX = 7,384 + SetOpacity = 7,255 + + Play = 3,Blow5,80,100 + Play = 7,Blow5,80,100 +#------------------------------- +[Move,DOUBLESLAP,4] +Name = DoubleSlap hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 3,100 + SetX = 7,384 + SetOpacity = 7,255 + + Graphic = many + Focus = Target + SetX = 0,520 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,480 + SetX = 2,424 + SetX = 3,392 + SetX = 4,224 + SetX = 5,296 + SetX = 6,344 + SetX = 7,384 + SetOpacity = 8,100 + + Play = 3,Blow5,80,100 + Play = 7,Blow5,80,100 diff --git a/PBS/Animations/Converted/Move/DRAGONBREATH.txt b/PBS/Animations/Converted/Move/DRAGONBREATH.txt new file mode 100644 index 000000000..d81ff174f --- /dev/null +++ b/PBS/Animations/Converted/Move/DRAGONBREATH.txt @@ -0,0 +1,112 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DRAGONBREATH] +Name = DRAGONBREATH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fire5 + Focus = UserAndTarget + SetX = 0,153 + SetY = 0,205 + SetVisible = 0,true + SetX = 1,204 + SetY = 1,186 + SetX = 2,256 + SetY = 2,167 + SetX = 3,307 + SetY = 3,142 + SetX = 4,339 + SetY = 4,123 + SetX = 5,358 + SetY = 5,110 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,179 + SetY = 1,198 + SetX = 2,217 + SetX = 3,288 + SetY = 3,179 + SetX = 4,300 + SetY = 4,173 + SetZoomX = 4,75 + SetZoomY = 4,75 + SetX = 5,326 + SetY = 5,167 + SetZoomX = 5,100 + SetZoomY = 5,100 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 2,true + SetX = 2,217 + SetY = 2,186 + SetFlip = 3,false + SetX = 3,268 + SetY = 3,192 + SetX = 4,281 + SetY = 4,186 + SetX = 5,307 + SetY = 5,179 + SetZoomX = 5,75 + SetZoomY = 5,75 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 2,true + SetX = 2,179 + SetY = 2,205 + SetX = 3,230 + SetY = 3,198 + SetX = 4,249 + SetY = 4,192 + SetZoomX = 4,75 + SetZoomY = 4,75 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,236 + SetY = 2,154 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,230 + SetY = 3,205 + SetZoomX = 3,100 + SetZoomY = 3,100 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,345 + SetY = 3,154 + SetZoomX = 3,50 + SetZoomY = 3,50 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,294 + SetY = 3,142 + SetZoomX = 3,40 + SetZoomY = 3,40 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,211 + SetY = 3,211 + SetZoomX = 3,75 + SetZoomY = 3,75 + + Play = 0,Fire4,80,100 diff --git a/PBS/Animations/Converted/Move/DRAGONCLAW.txt b/PBS/Animations/Converted/Move/DRAGONCLAW.txt new file mode 100644 index 000000000..7d2ff7bf7 --- /dev/null +++ b/PBS/Animations/Converted/Move/DRAGONCLAW.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DRAGONCLAW] +Name = DRAGONCLAW + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,360 + SetAngle = 1,25 + SetY = 2,102 + SetAngle = 2,0 + + Play = 0,Slash9,80,100 + Play = 0,Thunder4,80,100 diff --git a/PBS/Animations/Converted/Move/DRAGONDANCE.txt b/PBS/Animations/Converted/Move/DRAGONDANCE.txt new file mode 100644 index 000000000..7b153acd7 --- /dev/null +++ b/PBS/Animations/Converted/Move/DRAGONDANCE.txt @@ -0,0 +1,28 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DRAGONDANCE] +Name = DRAGONDANCE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = electric1 + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,46 + SetY = 7,94 + + Graphic = electric1 + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,94 + SetY = 7,46 + SetY = 9,94 + SetOpacity = 12,100 + + Play = 0,Twine,80,100 diff --git a/PBS/Animations/Converted/Move/DRAGONRAGE.txt b/PBS/Animations/Converted/Move/DRAGONRAGE.txt new file mode 100644 index 000000000..4dedd0b8b --- /dev/null +++ b/PBS/Animations/Converted/Move/DRAGONRAGE.txt @@ -0,0 +1,64 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DRAGONRAGE] +Name = DRAGONRAGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,179 + SetY = 1,198 + SetX = 2,217 + SetX = 3,288 + SetY = 3,179 + SetX = 4,300 + SetY = 4,173 + SetZoomX = 4,75 + SetZoomY = 4,75 + SetX = 5,326 + SetY = 5,167 + SetZoomX = 5,100 + SetZoomY = 5,100 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 2,true + SetX = 2,217 + SetY = 2,186 + SetFlip = 3,false + SetX = 3,268 + SetY = 3,192 + SetX = 4,281 + SetY = 4,186 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,230 + SetY = 3,198 + + Graphic = fire5 + Focus = UserAndTarget + SetX = 0,153 + SetY = 0,205 + SetVisible = 0,true + SetX = 1,204 + SetY = 1,186 + SetX = 2,256 + SetY = 2,167 + SetX = 3,307 + SetY = 3,142 + SetX = 4,339 + SetY = 4,123 + SetX = 5,358 + SetY = 5,110 + + Play = 0,Fire6,80,100 diff --git a/PBS/Animations/Converted/Move/DYNAMICPUNCH.txt b/PBS/Animations/Converted/Move/DYNAMICPUNCH.txt new file mode 100644 index 000000000..49411b87e --- /dev/null +++ b/PBS/Animations/Converted/Move/DYNAMICPUNCH.txt @@ -0,0 +1,55 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,DYNAMICPUNCH] +Name = DYNAMICPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 1,389 + SetY = 1,99 + SetX = 2,386 + SetX = 3,383 + SetY = 3,107 + SetX = 4,386 + SetY = 4,99 + SetX = 5,384 + SetY = 5,108 + + Graphic = punches + Focus = Target + SetX = 0,389 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,386 + SetY = 1,96 + SetX = 2,389 + SetY = 2,94 + SetX = 3,384 + SetY = 3,99 + SetZoomX = 3,150 + SetZoomY = 3,150 + SetOpacity = 3,250 + SetX = 4,386 + SetY = 4,90 + SetZoomX = 4,180 + SetZoomY = 4,180 + SetOpacity = 4,194 + SetX = 5,388 + SetY = 5,96 + SetZoomX = 5,250 + SetZoomY = 5,250 + SetOpacity = 5,120 + SetX = 7,390 + SetY = 7,99 + SetZoomX = 7,150 + SetZoomY = 7,150 + SetOpacity = 7,255 + + Play = 0,Take Down,100,104 diff --git a/PBS/Animations/Converted/Move/EMBER.txt b/PBS/Animations/Converted/Move/EMBER.txt new file mode 100644 index 000000000..00eedaf36 --- /dev/null +++ b/PBS/Animations/Converted/Move/EMBER.txt @@ -0,0 +1,48 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,EMBER] +Name = EMBER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,144 + SetY = 1,204 + SetFlip = 2,true + SetX = 2,164 + SetY = 2,196 + SetFlip = 3,false + SetX = 3,185 + SetY = 3,180 + SetFlip = 4,true + SetX = 4,206 + SetY = 4,172 + SetFlip = 5,false + SetX = 5,227 + SetY = 5,164 + SetFlip = 6,true + SetX = 6,248 + SetY = 6,156 + SetFlip = 7,false + SetX = 7,268 + SetY = 7,148 + SetX = 8,289 + SetY = 8,132 + + Graphic = Flames + Focus = UserAndTarget + SetVisible = 0,true + SetX = 9,310 + SetY = 9,126 + SetFlip = 10,true + SetX = 10,331 + SetY = 10,116 + SetFlip = 11,false + + Play = 1,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/ENCORE.txt b/PBS/Animations/Converted/Move/ENCORE.txt new file mode 100644 index 000000000..10fd4af71 --- /dev/null +++ b/PBS/Animations/Converted/Move/ENCORE.txt @@ -0,0 +1,60 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ENCORE] +Name = ENCORE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = BABACOMETRO + Focus = UserAndTarget + SetX = 0,96 + SetY = 0,186 + SetVisible = 0,true + SetX = 1,108 + SetX = 2,121 + SetX = 3,160 + SetX = 4,96 + SetX = 5,108 + SetX = 6,140 + SetX = 7,108 + SetX = 8,166 + SetX = 9,108 + SetX = 10,121 + SetX = 11,160 + SetX = 12,96 + SetX = 13,108 + SetX = 14,140 + SetX = 15,108 + SetX = 16,89 + SetX = 17,115 + SetX = 18,147 + + Graphic = BABACOMETRO + Focus = UserAndTarget + SetX = 0,172 + SetY = 0,186 + SetVisible = 0,true + SetX = 1,160 + SetX = 2,140 + SetX = 3,108 + SetX = 4,172 + SetX = 5,160 + SetX = 6,121 + SetX = 7,160 + SetX = 8,96 + SetX = 9,153 + SetX = 10,140 + SetX = 11,108 + SetX = 12,172 + SetX = 13,160 + SetX = 14,121 + SetX = 15,160 + SetX = 16,179 + SetX = 17,160 + SetX = 18,128 + + Play = 0,Applause,80,100 diff --git a/PBS/Animations/Converted/Move/ENERGYBALL.txt b/PBS/Animations/Converted/Move/ENERGYBALL.txt new file mode 100644 index 000000000..16c08fc5c --- /dev/null +++ b/PBS/Animations/Converted/Move/ENERGYBALL.txt @@ -0,0 +1,38 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ENERGYBALL] +Name = ENERGYBALL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,393 + SetY = 0,117 + SetZoomX = 0,80 + SetZoomY = 0,80 + SetVisible = 0,true + SetZoomX = 1,90 + SetZoomY = 1,90 + SetZoomX = 2,100 + SetZoomY = 2,100 + SetZoomX = 3,110 + SetZoomY = 3,110 + SetZoomX = 4,120 + SetZoomY = 4,120 + SetZoomX = 5,130 + SetZoomY = 5,130 + SetZoomX = 6,140 + SetZoomY = 6,140 + SetZoomX = 7,150 + SetZoomY = 7,150 + SetZoomX = 8,160 + SetZoomY = 8,160 + SetZoomX = 9,170 + SetZoomY = 9,170 + + Play = 0,Uproar,100,85 diff --git a/PBS/Animations/Converted/Move/ERUPTION.txt b/PBS/Animations/Converted/Move/ERUPTION.txt new file mode 100644 index 000000000..d9d9fbab1 --- /dev/null +++ b/PBS/Animations/Converted/Move/ERUPTION.txt @@ -0,0 +1,75 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ERUPTION] +Name = ERUPTION + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,211 + SetY = 2,167 + SetAngle = 2,30 + SetX = 3,268 + SetY = 3,142 + SetAngle = 3,15 + SetX = 4,294 + SetY = 4,123 + SetX = 5,332 + SetY = 5,110 + SetAngle = 5,10 + SetX = 6,364 + SetAngle = 6,0 + SetX = 7,262 + SetY = 7,91 + SetAngle = 7,10 + + Graphic = fire5 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,147 + SetY = 4,161 + SetAngle = 4,30 + SetX = 5,179 + SetY = 5,142 + SetAngle = 5,15 + SetX = 6,204 + SetY = 6,110 + + Graphic = fire5 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,167 + SetAngle = 0,30 + SetVisible = 0,true + SetX = 1,198 + SetY = 1,148 + SetAngle = 1,15 + SetX = 2,236 + SetY = 2,116 + SetX = 3,268 + SetY = 3,98 + SetAngle = 3,10 + SetX = 4,313 + SetAngle = 4,0 + SetX = 5,358 + SetY = 5,110 + SetX = 6,364 + SetX = 7,377 + SetY = 7,116 + SetX = 8,326 + SetY = 8,91 + SetX = 9,358 + SetY = 9,104 + SetX = 10,371 + SetY = 10,123 + + Play = 0,Fire5,80,100 + Play = 0,Fire2,80,100 + Play = 3,Fire2,80,100 + Play = 6,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/EXPLOSION.txt b/PBS/Animations/Converted/Move/EXPLOSION.txt new file mode 100644 index 000000000..db7ed24e0 --- /dev/null +++ b/PBS/Animations/Converted/Move/EXPLOSION.txt @@ -0,0 +1,66 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,EXPLOSION] +Name = EXPLOSION + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Fire3 + Focus = Target + SetX = 0,424 + SetY = 0,46 + SetVisible = 0,true + SetOpacity = 0,50 + SetX = 2,400 + SetY = 2,142 + SetOpacity = 2,255 + SetX = 13,392 + SetY = 13,78 + SetX = 15,424 + SetY = 15,46 + SetOpacity = 15,150 + + Graphic = Fire3 + Focus = Target + SetVisible = 0,true + SetX = 2,424 + SetY = 2,46 + SetOpacity = 2,100 + SetOpacity = 3,255 + SetX = 6,392 + SetY = 6,78 + SetOpacity = 6,100 + SetOpacity = 7,255 + SetX = 13,424 + SetY = 13,46 + + Graphic = Fire3 + Focus = Target + SetVisible = 0,true + SetX = 6,424 + SetY = 6,46 + + Graphic = Fire3 + Focus = Target + SetX = 0,296 + SetY = 0,94 + SetVisible = 0,true + SetOpacity = 12,150 + SetX = 13,400 + SetY = 13,142 + SetOpacity = 13,255 + SetOpacity = 14,150 + SetX = 15,392 + SetY = 15,78 + SetOpacity = 15,255 + SetOpacity = 16,200 + SetOpacity = 17,150 + + Play = 0,Explosion3,80,100 + Play = 2,Explosion7,80,100 + Play = 5,Explosion3,80,100 + Play = 8,Explosion2,80,100 diff --git a/PBS/Animations/Converted/Move/FAKEOUT.txt b/PBS/Animations/Converted/Move/FAKEOUT.txt new file mode 100644 index 000000000..d66b1e19b --- /dev/null +++ b/PBS/Animations/Converted/Move/FAKEOUT.txt @@ -0,0 +1,41 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FAKEOUT] +Name = FAKEOUT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Fakeout + Focus = Target + SetFlip = 0,true + SetX = 0,480 + SetY = 0,102 + SetVisible = 0,true + SetX = 6,464 + SetX = 7,448 + SetX = 8,400 + SetX = 9,384 + SetX = 12,400 + SetX = 13,448 + SetX = 14,464 + SetX = 15,480 + + Graphic = Fakeout + Focus = Target + SetX = 0,288 + SetY = 0,102 + SetVisible = 0,true + SetX = 6,304 + SetX = 7,320 + SetX = 8,368 + SetX = 9,384 + SetX = 12,368 + SetX = 13,320 + SetX = 14,304 + SetX = 15,288 + + Play = 9,punch5,80,150 diff --git a/PBS/Animations/Converted/Move/FAKETEARS.txt b/PBS/Animations/Converted/Move/FAKETEARS.txt new file mode 100644 index 000000000..19aa120a0 --- /dev/null +++ b/PBS/Animations/Converted/Move/FAKETEARS.txt @@ -0,0 +1,84 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FAKETEARS] +Name = FAKETEARS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison2 + Focus = User + SetVisible = 0,true + SetFlip = 1,true + SetX = 1,56 + SetY = 1,230 + SetX = 3,40 + SetY = 3,214 + SetX = 4,29 + SetY = 4,209 + SetX = 5,15 + SetY = 5,225 + SetFlip = 6,false + SetX = 6,240 + SetY = 6,222 + SetX = 7,7 + SetY = 7,208 + SetX = 8,-7 + SetY = 8,214 + SetX = 9,-16 + SetY = 9,227 + + Graphic = poison2 + Focus = User + SetVisible = 0,true + SetX = 2,200 + SetY = 2,222 + SetX = 4,221 + SetY = 4,217 + SetX = 5,234 + SetY = 5,216 + SetFlip = 6,true + SetX = 6,-3 + SetY = 6,203 + + Graphic = poison2 + Focus = User + SetVisible = 0,true + SetFlip = 5,true + SetX = 5,10 + SetY = 5,204 + + Graphic = poison2 + Focus = User + SetX = 0,184 + SetY = 0,238 + SetVisible = 0,true + SetX = 1,192 + SetY = 1,230 + SetFlip = 2,true + SetX = 2,48 + SetY = 2,222 + SetFlip = 3,false + SetX = 3,211 + SetY = 3,218 + SetX = 4,224 + SetY = 4,230 + SetX = 5,232 + SetY = 5,238 + SetFlip = 6,true + SetX = 6,4 + SetY = 6,233 + SetFlip = 7,false + SetX = 7,248 + SetY = 7,226 + SetX = 8,258 + SetY = 8,234 + SetX = 9,270 + SetY = 9,248 + + Play = 0,Water1,40,70 + Play = 2,Water1,40,70 + Play = 4,Water1,40,70 diff --git a/PBS/Animations/Converted/Move/FIERYDANCE.txt b/PBS/Animations/Converted/Move/FIERYDANCE.txt new file mode 100644 index 000000000..5314da5b6 --- /dev/null +++ b/PBS/Animations/Converted/Move/FIERYDANCE.txt @@ -0,0 +1,118 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIERYDANCE] +Name = FIERYDANCE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,419 + SetY = 0,80 + SetVisible = 0,true + SetX = 1,424 + SetY = 1,86 + SetX = 2,425 + SetY = 2,92 + SetX = 3,416 + SetY = 3,84 + SetX = 4,358 + SetY = 4,102 + SetX = 5,354 + SetY = 5,108 + SetX = 6,339 + SetY = 6,79 + SetX = 7,386 + SetY = 7,100 + SetX = 8,367 + SetY = 8,127 + SetX = 9,374 + SetY = 9,108 + SetX = 10,373 + SetY = 10,101 + SetX = 11,388 + SetY = 11,97 + SetX = 12,385 + SetY = 12,92 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,364 + SetY = 1,85 + SetX = 2,359 + SetY = 2,82 + SetX = 3,356 + SetY = 3,84 + SetX = 4,413 + SetY = 4,104 + SetX = 5,398 + SetY = 5,90 + SetX = 6,382 + SetY = 6,39 + SetX = 7,421 + SetY = 7,82 + SetX = 8,418 + SetY = 8,110 + SetX = 9,422 + SetY = 9,100 + SetX = 10,407 + SetY = 10,57 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,411 + SetY = 1,49 + SetX = 2,407 + SetY = 2,50 + SetX = 3,403 + SetY = 3,40 + SetX = 4,404 + SetY = 4,50 + SetX = 5,438 + SetY = 5,41 + SetX = 6,419 + SetY = 6,84 + SetX = 7,399 + SetY = 7,54 + SetX = 8,388 + SetY = 8,75 + SetX = 9,399 + SetY = 9,50 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 3,338 + SetY = 3,51 + SetX = 4,321 + SetY = 4,48 + SetX = 5,435 + SetY = 5,118 + SetX = 7,410 + SetY = 7,115 + SetX = 8,424 + SetY = 8,52 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,373 + SetY = 4,55 + SetX = 7,359 + SetY = 7,63 + SetX = 8,342 + SetY = 8,49 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 7,351 + SetY = 7,107 + + Play = 0,Wring Out,80,100 diff --git a/PBS/Animations/Converted/Move/FINALGAMBIT.txt b/PBS/Animations/Converted/Move/FINALGAMBIT.txt new file mode 100644 index 000000000..97898ffb8 --- /dev/null +++ b/PBS/Animations/Converted/Move/FINALGAMBIT.txt @@ -0,0 +1,57 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FINALGAMBIT] +Name = FINALGAMBIT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetX = 0,364 + SetY = 0,126 + SetVisible = 0,true + SetX = 1,362 + SetY = 1,122 + SetX = 2,391 + SetY = 2,127 + SetX = 3,396 + SetY = 3,122 + SetX = 4,367 + SetY = 4,100 + SetX = 5,388 + SetY = 5,97 + SetX = 6,387 + SetY = 6,108 + SetX = 7,356 + SetY = 7,76 + SetX = 8,405 + SetY = 8,107 + SetX = 9,404 + SetY = 9,108 + SetX = 10,377 + SetY = 10,84 + SetX = 11,386 + SetY = 11,107 + SetX = 12,411 + SetY = 12,67 + SetX = 13,414 + SetY = 13,74 + SetX = 14,400 + SetY = 14,113 + SetX = 15,387 + SetY = 15,114 + SetY = 16,137 + SetX = 17,384 + SetY = 17,136 + SetX = 18,375 + SetY = 18,76 + SetX = 19,416 + SetY = 19,89 + SetX = 20,407 + SetY = 20,108 + + Play = 0,MiningCollapse,100,100 diff --git a/PBS/Animations/Converted/Move/FIREBLAST.txt b/PBS/Animations/Converted/Move/FIREBLAST.txt new file mode 100644 index 000000000..a5dc2f575 --- /dev/null +++ b/PBS/Animations/Converted/Move/FIREBLAST.txt @@ -0,0 +1,30 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIREBLAST] +Name = FIREBLAST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fire blast + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetY = 2,95 + SetY = 3,92 + SetX = 4,383 + SetY = 4,91 + SetX = 5,384 + SetY = 5,98 + SetY = 6,94 + SetY = 7,96 + SetX = 8,382 + SetY = 8,92 + SetX = 9,385 + SetY = 9,89 + + Play = 0,Voltorb Flip Explosion,95,101 diff --git a/PBS/Animations/Converted/Move/FIREFANG.txt b/PBS/Animations/Converted/Move/FIREFANG.txt new file mode 100644 index 000000000..f2c66f643 --- /dev/null +++ b/PBS/Animations/Converted/Move/FIREFANG.txt @@ -0,0 +1,101 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIREFANG] +Name = FIREFANG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = element fangs + Focus = Target + SetX = 0,391 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,394 + SetY = 1,96 + SetX = 2,386 + SetY = 2,93 + SetX = 3,392 + SetY = 3,99 + SetX = 4,381 + SetY = 4,98 + SetX = 5,384 + SetY = 5,94 + SetX = 6,386 + SetY = 6,96 + SetX = 8,391 + SetY = 8,95 + SetX = 9,382 + SetY = 9,87 + SetX = 10,395 + SetY = 10,96 + SetX = 11,393 + SetY = 11,98 + SetY = 12,93 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 7,411 + SetY = 7,88 + SetY = 8,89 + SetY = 9,82 + SetX = 10,415 + SetY = 10,89 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,418 + SetY = 8,70 + SetX = 9,414 + SetY = 9,61 + SetX = 10,420 + SetY = 10,69 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,353 + SetY = 8,73 + SetX = 9,349 + SetY = 9,40 + SetX = 10,405 + SetY = 10,53 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 9,359 + SetY = 9,33 + SetX = 10,348 + SetY = 10,48 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 10,358 + SetY = 10,44 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 10,375 + SetY = 10,40 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 10,356 + SetY = 10,104 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 10,365 + SetY = 10,32 + + Play = 6,Vice Grip,100,114 diff --git a/PBS/Animations/Converted/Move/FIREPLEDGE.txt b/PBS/Animations/Converted/Move/FIREPLEDGE.txt new file mode 100644 index 000000000..c8f63d4dd --- /dev/null +++ b/PBS/Animations/Converted/Move/FIREPLEDGE.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIREPLEDGE] +Name = FIREPLEDGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet.2 + Focus = Target + SetX = 0,388 + SetY = 0,135 + SetZoomY = 0,30 + SetVisible = 0,true + SetX = 1,387 + SetY = 1,123 + SetZoomY = 1,50 + SetY = 2,111 + SetZoomY = 2,75 + SetX = 3,386 + SetY = 3,100 + SetZoomY = 3,100 + SetX = 4,387 + SetY = 4,111 + SetZoomY = 4,75 + SetX = 5,386 + SetY = 5,100 + SetZoomY = 5,100 + SetX = 6,384 + SetY = 6,98 + SetY = 7,95 + + Play = 0,Mega Punch,100,100 diff --git a/PBS/Animations/Converted/Move/FIREPUNCH.txt b/PBS/Animations/Converted/Move/FIREPUNCH.txt new file mode 100644 index 000000000..3badeb032 --- /dev/null +++ b/PBS/Animations/Converted/Move/FIREPUNCH.txt @@ -0,0 +1,113 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIREPUNCH] +Name = FIREPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetX = 0,387 + SetY = 0,97 + SetVisible = 0,true + SetX = 1,402 + SetY = 1,88 + SetX = 2,403 + SetY = 2,96 + SetX = 3,404 + SetY = 3,104 + SetX = 4,406 + SetY = 4,107 + SetX = 5,410 + SetY = 5,101 + SetX = 6,395 + SetY = 6,74 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 1,390 + SetY = 1,95 + SetX = 2,384 + SetY = 2,98 + SetX = 3,366 + SetY = 3,72 + SetX = 4,363 + SetY = 4,90 + SetX = 5,395 + SetY = 5,76 + SetX = 6,413 + SetY = 6,96 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 3,385 + SetY = 3,101 + SetX = 4,395 + SetY = 4,69 + SetX = 5,364 + SetY = 5,91 + SetX = 6,393 + SetY = 6,113 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 4,384 + SetY = 4,103 + SetX = 5,381 + SetY = 5,109 + SetX = 6,370 + SetY = 6,98 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 5,387 + SetY = 5,104 + SetX = 6,392 + SetY = 6,106 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,403 + SetY = 7,82 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 8,374 + SetY = 8,81 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 9,398 + SetY = 9,64 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 10,388 + SetY = 10,102 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 11,403 + SetY = 11,110 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 11,377 + SetY = 11,115 + + Play = 0,Slam,100,115 + Play = 1,Explosion,100,100 diff --git a/PBS/Animations/Converted/Move/FIRESPIN.txt b/PBS/Animations/Converted/Move/FIRESPIN.txt new file mode 100644 index 000000000..0170aedc9 --- /dev/null +++ b/PBS/Animations/Converted/Move/FIRESPIN.txt @@ -0,0 +1,38 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FIRESPIN] +Name = FIRESPIN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = grass2 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetOpacity = 0,100 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetOpacity = 1,150 + SetY = 2,86 + SetZoomX = 2,75 + SetZoomY = 2,75 + SetOpacity = 2,200 + SetY = 3,78 + SetZoomX = 3,100 + SetZoomY = 3,100 + SetOpacity = 3,255 + SetZoomX = 10,75 + SetZoomY = 10,75 + SetOpacity = 10,150 + SetZoomX = 11,50 + SetZoomY = 11,50 + SetOpacity = 11,100 + + Play = 0,Fire5,80,100 diff --git a/PBS/Animations/Converted/Move/FLAIL.txt b/PBS/Animations/Converted/Move/FLAIL.txt new file mode 100644 index 000000000..10ff3fe80 --- /dev/null +++ b/PBS/Animations/Converted/Move/FLAIL.txt @@ -0,0 +1,63 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLAIL] +Name = FLAIL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = UserAndTarget + SetX = 0,354 + SetY = 0,117 + SetVisible = 0,true + SetX = 1,374 + SetY = 1,111 + SetX = 2,415 + SetY = 2,116 + SetX = 3,396 + SetY = 3,106 + SetX = 4,398 + SetY = 4,104 + SetX = 5,417 + SetY = 5,123 + SetX = 6,355 + SetY = 6,127 + SetX = 7,377 + SetY = 7,105 + SetX = 8,381 + SetY = 8,119 + SetX = 9,354 + SetY = 9,138 + SetX = 10,410 + SetY = 10,124 + SetX = 11,387 + SetY = 11,108 + SetX = 12,409 + SetY = 12,121 + SetX = 13,374 + SetY = 13,122 + SetX = 14,421 + SetY = 14,113 + SetX = 15,388 + SetY = 15,91 + SetX = 16,414 + SetY = 16,133 + SetX = 17,412 + SetY = 17,122 + SetX = 18,413 + SetX = 19,371 + SetY = 19,119 + SetX = 20,379 + SetY = 20,117 + SetX = 21,406 + SetY = 21,104 + SetX = 22,403 + SetY = 22,96 + SetX = 23,405 + SetY = 23,95 + + Play = 0,Flail,100,100 diff --git a/PBS/Animations/Converted/Move/FLAMEBURST.txt b/PBS/Animations/Converted/Move/FLAMEBURST.txt new file mode 100644 index 000000000..07c1373c7 --- /dev/null +++ b/PBS/Animations/Converted/Move/FLAMEBURST.txt @@ -0,0 +1,249 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLAMEBURST] +Name = FLAMEBURST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,385 + SetY = 0,101 + SetVisible = 0,true + SetY = 1,98 + SetX = 2,375 + SetY = 2,109 + SetX = 3,374 + SetY = 3,116 + SetX = 4,377 + SetY = 4,126 + SetX = 5,357 + SetY = 5,121 + SetX = 6,346 + SetY = 6,132 + SetX = 7,354 + SetY = 7,131 + SetX = 8,359 + SetY = 8,124 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,400 + SetY = 1,114 + SetX = 2,365 + SetY = 2,90 + SetX = 3,396 + SetY = 3,122 + SetX = 4,368 + SetY = 4,104 + SetX = 5,356 + SetX = 6,347 + SetY = 6,115 + SetX = 7,344 + SetY = 7,111 + SetX = 8,354 + SetY = 8,106 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,371 + SetY = 1,110 + SetX = 2,397 + SetY = 2,111 + SetX = 3,391 + SetY = 3,104 + SetX = 4,384 + SetY = 4,108 + SetX = 5,377 + SetY = 5,130 + SetX = 6,343 + SetY = 6,95 + SetX = 7,356 + SetY = 7,93 + SetX = 8,380 + SetY = 8,130 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,389 + SetY = 2,94 + SetX = 3,367 + SetX = 4,399 + SetY = 4,119 + SetX = 5,379 + SetY = 5,114 + SetX = 6,352 + SetY = 6,76 + SetX = 7,372 + SetY = 7,111 + SetX = 8,383 + SetY = 8,108 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,399 + SetY = 3,83 + SetX = 4,382 + SetY = 4,89 + SetX = 5,375 + SetY = 5,95 + SetX = 6,367 + SetY = 6,91 + SetX = 7,377 + SetY = 7,95 + SetX = 8,373 + SetY = 8,99 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,410 + SetY = 3,111 + SetX = 4,400 + SetY = 4,92 + SetX = 5,356 + SetY = 5,84 + SetX = 6,367 + SetY = 6,114 + SetX = 7,382 + SetY = 7,130 + SetX = 8,353 + SetY = 8,87 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,380 + SetY = 3,78 + SetX = 4,358 + SetY = 4,90 + SetX = 5,386 + SetY = 5,81 + SetX = 6,371 + SetY = 6,136 + SetX = 7,396 + SetY = 7,109 + SetX = 8,369 + SetY = 8,82 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,369 + SetY = 4,77 + SetX = 5,372 + SetY = 5,73 + SetX = 6,392 + SetY = 6,137 + SetX = 7,399 + SetY = 7,84 + SetX = 8,388 + SetY = 8,87 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,394 + SetY = 4,77 + SetX = 5,400 + SetY = 5,99 + SetX = 6,397 + SetY = 6,123 + SetX = 7,384 + SetY = 7,74 + SetX = 8,402 + SetY = 8,107 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,413 + SetY = 4,107 + SetX = 5,400 + SetY = 5,125 + SetX = 6,394 + SetY = 6,100 + SetX = 7,363 + SetY = 7,73 + SetX = 8,412 + SetY = 8,133 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,414 + SetY = 5,114 + SetX = 6,413 + SetY = 6,108 + SetX = 7,406 + SetY = 7,136 + SetX = 8,420 + SetY = 8,93 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,420 + SetY = 5,92 + SetX = 6,388 + SetY = 6,77 + SetX = 7,382 + SetY = 7,146 + SetX = 8,409 + SetY = 8,87 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,405 + SetY = 5,82 + SetX = 6,367 + SetY = 6,76 + SetX = 7,343 + SetY = 7,79 + SetX = 8,396 + SetY = 8,66 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 6,422 + SetY = 6,130 + SetX = 7,377 + SetY = 7,60 + SetX = 8,373 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 6,344 + SetY = 6,76 + SetX = 7,354 + SetY = 7,66 + SetX = 8,352 + SetY = 8,74 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 7,405 + SetY = 7,61 + SetX = 8,431 + SetY = 8,116 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 7,391 + SetY = 7,49 + + Play = 0,Voltorb Flip Explosion,100,110 + Play = 4,Voltorb Flip Explosion,100,110 diff --git a/PBS/Animations/Converted/Move/FLAMECHARGE.txt b/PBS/Animations/Converted/Move/FLAMECHARGE.txt new file mode 100644 index 000000000..a200b1edb --- /dev/null +++ b/PBS/Animations/Converted/Move/FLAMECHARGE.txt @@ -0,0 +1,74 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLAMECHARGE] +Name = FLAMECHARGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,356 + SetY = 0,113 + SetVisible = 0,true + + Graphic = Flames + Focus = Target + SetX = 0,371 + SetY = 0,121 + SetVisible = 0,true + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,390 + SetY = 1,124 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,408 + SetY = 2,112 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,405 + SetY = 3,90 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,393 + SetY = 4,76 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,378 + SetY = 5,73 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 6,360 + SetY = 6,76 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 7,357 + SetY = 7,95 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,382 + SetY = 8,104 + SetX = 9,381 + SetY = 9,99 + + Play = 0,Work Up,100,116 diff --git a/PBS/Animations/Converted/Move/FLAMETHROWER.txt b/PBS/Animations/Converted/Move/FLAMETHROWER.txt new file mode 100644 index 000000000..4910a4465 --- /dev/null +++ b/PBS/Animations/Converted/Move/FLAMETHROWER.txt @@ -0,0 +1,305 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLAMETHROWER] +Name = FLAMETHROWER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,165 + SetY = 0,215 + SetVisible = 0,true + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,183 + SetY = 1,207 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,197 + SetY = 2,193 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,223 + SetY = 3,175 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,255 + SetY = 4,153 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,285 + SetY = 5,126 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 6,315 + SetY = 6,104 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 7,352 + SetY = 7,84 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,379 + SetY = 8,72 + + Play = 0,Whirlwind,100,121 +#------------------------------- +[OppMove,FLAMETHROWER] +Name = FLAMETHROWER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,381 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,384 + SetX = 2,383 + SetY = 2,95 + SetX = 3,386 + SetY = 3,94 + SetX = 4,385 + SetY = 4,99 + SetX = 5,387 + SetY = 5,101 + SetX = 6,385 + SetY = 6,99 + SetX = 7,386 + SetY = 7,103 + SetX = 8,388 + SetY = 8,100 + SetX = 9,386 + SetY = 9,94 + SetX = 10,384 + SetY = 10,87 + SetX = 11,148 + SetY = 11,218 + SetX = 12,135 + SetY = 12,214 + SetX = 13,139 + SetY = 13,216 + SetX = 14,134 + SetY = 14,220 + SetX = 15,131 + SetY = 15,215 + SetX = 16,138 + SetY = 16,216 + SetX = 17,129 + SetY = 17,215 + SetX = 18,131 + SetY = 18,218 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,361 + SetY = 1,105 + SetX = 2,362 + SetY = 2,103 + SetY = 3,102 + SetX = 4,367 + SetY = 4,107 + SetY = 5,110 + SetX = 6,366 + SetY = 6,106 + SetX = 7,363 + SetX = 8,368 + SetY = 8,108 + SetX = 9,362 + SetY = 9,109 + SetX = 10,358 + SetY = 10,98 + SetX = 11,176 + SetY = 11,190 + SetX = 12,162 + SetY = 12,192 + SetX = 13,173 + SetX = 14,167 + SetY = 14,193 + SetX = 15,158 + SetY = 15,195 + SetX = 16,193 + SetY = 16,188 + SetX = 17,174 + SetY = 17,183 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,342 + SetY = 2,112 + SetX = 3,339 + SetX = 4,347 + SetY = 4,111 + SetX = 5,348 + SetY = 5,114 + SetX = 6,343 + SetY = 6,109 + SetX = 7,337 + SetY = 7,114 + SetX = 8,350 + SetY = 8,108 + SetX = 9,335 + SetY = 9,111 + SetX = 10,331 + SetY = 10,108 + SetX = 11,205 + SetY = 11,170 + SetX = 12,196 + SetY = 12,169 + SetX = 13,207 + SetY = 13,160 + SetX = 14,199 + SetY = 14,166 + SetX = 15,189 + SetY = 15,178 + SetX = 16,234 + SetY = 16,158 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,313 + SetY = 3,120 + SetX = 4,323 + SetY = 4,128 + SetX = 5,325 + SetY = 5,119 + SetX = 6,320 + SetY = 6,123 + SetX = 7,311 + SetY = 7,122 + SetX = 8,324 + SetX = 9,299 + SetY = 9,118 + SetX = 10,306 + SetY = 10,116 + SetX = 11,237 + SetY = 11,143 + SetX = 12,238 + SetY = 12,147 + SetX = 13,242 + SetY = 13,143 + SetX = 14,238 + SetY = 14,141 + SetX = 15,229 + SetY = 15,155 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,299 + SetY = 4,137 + SetX = 5,296 + SetY = 5,127 + SetY = 6,133 + SetX = 7,278 + SetY = 7,132 + SetX = 8,289 + SetY = 8,128 + SetX = 9,266 + SetY = 9,125 + SetX = 10,272 + SetY = 10,130 + SetX = 11,269 + SetY = 11,122 + SetX = 12,275 + SetY = 12,128 + SetX = 13,274 + SetY = 13,127 + SetX = 14,278 + SetY = 14,124 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,134 + SetY = 6,143 + SetX = 7,247 + SetY = 7,139 + SetX = 8,255 + SetY = 8,137 + SetX = 9,230 + SetY = 9,134 + SetX = 10,237 + SetY = 10,149 + SetX = 11,304 + SetY = 11,110 + SetX = 12,311 + SetX = 13,310 + SetY = 13,115 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 6,238 + SetY = 6,152 + SetX = 7,215 + SetY = 7,147 + SetX = 8,220 + SetY = 8,146 + SetX = 9,196 + SetY = 9,150 + SetX = 10,209 + SetY = 10,174 + SetX = 11,332 + SetY = 11,94 + SetX = 12,349 + SetY = 12,92 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,189 + SetY = 8,164 + SetX = 9,165 + SetY = 9,163 + SetX = 10,173 + SetY = 10,190 + SetX = 11,360 + SetY = 11,87 + SetX = 12,381 + SetY = 12,81 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 9,136 + SetY = 9,194 + SetX = 10,143 + SetY = 10,205 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 10,122 + SetY = 10,227 + + Play = 0,Whirlwind,100,121 diff --git a/PBS/Animations/Converted/Move/FLAMEWHEEL.txt b/PBS/Animations/Converted/Move/FLAMEWHEEL.txt new file mode 100644 index 000000000..646bd7a5f --- /dev/null +++ b/PBS/Animations/Converted/Move/FLAMEWHEEL.txt @@ -0,0 +1,252 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLAMEWHEEL] +Name = FLAMEWHEEL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,156 + SetY = 0,171 + SetVisible = 0,true + SetX = 8,398 + SetY = 8,100 + SetX = 9,396 + SetY = 9,91 + SetX = 10,397 + SetY = 10,99 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,186 + SetY = 0,191 + SetVisible = 0,true + SetX = 10,423 + SetY = 10,124 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,193 + SetY = 1,230 + SetX = 7,191 + SetY = 7,222 + SetX = 10,364 + SetY = 10,76 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,162 + SetY = 2,256 + SetX = 11,378 + SetY = 11,128 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,254 + SetX = 11,423 + SetY = 11,51 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,113 + SetY = 4,228 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,116 + SetY = 5,191 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,130 + SetY = 6,172 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,159 + SetY = 7,165 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,187 + SetY = 7,185 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,188 + SetY = 7,222 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,168 + SetY = 7,246 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,143 + SetY = 7,250 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,121 + SetY = 7,241 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,109 + SetY = 7,217 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,112 + SetY = 7,192 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,125 + SetY = 7,172 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,174 + SetY = 7,172 + + Play = 0,Trump Card,100,110 +#------------------------------- +[OppMove,FLAMEWHEEL] +Name = FLAMEWHEEL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,397 + SetY = 0,63 + SetVisible = 0,true + SetX = 8,139 + SetY = 8,227 + SetX = 9,133 + SetY = 9,216 + SetX = 10,141 + SetY = 10,217 + SetX = 11,138 + SetY = 11,223 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,417 + SetY = 0,75 + SetVisible = 0,true + SetX = 10,176 + SetY = 10,187 + SetX = 11,163 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,422 + SetY = 1,102 + SetX = 10,119 + SetY = 10,234 + SetX = 11,117 + SetY = 11,244 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,407 + SetY = 2,120 + SetX = 11,110 + SetY = 11,200 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,380 + SetY = 3,110 + SetX = 4,377 + SetY = 4,112 + SetX = 11,172 + SetY = 11,239 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,366 + SetY = 4,92 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,376 + SetY = 5,71 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,388 + SetY = 6,62 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,408 + SetY = 6,71 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,422 + SetY = 6,95 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,406 + SetY = 6,113 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,384 + SetY = 7,108 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,374 + SetY = 7,86 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,379 + SetY = 7,70 + + Play = 0,Trump Card,100,110 diff --git a/PBS/Animations/Converted/Move/FLASH.txt b/PBS/Animations/Converted/Move/FLASH.txt new file mode 100644 index 000000000..3ab0a9ecd --- /dev/null +++ b/PBS/Animations/Converted/Move/FLASH.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLASH] +Name = FLASH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Light1 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Saint7,80,100 diff --git a/PBS/Animations/Converted/Move/FLY.txt b/PBS/Animations/Converted/Move/FLY.txt new file mode 100644 index 000000000..dd7d49560 --- /dev/null +++ b/PBS/Animations/Converted/Move/FLY.txt @@ -0,0 +1,62 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FLY] +Name = FLY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,281 + SetY = 0,-22 + SetAngle = 0,207 + SetVisible = 0,true + SetX = 1,312 + SetY = 1,26 + SetX = 2,335 + SetY = 2,61 + SetX = 3,356 + SetY = 3,87 + SetX = 4,379 + SetY = 4,118 + SetX = 5,424 + SetY = 5,184 + SetX = 6,401 + SetY = 6,154 + + Play = 0,Take Down,80,110 +#------------------------------- +[Move,FLY,1] +Name = Fly charging + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = User + SetX = 0,134 + SetY = 0,260 + SetVisible = 0,true + SetX = 1,138 + SetY = 1,247 + SetX = 2,136 + SetY = 2,258 + SetX = 3,132 + SetY = 3,238 + SetX = 4,131 + SetY = 4,233 + SetX = 5,142 + SetY = 5,225 + SetX = 6,136 + SetY = 6,194 + SetX = 7,134 + SetY = 7,166 + + Play = 0,Trump Card,100,100 diff --git a/PBS/Animations/Converted/Move/FOCUSENERGY.txt b/PBS/Animations/Converted/Move/FOCUSENERGY.txt new file mode 100644 index 000000000..97b830814 --- /dev/null +++ b/PBS/Animations/Converted/Move/FOCUSENERGY.txt @@ -0,0 +1,26 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FOCUSENERGY] +Name = FOCUSENERGY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Fire3 + Focus = User + SetVisible = 0,true + SetX = 4,144 + SetY = 4,222 + + Graphic = Fire3 + Focus = User + SetX = 0,144 + SetY = 0,222 + SetVisible = 0,true + + Play = 0,Up,80,100 + Play = 3,Up,80,100 + Play = 6,Up,80,100 diff --git a/PBS/Animations/Converted/Move/FOLLOWME.txt b/PBS/Animations/Converted/Move/FOLLOWME.txt new file mode 100644 index 000000000..0d6cf5391 --- /dev/null +++ b/PBS/Animations/Converted/Move/FOLLOWME.txt @@ -0,0 +1,90 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FOLLOWME] +Name = FOLLOWME + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetX = 0,386 + SetY = 0,97 + SetVisible = 0,true + SetX = 1,377 + SetY = 1,112 + SetX = 2,359 + SetY = 2,137 + SetX = 3,336 + SetY = 3,169 + SetX = 4,299 + SetY = 4,190 + SetX = 5,274 + SetY = 5,218 + SetX = 6,279 + SetY = 6,214 + SetOpacity = 6,53 + SetX = 7,244 + SetY = 7,238 + SetOpacity = 7,255 + SetX = 8,219 + SetX = 9,179 + SetY = 9,235 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 6,267 + SetY = 6,216 + + Play = 0,Follow Me,85,102 +#------------------------------- +[OppMove,FOLLOWME] +Name = FOLLOWME + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetVisible = 0,true + SetX = 5,282 + SetY = 5,206 + + Graphic = finger.spoon + Focus = Target + SetX = 0,191 + SetY = 0,221 + SetVisible = 0,true + SetX = 1,212 + SetY = 1,218 + SetX = 2,230 + SetY = 2,212 + SetX = 3,249 + SetY = 3,214 + SetX = 4,261 + SetY = 4,213 + SetX = 5,270 + SetY = 5,204 + SetOpacity = 5,78 + SetX = 6,301 + SetY = 6,196 + SetOpacity = 6,255 + SetX = 7,311 + SetY = 7,181 + SetX = 8,331 + SetY = 8,154 + SetX = 9,349 + SetY = 9,142 + SetX = 10,372 + SetY = 10,125 + SetX = 11,388 + SetY = 11,111 + + Play = 0,Follow Me,80,100 diff --git a/PBS/Animations/Converted/Move/FORESIGHT.txt b/PBS/Animations/Converted/Move/FORESIGHT.txt new file mode 100644 index 000000000..81d8a9353 --- /dev/null +++ b/PBS/Animations/Converted/Move/FORESIGHT.txt @@ -0,0 +1,41 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FORESIGHT] +Name = FORESIGHT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,272 + SetY = 0,22 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetOpacity = 0,150 + SetX = 1,304 + SetY = 1,54 + SetOpacity = 1,255 + SetX = 2,344 + SetY = 2,94 + SetX = 3,384 + SetY = 3,134 + SetX = 4,424 + SetY = 4,118 + SetX = 5,456 + SetY = 5,86 + SetX = 6,464 + SetY = 6,46 + SetX = 7,440 + SetY = 7,30 + SetX = 8,392 + SetY = 8,14 + SetX = 9,336 + SetY = 9,6 + SetX = 10,320 + SetY = 10,46 + SetY = 11,86 diff --git a/PBS/Animations/Converted/Move/FRENZYPLANT.txt b/PBS/Animations/Converted/Move/FRENZYPLANT.txt new file mode 100644 index 000000000..002ace82e --- /dev/null +++ b/PBS/Animations/Converted/Move/FRENZYPLANT.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FRENZYPLANT] +Name = FRENZYPLANT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = grass2 + Focus = UserAndTarget + SetX = 0,172 + SetY = 0,192 + SetVisible = 0,true + SetX = 1,192 + SetY = 1,186 + SetX = 2,217 + SetY = 2,173 + SetX = 3,256 + SetY = 3,161 + SetX = 4,281 + SetY = 4,142 + SetX = 5,313 + SetY = 5,123 + SetX = 6,332 + SetY = 6,116 + SetX = 7,384 + SetY = 11,110 + SetY = 12,104 + SetY = 13,98 + SetOpacity = 16,100 + + Play = 0,Earth4,80,100 + Play = 8,Earth5,80,100 diff --git a/PBS/Animations/Converted/Move/FURYATTACK.txt b/PBS/Animations/Converted/Move/FURYATTACK.txt new file mode 100644 index 000000000..62ef374fc --- /dev/null +++ b/PBS/Animations/Converted/Move/FURYATTACK.txt @@ -0,0 +1,356 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FURYATTACK] +Name = FURYATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,129 + SetX = 3,358 + SetY = 3,110 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,199 + SetY = 4,200 + SetX = 5,264 + SetY = 5,146 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[Move,FURYATTACK,1] +Name = Fury Attack hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,199 + SetY = 4,200 + SetX = 5,264 + SetY = 5,146 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,129 + SetX = 3,358 + SetY = 3,110 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[Move,FURYATTACK,2] +Name = Fury Attack hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,129 + SetX = 3,358 + SetY = 3,110 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,199 + SetY = 4,200 + SetX = 5,264 + SetY = 5,146 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[Move,FURYATTACK,3] +Name = Fury Attack hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,199 + SetY = 4,200 + SetX = 5,264 + SetY = 5,146 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,129 + SetX = 3,358 + SetY = 3,110 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[Move,FURYATTACK,4] +Name = Fury Attack hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,129 + SetX = 3,358 + SetY = 3,110 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,199 + SetY = 4,200 + SetX = 5,264 + SetY = 5,146 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[OppMove,FURYATTACK] +Name = FURYATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,332 + SetY = 3,127 + SetAngle = 3,180 + SetX = 4,283 + SetY = 4,158 + SetX = 5,220 + SetY = 5,197 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,338 + SetY = 0,128 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,155 + SetX = 2,213 + SetY = 2,203 + SetX = 3,129 + SetY = 3,242 + SetAngle = 3,0 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[OppMove,FURYATTACK,1] +Name = Fury Attack hit 2 opp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,338 + SetY = 0,128 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,155 + SetX = 2,213 + SetY = 2,203 + SetX = 3,129 + SetY = 3,242 + SetAngle = 3,0 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,332 + SetY = 3,127 + SetAngle = 3,180 + SetX = 4,283 + SetY = 4,158 + SetX = 5,220 + SetY = 5,197 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[OppMove,FURYATTACK,2] +Name = Fury Attack hit 3 opp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,332 + SetY = 3,127 + SetAngle = 3,180 + SetX = 4,283 + SetY = 4,158 + SetX = 5,220 + SetY = 5,197 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,338 + SetY = 0,128 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,155 + SetX = 2,213 + SetY = 2,203 + SetX = 3,129 + SetY = 3,242 + SetAngle = 3,0 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[OppMove,FURYATTACK,3] +Name = Fury Attack hit 4 opp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,338 + SetY = 0,128 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,155 + SetX = 2,213 + SetY = 2,203 + SetX = 3,129 + SetY = 3,242 + SetAngle = 3,0 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,332 + SetY = 3,127 + SetAngle = 3,180 + SetX = 4,283 + SetY = 4,158 + SetX = 5,220 + SetY = 5,197 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 +#------------------------------- +[OppMove,FURYATTACK,4] +Name = Fury Attack hit 5 opp + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,332 + SetY = 3,127 + SetAngle = 3,180 + SetX = 4,283 + SetY = 4,158 + SetX = 5,220 + SetY = 5,197 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,338 + SetY = 0,128 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,155 + SetX = 2,213 + SetY = 2,203 + SetX = 3,129 + SetY = 3,242 + SetAngle = 3,0 + + Play = 3,normaldamage,80,100 + Play = 5,normaldamage,80,100 diff --git a/PBS/Animations/Converted/Move/FURYCUTTER.txt b/PBS/Animations/Converted/Move/FURYCUTTER.txt new file mode 100644 index 000000000..a297b365d --- /dev/null +++ b/PBS/Animations/Converted/Move/FURYCUTTER.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FURYCUTTER] +Name = FURYCUTTER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Sword6 + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetVisible = 0,true + + Play = 0,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/FURYSWIPES.txt b/PBS/Animations/Converted/Move/FURYSWIPES.txt new file mode 100644 index 000000000..cdaa5b755 --- /dev/null +++ b/PBS/Animations/Converted/Move/FURYSWIPES.txt @@ -0,0 +1,716 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FURYSWIPES] +Name = FURYSWIPES + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetX = 0,437 + SetY = 0,65 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,424 + SetY = 1,81 + SetOpacity = 1,255 + SetX = 2,416 + SetY = 2,97 + SetX = 3,408 + SetY = 3,113 + SetToneRed = 4,-128 + SetToneGreen = 4,-128 + SetToneBlue = 4,-128 + SetX = 5,409 + SetOpacity = 5,128 + SetX = 8,362 + SetY = 8,138 + SetOpacity = 8,255 + SetToneRed = 8,0 + SetToneGreen = 8,0 + SetToneBlue = 8,0 + SetX = 9,308 + SetY = 9,144 + SetX = 10,275 + SetY = 10,178 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 2,397 + SetY = 2,125 + SetX = 3,371 + SetY = 3,137 + SetX = 4,432 + SetY = 4,158 + SetFlip = 5,true + SetX = 5,320 + SetY = 5,72 + SetOpacity = 5,128 + SetX = 6,336 + SetY = 6,88 + SetOpacity = 6,255 + SetX = 7,352 + SetY = 7,104 + SetX = 8,360 + SetY = 8,112 + SetToneRed = 9,-128 + SetToneGreen = 9,-128 + SetToneBlue = 9,-128 + SetOpacity = 10,128 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 3,403 + SetY = 3,138 + SetX = 4,366 + SetY = 4,157 + SetX = 5,362 + SetY = 5,227 + SetX = 7,370 + SetY = 7,128 + SetX = 8,393 + SetY = 8,133 + SetX = 9,367 + SetY = 9,184 + SetX = 10,374 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,332 + SetY = 4,127 + SetX = 5,474 + SetY = 5,228 + SetX = 9,421 + SetY = 9,184 + SetX = 10,292 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,439 + SetY = 4,134 + SetX = 5,507 + SetY = 5,96 + SetX = 9,445 + SetY = 9,109 + SetX = 10,430 + SetY = 10,206 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,180 + SetX = 10,459 + SetY = 10,164 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,337 + SetY = 5,191 + SetX = 10,480 + SetY = 10,89 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,399 + SetY = 5,177 + SetX = 10,331 + SetY = 10,188 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,457 + SetY = 5,180 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,483 + SetY = 5,143 + + Play = 0,Fury Swipes,100,100 +#------------------------------- +[Move,FURYSWIPES,1] +Name = Fury Swipes hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetX = 0,437 + SetY = 0,65 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,424 + SetY = 1,81 + SetOpacity = 1,255 + SetX = 2,416 + SetY = 2,97 + SetX = 3,408 + SetY = 3,113 + SetToneRed = 4,-128 + SetToneGreen = 4,-128 + SetToneBlue = 4,-128 + SetX = 5,409 + SetOpacity = 5,128 + SetX = 8,362 + SetY = 8,138 + SetOpacity = 8,255 + SetToneRed = 8,0 + SetToneGreen = 8,0 + SetToneBlue = 8,0 + SetX = 9,308 + SetY = 9,144 + SetX = 10,275 + SetY = 10,178 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 2,397 + SetY = 2,125 + SetX = 3,371 + SetY = 3,137 + SetX = 4,432 + SetY = 4,158 + SetFlip = 5,true + SetX = 5,320 + SetY = 5,72 + SetOpacity = 5,128 + SetX = 6,336 + SetY = 6,88 + SetOpacity = 6,255 + SetX = 7,352 + SetY = 7,104 + SetX = 8,360 + SetY = 8,112 + SetToneRed = 9,-128 + SetToneGreen = 9,-128 + SetToneBlue = 9,-128 + SetOpacity = 10,128 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 3,403 + SetY = 3,138 + SetX = 4,366 + SetY = 4,157 + SetX = 5,362 + SetY = 5,227 + SetX = 7,370 + SetY = 7,128 + SetX = 8,393 + SetY = 8,133 + SetX = 9,367 + SetY = 9,184 + SetX = 10,374 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,332 + SetY = 4,127 + SetX = 5,474 + SetY = 5,228 + SetX = 9,421 + SetY = 9,184 + SetX = 10,292 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,439 + SetY = 4,134 + SetX = 5,507 + SetY = 5,96 + SetX = 9,445 + SetY = 9,109 + SetX = 10,430 + SetY = 10,206 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,180 + SetX = 10,459 + SetY = 10,164 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,337 + SetY = 5,191 + SetX = 10,480 + SetY = 10,89 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,399 + SetY = 5,177 + SetX = 10,331 + SetY = 10,188 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,457 + SetY = 5,180 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,483 + SetY = 5,143 + + Play = 0,Fury Swipes,100,100 +#------------------------------- +[Move,FURYSWIPES,2] +Name = Fury Swipes hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetX = 0,437 + SetY = 0,65 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,424 + SetY = 1,81 + SetOpacity = 1,255 + SetX = 2,416 + SetY = 2,97 + SetX = 3,408 + SetY = 3,113 + SetToneRed = 4,-128 + SetToneGreen = 4,-128 + SetToneBlue = 4,-128 + SetX = 5,409 + SetOpacity = 5,128 + SetX = 8,362 + SetY = 8,138 + SetOpacity = 8,255 + SetToneRed = 8,0 + SetToneGreen = 8,0 + SetToneBlue = 8,0 + SetX = 9,308 + SetY = 9,144 + SetX = 10,275 + SetY = 10,178 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 2,397 + SetY = 2,125 + SetX = 3,371 + SetY = 3,137 + SetX = 4,432 + SetY = 4,158 + SetFlip = 5,true + SetX = 5,320 + SetY = 5,72 + SetOpacity = 5,128 + SetX = 6,336 + SetY = 6,88 + SetOpacity = 6,255 + SetX = 7,352 + SetY = 7,104 + SetX = 8,360 + SetY = 8,112 + SetToneRed = 9,-128 + SetToneGreen = 9,-128 + SetToneBlue = 9,-128 + SetOpacity = 10,128 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 3,403 + SetY = 3,138 + SetX = 4,366 + SetY = 4,157 + SetX = 5,362 + SetY = 5,227 + SetX = 7,370 + SetY = 7,128 + SetX = 8,393 + SetY = 8,133 + SetX = 9,367 + SetY = 9,184 + SetX = 10,374 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,332 + SetY = 4,127 + SetX = 5,474 + SetY = 5,228 + SetX = 9,421 + SetY = 9,184 + SetX = 10,292 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,439 + SetY = 4,134 + SetX = 5,507 + SetY = 5,96 + SetX = 9,445 + SetY = 9,109 + SetX = 10,430 + SetY = 10,206 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,180 + SetX = 10,459 + SetY = 10,164 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,337 + SetY = 5,191 + SetX = 10,480 + SetY = 10,89 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,399 + SetY = 5,177 + SetX = 10,331 + SetY = 10,188 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,457 + SetY = 5,180 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,483 + SetY = 5,143 + + Play = 0,Fury Swipes,100,100 +#------------------------------- +[Move,FURYSWIPES,3] +Name = Fury Swipes hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetX = 0,437 + SetY = 0,65 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,424 + SetY = 1,81 + SetOpacity = 1,255 + SetX = 2,416 + SetY = 2,97 + SetX = 3,408 + SetY = 3,113 + SetToneRed = 4,-128 + SetToneGreen = 4,-128 + SetToneBlue = 4,-128 + SetX = 5,409 + SetOpacity = 5,128 + SetX = 8,362 + SetY = 8,138 + SetOpacity = 8,255 + SetToneRed = 8,0 + SetToneGreen = 8,0 + SetToneBlue = 8,0 + SetX = 9,308 + SetY = 9,144 + SetX = 10,275 + SetY = 10,178 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 2,397 + SetY = 2,125 + SetX = 3,371 + SetY = 3,137 + SetX = 4,432 + SetY = 4,158 + SetFlip = 5,true + SetX = 5,320 + SetY = 5,72 + SetOpacity = 5,128 + SetX = 6,336 + SetY = 6,88 + SetOpacity = 6,255 + SetX = 7,352 + SetY = 7,104 + SetX = 8,360 + SetY = 8,112 + SetToneRed = 9,-128 + SetToneGreen = 9,-128 + SetToneBlue = 9,-128 + SetOpacity = 10,128 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 3,403 + SetY = 3,138 + SetX = 4,366 + SetY = 4,157 + SetX = 5,362 + SetY = 5,227 + SetX = 7,370 + SetY = 7,128 + SetX = 8,393 + SetY = 8,133 + SetX = 9,367 + SetY = 9,184 + SetX = 10,374 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,332 + SetY = 4,127 + SetX = 5,474 + SetY = 5,228 + SetX = 9,421 + SetY = 9,184 + SetX = 10,292 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,439 + SetY = 4,134 + SetX = 5,507 + SetY = 5,96 + SetX = 9,445 + SetY = 9,109 + SetX = 10,430 + SetY = 10,206 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,180 + SetX = 10,459 + SetY = 10,164 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,337 + SetY = 5,191 + SetX = 10,480 + SetY = 10,89 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,399 + SetY = 5,177 + SetX = 10,331 + SetY = 10,188 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,457 + SetY = 5,180 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,483 + SetY = 5,143 + + Play = 0,Fury Swipes,100,100 +#------------------------------- +[Move,FURYSWIPES,4] +Name = Fury Swipes hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetX = 0,437 + SetY = 0,65 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,424 + SetY = 1,81 + SetOpacity = 1,255 + SetX = 2,416 + SetY = 2,97 + SetX = 3,408 + SetY = 3,113 + SetToneRed = 4,-128 + SetToneGreen = 4,-128 + SetToneBlue = 4,-128 + SetX = 5,409 + SetOpacity = 5,128 + SetX = 8,362 + SetY = 8,138 + SetOpacity = 8,255 + SetToneRed = 8,0 + SetToneGreen = 8,0 + SetToneBlue = 8,0 + SetX = 9,308 + SetY = 9,144 + SetX = 10,275 + SetY = 10,178 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 2,397 + SetY = 2,125 + SetX = 3,371 + SetY = 3,137 + SetX = 4,432 + SetY = 4,158 + SetFlip = 5,true + SetX = 5,320 + SetY = 5,72 + SetOpacity = 5,128 + SetX = 6,336 + SetY = 6,88 + SetOpacity = 6,255 + SetX = 7,352 + SetY = 7,104 + SetX = 8,360 + SetY = 8,112 + SetToneRed = 9,-128 + SetToneGreen = 9,-128 + SetToneBlue = 9,-128 + SetOpacity = 10,128 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 3,403 + SetY = 3,138 + SetX = 4,366 + SetY = 4,157 + SetX = 5,362 + SetY = 5,227 + SetX = 7,370 + SetY = 7,128 + SetX = 8,393 + SetY = 8,133 + SetX = 9,367 + SetY = 9,184 + SetX = 10,374 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,332 + SetY = 4,127 + SetX = 5,474 + SetY = 5,228 + SetX = 9,421 + SetY = 9,184 + SetX = 10,292 + SetY = 10,215 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 4,439 + SetY = 4,134 + SetX = 5,507 + SetY = 5,96 + SetX = 9,445 + SetY = 9,109 + SetX = 10,430 + SetY = 10,206 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,267 + SetY = 5,180 + SetX = 10,459 + SetY = 10,164 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,337 + SetY = 5,191 + SetX = 10,480 + SetY = 10,89 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,399 + SetY = 5,177 + SetX = 10,331 + SetY = 10,188 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,457 + SetY = 5,180 + + Graphic = Scratch + Shadow Claw + Focus = Target + SetVisible = 0,true + SetX = 5,483 + SetY = 5,143 + + Play = 0,Fury Swipes,100,100 diff --git a/PBS/Animations/Converted/Move/FUTURESIGHT.txt b/PBS/Animations/Converted/Move/FUTURESIGHT.txt new file mode 100644 index 000000000..000ce25bf --- /dev/null +++ b/PBS/Animations/Converted/Move/FUTURESIGHT.txt @@ -0,0 +1,55 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,FUTURESIGHT] +Name = FUTURESIGHT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = face and eye + Focus = User + SetX = 0,145 + SetY = 0,224 + SetVisible = 0,true + SetX = 2,141 + SetY = 2,222 + SetX = 3,131 + SetY = 3,221 + SetX = 4,143 + SetY = 4,219 + SetX = 5,131 + SetY = 5,220 + SetOpacity = 8,192 + SetOpacity = 9,96 + + Play = 0,Flash2,80,78 +#------------------------------- +[Move,FUTURESIGHT,1] +Name = Future Sight hit + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = face and eye + Focus = Target + SetX = 0,401 + SetY = 0,96 + SetVisible = 0,true + SetX = 2,397 + SetY = 2,94 + SetX = 3,387 + SetY = 3,93 + SetX = 4,399 + SetY = 4,91 + SetX = 5,387 + SetY = 5,92 + SetOpacity = 8,192 + SetOpacity = 9,96 + + Play = 0,Flash2,80,78 diff --git a/PBS/Animations/Converted/Move/GASTROACID.txt b/PBS/Animations/Converted/Move/GASTROACID.txt new file mode 100644 index 000000000..66e9533b5 --- /dev/null +++ b/PBS/Animations/Converted/Move/GASTROACID.txt @@ -0,0 +1,104 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GASTROACID] +Name = GASTROACID + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,393 + SetY = 1,120 + SetZoomX = 1,85 + SetZoomY = 1,85 + SetOpacity = 1,200 + SetX = 2,369 + SetY = 2,60 + SetX = 3,359 + SetY = 3,108 + SetX = 4,394 + SetY = 4,93 + SetX = 5,316 + SetY = 5,72 + SetX = 6,336 + SetY = 6,80 + SetX = 7,375 + SetY = 7,96 + SetX = 8,330 + SetY = 8,64 + SetX = 9,376 + SetY = 9,91 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 2,363 + SetY = 2,114 + SetZoomX = 2,85 + SetZoomY = 2,85 + SetOpacity = 2,200 + SetX = 3,315 + SetY = 3,86 + SetX = 4,337 + SetY = 4,123 + SetX = 6,343 + SetY = 6,27 + SetX = 7,301 + SetY = 7,36 + SetX = 9,348 + SetY = 9,24 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 3,402 + SetY = 3,119 + SetZoomX = 3,85 + SetZoomY = 3,85 + SetOpacity = 3,200 + SetX = 4,302 + SetY = 4,69 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,344 + SetY = 4,23 + SetZoomX = 4,85 + SetZoomY = 4,85 + SetOpacity = 4,200 + + Graphic = fly copy + Focus = Target + SetX = 0,353 + SetY = 0,110 + SetZoomX = 0,85 + SetZoomY = 0,85 + SetVisible = 0,true + SetOpacity = 0,200 + SetX = 1,352 + SetY = 1,85 + SetX = 2,315 + SetY = 2,58 + SetX = 3,342 + SetY = 3,38 + SetX = 4,358 + SetY = 4,77 + SetX = 5,364 + SetY = 5,72 + SetX = 6,380 + SetY = 6,75 + SetX = 7,381 + SetY = 7,45 + SetX = 8,390 + SetY = 8,79 + SetX = 9,310 + SetY = 9,83 + SetX = 10,365 + + Play = 0,Sweet Scent,100,100 diff --git a/PBS/Animations/Converted/Move/GIGADRAIN.txt b/PBS/Animations/Converted/Move/GIGADRAIN.txt new file mode 100644 index 000000000..8d6bba803 --- /dev/null +++ b/PBS/Animations/Converted/Move/GIGADRAIN.txt @@ -0,0 +1,166 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GIGADRAIN] +Name = GIGADRAIN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetX = 0,345 + SetY = 0,91 + SetVisible = 0,true + SetX = 1,294 + SetY = 1,98 + SetX = 2,211 + SetY = 2,123 + SetX = 3,160 + SetY = 3,161 + SetX = 4,128 + SetY = 4,205 + SetX = 5,134 + + Graphic = rockice + Focus = UserAndTarget + SetX = 0,371 + SetY = 0,110 + SetVisible = 0,true + SetX = 1,396 + SetY = 1,116 + SetX = 2,358 + SetY = 2,148 + SetX = 3,307 + SetY = 3,186 + SetX = 4,217 + SetY = 4,217 + SetX = 5,147 + SetY = 5,186 + SetX = 6,172 + SetY = 6,173 + SetX = 7,160 + SetY = 7,198 + SetX = 9,166 + SetY = 9,211 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,345 + SetY = 1,142 + SetX = 2,339 + SetY = 2,104 + SetX = 3,262 + SetY = 3,135 + SetX = 4,185 + SetY = 4,167 + SetX = 5,204 + SetY = 5,192 + SetX = 6,275 + SetY = 6,173 + SetX = 7,198 + SetY = 7,192 + SetX = 8,128 + SetY = 8,173 + SetX = 9,153 + SetY = 9,198 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,339 + SetY = 1,85 + SetX = 2,268 + SetY = 2,192 + SetX = 3,371 + SetY = 3,123 + SetX = 4,320 + SetY = 4,154 + SetX = 5,256 + SetY = 5,135 + SetY = 6,98 + SetX = 7,172 + SetY = 7,135 + SetX = 8,230 + SetY = 8,192 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,288 + SetY = 2,91 + SetX = 3,371 + SetX = 4,307 + SetY = 4,110 + SetX = 5,339 + SetY = 5,135 + SetX = 6,371 + SetY = 6,91 + SetX = 7,326 + SetY = 7,135 + SetX = 8,185 + SetY = 8,198 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,377 + SetY = 2,104 + SetX = 3,166 + SetY = 3,230 + SetX = 4,377 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,256 + SetY = 6,154 + SetX = 7,185 + SetY = 7,173 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,236 + SetY = 3,116 + SetX = 4,371 + SetY = 4,85 + SetX = 5,313 + SetY = 5,116 + SetX = 6,320 + SetY = 6,167 + SetX = 7,249 + SetY = 7,186 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,326 + SetY = 3,142 + SetX = 4,166 + SetY = 4,161 + SetX = 5,140 + SetY = 5,173 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,275 + SetY = 4,167 + SetX = 5,179 + SetY = 5,192 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,396 + SetY = 4,104 + SetX = 5,371 + SetY = 5,135 + + Play = 0,Absorb2,80,100 + Play = 2,Absorb2,80,100 + Play = 5,Absorb2,80,100 + Play = 7,Absorb2,80,100 diff --git a/PBS/Animations/Converted/Move/GLARE.txt b/PBS/Animations/Converted/Move/GLARE.txt new file mode 100644 index 000000000..491ead574 --- /dev/null +++ b/PBS/Animations/Converted/Move/GLARE.txt @@ -0,0 +1,39 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GLARE] +Name = GLARE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = face and eye + Focus = UserAndTarget + SetX = 0,437 + SetY = 0,88 + SetVisible = 0,true + SetX = 1,421 + SetY = 1,86 + SetX = 2,415 + SetY = 2,81 + SetX = 3,429 + SetY = 3,90 + SetX = 4,345 + SetY = 4,89 + + Graphic = face and eye + Focus = UserAndTarget + SetX = 0,355 + SetY = 0,85 + SetVisible = 0,true + SetX = 1,346 + SetY = 1,84 + SetX = 2,333 + SetY = 2,83 + SetX = 3,355 + SetY = 3,90 + SetX = 4,420 + + Play = 0,Scary Face,80,100 diff --git a/PBS/Animations/Converted/Move/GRASSWHISTLE.txt b/PBS/Animations/Converted/Move/GRASSWHISTLE.txt new file mode 100644 index 000000000..eddf3a25e --- /dev/null +++ b/PBS/Animations/Converted/Move/GRASSWHISTLE.txt @@ -0,0 +1,160 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GRASSWHISTLE] +Name = GRASSWHISTLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,205 + SetVisible = 0,true + SetX = 1,172 + SetY = 1,179 + SetX = 2,204 + SetY = 2,161 + SetX = 3,249 + SetY = 3,154 + SetX = 4,288 + SetY = 4,161 + SetX = 5,352 + SetY = 5,148 + SetX = 6,396 + SetY = 6,129 + SetX = 7,371 + SetY = 7,135 + SetX = 8,384 + SetY = 8,110 + SetY = 9,116 + SetX = 10,358 + SetY = 10,142 + SetX = 11,403 + SetY = 11,110 + SetX = 12,384 + SetY = 12,123 + SetX = 13,364 + SetY = 13,148 + SetX = 14,403 + SetY = 14,110 + SetY = 15,123 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,140 + SetY = 2,192 + SetX = 3,179 + SetY = 3,167 + SetX = 4,217 + SetY = 4,142 + SetX = 5,262 + SetY = 5,161 + SetX = 6,313 + SetY = 6,167 + SetX = 7,281 + SetY = 7,173 + SetX = 8,332 + SetY = 8,167 + SetX = 9,307 + SetY = 9,179 + SetX = 10,281 + SetY = 10,167 + SetX = 11,345 + SetY = 11,142 + SetX = 12,320 + SetY = 12,186 + SetX = 13,300 + SetY = 13,192 + SetX = 14,352 + SetY = 14,186 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,142 + SetX = 3,192 + SetY = 3,123 + SetX = 4,153 + SetY = 4,179 + SetX = 5,185 + SetY = 5,161 + SetX = 6,230 + SetY = 6,154 + SetX = 7,204 + SetX = 8,256 + SetY = 8,173 + SetX = 9,224 + SetY = 9,154 + SetX = 10,217 + SetY = 10,167 + SetX = 11,256 + SetY = 11,179 + SetX = 12,243 + SetY = 12,167 + SetX = 13,320 + SetY = 13,135 + SetX = 14,371 + SetY = 14,91 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,236 + SetY = 4,110 + SetX = 5,307 + SetY = 5,98 + SetX = 6,160 + SetY = 6,167 + SetX = 7,358 + SetY = 7,135 + SetX = 8,172 + SetY = 8,167 + SetX = 9,390 + SetY = 9,79 + SetX = 10,339 + SetY = 10,123 + SetX = 11,198 + SetY = 11,173 + SetX = 12,236 + SetY = 12,135 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,185 + SetY = 4,179 + SetX = 5,249 + SetY = 5,167 + SetX = 6,358 + SetY = 6,104 + SetX = 7,262 + SetY = 7,129 + SetX = 8,403 + SetY = 8,110 + SetX = 9,275 + SetY = 9,161 + SetX = 11,416 + SetY = 11,79 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,300 + SetY = 6,167 + SetX = 8,320 + SetY = 8,116 + SetX = 11,172 + SetY = 11,154 + + Graphic = normal1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,172 + SetY = 6,135 + SetY = 8,186 diff --git a/PBS/Animations/Converted/Move/GROWL.txt b/PBS/Animations/Converted/Move/GROWL.txt new file mode 100644 index 000000000..2cb9a947b --- /dev/null +++ b/PBS/Animations/Converted/Move/GROWL.txt @@ -0,0 +1,132 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GROWL] +Name = GROWL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Growl + Focus = User + SetFlip = 0,true + SetX = 0,185 + SetY = 0,230 + SetVisible = 0,true + SetX = 1,200 + SetY = 1,240 + SetX = 2,216 + SetY = 2,250 + SetX = 3,230 + SetY = 3,261 + SetX = 4,185 + SetY = 4,230 + SetX = 5,200 + SetY = 5,240 + SetX = 6,216 + SetY = 6,250 + SetX = 7,230 + SetY = 7,261 + + Graphic = Growl + Focus = User + SetX = 0,192 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,209 + SetX = 2,226 + SetX = 3,243 + SetX = 4,192 + SetX = 5,209 + SetX = 6,226 + SetX = 7,243 + + Graphic = Growl + Focus = User + SetX = 0,185 + SetY = 0,205 + SetVisible = 0,true + SetX = 1,200 + SetY = 1,192 + SetX = 2,216 + SetY = 2,179 + SetX = 3,230 + SetY = 3,167 + SetX = 4,185 + SetY = 4,205 + SetX = 5,200 + SetY = 5,192 + SetX = 6,216 + SetY = 6,179 + SetX = 7,230 + SetY = 7,167 + + PlayUserCry = 0,100,100 +#------------------------------- +[OppMove,GROWL] +Name = GROWL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Growl + Focus = Target + SetFlip = 0,true + SetX = 0,326 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,313 + SetY = 1,85 + SetX = 2,300 + SetY = 2,72 + SetX = 3,288 + SetY = 3,60 + SetX = 4,326 + SetY = 4,98 + SetX = 5,313 + SetY = 5,85 + SetX = 6,300 + SetY = 6,72 + SetX = 7,288 + SetY = 7,60 + + Graphic = Growl + Focus = Target + SetX = 0,326 + SetY = 0,135 + SetVisible = 0,true + SetX = 1,313 + SetY = 1,148 + SetX = 2,300 + SetY = 2,161 + SetX = 3,288 + SetY = 3,173 + SetX = 4,326 + SetY = 4,135 + SetX = 5,313 + SetY = 5,148 + SetX = 6,300 + SetY = 6,161 + SetX = 7,288 + SetY = 7,173 + + Graphic = Growl + Focus = Target + SetFlip = 0,true + SetX = 0,326 + SetY = 0,110 + SetVisible = 0,true + SetX = 1,311 + SetX = 2,296 + SetX = 3,281 + SetX = 4,326 + SetX = 5,311 + SetX = 6,296 + SetX = 7,281 + + PlayUserCry = 0,100,100 diff --git a/PBS/Animations/Converted/Move/GRUDGE.txt b/PBS/Animations/Converted/Move/GRUDGE.txt new file mode 100644 index 000000000..8a3ebd876 --- /dev/null +++ b/PBS/Animations/Converted/Move/GRUDGE.txt @@ -0,0 +1,171 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GRUDGE] +Name = GRUDGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ghost1 + Focus = Target + SetX = 0,512 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,456 + SetY = 1,118 + SetX = 2,416 + SetX = 3,344 + SetY = 3,102 + SetX = 4,296 + SetX = 5,272 + SetY = 5,86 + SetX = 6,320 + SetY = 6,62 + SetX = 7,368 + SetY = 7,54 + SetX = 8,424 + SetY = 8,70 + SetX = 9,496 + SetY = 9,86 + SetX = 10,480 + SetY = 10,102 + SetX = 11,464 + SetY = 11,118 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 1,512 + SetY = 1,102 + SetX = 2,456 + SetY = 2,118 + SetX = 3,416 + SetX = 4,344 + SetY = 4,102 + SetX = 5,312 + SetX = 6,288 + SetX = 7,312 + SetY = 7,70 + SetX = 8,368 + SetY = 8,62 + SetX = 9,424 + SetY = 9,70 + SetX = 10,488 + SetX = 11,496 + SetY = 11,110 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 2,512 + SetY = 2,102 + SetX = 3,456 + SetY = 3,118 + SetX = 4,416 + SetX = 5,344 + SetY = 5,102 + SetX = 6,328 + SetY = 6,118 + SetX = 7,272 + SetY = 7,94 + SetX = 8,312 + SetX = 9,368 + SetY = 9,78 + SetX = 10,432 + SetY = 10,62 + SetX = 11,464 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 3,512 + SetY = 3,102 + SetX = 4,472 + SetY = 4,110 + SetX = 5,392 + SetY = 5,118 + SetX = 6,376 + SetY = 6,142 + SetX = 7,320 + SetY = 7,134 + SetX = 8,272 + SetY = 8,110 + SetX = 9,304 + SetY = 9,78 + SetX = 10,376 + SetY = 10,54 + SetX = 11,424 + SetY = 11,46 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 4,512 + SetY = 4,78 + SetX = 5,448 + SetY = 5,102 + SetY = 6,118 + SetX = 7,400 + SetY = 7,126 + SetX = 8,312 + SetY = 8,134 + SetX = 9,272 + SetY = 9,110 + SetX = 10,312 + SetY = 10,62 + SetX = 11,360 + SetY = 11,46 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 6,504 + SetY = 6,102 + SetX = 7,464 + SetY = 7,126 + SetX = 8,376 + SetY = 8,166 + SetX = 9,312 + SetY = 9,134 + SetX = 10,264 + SetY = 10,94 + SetX = 11,312 + SetY = 11,54 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 7,504 + SetY = 7,86 + SetX = 8,456 + SetY = 8,126 + SetX = 9,376 + SetY = 9,142 + SetX = 10,320 + SetY = 10,134 + SetX = 11,272 + SetY = 11,94 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 8,496 + SetY = 8,102 + SetX = 9,448 + SetY = 9,142 + SetX = 10,376 + SetX = 11,328 + SetY = 11,118 + + Graphic = ghost1 + Focus = Target + SetVisible = 0,true + SetX = 10,432 + SetY = 10,126 + SetX = 11,392 + SetY = 11,134 + + Play = 0,Fire1,80,100 diff --git a/PBS/Animations/Converted/Move/GUST.txt b/PBS/Animations/Converted/Move/GUST.txt new file mode 100644 index 000000000..5cee17c4b --- /dev/null +++ b/PBS/Animations/Converted/Move/GUST.txt @@ -0,0 +1,129 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,GUST] +Name = GUST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Gust + Focus = Target + SetX = 0,384 + SetY = 0,101 + SetVisible = 0,true + SetX = 1,400 + SetX = 2,416 + SetY = 2,99 + SetX = 3,432 + SetX = 4,440 + SetY = 4,91 + SetFlip = 5,true + SetX = 5,445 + SetY = 5,87 + SetX = 6,440 + SetY = 6,79 + SetX = 7,428 + SetY = 7,71 + SetX = 8,420 + SetY = 8,67 + SetX = 9,400 + SetY = 9,65 + SetFlip = 10,false + SetX = 10,385 + SetX = 11,374 + SetY = 11,67 + SetX = 12,360 + SetY = 12,69 + SetX = 13,352 + SetY = 13,71 + SetX = 14,332 + SetY = 14,75 + SetFlip = 15,true + SetX = 15,320 + SetY = 15,83 + SetX = 16,328 + SetY = 16,91 + SetX = 17,334 + SetY = 17,95 + SetX = 18,344 + SetY = 18,99 + SetX = 19,358 + SetFlip = 20,false + SetX = 20,385 + SetY = 20,98 + SetX = 21,384 + SetY = 21,94 + SetOpacity = 21,150 + SetOpacity = 22,255 + SetOpacity = 25,150 + + Play = 0,gust,80,82 + Play = 21,hit,80,100 +#------------------------------- +[OppMove,GUST] +Name = GUST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Gust + Focus = Target + SetX = 0,128 + SetY = 0,229 + SetZoomX = 0,200 + SetZoomY = 0,200 + SetVisible = 0,true + SetX = 1,144 + SetX = 2,160 + SetY = 2,227 + SetX = 3,176 + SetX = 4,184 + SetY = 4,219 + SetFlip = 5,true + SetX = 5,189 + SetY = 5,215 + SetX = 6,184 + SetY = 6,207 + SetX = 7,172 + SetY = 7,199 + SetX = 8,164 + SetY = 8,195 + SetX = 9,144 + SetY = 9,193 + SetFlip = 10,false + SetX = 10,129 + SetX = 11,118 + SetY = 11,195 + SetX = 12,104 + SetY = 12,197 + SetX = 13,96 + SetY = 13,199 + SetX = 14,76 + SetY = 14,203 + SetFlip = 15,true + SetX = 15,64 + SetY = 15,211 + SetX = 16,72 + SetY = 16,219 + SetX = 17,78 + SetY = 17,223 + SetX = 18,88 + SetY = 18,227 + SetX = 19,102 + SetFlip = 20,false + SetX = 20,129 + SetY = 20,226 + SetX = 21,128 + SetY = 21,222 + SetOpacity = 21,150 + SetOpacity = 22,255 + SetOpacity = 25,150 + + Play = 0,gust,80,82 + Play = 21,hit,80,100 diff --git a/PBS/Animations/Converted/Move/HAIL.txt b/PBS/Animations/Converted/Move/HAIL.txt new file mode 100644 index 000000000..edfea81ee --- /dev/null +++ b/PBS/Animations/Converted/Move/HAIL.txt @@ -0,0 +1,170 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HAIL] +Name = HAIL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,37 + SetY = 0,26 + SetVisible = 0,true + SetX = 1,207 + SetY = 1,56 + SetX = 2,84 + SetY = 2,43 + SetX = 3,171 + SetY = 3,56 + SetX = 4,118 + SetY = 4,97 + SetX = 5,357 + SetY = 5,200 + SetX = 6,10 + SetY = 6,9 + SetX = 7,109 + SetY = 7,105 + SetX = 8,136 + SetY = 8,77 + SetX = 9,69 + SetY = 9,208 + SetX = 10,136 + SetY = 10,107 + + Graphic = weather + Focus = Screen + SetX = 0,164 + SetY = 0,136 + SetVisible = 0,true + SetX = 1,464 + SetY = 1,117 + SetX = 3,441 + SetY = 3,241 + SetX = 5,225 + SetY = 5,69 + SetX = 8,180 + SetY = 8,199 + SetX = 9,163 + SetY = 9,99 + SetX = 11,176 + SetY = 11,119 + + Graphic = weather + Focus = Screen + SetX = 0,302 + SetY = 0,79 + SetVisible = 0,true + SetX = 1,201 + SetY = 1,204 + SetX = 2,228 + SetY = 2,98 + SetX = 3,278 + SetY = 3,164 + SetX = 6,334 + SetY = 6,226 + SetX = 8,444 + SetY = 8,137 + SetX = 9,303 + SetY = 9,240 + SetX = 10,444 + SetY = 10,89 + SetX = 12,474 + SetY = 12,59 + + Graphic = weather + Focus = Screen + SetX = 0,440 + SetY = 0,194 + SetVisible = 0,true + SetX = 1,51 + SetY = 1,161 + SetX = 2,263 + SetY = 2,253 + SetX = 3,436 + SetY = 3,52 + SetX = 4,390 + SetY = 4,210 + SetX = 6,465 + SetY = 6,116 + SetX = 7,454 + SetY = 7,82 + SetX = 8,276 + SetY = 8,136 + SetX = 9,465 + SetY = 9,160 + SetX = 10,285 + SetY = 10,105 + SetX = 11,419 + SetY = 11,272 + SetX = 12,230 + SetY = 12,142 + + Graphic = weather + Focus = Screen + SetX = 0,362 + SetY = 0,252 + SetVisible = 0,true + SetX = 2,78 + SetY = 2,206 + SetX = 4,259 + SetY = 4,87 + SetX = 5,181 + SetY = 5,217 + SetX = 6,298 + SetY = 6,96 + SetX = 7,191 + SetY = 7,222 + SetX = 8,365 + SetY = 8,231 + SetX = 9,337 + SetY = 9,93 + SetX = 10,82 + SetY = 10,240 + SetX = 11,489 + SetY = 11,96 + SetX = 12,198 + SetY = 12,28 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 4,72 + SetY = 4,220 + SetX = 6,161 + SetY = 6,265 + SetX = 7,296 + SetY = 7,172 + SetX = 11,281 + SetY = 11,268 + SetX = 12,41 + SetY = 12,229 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 9,28 + SetY = 9,57 + SetX = 10,294 + SetY = 10,234 + SetX = 11,111 + SetY = 11,246 + SetX = 12,167 + SetY = 12,237 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 11,299 + SetY = 11,47 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 12,449 + SetY = 12,237 + + Play = 0,Natural Gift,100,147 diff --git a/PBS/Animations/Converted/Move/HARDEN.txt b/PBS/Animations/Converted/Move/HARDEN.txt new file mode 100644 index 000000000..c32165dd6 --- /dev/null +++ b/PBS/Animations/Converted/Move/HARDEN.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HARDEN] +Name = HARDEN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = User + SetX = 0,133 + SetY = 0,221 + SetVisible = 0,true + SetOpacity = 0,70 + SetOpacity = 1,105 + SetOpacity = 2,140 + SetOpacity = 6,105 + SetOpacity = 7,70 + + Play = 0,Harden,100,100 diff --git a/PBS/Animations/Converted/Move/HEADBUTT.txt b/PBS/Animations/Converted/Move/HEADBUTT.txt new file mode 100644 index 000000000..4fabdc679 --- /dev/null +++ b/PBS/Animations/Converted/Move/HEADBUTT.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HEADBUTT] +Name = HEADBUTT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetAngle = 2,90 + SetAngle = 3,0 + SetZoomX = 4,120 + SetZoomY = 4,120 + SetOpacity = 5,100 + + Play = 0,Blow3,80,100 diff --git a/PBS/Animations/Converted/Move/HEATWAVE.txt b/PBS/Animations/Converted/Move/HEATWAVE.txt new file mode 100644 index 000000000..69e04be3d --- /dev/null +++ b/PBS/Animations/Converted/Move/HEATWAVE.txt @@ -0,0 +1,87 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HEATWAVE] +Name = HEATWAVE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 011-Weapon06 + Focus = UserAndTarget + SetX = 0,256 + SetY = 0,167 + SetVisible = 0,true + SetZoomX = 1,110 + SetZoomY = 1,110 + SetOpacity = 1,240 + SetZoomX = 2,120 + SetZoomY = 2,120 + SetOpacity = 2,220 + SetFlip = 3,true + SetZoomX = 3,130 + SetZoomY = 3,130 + SetOpacity = 3,200 + SetZoomX = 4,140 + SetZoomY = 4,140 + SetOpacity = 4,190 + SetFlip = 5,false + SetZoomX = 5,150 + SetZoomY = 5,150 + SetOpacity = 5,175 + SetZoomX = 6,160 + SetZoomY = 6,160 + SetOpacity = 6,155 + SetZoomX = 7,170 + SetZoomY = 7,170 + SetOpacity = 7,130 + SetZoomX = 8,180 + SetZoomY = 8,180 + SetOpacity = 8,110 + SetZoomX = 9,190 + SetZoomY = 9,190 + SetOpacity = 9,95 + SetFlip = 10,true + SetZoomX = 10,200 + SetZoomY = 10,200 + SetOpacity = 10,80 + SetFlip = 11,false + SetZoomX = 11,220 + SetZoomY = 11,220 + SetOpacity = 11,75 + SetZoomX = 12,250 + SetZoomY = 12,250 + SetOpacity = 12,70 + SetZoomX = 13,300 + SetZoomY = 13,300 + SetOpacity = 13,65 + SetZoomX = 14,350 + SetZoomY = 14,350 + SetOpacity = 14,60 + SetZoomX = 15,400 + SetZoomY = 15,400 + SetOpacity = 15,55 + SetZoomX = 16,450 + SetZoomY = 16,450 + SetOpacity = 16,50 + SetZoomX = 17,500 + SetZoomY = 17,500 + SetOpacity = 17,45 + SetZoomX = 18,550 + SetZoomY = 18,550 + SetOpacity = 18,40 + SetZoomX = 19,600 + SetZoomY = 19,600 + SetZoomX = 20,500 + SetZoomY = 20,500 + SetOpacity = 20,35 + SetZoomX = 21,400 + SetZoomY = 21,400 + SetOpacity = 21,30 + + Play = 0,Fire1,80,100 + Play = 2,Fire2,80,100 + Play = 6,Fire2,80,100 + Play = 8,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/HIGHJUMPKICK.txt b/PBS/Animations/Converted/Move/HIGHJUMPKICK.txt new file mode 100644 index 000000000..4df3731c5 --- /dev/null +++ b/PBS/Animations/Converted/Move/HIGHJUMPKICK.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HIGHJUMPKICK] +Name = HIGHJUMPKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,504 + SetY = 0,142 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetX = 1,488 + SetY = 1,110 + SetX = 2,456 + SetY = 2,78 + SetX = 3,392 + SetY = 3,54 + SetX = 4,328 + SetY = 4,62 + SetX = 5,288 + SetY = 5,86 + SetX = 6,248 + SetY = 6,118 + SetX = 7,240 + SetY = 7,134 + SetOpacity = 7,100 + + Play = 0,throw,80,100 + Play = 3,Blow4,80,100 diff --git a/PBS/Animations/Converted/Move/HORNATTACK.txt b/PBS/Animations/Converted/Move/HORNATTACK.txt new file mode 100644 index 000000000..66c8f2a43 --- /dev/null +++ b/PBS/Animations/Converted/Move/HORNATTACK.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HORNATTACK] +Name = HORNATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Cosmo-01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,390 + SetY = 4,85 + SetZoomX = 4,50 + SetZoomY = 4,50 + SetOpacity = 4,100 + + Graphic = Cosmo-01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,192 + SetX = 2,236 + SetY = 2,154 + SetX = 3,294 + SetY = 3,135 + SetX = 4,358 + SetY = 4,110 + SetOpacity = 5,25 + + Play = 3,normaldamage,80,100 diff --git a/PBS/Animations/Converted/Move/HYDROPUMP.txt b/PBS/Animations/Converted/Move/HYDROPUMP.txt new file mode 100644 index 000000000..cf4852a92 --- /dev/null +++ b/PBS/Animations/Converted/Move/HYDROPUMP.txt @@ -0,0 +1,43 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HYDROPUMP] +Name = HYDROPUMP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = icewater + Focus = Target + SetVisible = 0,true + SetX = 2,480 + SetY = 2,94 + + Graphic = icewater + Focus = Target + SetVisible = 0,true + SetX = 5,296 + SetY = 5,94 + + Graphic = icewater + Focus = Target + SetX = 0,384 + SetY = 0,118 + SetVisible = 0,true + SetX = 3,392 + SetX = 4,400 + SetX = 5,376 + SetX = 6,384 + SetFlip = 9,true + SetX = 9,376 + SetFlip = 10,false + SetX = 11,368 + SetX = 12,376 + SetX = 14,296 + SetY = 14,94 + + Play = 1,Water1,80,100 + Play = 5,Water1,80,100 + Play = 9,Water1,80,100 diff --git a/PBS/Animations/Converted/Move/HYPERFANG.txt b/PBS/Animations/Converted/Move/HYPERFANG.txt new file mode 100644 index 000000000..d6b8645d9 --- /dev/null +++ b/PBS/Animations/Converted/Move/HYPERFANG.txt @@ -0,0 +1,24 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,HYPERFANG] +Name = HYPERFANG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = Target + SetX = 0,376 + SetY = 0,94 + SetVisible = 0,true + SetX = 2,384 + SetY = 2,102 + SetX = 4,376 + SetY = 4,110 + SetOpacity = 6,150 + SetOpacity = 7,100 + + Play = 0,Slash9,80,100 diff --git a/PBS/Animations/Converted/Move/ICEBALL.txt b/PBS/Animations/Converted/Move/ICEBALL.txt new file mode 100644 index 000000000..d7600d61e --- /dev/null +++ b/PBS/Animations/Converted/Move/ICEBALL.txt @@ -0,0 +1,31 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ICEBALL] +Name = ICEBALL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = icewater + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,140 + SetY = 1,198 + SetX = 2,172 + SetY = 2,173 + SetX = 3,204 + SetY = 3,154 + SetX = 4,262 + SetY = 4,129 + SetX = 5,307 + SetY = 5,116 + SetX = 6,358 + SetY = 6,110 + + Play = 0,throw,80,100 + Play = 7,Earth3,80,100 diff --git a/PBS/Animations/Converted/Move/ICEFANG.txt b/PBS/Animations/Converted/Move/ICEFANG.txt new file mode 100644 index 000000000..5b67cde7e --- /dev/null +++ b/PBS/Animations/Converted/Move/ICEFANG.txt @@ -0,0 +1,106 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ICEFANG] +Name = ICEFANG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = element fangs + Focus = Target + SetX = 0,395 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,390 + SetY = 1,92 + SetX = 2,389 + SetY = 2,97 + SetX = 3,388 + SetY = 3,94 + SetX = 4,389 + SetY = 4,88 + SetX = 5,392 + SetY = 5,101 + SetX = 6,386 + SetY = 6,94 + SetX = 7,390 + SetY = 7,95 + SetX = 8,389 + SetY = 8,90 + SetX = 9,382 + SetY = 9,92 + SetX = 10,397 + SetY = 10,99 + SetX = 11,388 + SetY = 11,94 + SetX = 12,391 + SetY = 12,95 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 7,330 + SetY = 7,111 + SetOpacity = 7,208 + SetX = 8,328 + SetY = 8,47 + SetOpacity = 8,164 + SetX = 9,353 + SetY = 9,43 + SetOpacity = 9,154 + SetX = 10,354 + SetY = 10,146 + SetOpacity = 10,255 + SetX = 11,443 + SetY = 11,167 + SetOpacity = 11,204 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,332 + SetY = 8,111 + SetOpacity = 8,133 + SetX = 9,342 + SetY = 9,137 + SetOpacity = 9,159 + SetX = 10,462 + SetY = 10,48 + SetOpacity = 10,234 + SetX = 11,478 + SetY = 11,106 + SetOpacity = 11,224 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,473 + SetY = 8,65 + SetOpacity = 8,213 + SetX = 9,410 + SetY = 9,166 + SetOpacity = 9,212 + SetX = 10,402 + SetY = 10,174 + SetOpacity = 10,174 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 9,399 + SetY = 9,30 + SetOpacity = 9,144 + SetX = 10,320 + SetOpacity = 10,224 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 10,450 + SetY = 10,90 + SetOpacity = 10,154 + + Play = 6,Super Fang,80,100 diff --git a/PBS/Animations/Converted/Move/ICEPUNCH.txt b/PBS/Animations/Converted/Move/ICEPUNCH.txt new file mode 100644 index 000000000..a8205d262 --- /dev/null +++ b/PBS/Animations/Converted/Move/ICEPUNCH.txt @@ -0,0 +1,172 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ICEPUNCH] +Name = ICEPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetX = 0,384 + SetY = 0,93 + SetVisible = 0,true + SetY = 1,91 + SetX = 2,409 + SetY = 2,116 + SetX = 3,385 + SetY = 3,93 + SetX = 4,392 + SetY = 4,74 + SetX = 5,373 + SetY = 5,79 + SetX = 6,412 + SetY = 6,145 + SetX = 8,349 + SetY = 8,135 + SetX = 9,387 + SetY = 9,136 + SetX = 10,361 + SetY = 10,9 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 1,387 + SetY = 1,96 + SetX = 2,385 + SetX = 3,431 + SetY = 3,135 + SetX = 4,327 + SetY = 4,154 + SetX = 5,420 + SetY = 5,54 + SetX = 6,325 + SetY = 6,81 + SetX = 8,409 + SetY = 8,148 + SetX = 9,313 + SetY = 9,175 + SetX = 10,400 + SetY = 10,42 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,348 + SetY = 2,107 + SetX = 3,334 + SetY = 3,124 + SetX = 4,449 + SetY = 4,159 + SetX = 5,438 + SetY = 5,120 + SetX = 6,382 + SetY = 6,5 + SetX = 8,380 + SetY = 8,77 + SetX = 9,330 + SetY = 9,54 + SetX = 10,468 + SetY = 10,177 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 3,383 + SetY = 3,63 + SetX = 4,393 + SetY = 4,164 + SetX = 5,347 + SetY = 5,135 + SetX = 6,317 + SetY = 6,48 + SetX = 8,338 + SetY = 8,90 + SetX = 9,435 + SetY = 9,47 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,118 + SetX = 4,375 + SetY = 4,103 + SetX = 5,341 + SetY = 5,88 + SetX = 6,298 + SetY = 6,131 + SetX = 8,414 + SetY = 8,111 + SetX = 9,445 + SetY = 9,117 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 4,408 + SetY = 4,127 + SetX = 5,391 + SetY = 5,140 + SetX = 6,432 + SetY = 6,110 + SetX = 8,393 + SetY = 8,28 + SetX = 9,384 + SetY = 9,95 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 4,378 + SetY = 4,99 + SetX = 5,399 + SetY = 5,103 + SetX = 6,427 + SetY = 6,77 + SetX = 8,387 + SetY = 8,117 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 5,332 + SetY = 5,33 + SetX = 6,380 + SetY = 6,109 + SetX = 8,459 + SetY = 8,80 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 5,381 + SetY = 5,93 + SetX = 6,383 + SetY = 6,101 + SetX = 8,382 + SetY = 8,92 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,392 + SetY = 7,104 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,363 + SetY = 7,85 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,393 + SetY = 7,83 + + Play = 0,Shell Smash,100,131 diff --git a/PBS/Animations/Converted/Move/ICICLESPEAR.txt b/PBS/Animations/Converted/Move/ICICLESPEAR.txt new file mode 100644 index 000000000..d6023337c --- /dev/null +++ b/PBS/Animations/Converted/Move/ICICLESPEAR.txt @@ -0,0 +1,156 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ICICLESPEAR] +Name = ICICLESPEAR + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,192 + SetY = 0,192 + SetAngle = 0,135 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,173 + SetX = 2,294 + SetY = 2,142 + SetX = 3,332 + SetY = 3,135 + SetX = 4,345 + SetY = 4,129 + SetX = 5,352 + SetY = 5,123 + + Play = 0,throw,80,100 + Play = 2,Crash,50,115 + Play = 2,Ice2,80,100 +#------------------------------- +[Move,ICICLESPEAR,1] +Name = Icicle Spear hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,192 + SetY = 0,192 + SetAngle = 0,135 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,173 + SetX = 2,294 + SetY = 2,142 + SetX = 3,332 + SetY = 3,135 + SetX = 4,345 + SetY = 4,129 + SetX = 5,352 + SetY = 5,123 + + Play = 0,throw,80,100 + Play = 2,Crash,50,115 + Play = 2,Ice2,80,100 +#------------------------------- +[Move,ICICLESPEAR,2] +Name = Icicle Spear hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,192 + SetY = 0,192 + SetAngle = 0,135 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,173 + SetX = 2,294 + SetY = 2,142 + SetX = 3,332 + SetY = 3,135 + SetX = 4,345 + SetY = 4,129 + SetX = 5,352 + SetY = 5,123 + + Play = 0,throw,80,100 + Play = 2,Crash,50,115 + Play = 2,Ice2,80,100 +#------------------------------- +[Move,ICICLESPEAR,3] +Name = Icicle Spear hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,192 + SetY = 0,192 + SetAngle = 0,135 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,173 + SetX = 2,294 + SetY = 2,142 + SetX = 3,332 + SetY = 3,135 + SetX = 4,345 + SetY = 4,129 + SetX = 5,352 + SetY = 5,123 + + Play = 0,throw,80,100 + Play = 2,Crash,50,115 + Play = 2,Ice2,80,100 +#------------------------------- +[Move,ICICLESPEAR,4] +Name = Icicle Spear hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,192 + SetY = 0,192 + SetAngle = 0,135 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,173 + SetX = 2,294 + SetY = 2,142 + SetX = 3,332 + SetY = 3,135 + SetX = 4,345 + SetY = 4,129 + SetX = 5,352 + SetY = 5,123 + + Play = 0,throw,80,100 + Play = 2,Crash,50,115 + Play = 2,Ice2,80,100 diff --git a/PBS/Animations/Converted/Move/ICYWIND.txt b/PBS/Animations/Converted/Move/ICYWIND.txt new file mode 100644 index 000000000..07942e8df --- /dev/null +++ b/PBS/Animations/Converted/Move/ICYWIND.txt @@ -0,0 +1,58 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ICYWIND] +Name = ICYWIND + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Ice1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,134 + SetY = 1,192 + SetX = 2,179 + SetY = 2,179 + SetX = 3,217 + SetY = 3,167 + SetX = 4,249 + SetY = 4,148 + SetFlip = 5,true + SetX = 5,300 + SetY = 5,135 + + Graphic = Ice1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,172 + SetY = 3,179 + SetX = 4,204 + SetY = 4,167 + SetZoomX = 4,75 + SetZoomY = 4,75 + + Graphic = Ice1 + Focus = UserAndTarget + SetX = 0,140 + SetY = 0,192 + SetVisible = 0,true + SetX = 1,166 + SetY = 1,186 + SetX = 2,236 + SetY = 2,154 + SetX = 3,275 + SetY = 3,135 + SetX = 4,313 + SetY = 4,123 + SetFlip = 5,true + SetX = 5,358 + SetY = 5,116 + SetFlip = 6,false + SetY = 6,110 + SetOpacity = 10,100 + + Play = 0,throw,80,100 + Play = 1,Ice8,80,100 diff --git a/PBS/Animations/Converted/Move/INFERNO.txt b/PBS/Animations/Converted/Move/INFERNO.txt new file mode 100644 index 000000000..53d44698f --- /dev/null +++ b/PBS/Animations/Converted/Move/INFERNO.txt @@ -0,0 +1,298 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,INFERNO] +Name = INFERNO + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Flames + Focus = Target + SetX = 0,368 + SetY = 0,128 + SetVisible = 0,true + SetX = 1,361 + SetY = 1,122 + SetX = 2,360 + SetY = 2,121 + SetX = 3,353 + SetY = 3,129 + SetX = 4,347 + SetY = 4,134 + SetX = 5,359 + SetY = 5,129 + SetX = 6,364 + SetY = 6,128 + SetX = 7,354 + SetX = 8,360 + SetY = 8,130 + SetX = 9,376 + SetY = 9,129 + + Graphic = Flames + Focus = Target + SetX = 0,405 + SetY = 0,123 + SetVisible = 0,true + SetX = 1,410 + SetY = 1,121 + SetX = 2,383 + SetY = 2,130 + SetX = 3,376 + SetY = 3,132 + SetX = 4,372 + SetY = 4,136 + SetX = 5,383 + SetY = 5,133 + SetY = 6,126 + SetX = 7,379 + SetY = 7,127 + SetX = 8,386 + SetY = 8,134 + SetX = 9,351 + SetY = 9,129 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,387 + SetY = 1,119 + SetX = 2,407 + SetY = 2,123 + SetX = 3,369 + SetY = 3,114 + SetX = 4,393 + SetY = 4,135 + SetX = 5,378 + SetY = 5,115 + SetX = 6,381 + SetY = 6,110 + SetX = 7,368 + SetY = 7,107 + SetX = 8,377 + SetY = 8,117 + SetX = 9,371 + SetY = 9,108 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,377 + SetY = 1,105 + SetX = 2,380 + SetY = 2,109 + SetX = 3,400 + SetY = 3,134 + SetX = 4,362 + SetY = 4,118 + SetX = 5,383 + SetY = 5,95 + SetX = 6,356 + SetY = 6,102 + SetX = 7,344 + SetY = 7,108 + SetX = 8,403 + SetY = 8,123 + SetX = 9,352 + SetY = 9,100 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 1,402 + SetY = 1,107 + SetX = 2,397 + SetY = 2,110 + SetX = 3,389 + SetY = 3,117 + SetX = 4,387 + SetY = 4,121 + SetX = 5,402 + SetY = 5,107 + SetX = 6,408 + SetY = 6,118 + SetX = 7,355 + SetY = 7,92 + SetX = 8,406 + SetY = 8,101 + SetX = 9,349 + SetY = 9,78 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,364 + SetY = 2,103 + SetX = 3,409 + SetY = 3,115 + SetX = 4,346 + SetY = 4,109 + SetX = 5,404 + SetY = 5,131 + SetX = 6,386 + SetY = 6,95 + SetX = 7,383 + SetY = 7,90 + SetX = 8,382 + SetY = 8,93 + SetX = 9,370 + SetY = 9,88 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,386 + SetY = 2,95 + SetX = 3,349 + SetY = 3,105 + SetX = 4,378 + SetY = 4,104 + SetX = 5,400 + SetY = 5,83 + SetX = 6,402 + SetY = 6,100 + SetX = 7,368 + SetY = 7,76 + SetX = 8,359 + SetY = 8,106 + SetX = 9,391 + SetY = 9,105 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 2,349 + SetY = 2,92 + SetX = 3,373 + SetY = 3,98 + SetX = 4,404 + SetY = 4,132 + SetX = 5,357 + SetY = 5,101 + SetX = 6,368 + SetY = 6,76 + SetX = 7,404 + SetY = 7,125 + SetX = 8,351 + SetY = 8,87 + SetX = 9,406 + SetY = 9,128 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,393 + SetY = 3,99 + SetX = 4,402 + SetY = 4,113 + SetX = 5,343 + SetY = 5,117 + SetX = 7,395 + SetY = 7,108 + SetX = 8,373 + SetY = 8,75 + SetX = 9,417 + SetY = 9,107 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,357 + SetY = 3,89 + SetX = 4,395 + SetY = 4,94 + SetX = 5,363 + SetY = 5,79 + SetX = 7,400 + SetY = 7,81 + SetX = 8,384 + SetY = 8,78 + SetX = 9,397 + SetY = 9,88 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,412 + SetY = 3,95 + SetX = 4,357 + SetY = 4,93 + SetX = 7,387 + SetY = 7,71 + SetX = 8,414 + SetY = 8,83 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 3,380 + SetY = 3,81 + SetX = 4,385 + SetY = 4,84 + SetX = 7,341 + SetY = 7,79 + SetX = 8,347 + SetY = 8,70 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,367 + SetY = 4,74 + SetX = 7,355 + SetY = 7,61 + SetX = 8,368 + SetY = 8,59 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,343 + SetY = 4,79 + SetX = 7,383 + SetY = 7,52 + SetX = 8,392 + SetY = 8,57 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,402 + SetY = 4,76 + SetX = 7,419 + SetY = 7,77 + SetX = 8,416 + SetY = 8,62 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 4,382 + SetY = 4,58 + SetX = 7,422 + SetY = 7,103 + SetX = 8,342 + SetY = 8,48 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,423 + SetY = 8,116 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,414 + SetY = 8,138 + + Graphic = Flames + Focus = Target + SetVisible = 0,true + SetX = 8,396 + SetY = 8,33 + + Play = 0,Wring Out,100,150 diff --git a/PBS/Animations/Converted/Move/IRONHEAD.txt b/PBS/Animations/Converted/Move/IRONHEAD.txt new file mode 100644 index 000000000..0367927d5 --- /dev/null +++ b/PBS/Animations/Converted/Move/IRONHEAD.txt @@ -0,0 +1,63 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,IRONHEAD] +Name = IRONHEAD + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 1,384 + SetY = 1,97 + SetOpacity = 7,128 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 2,331 + SetY = 2,114 + SetX = 3,278 + SetY = 3,128 + SetX = 4,284 + SetY = 4,178 + SetOpacity = 4,128 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 2,437 + SetY = 2,118 + SetX = 3,485 + SetY = 3,132 + SetX = 4,507 + SetY = 4,182 + SetOpacity = 4,128 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 3,279 + SetY = 3,82 + SetX = 4,266 + SetY = 4,27 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 3,461 + SetY = 3,69 + SetX = 4,513 + SetY = 4,54 + + Graphic = Iron Head + Focus = Target + SetVisible = 0,true + SetX = 3,275 + SetY = 3,33 + + Play = 0,Damage1,100,100 diff --git a/PBS/Animations/Converted/Move/JUMPKICK.txt b/PBS/Animations/Converted/Move/JUMPKICK.txt new file mode 100644 index 000000000..7bba3a7d1 --- /dev/null +++ b/PBS/Animations/Converted/Move/JUMPKICK.txt @@ -0,0 +1,35 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,JUMPKICK] +Name = JUMPKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,504 + SetY = 0,142 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetX = 1,488 + SetY = 1,110 + SetX = 2,456 + SetY = 2,78 + SetX = 3,392 + SetY = 3,54 + SetX = 4,328 + SetY = 4,62 + SetX = 5,288 + SetY = 5,86 + SetX = 6,248 + SetY = 6,118 + SetX = 7,240 + SetY = 7,134 + SetOpacity = 7,100 + + Play = 3,Blow3,80,100 diff --git a/PBS/Animations/Converted/Move/KARATECHOP.txt b/PBS/Animations/Converted/Move/KARATECHOP.txt new file mode 100644 index 000000000..d06410fb5 --- /dev/null +++ b/PBS/Animations/Converted/Move/KARATECHOP.txt @@ -0,0 +1,35 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,KARATECHOP] +Name = KARATECHOP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetX = 0,232 + SetY = 0,30 + SetVisible = 0,true + SetX = 1,272 + SetY = 1,38 + SetAngle = 1,350 + SetX = 2,312 + SetAngle = 2,340 + SetX = 3,336 + SetY = 3,54 + SetAngle = 3,330 + SetX = 4,360 + SetY = 4,70 + SetAngle = 4,320 + SetX = 5,376 + SetY = 5,86 + SetX = 6,384 + SetY = 6,94 + SetAngle = 6,0 + + Play = 0,Wind1,80,100 + Play = 7,Blow3,80,100 diff --git a/PBS/Animations/Converted/Move/KINESIS.txt b/PBS/Animations/Converted/Move/KINESIS.txt new file mode 100644 index 000000000..bfba0b1c8 --- /dev/null +++ b/PBS/Animations/Converted/Move/KINESIS.txt @@ -0,0 +1,30 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,KINESIS] +Name = KINESIS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetX = 0,383 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,385 + SetX = 2,384 + SetY = 2,95 + SetY = 3,90 + SetX = 4,386 + SetY = 4,93 + SetY = 5,94 + SetY = 6,93 + SetX = 7,384 + SetY = 7,94 + SetX = 8,385 + SetY = 8,93 + + Play = 0,Trump Card,86,100 diff --git a/PBS/Animations/Converted/Move/LEAFBLADE.txt b/PBS/Animations/Converted/Move/LEAFBLADE.txt new file mode 100644 index 000000000..1ae4b8b6b --- /dev/null +++ b/PBS/Animations/Converted/Move/LEAFBLADE.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LEAFBLADE] +Name = LEAFBLADE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Sword5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sword1,80,100 + Play = 3,Slash3,80,100 + Play = 7,Slash3,80,100 + Play = 11,Slash3,80,100 + Play = 15,Slash3,80,100 diff --git a/PBS/Animations/Converted/Move/LEECHLIFE.txt b/PBS/Animations/Converted/Move/LEECHLIFE.txt new file mode 100644 index 000000000..0f70cd82e --- /dev/null +++ b/PBS/Animations/Converted/Move/LEECHLIFE.txt @@ -0,0 +1,123 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LEECHLIFE] +Name = LEECHLIFE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetX = 0,166 + SetY = 0,224 + SetVisible = 0,true + SetX = 1,224 + SetY = 1,179 + SetX = 2,294 + SetY = 2,142 + SetX = 3,358 + SetY = 3,110 + SetZoomX = 4,110 + SetZoomY = 4,110 + SetOpacity = 4,100 + SetX = 5,281 + SetY = 5,104 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetOpacity = 5,255 + SetX = 6,211 + SetY = 6,123 + SetX = 7,140 + SetY = 7,161 + SetX = 8,121 + SetY = 8,192 + SetX = 9,179 + SetY = 9,224 + SetX = 10,102 + SetY = 10,217 + SetX = 11,147 + SetY = 11,230 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,339 + SetY = 4,98 + SetX = 5,332 + SetY = 5,192 + SetX = 6,281 + SetY = 6,230 + SetX = 7,179 + SetX = 8,153 + SetY = 8,198 + SetX = 9,108 + SetY = 9,154 + SetX = 10,243 + SetY = 10,230 + SetX = 11,96 + SetY = 11,211 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,384 + SetY = 4,154 + SetX = 5,345 + SetY = 5,91 + SetX = 6,281 + SetY = 6,123 + SetX = 7,230 + SetY = 7,154 + SetX = 8,268 + SetY = 8,192 + SetX = 9,320 + SetY = 9,205 + SetX = 10,134 + SetY = 10,167 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,384 + SetY = 6,116 + SetX = 7,326 + SetY = 7,154 + SetX = 8,166 + SetY = 8,98 + SetX = 9,217 + SetY = 9,129 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,339 + SetY = 6,79 + SetX = 7,256 + SetX = 8,384 + SetY = 8,148 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,377 + SetY = 7,85 + SetX = 8,268 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,320 + SetY = 7,79 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,396 + SetY = 7,129 + + Play = 0,throw,80,100 + Play = 2,Twine,80,100 + Play = 3,Bow1,80,100 diff --git a/PBS/Animations/Converted/Move/LEECHSEED.txt b/PBS/Animations/Converted/Move/LEECHSEED.txt new file mode 100644 index 000000000..179abdccc --- /dev/null +++ b/PBS/Animations/Converted/Move/LEECHSEED.txt @@ -0,0 +1,134 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LEECHSEED] +Name = LEECHSEED + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,147 + SetY = 4,205 + SetX = 5,179 + SetY = 5,148 + SetX = 6,217 + SetY = 6,116 + SetX = 8,352 + SetY = 8,91 + SetX = 10,422 + SetY = 10,129 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,205 + SetVisible = 0,true + SetX = 1,198 + SetY = 1,142 + SetX = 2,249 + SetY = 2,104 + SetX = 3,300 + SetY = 3,85 + SetX = 4,339 + SetX = 5,371 + SetY = 5,104 + SetX = 6,384 + SetY = 6,129 + SetX = 7,281 + SetY = 7,91 + SetX = 8,384 + SetY = 8,129 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,147 + SetY = 2,205 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,85 + SetX = 5,268 + SetY = 5,72 + SetX = 6,300 + SetY = 6,79 + SetX = 7,332 + SetY = 7,110 + SetX = 8,345 + SetY = 8,129 + SetX = 9,390 + SetY = 9,104 + SetX = 10,345 + SetY = 10,129 +#------------------------------- +[OppMove,LEECHSEED] +Name = LEECHSEED + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,384 + SetY = 2,98 + SetX = 3,352 + SetY = 3,72 + SetX = 4,307 + SetY = 4,60 + SetX = 5,256 + SetY = 5,72 + SetX = 6,185 + SetY = 6,110 + SetX = 7,121 + SetY = 7,173 + SetX = 8,128 + SetY = 8,249 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,384 + SetY = 4,98 + SetX = 5,352 + SetY = 5,79 + SetX = 6,307 + SetY = 6,72 + SetX = 8,211 + SetY = 8,142 + SetX = 10,160 + SetY = 10,249 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,384 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,352 + SetY = 1,79 + SetX = 2,313 + SetY = 2,72 + SetX = 3,256 + SetY = 3,85 + SetX = 4,211 + SetY = 4,123 + SetX = 5,160 + SetY = 5,186 + SetX = 6,128 + SetY = 6,249 + SetX = 7,249 + SetY = 7,91 + SetX = 8,89 + SetY = 8,249 + SetX = 9,179 + SetY = 9,198 + SetX = 10,96 + SetY = 10,249 diff --git a/PBS/Animations/Converted/Move/LEER.txt b/PBS/Animations/Converted/Move/LEER.txt new file mode 100644 index 000000000..f249bfc7e --- /dev/null +++ b/PBS/Animations/Converted/Move/LEER.txt @@ -0,0 +1,49 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LEER] +Name = LEER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leer + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,205 + SetVisible = 0,true + SetY = 1,203 + SetX = 2,148 + SetY = 2,201 + SetX = 3,144 + SetY = 3,203 + SetX = 4,153 + SetY = 4,201 + + Play = 0,Saint9,100,100 +#------------------------------- +[OppMove,LEER] +Name = LEER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leer + Focus = UserAndTarget + SetX = 0,350 + SetY = 0,79 + SetVisible = 0,true + SetY = 1,77 + SetX = 2,352 + SetY = 2,75 + SetX = 3,347 + SetY = 3,77 + SetX = 4,356 + SetY = 4,75 + + Play = 0,Saint9,100,100 diff --git a/PBS/Animations/Converted/Move/LICK.txt b/PBS/Animations/Converted/Move/LICK.txt new file mode 100644 index 000000000..d53ff8346 --- /dev/null +++ b/PBS/Animations/Converted/Move/LICK.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LICK] +Name = LICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ghost1 + Focus = Target + SetX = 0,400 + SetY = 0,142 + SetVisible = 0,true + SetY = 1,118 + SetY = 2,94 + SetY = 3,70 + SetY = 4,54 + SetY = 5,46 + SetOpacity = 6,100 diff --git a/PBS/Animations/Converted/Move/LIGHTSCREEN.txt b/PBS/Animations/Converted/Move/LIGHTSCREEN.txt new file mode 100644 index 000000000..bb25a6bbc --- /dev/null +++ b/PBS/Animations/Converted/Move/LIGHTSCREEN.txt @@ -0,0 +1,84 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LIGHTSCREEN] +Name = LIGHTSCREEN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 1,442 + SetY = 1,57 + SetX = 2,446 + SetY = 2,55 + SetX = 3,434 + SetY = 3,63 + SetY = 4,62 + SetX = 5,368 + SetY = 5,111 + SetX = 6,428 + SetY = 6,61 + SetX = 7,349 + SetY = 7,131 + SetX = 8,347 + SetY = 8,145 + SetX = 9,391 + SetY = 9,46 + SetX = 10,430 + SetY = 10,57 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 4,368 + SetY = 4,111 + SetX = 5,412 + SetY = 5,72 + SetX = 6,357 + SetY = 6,125 + SetX = 7,430 + SetY = 7,66 + SetX = 8,450 + SetY = 8,160 + SetX = 9,339 + SetY = 9,144 + SetX = 10,377 + SetY = 10,58 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 7,440 + SetY = 7,160 + SetX = 8,421 + SetY = 8,72 + SetX = 9,445 + SetY = 9,162 + SetX = 10,347 + SetY = 10,135 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 8,384 + SetY = 8,42 + SetX = 9,421 + SetY = 9,65 + SetX = 10,448 + SetY = 10,162 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetBlending = 1,1 + SetX = 1,390 + SetY = 1,95 + SetOpacity = 1,154 + + Play = 3,Flash2,100,170 + Play = 6,Flash2,100,180 diff --git a/PBS/Animations/Converted/Move/LOCKON.txt b/PBS/Animations/Converted/Move/LOCKON.txt new file mode 100644 index 000000000..f727be89d --- /dev/null +++ b/PBS/Animations/Converted/Move/LOCKON.txt @@ -0,0 +1,81 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LOCKON] +Name = LOCKON + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = mixed + Focus = Target + SetVisible = 0,true + SetX = 2,395 + SetY = 2,95 + SetZoomX = 2,200 + SetZoomY = 2,200 + SetX = 3,394 + SetY = 3,97 + SetX = 7,396 + SetY = 7,89 + + Graphic = mixed + Focus = Target + SetX = 0,395 + SetY = 0,99 + SetZoomX = 0,200 + SetZoomY = 0,200 + SetVisible = 0,true + SetX = 1,397 + SetY = 1,94 + SetX = 4,404 + SetY = 4,88 + SetX = 5,406 + SetY = 5,92 + SetY = 6,87 + SetX = 8,395 + SetY = 8,89 + SetX = 9,394 + SetY = 9,88 + SetX = 10,393 + SetY = 10,89 + SetY = 11,91 + SetX = 12,394 + SetY = 12,90 + SetX = 14,393 + SetY = 14,88 + SetX = 15,397 + SetX = 16,393 + SetY = 16,91 + SetX = 17,397 + SetY = 17,88 + SetX = 18,395 + SetY = 18,90 + SetX = 19,399 + SetY = 19,92 + SetX = 20,395 + SetY = 20,88 + SetX = 21,394 + SetY = 21,86 + SetX = 22,392 + SetY = 22,88 + SetX = 23,391 + SetY = 23,90 + SetX = 24,395 + SetY = 24,89 + SetX = 25,397 + SetX = 26,394 + SetY = 26,88 + SetX = 27,395 + SetY = 27,92 + SetOpacity = 27,236 + SetX = 28,393 + SetY = 28,90 + SetOpacity = 28,239 + SetX = 29,396 + SetY = 29,93 + SetOpacity = 29,168 + + Play = 0,Lock On,88,100 diff --git a/PBS/Animations/Converted/Move/LOVELYKISS.txt b/PBS/Animations/Converted/Move/LOVELYKISS.txt new file mode 100644 index 000000000..5893079bc --- /dev/null +++ b/PBS/Animations/Converted/Move/LOVELYKISS.txt @@ -0,0 +1,105 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LOVELYKISS] +Name = LOVELYKISS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetX = 0,395 + SetY = 0,130 + SetVisible = 0,true + SetX = 1,383 + SetY = 1,102 + SetX = 2,382 + SetY = 2,112 + SetX = 3,351 + SetY = 3,103 + SetX = 4,349 + SetY = 4,106 + SetX = 5,359 + SetY = 5,131 + SetX = 6,368 + SetX = 7,360 + SetY = 7,134 + SetX = 8,353 + SetY = 8,108 + SetX = 9,357 + SetY = 9,106 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,376 + SetY = 1,94 + SetX = 2,405 + SetY = 2,120 + SetX = 3,368 + SetY = 3,116 + SetY = 4,131 + SetX = 5,377 + SetY = 5,108 + SetX = 6,340 + SetY = 6,114 + SetX = 7,332 + SetY = 7,115 + SetX = 8,372 + SetY = 8,98 + SetX = 9,366 + SetY = 9,56 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,407 + SetY = 1,139 + SetX = 2,372 + SetY = 2,90 + SetX = 3,361 + SetY = 3,85 + SetX = 4,363 + SetY = 4,76 + SetX = 5,349 + SetY = 5,90 + SetX = 6,364 + SetY = 6,93 + SetX = 7,367 + SetY = 7,97 + SetX = 8,356 + SetY = 8,79 + SetX = 9,370 + SetY = 9,86 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,370 + SetY = 5,70 + SetX = 6,337 + SetY = 6,80 + SetX = 7,332 + SetX = 8,330 + SetY = 8,73 + SetX = 9,368 + SetY = 9,72 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,359 + SetY = 6,56 + SetX = 7,355 + SetY = 7,60 + + Graphic = poi.hear.mus + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,331 + SetY = 7,59 + + Play = 0,Lovely Kiss,85,100 diff --git a/PBS/Animations/Converted/Move/LOWKICK.txt b/PBS/Animations/Converted/Move/LOWKICK.txt new file mode 100644 index 000000000..886fe934b --- /dev/null +++ b/PBS/Animations/Converted/Move/LOWKICK.txt @@ -0,0 +1,31 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LOWKICK] +Name = LOWKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,480 + SetY = 0,158 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetOpacity = 0,100 + SetX = 1,424 + SetY = 1,134 + SetOpacity = 1,255 + SetX = 2,400 + SetY = 2,118 + SetX = 3,392 + SetY = 3,110 + SetZoomX = 4,100 + SetZoomY = 4,100 + SetOpacity = 5,100 + + Play = 2,Blow1,80,100 diff --git a/PBS/Animations/Converted/Move/LUCKYCHANT.txt b/PBS/Animations/Converted/Move/LUCKYCHANT.txt new file mode 100644 index 000000000..ef1cc6d17 --- /dev/null +++ b/PBS/Animations/Converted/Move/LUCKYCHANT.txt @@ -0,0 +1,296 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,LUCKYCHANT] +Name = LUCKYCHANT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = UserAndTarget + SetX = 0,375 + SetY = 0,100 + SetVisible = 0,true + SetOpacity = 0,220 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetX = 0,336 + SetY = 0,87 + SetVisible = 0,true + SetX = 1,426 + SetY = 1,151 + SetX = 2,352 + SetY = 2,147 + SetX = 3,362 + SetY = 3,135 + SetX = 4,351 + SetY = 4,133 + SetX = 5,345 + SetY = 5,120 + SetX = 6,355 + SetY = 6,85 + SetX = 7,358 + SetY = 7,82 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetX = 0,336 + SetY = 0,104 + SetVisible = 0,true + SetX = 1,341 + SetY = 1,130 + SetX = 2,346 + SetY = 2,134 + SetX = 3,372 + SetY = 3,144 + SetX = 4,365 + SetY = 4,134 + SetX = 5,356 + SetY = 5,127 + SetX = 6,366 + SetY = 6,75 + SetX = 7,370 + SetY = 7,68 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,343 + SetY = 1,143 + SetX = 2,358 + SetY = 2,129 + SetX = 3,355 + SetY = 3,144 + SetX = 4,356 + SetY = 4,122 + SetX = 5,362 + SetY = 5,140 + SetX = 6,347 + SetY = 6,98 + SetX = 7,383 + SetY = 7,64 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,361 + SetY = 1,150 + SetX = 2,417 + SetY = 2,135 + SetX = 3,346 + SetY = 3,127 + SetX = 4,377 + SetY = 4,146 + SetX = 5,352 + SetY = 5,108 + SetY = 6,120 + SetX = 7,394 + SetY = 7,64 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,432 + SetY = 2,129 + SetX = 3,351 + SetY = 3,113 + SetX = 4,392 + SetY = 4,152 + SetX = 5,344 + SetY = 5,99 + SetX = 6,366 + SetY = 6,133 + SetX = 7,372 + SetY = 7,53 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,423 + SetY = 2,144 + SetX = 3,339 + SetY = 3,98 + SetX = 4,397 + SetY = 4,146 + SetX = 5,374 + SetY = 5,136 + SetX = 6,379 + SetY = 6,145 + SetX = 7,343 + SetY = 7,95 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,406 + SetY = 2,145 + SetX = 3,425 + SetY = 3,133 + SetX = 4,412 + SetY = 4,143 + SetX = 5,380 + SetY = 5,150 + SetX = 6,393 + SetY = 6,154 + SetX = 7,354 + SetY = 7,104 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,427 + SetY = 2,111 + SetX = 3,435 + SetY = 3,130 + SetX = 4,423 + SetY = 4,143 + SetX = 5,391 + SetY = 5,145 + SetX = 6,411 + SetY = 6,149 + SetX = 7,346 + SetY = 7,125 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,358 + SetY = 2,109 + SetX = 3,432 + SetY = 3,116 + SetX = 4,429 + SetY = 4,129 + SetX = 5,407 + SetY = 5,150 + SetX = 6,428 + SetY = 6,138 + SetX = 7,365 + SetY = 7,127 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,439 + SetY = 3,105 + SetY = 4,126 + SetX = 5,415 + SetY = 5,139 + SetX = 6,441 + SetY = 6,119 + SetX = 7,366 + SetY = 7,145 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,353 + SetY = 3,96 + SetX = 4,435 + SetY = 4,113 + SetX = 5,428 + SetY = 5,134 + SetX = 6,443 + SetY = 6,101 + SetX = 7,385 + SetY = 7,139 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,429 + SetY = 3,94 + SetX = 4,444 + SetY = 4,102 + SetX = 5,439 + SetY = 5,122 + SetX = 6,331 + SetY = 6,110 + SetX = 7,401 + SetY = 7,155 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,427 + SetY = 4,91 + SetX = 5,434 + SetY = 5,102 + SetX = 6,324 + SetY = 6,125 + SetX = 7,417 + SetY = 7,137 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,345 + SetY = 4,106 + SetX = 6,326 + SetY = 6,93 + SetX = 7,433 + SetY = 7,118 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,340 + SetY = 6,76 + SetX = 7,446 + SetY = 7,105 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,431 + SetY = 7,94 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,442 + SetY = 7,82 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,420 + SetY = 7,64 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,407 + SetY = 7,55 + SetOpacity = 9,128 + + Graphic = anim sheet + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,413 + SetY = 7,68 + SetOpacity = 9,128 + + Play = 0,Lucky Chant,100,100 diff --git a/PBS/Animations/Converted/Move/MACHPUNCH.txt b/PBS/Animations/Converted/Move/MACHPUNCH.txt new file mode 100644 index 000000000..02c950ce4 --- /dev/null +++ b/PBS/Animations/Converted/Move/MACHPUNCH.txt @@ -0,0 +1,74 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MACHPUNCH] +Name = MACHPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,399 + SetY = 2,95 + + Graphic = punches + Focus = Target + SetX = 0,403 + SetY = 0,97 + SetZoomX = 0,80 + SetZoomY = 0,80 + SetVisible = 0,true + SetX = 1,400 + SetY = 1,96 + SetZoomX = 1,90 + SetZoomY = 1,90 + SetX = 2,388 + SetY = 2,90 + SetZoomX = 2,100 + SetZoomY = 2,100 + SetX = 3,403 + SetY = 3,95 + SetZoomX = 3,110 + SetZoomY = 3,110 + SetY = 4,92 + SetZoomX = 4,120 + SetZoomY = 4,120 + SetX = 5,402 + SetZoomX = 5,130 + SetZoomY = 5,130 + SetX = 6,404 + SetY = 6,90 + SetZoomX = 6,140 + SetZoomY = 6,140 + SetX = 7,401 + SetY = 7,88 + SetZoomX = 7,160 + SetZoomY = 7,160 + SetX = 8,399 + SetZoomX = 8,170 + SetZoomY = 8,170 + SetX = 9,401 + SetY = 9,85 + SetZoomX = 9,180 + SetZoomY = 9,180 + SetOpacity = 9,220 + SetY = 10,89 + SetZoomX = 10,190 + SetZoomY = 10,190 + SetOpacity = 10,200 + SetX = 11,406 + SetY = 11,90 + SetZoomX = 11,220 + SetZoomY = 11,220 + SetOpacity = 11,130 + SetX = 12,415 + SetY = 12,96 + SetZoomX = 12,250 + SetZoomY = 12,250 + SetOpacity = 12,100 + + Play = 0,Mega Punch,100,94 diff --git a/PBS/Animations/Converted/Move/MAGICCOAT.txt b/PBS/Animations/Converted/Move/MAGICCOAT.txt new file mode 100644 index 000000000..d90492136 --- /dev/null +++ b/PBS/Animations/Converted/Move/MAGICCOAT.txt @@ -0,0 +1,127 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MAGICCOAT] +Name = MAGICCOAT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = anim sheet + Focus = Target + SetX = 0,385 + SetY = 0,98 + SetVisible = 0,true + SetOpacity = 0,37 + SetOpacity = 1,74 + SetOpacity = 9,72 + SetOpacity = 10,37 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,388 + SetY = 2,27 + SetX = 3,372 + SetY = 3,161 + SetX = 4,446 + SetY = 4,149 + SetX = 5,335 + SetY = 5,98 + SetX = 6,351 + SetY = 6,148 + SetX = 7,385 + SetY = 7,147 + SetX = 8,392 + SetY = 8,151 + SetX = 9,352 + SetY = 9,89 + SetX = 10,390 + SetY = 10,146 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,403 + SetY = 2,46 + SetX = 3,353 + SetY = 3,99 + SetX = 4,453 + SetY = 4,137 + SetX = 5,346 + SetY = 5,105 + SetX = 6,359 + SetY = 6,143 + SetX = 7,402 + SetY = 7,151 + SetX = 8,379 + SetY = 8,154 + SetX = 9,344 + SetY = 9,100 + SetX = 10,447 + SetY = 10,55 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,428 + SetY = 2,159 + SetX = 3,340 + SetY = 3,95 + SetY = 4,169 + SetX = 5,443 + SetY = 5,88 + SetX = 6,396 + SetY = 6,52 + SetX = 7,397 + SetY = 7,69 + SetX = 8,434 + SetY = 8,64 + SetX = 9,445 + SetY = 9,110 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,405 + SetY = 2,164 + SetX = 3,417 + SetY = 3,54 + SetX = 4,329 + SetY = 4,162 + SetX = 5,443 + SetY = 5,104 + SetX = 6,409 + SetY = 6,59 + SetX = 7,386 + SetY = 7,58 + SetX = 8,436 + SetY = 8,79 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,337 + SetY = 2,147 + SetX = 3,430 + SetY = 3,71 + SetX = 6,441 + SetY = 6,151 + SetX = 8,357 + SetY = 8,77 + + Graphic = anim sheet + Focus = Target + SetVisible = 0,true + SetX = 2,337 + SetY = 2,120 + SetX = 6,453 + SetY = 6,160 + SetX = 8,369 + SetY = 8,89 + + Play = 0,Sword2,80,100 + Play = 0,Sword2,80,101 + Play = 4,Sword2,80,100 diff --git a/PBS/Animations/Converted/Move/MEANLOOK.txt b/PBS/Animations/Converted/Move/MEANLOOK.txt new file mode 100644 index 000000000..48745cc06 --- /dev/null +++ b/PBS/Animations/Converted/Move/MEANLOOK.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MEANLOOK] +Name = MEANLOOK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = face and eye + Focus = Target + SetX = 0,384 + SetY = 0,92 + SetVisible = 0,true + SetY = 1,96 + SetY = 2,94 + SetX = 3,385 + SetY = 3,95 + SetX = 4,384 + SetY = 4,93 + SetY = 5,94 diff --git a/PBS/Animations/Converted/Move/MEGADRAIN.txt b/PBS/Animations/Converted/Move/MEGADRAIN.txt new file mode 100644 index 000000000..412c324fd --- /dev/null +++ b/PBS/Animations/Converted/Move/MEGADRAIN.txt @@ -0,0 +1,268 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MEGADRAIN] +Name = MEGADRAIN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = UserAndTarget + SetX = 0,345 + SetY = 0,91 + SetVisible = 0,true + SetX = 1,294 + SetY = 1,98 + SetX = 2,211 + SetY = 2,123 + SetX = 3,160 + SetY = 3,161 + SetX = 4,128 + SetY = 4,205 + SetX = 5,134 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,396 + SetY = 1,116 + SetX = 2,358 + SetY = 2,148 + SetX = 3,307 + SetY = 3,186 + SetX = 4,217 + SetY = 4,217 + SetX = 5,147 + SetY = 5,186 + SetX = 6,172 + SetY = 6,173 + SetX = 7,160 + SetY = 7,198 + SetX = 9,166 + SetY = 9,211 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,339 + SetY = 2,104 + SetX = 3,262 + SetY = 3,135 + SetX = 4,185 + SetY = 4,167 + SetX = 5,204 + SetY = 5,192 + SetX = 6,275 + SetY = 6,173 + SetX = 7,198 + SetY = 7,192 + SetX = 8,128 + SetY = 8,173 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,371 + SetY = 3,123 + SetX = 4,320 + SetY = 4,154 + SetX = 5,256 + SetY = 5,135 + SetY = 6,98 + SetX = 7,172 + SetY = 7,135 + SetX = 8,230 + SetY = 8,192 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,371 + SetY = 3,91 + SetX = 4,307 + SetY = 4,110 + SetX = 5,339 + SetY = 5,135 + SetX = 6,371 + SetY = 6,91 + SetX = 7,326 + SetY = 7,135 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,377 + SetY = 4,104 + SetX = 5,352 + SetY = 5,85 + SetX = 6,256 + SetY = 6,154 + SetX = 7,185 + SetY = 7,173 + + Graphic = rockice + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,371 + SetY = 4,85 + SetX = 5,313 + SetY = 5,116 + + Play = 0,Absorb2,80,100 + Play = 2,Absorb2,80,100 + Play = 5,Absorb2,80,100 + Play = 7,Absorb2,80,100 +#------------------------------- +[OppMove,MEGADRAIN] +Name = MEGADRAIN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,129 + SetY = 1,237 + SetX = 2,191 + SetY = 2,195 + SetX = 3,294 + SetY = 3,192 + SetX = 4,236 + SetY = 4,217 + SetX = 5,395 + SetY = 5,99 + SetX = 10,369 + SetY = 10,79 + SetX = 11,351 + SetX = 12,346 + SetY = 12,62 + SetX = 13,344 + SetY = 13,58 + SetX = 14,351 + SetY = 14,60 + SetX = 15,348 + SetY = 15,76 + SetX = 16,387 + SetY = 16,55 + SetX = 17,356 + SetY = 17,107 + SetX = 18,419 + SetY = 18,76 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,129 + SetY = 2,218 + SetX = 3,211 + SetY = 3,199 + SetX = 4,256 + SetY = 4,148 + SetX = 5,344 + SetY = 5,142 + SetX = 6,394 + SetY = 6,98 + SetX = 7,393 + SetY = 7,97 + SetX = 11,399 + SetY = 11,72 + SetX = 12,398 + SetY = 12,56 + SetX = 13,401 + SetY = 13,55 + SetX = 14,414 + SetY = 14,56 + SetX = 15,379 + SetY = 15,81 + SetX = 16,363 + SetY = 16,107 + SetX = 17,416 + SetY = 17,79 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,132 + SetY = 3,224 + SetX = 4,349 + SetY = 4,180 + SetX = 5,294 + SetY = 5,192 + SetX = 6,383 + SetY = 6,171 + SetX = 7,390 + SetY = 7,143 + SetX = 8,399 + SetY = 8,99 + SetX = 12,365 + SetY = 12,127 + SetX = 13,354 + SetY = 13,133 + SetX = 14,366 + SetY = 14,123 + SetX = 15,356 + SetY = 15,113 + SetX = 16,415 + SetY = 16,78 + + Graphic = leech-seed + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,307 + SetY = 4,97 + SetX = 5,249 + SetY = 5,116 + SetX = 6,324 + SetY = 6,113 + SetX = 13,399 + SetY = 13,87 + SetX = 14,401 + SetX = 15,406 + SetY = 15,71 + + Graphic = leech-seed + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,219 + SetVisible = 0,true + SetX = 1,149 + SetY = 1,233 + SetX = 2,221 + SetY = 2,174 + SetX = 3,204 + SetY = 3,123 + SetX = 4,147 + SetY = 4,167 + SetX = 5,372 + SetY = 5,100 + SetX = 7,356 + SetY = 7,98 + SetX = 9,395 + SetY = 9,97 + SetX = 10,400 + SetY = 10,96 + SetX = 11,391 + SetX = 12,393 + SetY = 12,99 + SetX = 13,395 + SetX = 14,401 + SetY = 14,100 + SetX = 15,395 + SetY = 15,99 + SetX = 16,345 + SetY = 16,82 + SetX = 17,395 + SetY = 17,57 + SetX = 18,364 + SetY = 18,108 + SetX = 19,408 + SetY = 19,80 + + Play = 0,Present - Heal,100,100 diff --git a/PBS/Animations/Converted/Move/MEGAHORN.txt b/PBS/Animations/Converted/Move/MEGAHORN.txt new file mode 100644 index 000000000..bf49b1268 --- /dev/null +++ b/PBS/Animations/Converted/Move/MEGAHORN.txt @@ -0,0 +1,104 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MEGAHORN] +Name = MEGAHORN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,51 + SetY = 0,116 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetX = 1,89 + SetY = 1,154 + SetX = 2,140 + SetY = 2,192 + SetX = 3,153 + SetY = 3,167 + SetX = 4,211 + SetY = 4,154 + SetX = 5,192 + SetY = 5,236 + SetX = 9,345 + SetY = 9,98 + SetZoomX = 9,100 + SetZoomY = 9,100 + SetOpacity = 9,100 + SetZoomX = 10,125 + SetZoomY = 10,125 + SetOpacity = 10,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,275 + SetY = 0,242 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetX = 1,185 + SetY = 1,148 + SetX = 2,179 + SetY = 2,179 + SetX = 3,236 + SetY = 3,116 + SetX = 4,89 + SetY = 4,173 + SetX = 5,185 + SetY = 5,186 + SetZoomX = 5,150 + SetZoomY = 5,150 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,204 + SetY = 0,104 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetX = 1,224 + SetY = 1,224 + SetX = 2,185 + SetY = 2,205 + SetX = 4,211 + SetY = 4,249 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,121 + SetY = 2,110 + SetZoomX = 2,25 + SetZoomY = 2,25 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,185 + SetY = 0,186 + SetZoomX = 0,150 + SetZoomY = 0,150 + SetVisible = 0,true + SetX = 5,115 + SetY = 5,198 + SetZoomX = 5,25 + SetZoomY = 5,25 + SetX = 6,185 + SetY = 6,186 + SetZoomX = 6,150 + SetZoomY = 6,150 + SetX = 7,249 + SetY = 7,154 + SetX = 8,313 + SetY = 8,129 + SetX = 9,339 + SetY = 9,110 + + Play = 0,Up,80,100 + Play = 4,throw,80,100 + Play = 7,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/MEGAKICK.txt b/PBS/Animations/Converted/Move/MEGAKICK.txt new file mode 100644 index 000000000..f538fdb61 --- /dev/null +++ b/PBS/Animations/Converted/Move/MEGAKICK.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MEGAKICK] +Name = MEGAKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 3,384 + SetY = 3,110 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,376 + SetY = 0,86 + SetVisible = 0,true + SetY = 1,94 + SetAngle = 1,45 + SetX = 2,384 + SetY = 2,110 + SetAngle = 2,90 + SetAngle = 3,0 + SetOpacity = 3,100 + SetOpacity = 4,255 + SetZoomX = 8,120 + SetZoomY = 8,120 + SetOpacity = 9,100 + + Play = 0,Wind7,80,100 + Play = 3,Blow5,80,100 diff --git a/PBS/Animations/Converted/Move/MEGAPUNCH.txt b/PBS/Animations/Converted/Move/MEGAPUNCH.txt new file mode 100644 index 000000000..f76c6b848 --- /dev/null +++ b/PBS/Animations/Converted/Move/MEGAPUNCH.txt @@ -0,0 +1,64 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MEGAPUNCH] +Name = MEGAPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,396 + SetY = 2,104 + SetX = 3,397 + SetX = 4,395 + SetY = 4,101 + SetX = 6,400 + SetX = 7,397 + SetY = 7,106 + SetX = 8,395 + SetY = 8,107 + SetX = 9,399 + SetY = 9,101 + SetOpacity = 9,200 + + Graphic = punches + Focus = Target + SetX = 0,384 + SetY = 0,95 + SetVisible = 0,true + SetX = 1,385 + SetY = 1,93 + SetX = 2,384 + SetY = 2,97 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,386 + SetY = 3,99 + SetZoomX = 3,70 + SetZoomY = 3,70 + SetX = 4,385 + SetY = 4,97 + SetZoomX = 4,80 + SetZoomY = 4,80 + SetX = 6,386 + SetY = 6,92 + SetZoomX = 6,100 + SetZoomY = 6,100 + SetX = 7,385 + SetY = 7,94 + SetZoomX = 7,105 + SetZoomY = 7,105 + SetX = 8,383 + SetZoomX = 8,120 + SetZoomY = 8,120 + SetX = 9,385 + SetY = 9,91 + SetZoomX = 9,140 + SetZoomY = 9,140 + + Play = 0,Mega Punch,100,105 diff --git a/PBS/Animations/Converted/Move/METALCLAW.txt b/PBS/Animations/Converted/Move/METALCLAW.txt new file mode 100644 index 000000000..64a659556 --- /dev/null +++ b/PBS/Animations/Converted/Move/METALCLAW.txt @@ -0,0 +1,30 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,METALCLAW] +Name = METALCLAW + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = dragon claw + Focus = UserAndTarget + SetX = 0,387 + SetY = 0,70 + SetVisible = 0,true + SetX = 1,392 + SetY = 1,73 + SetX = 2,402 + SetY = 2,79 + SetX = 3,400 + SetY = 3,98 + SetX = 4,397 + SetY = 4,91 + SetY = 5,96 + SetX = 6,392 + SetX = 7,384 + + Play = 0,metal,100,110 + Play = 4,metal,100,100 diff --git a/PBS/Animations/Converted/Move/METEORMASH.txt b/PBS/Animations/Converted/Move/METEORMASH.txt new file mode 100644 index 000000000..eed1a141c --- /dev/null +++ b/PBS/Animations/Converted/Move/METEORMASH.txt @@ -0,0 +1,124 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,METEORMASH] +Name = METEORMASH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = UserAndTarget + SetX = 0,390 + SetY = 0,98 + SetVisible = 0,true + SetX = 1,395 + SetY = 1,100 + SetX = 2,390 + SetY = 2,98 + SetX = 6,395 + SetY = 6,100 + SetX = 7,390 + SetY = 7,98 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,389 + SetY = 1,150 + SetX = 2,386 + SetY = 2,151 + SetX = 3,384 + SetY = 3,150 + SetX = 4,361 + SetY = 4,59 + SetX = 5,387 + SetY = 5,134 + SetX = 6,433 + SetY = 6,115 + SetX = 7,368 + SetY = 7,143 + SetX = 8,344 + SetY = 8,38 + SetX = 9,416 + SetY = 9,141 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,340 + SetY = 1,116 + SetX = 2,334 + SetY = 2,106 + SetY = 3,103 + SetX = 4,419 + SetY = 4,142 + SetX = 5,414 + SetY = 5,129 + SetX = 6,356 + SetY = 6,141 + SetX = 7,405 + SetY = 7,58 + SetX = 8,335 + SetY = 8,83 + SetX = 9,361 + SetY = 9,149 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,419 + SetY = 2,61 + SetX = 3,412 + SetY = 3,78 + SetX = 4,421 + SetY = 4,74 + SetX = 5,409 + SetY = 5,69 + SetX = 6,347 + SetY = 6,75 + SetX = 7,427 + SetY = 7,111 + SetX = 8,411 + SetY = 8,71 + SetX = 9,402 + SetY = 9,57 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,429 + SetY = 2,131 + SetY = 3,136 + SetX = 4,386 + SetY = 4,139 + SetX = 5,440 + SetY = 5,102 + SetX = 6,356 + SetY = 6,103 + SetX = 7,346 + SetY = 7,52 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,369 + SetY = 3,68 + SetX = 5,341 + SetY = 5,105 + SetX = 6,426 + SetY = 6,96 + SetX = 7,335 + SetY = 7,85 + + Graphic = punches + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,371 + SetY = 5,67 + SetX = 6,385 + SetY = 6,64 + + Play = 0,superdamage,100,100 diff --git a/PBS/Animations/Converted/Move/METRONOME.txt b/PBS/Animations/Converted/Move/METRONOME.txt new file mode 100644 index 000000000..af2ba4ab4 --- /dev/null +++ b/PBS/Animations/Converted/Move/METRONOME.txt @@ -0,0 +1,93 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,METRONOME] +Name = METRONOME + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetX = 0,174 + SetY = 0,222 + SetZoomX = 0,200 + SetZoomY = 0,200 + SetVisible = 0,true + SetX = 1,187 + SetY = 1,233 + SetX = 2,200 + SetX = 3,214 + SetY = 3,234 + SetX = 4,202 + SetY = 4,228 + SetX = 5,179 + SetX = 6,162 + SetY = 6,233 + SetX = 7,178 + SetY = 7,227 + SetX = 8,197 + SetY = 8,236 + SetX = 9,213 + SetY = 9,238 + SetX = 10,222 + SetY = 10,226 + SetX = 11,199 + SetY = 11,225 + SetX = 12,184 + SetY = 12,230 + SetX = 13,176 + SetY = 13,238 + SetX = 14,183 + SetY = 14,245 + + Play = 0,Metronome,94,100 +#------------------------------- +[OppMove,METRONOME] +Name = METRONOME + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = finger.spoon + Focus = Target + SetX = 0,382 + SetY = 0,100 + SetZoomX = 0,200 + SetZoomY = 0,200 + SetVisible = 0,true + SetX = 1,375 + SetY = 1,101 + SetX = 2,366 + SetY = 2,100 + SetX = 3,360 + SetY = 3,104 + SetX = 4,373 + SetY = 4,107 + SetX = 5,391 + SetY = 5,110 + SetX = 6,406 + SetY = 6,106 + SetX = 7,399 + SetY = 7,107 + SetX = 8,377 + SetY = 8,108 + SetX = 9,368 + SetY = 9,110 + SetX = 10,382 + SetY = 10,112 + SetX = 11,398 + SetY = 11,115 + SetX = 12,409 + SetY = 12,111 + SetX = 13,403 + SetY = 13,114 + SetX = 14,392 + SetY = 14,113 + + Play = 0,Metronome,80,100 diff --git a/PBS/Animations/Converted/Move/MIST.txt b/PBS/Animations/Converted/Move/MIST.txt new file mode 100644 index 000000000..c877db2fb --- /dev/null +++ b/PBS/Animations/Converted/Move/MIST.txt @@ -0,0 +1,57 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MIST] +Name = MIST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,414 + SetY = 4,101 + SetX = 5,393 + SetY = 5,66 + SetX = 6,422 + SetY = 6,113 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 5,426 + SetY = 5,116 + SetX = 6,381 + SetY = 6,64 + + Graphic = fly copy + Focus = Target + SetX = 0,385 + SetY = 0,99 + SetVisible = 0,true + SetOpacity = 0,144 + SetX = 1,392 + SetY = 1,96 + SetOpacity = 1,174 + SetX = 2,385 + SetY = 2,100 + SetOpacity = 2,209 + SetX = 3,382 + SetY = 3,99 + SetOpacity = 3,255 + SetX = 4,362 + SetY = 4,100 + SetX = 5,359 + SetY = 5,103 + SetX = 6,351 + SetY = 6,119 + SetX = 7,388 + SetY = 7,96 + SetX = 8,392 + SetY = 8,93 + SetOpacity = 8,200 + + Play = 0,Smokescreen,80,100 diff --git a/PBS/Animations/Converted/Move/MISTBALL.txt b/PBS/Animations/Converted/Move/MISTBALL.txt new file mode 100644 index 000000000..8435f989a --- /dev/null +++ b/PBS/Animations/Converted/Move/MISTBALL.txt @@ -0,0 +1,59 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MISTBALL] +Name = MISTBALL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,386 + SetY = 3,108 + SetOpacity = 3,200 + SetX = 4,388 + SetY = 4,110 + SetY = 5,109 + SetOpacity = 5,143 + SetX = 6,391 + SetY = 6,110 + SetOpacity = 6,69 + SetX = 7,388 + SetY = 7,101 + SetOpacity = 7,144 + + Graphic = fly copy + Focus = UserAndTarget + SetX = 0,385 + SetY = 0,98 + SetVisible = 0,true + SetOpacity = 0,200 + SetX = 1,383 + SetY = 1,99 + SetX = 2,382 + SetY = 2,100 + SetX = 3,385 + SetY = 3,97 + SetOpacity = 3,255 + SetX = 4,386 + SetY = 4,96 + SetZoomX = 4,110 + SetZoomY = 4,110 + SetX = 5,384 + SetY = 5,97 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetX = 6,387 + SetY = 6,99 + SetX = 7,385 + SetY = 7,98 + SetX = 8,378 + SetY = 8,92 + SetX = 9,377 + SetY = 9,101 + + Play = 5,Wring Out,80,100 diff --git a/PBS/Animations/Converted/Move/MOONLIGHT.txt b/PBS/Animations/Converted/Move/MOONLIGHT.txt new file mode 100644 index 000000000..c15b1de27 --- /dev/null +++ b/PBS/Animations/Converted/Move/MOONLIGHT.txt @@ -0,0 +1,35 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MOONLIGHT] +Name = MOONLIGHT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = Target + SetX = 0,384 + SetY = 0,206 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetY = 1,190 + SetY = 2,158 + SetY = 3,110 + SetY = 4,70 + SetY = 5,38 + SetY = 6,14 + SetY = 7,-10 + SetZoomX = 7,60 + SetZoomY = 7,60 + SetZoomX = 8,70 + SetZoomY = 8,70 + SetOpacity = 8,150 + SetZoomX = 9,80 + SetZoomY = 9,80 + SetOpacity = 9,100 + + Play = 0,Saint6,80,100 diff --git a/PBS/Animations/Converted/Move/MORNINGSUN.txt b/PBS/Animations/Converted/Move/MORNINGSUN.txt new file mode 100644 index 000000000..08f2106a3 --- /dev/null +++ b/PBS/Animations/Converted/Move/MORNINGSUN.txt @@ -0,0 +1,27 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,MORNINGSUN] +Name = MORNINGSUN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Heal3 + Focus = Target + SetVisible = 0,true + SetX = 10,384 + SetY = 10,70 + SetOpacity = 10,100 + + Graphic = Heal3 + Focus = Target + SetX = 0,384 + SetY = 0,70 + SetVisible = 0,true + SetOpacity = 13,150 + SetOpacity = 14,100 + + Play = 0,Saint7,80,100 diff --git a/PBS/Animations/Converted/Move/NIGHTMARE.txt b/PBS/Animations/Converted/Move/NIGHTMARE.txt new file mode 100644 index 000000000..3a50d73e9 --- /dev/null +++ b/PBS/Animations/Converted/Move/NIGHTMARE.txt @@ -0,0 +1,123 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,NIGHTMARE] +Name = NIGHTMARE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 022-Darkness01 + Focus = Target + SetVisible = 0,true + SetX = 1,424 + SetY = 1,46 + SetFlip = 5,true + SetX = 5,344 + SetY = 5,78 + SetFlip = 6,false + SetX = 6,376 + SetY = 6,118 + SetOpacity = 6,120 + SetX = 7,424 + SetY = 7,86 + SetOpacity = 7,255 + SetZoomX = 8,110 + SetZoomY = 8,110 + SetOpacity = 8,150 + SetFlip = 9,true + SetX = 9,336 + SetY = 9,70 + SetZoomX = 9,100 + SetZoomY = 9,100 + SetOpacity = 9,255 + SetZoomX = 10,110 + SetZoomY = 10,110 + SetOpacity = 10,150 + SetX = 11,376 + SetY = 11,94 + SetZoomX = 11,100 + SetZoomY = 11,100 + + Graphic = 022-Darkness01 + Focus = Target + SetVisible = 0,true + SetFlip = 2,true + SetX = 2,344 + SetY = 2,78 + SetFlip = 5,false + SetX = 5,376 + SetY = 5,118 + SetOpacity = 5,110 + SetX = 6,424 + SetY = 6,86 + SetOpacity = 6,255 + SetFlip = 7,true + SetX = 7,336 + SetY = 7,70 + SetX = 9,376 + SetY = 9,94 + SetOpacity = 9,200 + SetOpacity = 10,255 + + Graphic = 022-Darkness01 + Focus = Target + SetVisible = 0,true + SetX = 4,376 + SetY = 4,118 + SetOpacity = 4,100 + SetX = 5,424 + SetY = 5,86 + SetOpacity = 5,255 + SetFlip = 6,true + SetX = 6,336 + SetY = 6,30 + SetFlip = 7,false + SetX = 7,392 + SetY = 7,94 + SetOpacity = 8,150 + + Graphic = 022-Darkness01 + Focus = Target + SetVisible = 0,true + SetX = 4,424 + SetY = 4,86 + SetX = 5,392 + SetY = 5,94 + SetOpacity = 5,100 + SetOpacity = 6,200 + SetFlip = 8,true + SetX = 8,376 + SetOpacity = 8,100 + + Graphic = 022-Darkness01 + Focus = Target + SetX = 0,384 + SetY = 0,102 + SetVisible = 0,true + SetOpacity = 0,100 + SetOpacity = 1,150 + SetOpacity = 2,200 + SetFlip = 3,true + SetOpacity = 3,255 + SetOpacity = 4,150 + SetFlip = 5,false + SetX = 5,424 + SetY = 5,46 + SetZoomX = 5,110 + SetZoomY = 5,110 + SetFlip = 6,true + SetX = 6,344 + SetY = 6,78 + SetFlip = 7,false + SetX = 7,376 + SetY = 7,118 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetOpacity = 7,100 + SetOpacity = 8,90 + SetOpacity = 9,80 + SetOpacity = 10,70 + SetOpacity = 11,50 diff --git a/PBS/Animations/Converted/Move/OUTRAGE.txt b/PBS/Animations/Converted/Move/OUTRAGE.txt new file mode 100644 index 000000000..c53e47016 --- /dev/null +++ b/PBS/Animations/Converted/Move/OUTRAGE.txt @@ -0,0 +1,174 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,OUTRAGE] +Name = OUTRAGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetX = 0,102 + SetY = 0,161 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetFlip = 3,true + SetFlip = 5,false + SetX = 5,262 + SetY = 5,135 + SetX = 6,307 + SetY = 6,91 + SetFlip = 7,true + SetX = 7,332 + SetY = 7,72 + SetOpacity = 7,100 + SetFlip = 8,false + SetX = 8,396 + SetY = 8,104 + SetX = 9,320 + SetY = 9,72 + SetFlip = 10,true + SetX = 10,275 + SetY = 10,91 + SetOpacity = 10,255 + SetX = 11,294 + SetY = 11,72 + SetOpacity = 11,100 + SetFlip = 12,false + SetX = 12,371 + SetY = 12,98 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,179 + SetY = 2,198 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetOpacity = 2,100 + SetX = 3,204 + SetY = 3,173 + SetOpacity = 3,255 + SetX = 4,230 + SetY = 4,154 + SetFlip = 5,true + SetX = 5,179 + SetY = 5,85 + SetX = 6,211 + SetY = 6,60 + SetOpacity = 6,100 + SetFlip = 7,false + SetX = 7,345 + SetY = 7,135 + SetOpacity = 7,255 + SetX = 8,428 + SetY = 8,179 + SetOpacity = 8,100 + SetFlip = 9,true + SetX = 9,243 + SetY = 9,123 + SetOpacity = 9,255 + SetFlip = 10,false + SetX = 10,230 + SetY = 10,66 + SetX = 11,339 + SetY = 11,129 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,89 + SetY = 3,161 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,140 + SetY = 4,116 + SetFlip = 5,false + SetX = 5,249 + SetY = 5,198 + SetX = 6,307 + SetY = 6,161 + SetFlip = 7,true + SetX = 7,160 + SetY = 7,66 + SetOpacity = 7,100 + SetFlip = 8,false + SetX = 8,288 + SetY = 8,104 + SetOpacity = 8,255 + SetX = 9,198 + SetY = 9,91 + SetX = 10,288 + SetY = 10,148 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,185 + SetY = 4,224 + SetZoomX = 4,50 + SetZoomY = 4,50 + SetFlip = 5,true + SetX = 5,115 + SetY = 5,154 + SetX = 6,128 + SetY = 6,110 + SetFlip = 7,false + SetX = 7,371 + SetY = 7,198 + SetOpacity = 7,100 + SetFlip = 8,true + SetX = 8,204 + SetY = 8,154 + SetOpacity = 8,255 + SetFlip = 9,false + SetX = 9,224 + SetY = 9,186 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,224 + SetY = 5,217 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetOpacity = 5,100 + SetX = 6,294 + SetOpacity = 6,255 + SetX = 7,249 + SetY = 7,135 + SetX = 8,166 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,166 + SetY = 5,198 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetX = 6,204 + SetY = 6,173 + SetFlip = 7,true + SetX = 7,172 + SetY = 7,186 + SetFlip = 8,false + SetY = 8,217 + + Graphic = Fogo - 01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,128 + SetY = 7,186 + SetZoomX = 7,50 + SetZoomY = 7,50 + + Play = 0,Fire2,80,100 + Play = 0,Explosion6,80,100 + Play = 2,Fire2,80,100 + Play = 5,Fire2,80,100 + Play = 8,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/OVERHEAT.txt b/PBS/Animations/Converted/Move/OVERHEAT.txt new file mode 100644 index 000000000..198b1b719 --- /dev/null +++ b/PBS/Animations/Converted/Move/OVERHEAT.txt @@ -0,0 +1,113 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,OVERHEAT] +Name = OVERHEAT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fire4 + Focus = UserAndTarget + SetX = 0,134 + SetY = 0,179 + SetVisible = 0,true + SetY = 1,173 + SetY = 2,167 + SetY = 3,161 + SetY = 4,154 + SetY = 5,148 + SetY = 6,142 + SetY = 7,135 + SetY = 8,129 + SetY = 9,123 + SetY = 10,116 + SetY = 11,110 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,172 + SetY = 1,179 + SetX = 2,179 + SetY = 2,198 + SetX = 4,313 + SetY = 4,123 + SetX = 5,364 + SetY = 5,110 + SetX = 6,140 + SetY = 6,41 + SetFlip = 7,true + SetX = 7,467 + SetY = 7,211 + SetOpacity = 7,100 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,211 + SetY = 2,123 + SetX = 3,243 + SetY = 3,167 + SetX = 4,51 + SetY = 4,85 + SetX = 5,32 + SetY = 5,60 + SetX = 6,377 + SetY = 6,211 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,224 + SetX = 3,243 + SetY = 3,79 + SetX = 4,345 + SetY = 4,224 + SetX = 5,435 + SetY = 5,230 + SetOpacity = 5,100 + SetFlip = 6,true + SetX = 6,288 + SetY = 6,53 + SetOpacity = 6,255 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,96 + SetY = 3,167 + SetX = 4,140 + SetY = 4,129 + SetY = 5,72 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,256 + SetY = 3,217 + SetX = 4,192 + SetY = 4,198 + SetX = 5,268 + SetY = 5,205 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,83 + SetY = 4,186 + SetX = 5,32 + SetY = 5,192 + + Graphic = fire4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,179 + SetY = 4,135 + SetX = 5,236 + SetY = 5,79 + + Play = 0,Fire3,80,100 diff --git a/PBS/Animations/Converted/Move/PAYDAY.txt b/PBS/Animations/Converted/Move/PAYDAY.txt new file mode 100644 index 000000000..f144fce82 --- /dev/null +++ b/PBS/Animations/Converted/Move/PAYDAY.txt @@ -0,0 +1,67 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,PAYDAY] +Name = PAYDAY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetX = 3,172 + SetY = 3,148 + SetX = 4,204 + SetY = 4,79 + SetX = 5,300 + SetY = 5,53 + SetX = 6,198 + SetY = 6,60 + SetX = 7,224 + SetY = 7,53 + SetX = 8,313 + SetY = 8,79 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,128 + SetY = 4,236 + SetX = 5,153 + SetY = 5,135 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,128 + SetY = 5,236 + + Graphic = 008-Weapon03 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,172 + SetY = 1,142 + SetX = 2,224 + SetY = 2,91 + SetX = 3,262 + SetY = 3,66 + SetX = 4,326 + SetY = 4,79 + SetX = 5,358 + SetY = 5,110 + SetX = 7,313 + SetY = 7,79 + SetX = 8,358 + SetY = 8,110 + + Play = 0,Select,80,100 + Play = 2,Select,80,100 + Play = 5,Select,80,100 + Play = 7,Select,80,100 diff --git a/PBS/Animations/Converted/Move/PETALDANCE.txt b/PBS/Animations/Converted/Move/PETALDANCE.txt new file mode 100644 index 000000000..e68b0492b --- /dev/null +++ b/PBS/Animations/Converted/Move/PETALDANCE.txt @@ -0,0 +1,105 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,PETALDANCE] +Name = PETALDANCE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Anima (1) + Focus = Target + SetVisible = 0,true + SetX = 2,576 + SetY = 2,-42 + SetX = 3,544 + SetY = 3,6 + SetFlip = 4,true + SetX = 4,504 + SetY = 4,62 + SetX = 5,448 + SetY = 5,126 + SetX = 6,408 + SetY = 6,166 + SetX = 7,392 + SetY = 7,222 + SetFlip = 8,false + SetX = 8,552 + SetY = 8,166 + SetX = 9,400 + SetY = 9,70 + SetZoomX = 9,120 + SetZoomY = 9,120 + + Graphic = Anima (1) + Focus = Target + SetVisible = 0,true + SetX = 3,344 + SetY = 3,-50 + SetX = 4,384 + SetY = 4,-2 + SetX = 5,416 + SetY = 5,38 + SetX = 6,464 + SetY = 6,86 + SetX = 7,512 + SetY = 7,142 + SetFlip = 8,true + SetX = 8,96 + SetY = 8,62 + + Graphic = Anima (1) + Focus = Target + SetVisible = 0,true + SetX = 5,320 + SetY = 5,-42 + SetX = 6,280 + SetY = 6,6 + SetX = 7,192 + SetY = 7,30 + SetX = 8,360 + SetY = 8,22 + + Graphic = Anima (1) + Focus = Target + SetVisible = 0,true + SetX = 7,320 + SetY = 7,-58 + + Graphic = Anima (1) + Focus = Target + SetX = 0,224 + SetY = 0,-34 + SetVisible = 0,true + SetX = 1,240 + SetY = 1,6 + SetX = 2,272 + SetY = 2,38 + SetX = 3,320 + SetY = 3,94 + SetFlip = 4,true + SetX = 4,376 + SetX = 5,360 + SetY = 5,102 + SetX = 6,320 + SetY = 6,126 + SetX = 7,264 + SetY = 7,174 + SetX = 8,200 + SetY = 8,222 + SetX = 9,72 + SetY = 9,86 + SetFlip = 10,false + SetX = 10,464 + SetY = 10,118 + SetZoomX = 10,120 + SetZoomY = 10,120 + SetFlip = 11,true + SetX = 11,568 + SetY = 11,182 + SetZoomX = 11,100 + SetZoomY = 11,100 + + Play = 0,Saint6,80,100 diff --git a/PBS/Animations/Converted/Move/PINMISSILE.txt b/PBS/Animations/Converted/Move/PINMISSILE.txt new file mode 100644 index 000000000..66ddefa6d --- /dev/null +++ b/PBS/Animations/Converted/Move/PINMISSILE.txt @@ -0,0 +1,491 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,PINMISSILE] +Name = PINMISSILE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,173 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,104 + SetAngle = 4,345 + SetX = 5,268 + SetY = 5,85 + SetAngle = 5,335 + SetX = 6,236 + SetY = 6,98 + SetAngle = 6,345 + SetX = 7,384 + SetY = 7,91 + SetAngle = 7,300 + SetX = 8,377 + SetAngle = 8,0 + SetOpacity = 8,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,161 + SetX = 5,198 + SetY = 5,129 + SetX = 6,364 + SetY = 6,85 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + SetX = 7,403 + SetY = 7,91 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 8,125 + SetZoomY = 8,125 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,364 + SetY = 5,91 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,179 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,142 + SetX = 2,211 + SetY = 2,110 + SetAngle = 2,345 + SetX = 3,243 + SetY = 3,104 + SetAngle = 3,335 + SetX = 4,294 + SetY = 4,85 + SetAngle = 4,325 + SetX = 5,345 + SetY = 5,91 + SetAngle = 5,300 + SetX = 6,313 + SetY = 6,79 + SetAngle = 6,325 + SetX = 7,288 + SetY = 7,72 + SetX = 8,358 + SetY = 8,91 + SetAngle = 8,300 + SetX = 9,377 + SetZoomX = 9,125 + SetZoomY = 9,125 + SetAngle = 9,0 + SetOpacity = 9,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 + Play = 8,Slash10,80,100 +#------------------------------- +[Move,PINMISSILE,1] +Name = Pin Missile hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,179 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,142 + SetX = 2,211 + SetY = 2,110 + SetAngle = 2,345 + SetX = 3,243 + SetY = 3,104 + SetAngle = 3,335 + SetX = 4,294 + SetY = 4,85 + SetAngle = 4,325 + SetX = 5,345 + SetY = 5,91 + SetAngle = 5,300 + SetX = 6,313 + SetY = 6,79 + SetAngle = 6,325 + SetX = 7,288 + SetY = 7,72 + SetX = 8,358 + SetY = 8,91 + SetAngle = 8,300 + SetX = 9,377 + SetZoomX = 9,125 + SetZoomY = 9,125 + SetAngle = 9,0 + SetOpacity = 9,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,173 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,104 + SetAngle = 4,345 + SetX = 5,268 + SetY = 5,85 + SetAngle = 5,335 + SetX = 6,236 + SetY = 6,98 + SetAngle = 6,345 + SetX = 7,384 + SetY = 7,91 + SetAngle = 7,300 + SetX = 8,377 + SetAngle = 8,0 + SetOpacity = 8,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,161 + SetX = 5,198 + SetY = 5,129 + SetX = 6,364 + SetY = 6,85 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + SetX = 7,403 + SetY = 7,91 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 8,125 + SetZoomY = 8,125 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,364 + SetY = 5,91 + SetOpacity = 5,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 + Play = 8,Slash10,80,100 +#------------------------------- +[Move,PINMISSILE,2] +Name = Pin Missile hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,364 + SetY = 5,91 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,179 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,142 + SetX = 2,211 + SetY = 2,110 + SetAngle = 2,345 + SetX = 3,243 + SetY = 3,104 + SetAngle = 3,335 + SetX = 4,294 + SetY = 4,85 + SetAngle = 4,325 + SetX = 5,345 + SetY = 5,91 + SetAngle = 5,300 + SetX = 6,313 + SetY = 6,79 + SetAngle = 6,325 + SetX = 7,288 + SetY = 7,72 + SetX = 8,358 + SetY = 8,91 + SetAngle = 8,300 + SetX = 9,377 + SetZoomX = 9,125 + SetZoomY = 9,125 + SetAngle = 9,0 + SetOpacity = 9,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,173 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,104 + SetAngle = 4,345 + SetX = 5,268 + SetY = 5,85 + SetAngle = 5,335 + SetX = 6,236 + SetY = 6,98 + SetAngle = 6,345 + SetX = 7,384 + SetY = 7,91 + SetAngle = 7,300 + SetX = 8,377 + SetAngle = 8,0 + SetOpacity = 8,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,161 + SetX = 5,198 + SetY = 5,129 + SetX = 6,364 + SetY = 6,85 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + SetX = 7,403 + SetY = 7,91 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 8,125 + SetZoomY = 8,125 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 + Play = 8,Slash10,80,100 +#------------------------------- +[Move,PINMISSILE,3] +Name = Pin Missile hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,161 + SetX = 5,198 + SetY = 5,129 + SetX = 6,364 + SetY = 6,85 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + SetX = 7,403 + SetY = 7,91 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 8,125 + SetZoomY = 8,125 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,364 + SetY = 5,91 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,179 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,142 + SetX = 2,211 + SetY = 2,110 + SetAngle = 2,345 + SetX = 3,243 + SetY = 3,104 + SetAngle = 3,335 + SetX = 4,294 + SetY = 4,85 + SetAngle = 4,325 + SetX = 5,345 + SetY = 5,91 + SetAngle = 5,300 + SetX = 6,313 + SetY = 6,79 + SetAngle = 6,325 + SetX = 7,288 + SetY = 7,72 + SetX = 8,358 + SetY = 8,91 + SetAngle = 8,300 + SetX = 9,377 + SetZoomX = 9,125 + SetZoomY = 9,125 + SetAngle = 9,0 + SetOpacity = 9,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,173 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,104 + SetAngle = 4,345 + SetX = 5,268 + SetY = 5,85 + SetAngle = 5,335 + SetX = 6,236 + SetY = 6,98 + SetAngle = 6,345 + SetX = 7,384 + SetY = 7,91 + SetAngle = 7,300 + SetX = 8,377 + SetAngle = 8,0 + SetOpacity = 8,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 + Play = 8,Slash10,80,100 +#------------------------------- +[Move,PINMISSILE,4] +Name = Pin Missile hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,173 + SetX = 3,185 + SetY = 3,135 + SetX = 4,230 + SetY = 4,104 + SetAngle = 4,345 + SetX = 5,268 + SetY = 5,85 + SetAngle = 5,335 + SetX = 6,236 + SetY = 6,98 + SetAngle = 6,345 + SetX = 7,384 + SetY = 7,91 + SetAngle = 7,300 + SetX = 8,377 + SetAngle = 8,0 + SetOpacity = 8,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,166 + SetY = 4,161 + SetX = 5,198 + SetY = 5,129 + SetX = 6,364 + SetY = 6,85 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + SetX = 7,403 + SetY = 7,91 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 8,125 + SetZoomY = 8,125 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,364 + SetY = 5,91 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,179 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,142 + SetX = 2,211 + SetY = 2,110 + SetAngle = 2,345 + SetX = 3,243 + SetY = 3,104 + SetAngle = 3,335 + SetX = 4,294 + SetY = 4,85 + SetAngle = 4,325 + SetX = 5,345 + SetY = 5,91 + SetAngle = 5,300 + SetX = 6,313 + SetY = 6,79 + SetAngle = 6,325 + SetX = 7,288 + SetY = 7,72 + SetX = 8,358 + SetY = 8,91 + SetAngle = 8,300 + SetX = 9,377 + SetZoomX = 9,125 + SetZoomY = 9,125 + SetAngle = 9,0 + SetOpacity = 9,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 + Play = 8,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/POISONFANG.txt b/PBS/Animations/Converted/Move/POISONFANG.txt new file mode 100644 index 000000000..d91828359 --- /dev/null +++ b/PBS/Animations/Converted/Move/POISONFANG.txt @@ -0,0 +1,55 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POISONFANG] +Name = POISONFANG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 7,354 + SetY = 7,107 + SetX = 8,359 + SetY = 8,100 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 7,450 + SetY = 7,106 + SetX = 8,444 + SetY = 8,101 + + Graphic = element fangs + Focus = Target + SetX = 0,390 + SetY = 0,104 + SetVisible = 0,true + SetY = 1,103 + SetX = 2,389 + SetY = 2,93 + SetX = 3,386 + SetY = 3,102 + SetX = 4,385 + SetY = 4,101 + SetX = 5,392 + SetY = 5,95 + SetX = 6,390 + SetY = 6,98 + SetX = 7,392 + SetY = 7,103 + SetY = 8,93 + SetX = 9,387 + SetY = 9,97 + SetX = 10,392 + SetX = 11,389 + SetY = 11,96 + SetX = 12,391 + SetY = 12,98 + + Play = 6,Voltorb Flip Mark,100,161 diff --git a/PBS/Animations/Converted/Move/POISONGAS.txt b/PBS/Animations/Converted/Move/POISONGAS.txt new file mode 100644 index 000000000..59ed75f0b --- /dev/null +++ b/PBS/Animations/Converted/Move/POISONGAS.txt @@ -0,0 +1,142 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POISONGAS] +Name = POISONGAS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,160 + SetY = 1,192 + SetX = 2,204 + SetY = 2,173 + SetX = 3,249 + SetY = 3,148 + SetX = 4,307 + SetY = 4,123 + SetX = 5,358 + SetY = 5,110 + SetOpacity = 12,200 + SetOpacity = 13,100 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,128 + SetY = 1,236 + SetX = 2,160 + SetY = 2,192 + SetX = 3,204 + SetY = 3,173 + SetX = 4,249 + SetY = 4,148 + SetFlip = 5,true + SetX = 5,307 + SetY = 5,123 + SetFlip = 6,false + SetX = 6,320 + SetY = 6,142 + SetX = 7,300 + SetY = 7,135 + SetX = 8,313 + SetY = 8,129 + SetFlip = 9,true + SetX = 9,320 + SetY = 9,148 + SetFlip = 10,false + SetX = 10,300 + SetY = 10,135 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetX = 3,160 + SetY = 3,192 + SetX = 4,204 + SetY = 4,173 + SetX = 5,249 + SetY = 5,148 + SetX = 6,256 + SetY = 6,167 + SetX = 7,275 + SetX = 8,256 + SetY = 8,135 + SetX = 9,288 + SetX = 10,332 + SetY = 10,161 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,166 + SetY = 3,224 + SetX = 4,160 + SetY = 4,192 + SetX = 5,217 + SetY = 5,154 + SetX = 6,332 + SetY = 6,161 + SetX = 7,230 + SetY = 7,148 + SetX = 8,262 + SetY = 8,154 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetX = 4,198 + SetY = 4,205 + SetX = 5,192 + SetY = 5,179 + SetX = 6,256 + SetY = 6,129 + SetFlip = 7,true + SetX = 7,236 + SetY = 7,198 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 5,true + SetX = 5,230 + SetY = 5,198 + SetFlip = 6,false + SetX = 6,288 + SetY = 6,186 + SetX = 7,217 + SetY = 7,192 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,230 + SetY = 6,192 + SetX = 7,320 + SetY = 7,186 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,243 + SetY = 6,148 + + Graphic = poison + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 6,true + SetX = 6,204 + SetY = 6,173 + + Play = 0,Wind8,80,100 diff --git a/PBS/Animations/Converted/Move/POISONPOWDER.txt b/PBS/Animations/Converted/Move/POISONPOWDER.txt new file mode 100644 index 000000000..4ce8223eb --- /dev/null +++ b/PBS/Animations/Converted/Move/POISONPOWDER.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POISONPOWDER] +Name = POISONPOWDER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Special5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sand,80,100 diff --git a/PBS/Animations/Converted/Move/POISONSTING.txt b/PBS/Animations/Converted/Move/POISONSTING.txt new file mode 100644 index 000000000..31b7f52ed --- /dev/null +++ b/PBS/Animations/Converted/Move/POISONSTING.txt @@ -0,0 +1,68 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POISONSTING] +Name = POISONSTING + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,166 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,256 + SetY = 3,142 + SetX = 4,288 + SetY = 4,123 + SetX = 5,300 + SetY = 5,129 + SetX = 6,352 + SetY = 6,110 + SetX = 7,358 + + Play = 0,throw,80,100 + Play = 6,Slash10,80,100 +#------------------------------- +[OppMove,POISONSTING] +Name = POISONSTING + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = UserAndTarget + SetX = 0,351 + SetY = 0,139 + SetAngle = 0,180 + SetVisible = 0,true + SetX = 1,319 + SetY = 1,154 + SetX = 2,287 + SetY = 2,168 + SetX = 3,255 + SetY = 3,183 + SetX = 4,223 + SetY = 4,197 + SetX = 5,191 + SetY = 5,211 + SetX = 6,159 + SetY = 6,226 + SetX = 7,122 + SetY = 7,221 + SetAngle = 7,0 + SetX = 8,128 + SetY = 8,236 + + Play = 0,throw,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/POISONTAIL.txt b/PBS/Animations/Converted/Move/POISONTAIL.txt new file mode 100644 index 000000000..a9a41e53f --- /dev/null +++ b/PBS/Animations/Converted/Move/POISONTAIL.txt @@ -0,0 +1,25 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POISONTAIL] +Name = POISONTAIL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = firepoison + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + SetX = 1,384 + SetY = 2,86 + SetX = 4,376 + SetZoomX = 7,110 + SetZoomY = 7,110 + SetOpacity = 7,100 + + Play = 0,Blow3,80,100 + Play = 0,Poison,80,100 diff --git a/PBS/Animations/Converted/Move/POUND.txt b/PBS/Animations/Converted/Move/POUND.txt new file mode 100644 index 000000000..f1d2c5320 --- /dev/null +++ b/PBS/Animations/Converted/Move/POUND.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,POUND] +Name = POUND + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = many + Focus = Target + SetVisible = 0,true + SetX = 3,392 + SetY = 3,94 + SetOpacity = 4,100 + + Graphic = many + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetOpacity = 0,100 + SetOpacity = 1,255 + SetZoomX = 2,120 + SetZoomY = 2,120 + SetZoomX = 3,130 + SetZoomY = 3,130 + SetZoomX = 4,110 + SetZoomY = 4,110 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetOpacity = 5,100 + + Play = 0,Blow1,80,100 diff --git a/PBS/Animations/Converted/Move/PSYCHIC.txt b/PBS/Animations/Converted/Move/PSYCHIC.txt new file mode 100644 index 000000000..44f9da64b --- /dev/null +++ b/PBS/Animations/Converted/Move/PSYCHIC.txt @@ -0,0 +1,74 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,PSYCHIC] +Name = PSYCHIC + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = efftest4 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetZoomX = 5,160 + SetZoomY = 5,160 + SetOpacity = 5,180 + SetZoomX = 6,190 + SetZoomY = 6,190 + SetZoomX = 7,250 + SetZoomY = 7,250 + SetZoomX = 8,300 + SetZoomY = 8,300 + SetZoomX = 9,100 + SetZoomY = 9,100 + SetOpacity = 9,255 + SetZoomX = 12,300 + SetZoomY = 12,300 + SetOpacity = 12,180 + SetX = 14,376 + SetY = 14,86 + SetY = 15,94 + SetX = 17,384 + SetZoomX = 17,100 + SetZoomY = 17,100 + SetOpacity = 17,75 + + Graphic = efftest4 + Focus = Target + SetVisible = 0,true + SetX = 9,384 + SetY = 9,94 + SetZoomX = 9,300 + SetZoomY = 9,300 + SetOpacity = 9,180 + + Graphic = efftest4 + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetVisible = 0,true + SetY = 3,94 + SetZoomX = 3,120 + SetZoomY = 3,120 + SetZoomX = 4,140 + SetZoomY = 4,140 + SetOpacity = 4,220 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetOpacity = 5,150 + SetOpacity = 7,100 + SetOpacity = 9,50 + SetOpacity = 12,255 + SetOpacity = 13,150 + SetOpacity = 14,255 + SetZoomX = 15,80 + SetZoomY = 15,80 + SetZoomX = 16,70 + SetZoomY = 16,70 + SetOpacity = 16,150 + + Play = 2,Darkness2,80,100 diff --git a/PBS/Animations/Converted/Move/PSYCHOCUT.txt b/PBS/Animations/Converted/Move/PSYCHOCUT.txt new file mode 100644 index 000000000..eb2bf6919 --- /dev/null +++ b/PBS/Animations/Converted/Move/PSYCHOCUT.txt @@ -0,0 +1,184 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,PSYCHOCUT] +Name = PSYCHOCUT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Psycho Cut + Focus = Target + SetX = 0,140 + SetY = 0,248 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,141 + SetY = 1,257 + SetOpacity = 1,236 + SetX = 2,138 + SetY = 2,261 + SetOpacity = 2,107 + SetX = 4,126 + SetY = 4,283 + SetOpacity = 4,255 + SetX = 6,144 + SetY = 6,296 + SetX = 8,163 + SetY = 8,267 + SetX = 9,196 + SetY = 9,233 + SetX = 11,237 + SetY = 11,209 + SetX = 12,264 + SetY = 12,200 + SetZoomX = 12,120 + SetZoomY = 12,120 + SetX = 13,278 + SetY = 13,190 + SetZoomX = 13,140 + SetZoomY = 13,140 + SetX = 14,294 + SetY = 14,184 + SetZoomX = 14,160 + SetZoomY = 14,160 + SetX = 15,326 + SetY = 15,165 + SetZoomX = 15,180 + SetZoomY = 15,180 + SetOpacity = 15,200 + SetX = 16,358 + SetY = 16,143 + SetOpacity = 16,139 + SetX = 17,383 + SetY = 17,123 + SetOpacity = 17,100 + SetX = 18,439 + SetY = 18,97 + SetOpacity = 18,60 + + Graphic = Psycho Cut + Focus = Target + SetVisible = 0,true + SetX = 1,163 + SetY = 1,256 + SetX = 2,142 + SetY = 2,252 + SetX = 3,134 + SetY = 3,263 + SetX = 5,131 + SetY = 5,292 + SetX = 7,160 + SetY = 7,288 + SetX = 9,161 + SetY = 9,253 + SetX = 10,146 + SetY = 10,240 + SetOpacity = 10,200 + SetX = 11,127 + SetY = 11,255 + SetOpacity = 11,100 + SetX = 12,123 + SetY = 12,264 + SetOpacity = 12,50 + + Play = 0,Psycho Cut,100,100 +#------------------------------- +[OppMove,PSYCHOCUT] +Name = PSYCHOCUT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Psycho Cut + Focus = UserAndTarget + SetX = 0,396 + SetY = 0,111 + SetVisible = 0,true + SetOpacity = 0,128 + SetX = 1,375 + SetY = 1,125 + SetOpacity = 1,255 + SetX = 2,370 + SetY = 2,138 + SetX = 3,380 + SetY = 3,150 + SetX = 4,396 + SetY = 4,157 + SetX = 5,412 + SetY = 5,146 + SetX = 6,416 + SetY = 6,131 + SetX = 7,415 + SetY = 7,123 + SetX = 8,396 + SetY = 8,111 + SetX = 9,375 + SetY = 9,125 + SetFlip = 10,true + SetX = 10,349 + SetY = 10,143 + SetOpacity = 10,128 + SetX = 11,319 + SetY = 11,164 + SetOpacity = 11,255 + SetX = 12,297 + SetY = 12,170 + SetZoomX = 12,125 + SetZoomY = 12,125 + SetX = 13,283 + SetY = 13,183 + SetZoomX = 13,150 + SetZoomY = 13,150 + SetX = 14,251 + SetY = 14,191 + SetZoomX = 14,160 + SetZoomY = 14,160 + SetX = 15,223 + SetY = 15,208 + SetZoomX = 15,170 + SetZoomY = 15,170 + SetX = 16,188 + SetY = 16,215 + SetZoomX = 16,180 + SetZoomY = 16,180 + SetOpacity = 16,192 + SetX = 17,150 + SetY = 17,241 + SetOpacity = 17,128 + SetX = 18,114 + SetY = 18,264 + SetOpacity = 18,64 + + Graphic = Psycho Cut + Focus = UserAndTarget + SetX = 0,389 + SetY = 0,126 + SetVisible = 0,true + SetOpacity = 0,128 + SetAngle = 1,45 + SetOpacity = 1,255 + SetAngle = 2,90 + SetAngle = 3,135 + SetAngle = 4,180 + SetAngle = 5,225 + SetAngle = 6,270 + SetAngle = 7,316 + SetAngle = 8,0 + SetAngle = 9,45 + SetAngle = 10,90 + SetAngle = 11,135 + SetAngle = 12,180 + SetAngle = 13,225 + SetAngle = 14,270 + SetAngle = 15,315 + SetOpacity = 15,170 + SetAngle = 16,0 + SetOpacity = 16,85 + + Play = 0,Psycho Cut,100,100 diff --git a/PBS/Animations/Converted/Move/QUICKATTACK.txt b/PBS/Animations/Converted/Move/QUICKATTACK.txt new file mode 100644 index 000000000..e68670b59 --- /dev/null +++ b/PBS/Animations/Converted/Move/QUICKATTACK.txt @@ -0,0 +1,60 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,QUICKATTACK] +Name = QUICKATTACK + + SetX = 0,128 + SetY = 0,224 + SetOpacity = 1,170 + SetOpacity = 2,85 + SetOpacity = 6,255 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Tackle_B + Focus = User + SetVisible = 0,true + SetX = 2,59 + SetY = 2,258 + SetOpacity = 3,170 + SetOpacity = 4,85 + + Graphic = Tackle_B + Focus = User + SetVisible = 0,true + SetX = 3,100 + SetY = 3,272 + SetOpacity = 4,170 + SetOpacity = 5,85 + + Graphic = Tackle_B + Focus = User + SetVisible = 0,true + SetX = 4,163 + SetY = 4,259 + SetOpacity = 5,170 + SetOpacity = 6,85 + + Graphic = Tackle_B + Focus = User + SetVisible = 0,true + SetX = 5,140 + SetY = 5,230 + SetOpacity = 6,170 + SetOpacity = 7,85 + + Graphic = Tackle_B + Focus = Target + SetVisible = 0,true + SetX = 1,76 + SetY = 1,230 + SetOpacity = 2,170 + SetOpacity = 3,85 + SetX = 7,384 + SetY = 7,96 + SetOpacity = 7,128 + SetOpacity = 8,255 + SetOpacity = 11,128 + + Play = 7,Blow4,100,100 diff --git a/PBS/Animations/Converted/Move/RAINDANCE.txt b/PBS/Animations/Converted/Move/RAINDANCE.txt new file mode 100644 index 000000000..fc842e871 --- /dev/null +++ b/PBS/Animations/Converted/Move/RAINDANCE.txt @@ -0,0 +1,251 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,RAINDANCE] +Name = RAINDANCE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,197 + SetY = 0,25 + SetVisible = 0,true + SetX = 1,72 + SetY = 1,49 + SetX = 2,60 + SetY = 2,42 + SetX = 3,43 + SetY = 3,62 + SetY = 4,66 + SetX = 5,480 + SetY = 5,78 + SetX = 6,201 + SetY = 6,65 + SetX = 7,80 + SetY = 7,62 + SetX = 8,265 + SetY = 8,218 + SetX = 9,99 + SetY = 9,55 + + Graphic = weather + Focus = Screen + SetX = 0,275 + SetY = 0,47 + SetVisible = 0,true + SetX = 1,229 + SetY = 1,216 + SetX = 2,193 + SetY = 2,131 + SetX = 3,205 + SetY = 3,111 + SetX = 4,122 + SetY = 4,73 + SetX = 5,361 + SetY = 5,34 + SetX = 6,278 + SetY = 6,211 + SetX = 7,239 + SetY = 7,122 + SetX = 8,398 + SetY = 8,251 + SetX = 9,253 + SetY = 9,148 + + Graphic = weather + Focus = Screen + SetX = 0,355 + SetY = 0,51 + SetVisible = 0,true + SetX = 1,109 + SetY = 1,217 + SetX = 2,265 + SetY = 2,233 + SetX = 3,289 + SetY = 3,227 + SetX = 4,148 + SetY = 4,143 + SetX = 5,404 + SetY = 5,152 + SetX = 6,397 + SetY = 6,257 + SetX = 7,172 + SetY = 7,23 + SetX = 8,270 + SetY = 8,110 + SetX = 9,254 + SetY = 9,274 + + Graphic = weather + Focus = Screen + SetX = 0,450 + SetY = 0,50 + SetVisible = 0,true + SetX = 1,223 + SetY = 1,110 + SetX = 2,228 + SetY = 2,82 + SetX = 3,279 + SetY = 3,63 + SetX = 4,203 + SetY = 4,141 + SetX = 5,274 + SetY = 5,69 + SetX = 6,478 + SetY = 6,170 + SetX = 7,25 + SetY = 7,169 + SetX = 8,491 + SetY = 8,59 + SetX = 9,418 + SetY = 9,243 + + Graphic = weather + Focus = Screen + SetX = 0,83 + SetY = 0,81 + SetVisible = 0,true + SetX = 1,399 + SetY = 1,120 + SetX = 2,350 + SetY = 2,43 + SetX = 3,31 + SetY = 3,176 + SetX = 4,101 + SetY = 4,242 + SetX = 5,54 + SetY = 5,71 + SetX = 6,480 + SetY = 6,53 + SetX = 7,263 + SetY = 7,251 + SetX = 8,492 + SetY = 8,204 + SetX = 9,181 + SetY = 9,238 + + Graphic = weather + Focus = Screen + SetX = 0,231 + SetY = 0,170 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,83 + SetX = 2,399 + SetY = 2,154 + SetX = 3,475 + SetY = 3,231 + SetX = 4,185 + SetY = 4,249 + SetX = 5,155 + SetY = 5,126 + SetX = 6,28 + SetY = 6,111 + SetX = 7,146 + SetY = 7,249 + SetX = 8,91 + SetY = 8,63 + SetX = 9,108 + SetY = 9,245 + + Graphic = weather + Focus = Screen + SetX = 0,352 + SetY = 0,212 + SetVisible = 0,true + SetX = 1,362 + SetY = 1,63 + SetX = 2,488 + SetY = 2,60 + SetX = 3,482 + SetY = 3,85 + SetX = 4,290 + SetY = 4,114 + SetX = 5,210 + SetY = 5,242 + SetX = 6,119 + SetY = 6,59 + SetX = 7,29 + SetY = 7,266 + SetX = 8,35 + SetY = 8,173 + SetX = 9,25 + SetY = 9,205 + + Graphic = weather + Focus = Screen + SetX = 0,467 + SetY = 0,254 + SetVisible = 0,true + SetX = 1,376 + SetY = 1,192 + SetX = 2,434 + SetY = 2,253 + SetX = 3,381 + SetY = 3,12 + SetX = 4,440 + SetY = 4,119 + SetX = 5,55 + SetY = 5,232 + SetX = 6,77 + SetY = 6,215 + SetX = 7,367 + SetY = 7,134 + SetX = 8,187 + SetY = 8,144 + SetX = 9,148 + SetY = 9,25 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 1,482 + SetY = 1,244 + SetX = 2,121 + SetY = 2,249 + SetX = 3,382 + SetY = 3,209 + SetX = 4,378 + SetY = 4,150 + SetX = 5,422 + SetY = 5,252 + SetX = 7,471 + SetY = 7,126 + SetX = 9,247 + SetY = 9,72 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 2,27 + SetY = 2,241 + SetX = 3,88 + SetY = 3,177 + SetX = 4,337 + SetY = 4,243 + SetX = 5,319 + SetY = 5,241 + SetX = 7,363 + SetY = 7,237 + SetX = 9,365 + SetY = 9,42 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 4,409 + SetY = 4,203 + SetX = 7,443 + SetY = 7,194 + SetX = 9,479 + SetY = 9,180 + + Graphic = weather + Focus = Screen + SetVisible = 0,true + SetX = 9,474 + SetY = 9,41 diff --git a/PBS/Animations/Converted/Move/RAZORLEAF.txt b/PBS/Animations/Converted/Move/RAZORLEAF.txt new file mode 100644 index 000000000..f5a5fd552 --- /dev/null +++ b/PBS/Animations/Converted/Move/RAZORLEAF.txt @@ -0,0 +1,128 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,RAZORLEAF] +Name = RAZORLEAF + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,144 + SetY = 1,204 + SetX = 2,175 + SetY = 2,184 + SetX = 3,211 + SetY = 3,158 + SetX = 4,268 + SetY = 4,132 + SetX = 5,331 + SetY = 5,116 + SetX = 6,274 + SetY = 6,134 + SetX = 7,331 + SetY = 7,116 + SetX = 8,237 + SetY = 8,160 + SetX = 9,268 + SetY = 9,140 + SetX = 10,331 + SetY = 10,116 + SetX = 11,326 + SetY = 11,178 + SetX = 12,331 + SetY = 12,116 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,154 + SetY = 2,120 + SetX = 3,123 + SetY = 3,108 + SetX = 4,164 + SetY = 4,172 + SetX = 5,222 + SetY = 5,154 + SetX = 6,196 + SetY = 6,96 + SetX = 7,185 + SetY = 7,172 + SetX = 8,118 + SetY = 8,114 + SetX = 9,216 + SetY = 9,112 + SetX = 10,201 + SetY = 10,130 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,258 + SetY = 3,208 + SetX = 4,263 + SetY = 4,242 + SetX = 5,175 + SetY = 5,80 + SetX = 6,284 + SetY = 6,210 + SetX = 7,232 + SetY = 7,214 + SetX = 8,274 + SetY = 8,270 + SetX = 10,357 + SetY = 10,182 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,211 + SetY = 4,78 + SetX = 5,118 + SetY = 5,178 + SetX = 6,336 + SetY = 6,158 + SetX = 7,362 + SetY = 7,176 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,336 + SetY = 4,166 + SetX = 5,305 + SetY = 5,282 + SetX = 7,289 + SetY = 7,108 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,154 + SetY = 4,136 + SetX = 5,346 + SetY = 5,194 + SetX = 7,154 + SetY = 7,112 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,216 + SetY = 5,96 + + Graphic = grass + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,279 + SetY = 5,144 + + Play = 1,Slash8,80,100 + Play = 3,Slash8,80,100 + Play = 6,Slash8,80,100 + Play = 8,Slash8,80,100 + Play = 10,Slash8,80,100 diff --git a/PBS/Animations/Converted/Move/REFLECT.txt b/PBS/Animations/Converted/Move/REFLECT.txt new file mode 100644 index 000000000..9dc65e5a7 --- /dev/null +++ b/PBS/Animations/Converted/Move/REFLECT.txt @@ -0,0 +1,93 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,REFLECT] +Name = REFLECT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = Target + SetX = 0,376 + SetY = 0,86 + SetVisible = 0,true + SetOpacity = 0,75 + SetOpacity = 1,100 + SetOpacity = 2,150 + SetOpacity = 3,255 + SetOpacity = 6,150 + SetOpacity = 7,100 + + Graphic = normal2 + Focus = Target + SetVisible = 0,true + SetX = 1,328 + SetY = 1,-18 + SetX = 2,304 + SetY = 2,22 + SetX = 3,288 + SetY = 3,86 + SetOpacity = 3,200 + SetX = 4,296 + SetY = 4,158 + SetOpacity = 4,255 + SetX = 5,280 + SetY = 5,214 + SetX = 6,416 + SetY = 6,238 + SetX = 7,312 + SetY = 7,222 + + Graphic = normal2 + Focus = Target + SetVisible = 0,true + SetX = 1,464 + SetY = 1,-10 + SetX = 2,488 + SetY = 2,38 + SetX = 3,480 + SetY = 3,94 + SetX = 4,512 + SetY = 4,158 + SetX = 5,496 + SetY = 5,230 + SetX = 6,336 + SetY = 6,150 + SetX = 7,432 + SetY = 7,230 + + Graphic = normal2 + Focus = Target + SetVisible = 0,true + SetX = 2,392 + SetY = 2,-18 + SetY = 3,22 + SetX = 4,424 + SetY = 4,102 + SetX = 5,376 + SetY = 5,166 + SetX = 6,464 + SetY = 6,126 + + Graphic = normal2 + Focus = Target + SetVisible = 0,true + SetX = 3,328 + SetY = 3,-18 + SetX = 4,352 + SetY = 4,38 + SetX = 5,320 + SetY = 5,78 + + Graphic = normal2 + Focus = Target + SetVisible = 0,true + SetX = 4,432 + SetY = 4,-10 + SetX = 5,400 + SetY = 5,54 + + Play = 0,Saint7,80,100 diff --git a/PBS/Animations/Converted/Move/REST.txt b/PBS/Animations/Converted/Move/REST.txt new file mode 100644 index 000000000..7bdefd721 --- /dev/null +++ b/PBS/Animations/Converted/Move/REST.txt @@ -0,0 +1,34 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,REST] +Name = REST + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,357 + SetY = 0,67 + SetVisible = 0,true + SetX = 1,338 + SetY = 1,49 + SetX = 2,320 + SetY = 2,30 + SetX = 3,307 + SetY = 3,21 + SetX = 4,317 + SetY = 4,38 + SetX = 5,294 + SetY = 5,1 + SetX = 6,348 + SetY = 6,50 + SetX = 7,330 + SetY = 7,37 + SetX = 8,308 + SetY = 8,10 + + Play = 0,Refresh,80,100 diff --git a/PBS/Animations/Converted/Move/ROAR.txt b/PBS/Animations/Converted/Move/ROAR.txt new file mode 100644 index 000000000..1d3d74fa2 --- /dev/null +++ b/PBS/Animations/Converted/Move/ROAR.txt @@ -0,0 +1,104 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ROAR] +Name = ROAR + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Growl + Focus = Target + SetX = 0,193 + SetY = 0,215 + SetAngle = 0,10 + SetVisible = 0,true + SetX = 1,214 + SetY = 1,194 + SetX = 2,228 + SetY = 2,176 + SetX = 3,273 + SetY = 3,153 + SetX = 4,301 + SetY = 4,155 + + Graphic = Growl + Focus = Target + SetX = 0,176 + SetY = 0,199 + SetVisible = 0,true + SetX = 1,190 + SetY = 1,170 + SetX = 2,214 + SetY = 2,142 + SetX = 3,252 + SetY = 3,112 + SetX = 4,282 + SetY = 4,89 + + Graphic = Growl + Focus = Target + SetX = 0,182 + SetY = 0,245 + SetVisible = 0,true + SetX = 1,209 + SetY = 1,238 + SetAngle = 1,6 + SetX = 2,223 + SetY = 2,220 + SetX = 3,258 + SetY = 3,213 + SetX = 4,292 + SetY = 4,239 + + Play = 0,Wring Out,100,160 +#------------------------------- +[OppMove,ROAR] +Name = ROAR + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Growl + Focus = Target + SetFlip = 0,true + SetX = 0,352 + SetY = 0,70 + SetVisible = 0,true + SetX = 1,328 + SetY = 1,66 + SetX = 2,296 + SetY = 2,41 + SetX = 3,248 + SetY = 3,35 + + Graphic = Growl + Focus = Target + SetX = 0,352 + SetY = 0,132 + SetVisible = 0,true + SetX = 1,328 + SetY = 1,145 + SetX = 2,296 + SetY = 2,164 + SetX = 3,264 + SetY = 3,200 + + Graphic = Growl + Focus = Target + SetFlip = 0,true + SetX = 0,344 + SetY = 0,100 + SetVisible = 0,true + SetX = 1,312 + SetX = 2,296 + SetY = 2,92 + SetX = 3,248 + SetY = 3,108 + + Play = 0,Wring Out,100,160 diff --git a/PBS/Animations/Converted/Move/ROCKSMASH.txt b/PBS/Animations/Converted/Move/ROCKSMASH.txt new file mode 100644 index 000000000..bcfc5f5f8 --- /dev/null +++ b/PBS/Animations/Converted/Move/ROCKSMASH.txt @@ -0,0 +1,19 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ROCKSMASH] +Name = ROCKSMASH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = rockice + Focus = Target + SetX = 0,392 + SetY = 0,86 + SetVisible = 0,true + + Play = 2,Earth1,80,100 + Play = 2,Blow6,80,100 diff --git a/PBS/Animations/Converted/Move/ROCKTHROW.txt b/PBS/Animations/Converted/Move/ROCKTHROW.txt new file mode 100644 index 000000000..4800686fe --- /dev/null +++ b/PBS/Animations/Converted/Move/ROCKTHROW.txt @@ -0,0 +1,31 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ROCKTHROW] +Name = ROCKTHROW + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Earth1 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,352 + SetY = 3,110 + + Graphic = Earth1 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,198 + SetY = 1,186 + SetX = 2,307 + SetY = 2,123 + SetX = 3,352 + SetY = 3,110 + + Play = 0,throw,80,100 + Play = 3,Earth1,80,100 diff --git a/PBS/Animations/Converted/Move/ROLLINGKICK.txt b/PBS/Animations/Converted/Move/ROLLINGKICK.txt new file mode 100644 index 000000000..cf6a934d7 --- /dev/null +++ b/PBS/Animations/Converted/Move/ROLLINGKICK.txt @@ -0,0 +1,46 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ROLLINGKICK] +Name = ROLLINGKICK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetVisible = 0,true + SetX = 4,360 + SetY = 4,78 + SetOpacity = 4,50 + SetX = 5,384 + SetY = 5,94 + SetX = 6,400 + SetY = 6,110 + SetOpacity = 6,25 + + Graphic = normal1 + Focus = Target + SetX = 0,232 + SetY = 0,102 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetX = 1,264 + SetY = 1,54 + SetX = 2,288 + SetY = 2,22 + SetX = 3,312 + SetY = 3,30 + SetX = 4,360 + SetY = 4,78 + SetX = 5,416 + SetY = 5,126 + SetX = 6,440 + SetY = 6,150 + SetX = 7,448 + SetY = 7,158 + + Play = 4,Blow4,80,100 diff --git a/PBS/Animations/Converted/Move/SANDATTACK.txt b/PBS/Animations/Converted/Move/SANDATTACK.txt new file mode 100644 index 000000000..44cc1df38 --- /dev/null +++ b/PBS/Animations/Converted/Move/SANDATTACK.txt @@ -0,0 +1,564 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SANDATTACK] +Name = SANDATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetX = 0,134 + SetY = 0,280 + SetVisible = 0,true + SetX = 2,121 + SetY = 2,268 + SetX = 3,166 + SetY = 3,249 + SetX = 4,200 + SetY = 4,224 + SetX = 5,235 + SetY = 5,200 + SetX = 6,268 + SetY = 6,176 + SetX = 7,302 + SetY = 7,153 + SetX = 8,336 + SetY = 8,128 + SetX = 9,371 + SetY = 9,104 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,179 + SetY = 3,261 + SetX = 4,217 + SetY = 4,240 + SetX = 5,256 + SetY = 5,219 + SetX = 6,294 + SetY = 6,198 + SetX = 7,332 + SetY = 7,177 + SetX = 8,371 + SetY = 8,157 + SetX = 9,409 + SetY = 9,135 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,147 + SetY = 1,249 + SetX = 2,179 + SetY = 2,224 + SetX = 3,211 + SetY = 3,198 + SetX = 4,243 + SetY = 4,173 + SetX = 5,275 + SetY = 5,148 + SetX = 6,307 + SetY = 6,123 + SetX = 7,339 + SetY = 7,98 + SetFlip = 8,true + SetX = 8,115 + SetY = 8,287 + SetX = 9,147 + SetY = 9,268 + SetX = 10,181 + SetY = 10,241 + SetX = 11,216 + SetY = 11,215 + SetX = 12,249 + SetY = 12,189 + SetX = 13,283 + SetY = 13,162 + SetX = 14,317 + SetY = 14,137 + SetX = 15,352 + SetY = 15,110 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,134 + SetY = 1,230 + SetX = 2,171 + SetY = 2,208 + SetX = 3,207 + SetY = 3,186 + SetX = 4,243 + SetY = 4,164 + SetX = 5,279 + SetY = 5,142 + SetX = 6,315 + SetY = 6,120 + SetX = 7,352 + SetY = 7,98 + SetX = 9,160 + SetY = 9,261 + SetX = 10,196 + SetY = 10,235 + SetX = 11,232 + SetY = 11,209 + SetX = 12,268 + SetY = 12,183 + SetX = 13,304 + SetY = 13,157 + SetX = 14,340 + SetY = 14,131 + SetX = 15,377 + SetY = 15,104 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,268 + SetX = 2,200 + SetY = 2,246 + SetX = 3,239 + SetY = 3,225 + SetX = 4,278 + SetY = 4,205 + SetX = 5,317 + SetY = 5,183 + SetX = 6,356 + SetY = 6,162 + SetX = 7,396 + SetY = 7,142 + SetFlip = 9,true + SetX = 9,179 + SetY = 9,249 + SetX = 10,219 + SetY = 10,225 + SetX = 11,257 + SetY = 11,202 + SetX = 12,297 + SetY = 12,179 + SetX = 13,336 + SetY = 13,157 + SetX = 14,376 + SetY = 14,134 + SetX = 15,416 + SetY = 15,110 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,153 + SetY = 3,242 + SetX = 4,191 + SetY = 4,219 + SetX = 5,228 + SetY = 5,196 + SetX = 6,265 + SetY = 6,173 + SetX = 7,302 + SetY = 7,150 + SetX = 8,340 + SetY = 8,127 + SetX = 9,377 + SetY = 9,104 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,115 + SetY = 4,261 + SetX = 5,134 + SetY = 5,242 + SetX = 6,171 + SetY = 6,215 + SetX = 7,207 + SetY = 7,187 + SetX = 8,243 + SetY = 8,161 + SetX = 9,279 + SetY = 9,134 + SetX = 10,315 + SetY = 10,106 + SetX = 11,352 + SetY = 11,79 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,166 + SetY = 5,274 + SetX = 6,204 + SetY = 6,249 + SetX = 7,241 + SetY = 7,224 + SetX = 8,278 + SetY = 8,198 + SetX = 9,315 + SetY = 9,173 + SetX = 10,352 + SetY = 10,148 + SetX = 11,390 + SetY = 11,123 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,160 + SetY = 5,268 + SetX = 6,200 + SetY = 6,243 + SetX = 7,239 + SetY = 7,219 + SetX = 8,278 + SetY = 8,195 + SetX = 9,317 + SetY = 9,171 + SetX = 10,356 + SetY = 10,147 + SetX = 11,396 + SetY = 11,123 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,121 + SetY = 6,274 + SetX = 7,147 + SetY = 7,249 + SetX = 8,181 + SetY = 8,222 + SetX = 9,216 + SetY = 9,196 + SetX = 10,249 + SetY = 10,170 + SetX = 11,283 + SetY = 11,144 + SetX = 12,317 + SetY = 12,118 + SetX = 13,352 + SetY = 13,91 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,172 + SetY = 7,268 + SetX = 8,209 + SetY = 8,243 + SetX = 9,245 + SetY = 9,219 + SetX = 10,281 + SetY = 10,195 + SetX = 11,317 + SetY = 11,171 + SetX = 12,353 + SetY = 12,147 + SetX = 13,390 + SetY = 13,123 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,179 + SetY = 7,274 + SetX = 8,219 + SetY = 8,252 + SetX = 9,257 + SetY = 9,230 + SetX = 10,297 + SetY = 10,208 + SetX = 11,336 + SetY = 11,186 + SetX = 12,376 + SetY = 12,164 + SetX = 13,416 + SetY = 13,142 + + Play = 0,Sand,100,100 +#------------------------------- +[OppMove,SANDATTACK] +Name = SANDATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetX = 0,377 + SetY = 0,126 + SetVisible = 0,true + SetX = 1,352 + SetY = 1,142 + SetX = 2,314 + SetY = 2,159 + SetX = 3,276 + SetY = 3,176 + SetX = 4,240 + SetY = 4,194 + SetX = 5,203 + SetY = 5,211 + SetX = 6,165 + SetY = 6,228 + SetX = 7,128 + SetY = 7,246 + SetX = 8,364 + SetY = 8,142 + SetAngle = 8,270 + SetX = 9,320 + SetY = 9,154 + SetX = 10,284 + SetY = 10,167 + SetX = 11,249 + SetY = 11,179 + SetX = 12,214 + SetY = 12,192 + SetX = 13,179 + SetY = 13,205 + SetX = 14,144 + SetY = 14,217 + SetX = 15,108 + SetY = 15,230 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,339 + SetY = 1,123 + SetX = 2,300 + SetY = 2,138 + SetX = 3,262 + SetY = 3,153 + SetX = 4,224 + SetY = 4,168 + SetX = 5,185 + SetY = 5,183 + SetX = 6,147 + SetY = 6,198 + SetX = 7,108 + SetY = 7,214 + SetX = 9,339 + SetY = 9,154 + SetX = 10,302 + SetY = 10,164 + SetX = 11,266 + SetY = 11,173 + SetX = 12,230 + SetY = 12,183 + SetX = 13,194 + SetY = 13,192 + SetX = 14,158 + SetY = 14,201 + SetX = 15,121 + SetY = 15,211 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,352 + SetY = 1,142 + SetX = 2,313 + SetY = 2,155 + SetX = 3,275 + SetY = 3,168 + SetX = 4,236 + SetY = 4,181 + SetX = 5,198 + SetY = 5,194 + SetX = 6,160 + SetY = 6,207 + SetX = 7,121 + SetY = 7,220 + SetX = 9,339 + SetY = 9,154 + SetX = 10,304 + SetY = 10,168 + SetX = 11,268 + SetY = 11,183 + SetX = 12,233 + SetY = 12,198 + SetX = 13,198 + SetY = 13,212 + SetX = 14,163 + SetY = 14,227 + SetX = 15,128 + SetY = 15,242 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,371 + SetY = 2,116 + SetX = 3,326 + SetY = 3,129 + SetX = 4,291 + SetY = 4,143 + SetX = 5,256 + SetY = 5,157 + SetX = 6,220 + SetY = 6,170 + SetX = 7,185 + SetY = 7,183 + SetX = 8,150 + SetY = 8,197 + SetX = 9,115 + SetY = 9,211 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,339 + SetY = 3,148 + SetX = 4,302 + SetY = 4,159 + SetX = 5,266 + SetY = 5,168 + SetX = 6,230 + SetY = 6,179 + SetX = 7,194 + SetY = 7,190 + SetX = 8,158 + SetY = 8,200 + SetX = 9,121 + SetY = 9,211 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,339 + SetY = 3,148 + SetX = 4,304 + SetY = 4,164 + SetX = 5,270 + SetY = 5,181 + SetX = 6,236 + SetY = 6,198 + SetX = 7,203 + SetY = 7,215 + SetX = 8,168 + SetY = 8,231 + SetX = 9,134 + SetY = 9,249 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,396 + SetY = 4,142 + SetX = 5,352 + SetY = 5,167 + SetX = 6,317 + SetY = 6,181 + SetX = 7,283 + SetY = 7,196 + SetX = 8,249 + SetY = 8,211 + SetX = 9,216 + SetY = 9,225 + SetX = 10,181 + SetY = 10,240 + SetX = 11,147 + SetY = 11,255 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,332 + SetY = 5,142 + SetX = 6,296 + SetY = 6,154 + SetX = 7,260 + SetY = 7,167 + SetX = 8,224 + SetY = 8,179 + SetX = 9,188 + SetY = 9,192 + SetX = 10,152 + SetY = 10,205 + SetX = 11,115 + SetY = 11,217 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,339 + SetY = 5,148 + SetX = 6,301 + SetY = 6,159 + SetX = 7,264 + SetY = 7,168 + SetX = 8,227 + SetY = 8,179 + SetX = 9,190 + SetY = 9,190 + SetX = 10,152 + SetY = 10,200 + SetX = 11,115 + SetY = 11,211 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 6,true + SetX = 6,377 + SetY = 6,142 + SetX = 7,332 + SetY = 7,154 + SetX = 8,296 + SetY = 8,167 + SetX = 9,260 + SetY = 9,179 + SetX = 10,224 + SetY = 10,192 + SetX = 11,188 + SetY = 11,205 + SetX = 12,153 + SetY = 12,217 + SetX = 13,115 + SetY = 13,230 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,326 + SetY = 7,129 + SetX = 8,289 + SetY = 8,140 + SetX = 9,254 + SetY = 9,150 + SetX = 10,217 + SetY = 10,161 + SetX = 11,181 + SetY = 11,171 + SetX = 12,145 + SetY = 12,181 + SetX = 13,108 + SetY = 13,192 + + Graphic = Sand-Attack + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 7,true + SetX = 7,358 + SetY = 7,135 + SetX = 8,323 + SetY = 8,151 + SetX = 9,288 + SetY = 9,167 + SetX = 10,252 + SetY = 10,183 + SetX = 11,217 + SetY = 11,198 + SetX = 12,182 + SetY = 12,214 + SetX = 13,147 + SetY = 13,230 + + Play = 0,Sand,100,100 diff --git a/PBS/Animations/Converted/Move/SANDSTORM.txt b/PBS/Animations/Converted/Move/SANDSTORM.txt new file mode 100644 index 000000000..7293ec5fc --- /dev/null +++ b/PBS/Animations/Converted/Move/SANDSTORM.txt @@ -0,0 +1,288 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SANDSTORM] +Name = SANDSTORM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,-350 + SetY = 0,-30 + SetVisible = 0,true + SetX = 1,153 + SetY = 1,62 + SetX = 2,-350 + SetY = 2,-30 + SetX = 3,153 + SetY = 3,62 + SetX = 4,139 + SetY = 4,48 + SetX = 5,-350 + SetY = 5,-30 + SetX = 6,153 + SetY = 6,62 + SetX = 7,-350 + SetY = 7,-30 + SetX = 8,153 + SetY = 8,62 + SetX = 9,32 + SetY = 9,252 + + Graphic = weather + Focus = Screen + SetX = 0,31 + SetY = 0,69 + SetVisible = 0,true + SetX = 1,56 + SetY = 1,85 + SetX = 2,31 + SetY = 2,69 + SetX = 3,56 + SetY = 3,85 + SetX = 4,42 + SetY = 4,82 + SetX = 5,31 + SetY = 5,69 + SetX = 6,56 + SetY = 6,85 + SetX = 7,31 + SetY = 7,69 + SetX = 8,56 + SetY = 8,85 + SetX = 9,119 + SetY = 9,175 + + Graphic = weather + Focus = Screen + SetX = 0,156 + SetY = 0,106 + SetVisible = 0,true + SetX = 1,74 + SetY = 1,223 + SetX = 2,156 + SetY = 2,106 + SetX = 3,74 + SetY = 3,223 + SetX = 4,157 + SetY = 4,167 + SetX = 5,156 + SetY = 5,106 + SetX = 6,74 + SetY = 6,223 + SetX = 7,156 + SetY = 7,106 + SetX = 8,74 + SetY = 8,223 + SetX = 9,143 + SetY = 9,267 + + Graphic = weather + Focus = Screen + SetX = 0,165 + SetY = 0,220 + SetVisible = 0,true + SetX = 1,220 + SetY = 1,207 + SetX = 2,165 + SetY = 2,220 + SetX = 3,220 + SetY = 3,207 + SetX = 4,58 + SetY = 4,225 + SetX = 5,165 + SetY = 5,220 + SetX = 6,220 + SetY = 6,207 + SetX = 7,165 + SetY = 7,220 + SetX = 8,220 + SetY = 8,207 + SetX = 9,222 + SetY = 9,197 + + Graphic = weather + Focus = Screen + SetX = 0,267 + SetY = 0,178 + SetVisible = 0,true + SetX = 1,352 + SetY = 1,253 + SetX = 2,267 + SetY = 2,178 + SetX = 3,352 + SetY = 3,253 + SetX = 4,178 + SetY = 4,273 + SetX = 5,267 + SetY = 5,178 + SetX = 6,352 + SetY = 6,253 + SetX = 7,267 + SetY = 7,178 + SetX = 8,352 + SetY = 8,253 + SetX = 9,162 + SetY = 9,82 + + Graphic = weather + Focus = Screen + SetX = 0,309 + SetY = 0,248 + SetVisible = 0,true + SetX = 1,464 + SetY = 1,227 + SetX = 2,309 + SetY = 2,248 + SetX = 3,464 + SetY = 3,227 + SetX = 4,284 + SetY = 4,217 + SetX = 5,309 + SetY = 5,248 + SetX = 6,464 + SetY = 6,227 + SetX = 7,309 + SetY = 7,248 + SetX = 8,464 + SetY = 8,227 + SetX = 9,49 + SetY = 9,61 + + Graphic = weather + Focus = Screen + SetX = 0,388 + SetY = 0,142 + SetVisible = 0,true + SetX = 1,484 + SetY = 1,76 + SetX = 2,388 + SetY = 2,142 + SetX = 3,484 + SetY = 3,76 + SetX = 4,377 + SetY = 4,143 + SetX = 5,388 + SetY = 5,142 + SetX = 6,484 + SetY = 6,76 + SetX = 7,388 + SetY = 7,142 + SetX = 8,484 + SetY = 8,76 + SetX = 9,21 + SetY = 9,158 + + Graphic = weather + Focus = Screen + SetX = 0,448 + SetY = 0,243 + SetVisible = 0,true + SetX = 1,378 + SetY = 1,130 + SetX = 2,448 + SetY = 2,243 + SetX = 3,378 + SetY = 3,130 + SetX = 4,403 + SetY = 4,259 + SetX = 5,448 + SetY = 5,243 + SetX = 6,378 + SetY = 6,130 + SetX = 7,448 + SetY = 7,243 + SetX = 8,378 + SetY = 8,130 + SetX = 9,350 + SetY = 9,240 + + Graphic = weather + Focus = Screen + SetX = 0,35 + SetY = 0,216 + SetVisible = 0,true + SetX = 1,285 + SetY = 1,142 + SetX = 2,35 + SetY = 2,216 + SetX = 3,285 + SetY = 3,142 + SetX = 4,500 + SetY = 4,230 + SetX = 5,35 + SetY = 5,216 + SetX = 6,285 + SetY = 6,142 + SetX = 7,35 + SetY = 7,216 + SetX = 8,285 + SetY = 8,142 + SetX = 9,481 + SetY = 9,206 + + Graphic = weather + Focus = Screen + SetX = 0,276 + SetY = 0,34 + SetVisible = 0,true + SetX = 1,316 + SetY = 1,22 + SetX = 2,276 + SetY = 2,34 + SetX = 3,316 + SetY = 3,22 + SetX = 4,481 + SetY = 4,77 + SetX = 5,276 + SetY = 5,34 + SetX = 6,316 + SetY = 6,22 + SetX = 7,276 + SetY = 7,34 + SetX = 8,316 + SetY = 8,22 + SetX = 9,456 + SetY = 9,64 + + Graphic = weather + Focus = Screen + SetX = 0,487 + SetY = 0,32 + SetVisible = 0,true + SetX = 4,358 + SetY = 4,16 + SetX = 5,487 + SetY = 5,32 + SetX = 9,311 + SetY = 9,55 + + Graphic = weather + Focus = Screen + SetX = 0,492 + SetY = 0,135 + SetVisible = 0,true + SetX = 4,267 + SetY = 4,63 + SetX = 5,492 + SetY = 5,135 + SetX = 9,328 + SetY = 9,146 + + Graphic = weather + Focus = Screen + SetX = 0,387 + SetY = 0,18 + SetVisible = 0,true + SetX = 9,251 + SetY = 9,305 + + Graphic = weather + Focus = Screen + SetX = 0,148 + SetY = 0,9 + SetVisible = 0,true diff --git a/PBS/Animations/Converted/Move/SCARYFACE.txt b/PBS/Animations/Converted/Move/SCARYFACE.txt new file mode 100644 index 000000000..7b9f70283 --- /dev/null +++ b/PBS/Animations/Converted/Move/SCARYFACE.txt @@ -0,0 +1,35 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SCARYFACE] +Name = SCARYFACE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = Target + SetX = 0,384 + SetY = 0,102 + SetVisible = 0,true + SetOpacity = 0,150 + SetZoomX = 1,125 + SetZoomY = 1,125 + SetOpacity = 1,200 + SetZoomX = 2,150 + SetZoomY = 2,150 + SetOpacity = 2,255 + SetZoomX = 3,175 + SetZoomY = 3,175 + SetZoomX = 4,200 + SetZoomY = 4,200 + SetZoomX = 5,225 + SetZoomY = 5,225 + SetOpacity = 6,150 + SetZoomX = 7,200 + SetZoomY = 7,200 + SetOpacity = 7,100 + + Play = 2,Stare,80,100 diff --git a/PBS/Animations/Converted/Move/SCRATCH.txt b/PBS/Animations/Converted/Move/SCRATCH.txt new file mode 100644 index 000000000..99c9a86d9 --- /dev/null +++ b/PBS/Animations/Converted/Move/SCRATCH.txt @@ -0,0 +1,25 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SCRATCH] +Name = SCRATCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = scratchbattle + Focus = Target + SetVisible = 0,true + SetX = 1,399 + SetY = 1,74 + SetX = 2,383 + SetY = 2,90 + SetX = 3,367 + SetY = 3,106 + SetX = 4,351 + SetY = 4,122 + SetY = 5,138 + + Play = 0,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/SCREECH.txt b/PBS/Animations/Converted/Move/SCREECH.txt new file mode 100644 index 000000000..b5eb8342e --- /dev/null +++ b/PBS/Animations/Converted/Move/SCREECH.txt @@ -0,0 +1,53 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SCREECH] +Name = SCREECH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Growl + Focus = UserAndTarget + SetX = 0,179 + SetY = 0,142 + SetVisible = 0,true + SetY = 1,135 + SetY = 2,236 + SetY = 3,135 + SetY = 5,129 + SetY = 6,135 + SetY = 7,123 + SetY = 8,129 + SetY = 9,135 + + Graphic = Growl + Focus = UserAndTarget + SetX = 0,179 + SetY = 0,230 + SetVisible = 0,true + SetY = 1,224 + SetY = 2,129 + SetY = 3,217 + SetY = 4,236 + SetY = 5,224 + SetY = 6,230 + SetY = 7,224 + SetY = 9,230 + + Graphic = Growl + Focus = UserAndTarget + SetX = 0,179 + SetY = 0,186 + SetVisible = 0,true + SetY = 1,179 + SetY = 2,192 + SetY = 3,179 + SetY = 4,192 + SetY = 6,179 + SetY = 7,173 + SetY = 9,179 + + PlayUserCry = 0,100,100 diff --git a/PBS/Animations/Converted/Move/SELFDESTRUCT.txt b/PBS/Animations/Converted/Move/SELFDESTRUCT.txt new file mode 100644 index 000000000..0371432bd --- /dev/null +++ b/PBS/Animations/Converted/Move/SELFDESTRUCT.txt @@ -0,0 +1,74 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SELFDESTRUCT] +Name = SELFDESTRUCT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 030-Explosion01 + Focus = Target + SetVisible = 0,true + SetX = 2,464 + SetY = 2,142 + SetX = 3,296 + SetY = 3,78 + SetX = 4,464 + SetY = 4,142 + SetX = 6,360 + SetY = 6,166 + SetX = 9,336 + SetY = 9,70 + SetX = 12,448 + SetY = 12,118 + SetX = 14,360 + SetY = 14,182 + + Graphic = 030-Explosion01 + Focus = Target + SetVisible = 0,true + SetX = 3,464 + SetY = 3,142 + SetX = 8,336 + SetY = 8,70 + SetX = 10,448 + SetY = 10,118 + SetX = 12,360 + SetY = 12,182 + SetX = 13,448 + SetY = 13,118 + SetX = 14,360 + SetY = 14,182 + + Graphic = 030-Explosion01 + Focus = Target + SetVisible = 0,true + SetX = 5,360 + SetY = 5,166 + SetY = 11,174 + SetY = 13,182 + + Graphic = 030-Explosion01 + Focus = Target + SetX = 0,296 + SetY = 0,78 + SetVisible = 0,true + SetX = 6,464 + SetY = 6,142 + SetX = 8,360 + SetY = 8,166 + SetX = 11,336 + SetY = 11,70 + SetX = 14,448 + SetY = 14,118 + SetX = 16,360 + SetY = 16,182 + + Play = 0,Explosion1,80,100 + Play = 3,Explosion2,80,100 + Play = 6,Explosion3,80,100 + Play = 10,Explosion4,80,100 + Play = 12,Explosion7,80,100 diff --git a/PBS/Animations/Converted/Move/SHADOWBALL.txt b/PBS/Animations/Converted/Move/SHADOWBALL.txt new file mode 100644 index 000000000..ae75a4746 --- /dev/null +++ b/PBS/Animations/Converted/Move/SHADOWBALL.txt @@ -0,0 +1,52 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SHADOWBALL] +Name = SHADOWBALL + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 009-Weapon04 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 7,263 + SetY = 7,74 + SetZoomX = 7,25 + SetZoomY = 7,25 + + Graphic = 009-Weapon04 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,144 + SetY = 1,204 + SetX = 2,154 + SetY = 2,176 + SetX = 3,175 + SetY = 3,152 + SetX = 4,201 + SetY = 4,130 + SetX = 5,227 + SetY = 5,108 + SetX = 6,248 + SetY = 6,100 + SetX = 8,294 + SetY = 8,86 + SetZoomX = 8,50 + SetZoomY = 8,50 + SetOpacity = 8,100 + SetX = 9,315 + SetY = 9,102 + SetZoomX = 9,100 + SetZoomY = 9,100 + SetOpacity = 9,255 + SetX = 10,320 + SetY = 10,112 + SetX = 11,331 + SetY = 11,116 + SetOpacity = 12,100 + SetOpacity = 13,50 + + Play = 0,Collapse1,80,100 diff --git a/PBS/Animations/Converted/Move/SIGNALBEAM.txt b/PBS/Animations/Converted/Move/SIGNALBEAM.txt new file mode 100644 index 000000000..5919c3458 --- /dev/null +++ b/PBS/Animations/Converted/Move/SIGNALBEAM.txt @@ -0,0 +1,390 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SIGNALBEAM] +Name = SIGNALBEAM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Ultra Beam + Focus = Target + SetX = 0,224 + SetY = 0,150 + SetVisible = 0,true + SetX = 1,232 + SetY = 1,158 + SetX = 2,240 + SetY = 2,166 + SetX = 3,248 + SetY = 3,174 + SetX = 4,336 + SetY = 4,46 + SetX = 5,256 + SetY = 5,182 + SetX = 6,248 + SetY = 6,174 + SetX = 7,240 + SetY = 7,166 + SetX = 8,232 + SetY = 8,150 + SetX = 9,440 + SetY = 9,166 + SetX = 10,432 + SetY = 10,158 + SetX = 11,392 + SetY = 11,126 + SetX = 12,240 + SetY = 12,158 + SetX = 13,248 + SetY = 13,166 + SetX = 14,256 + SetY = 14,174 + SetX = 16,368 + SetY = 16,86 + SetX = 17,392 + SetY = 17,134 + SetX = 18,520 + SetY = 18,22 + SetX = 19,440 + SetY = 19,174 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 1,384 + SetY = 1,110 + SetX = 2,352 + SetY = 2,62 + SetX = 3,328 + SetY = 3,38 + SetX = 4,544 + SetY = 4,46 + SetX = 6,536 + SetY = 6,38 + SetX = 7,528 + SetY = 7,30 + SetX = 8,520 + SetY = 8,22 + SetX = 9,224 + SetY = 9,142 + SetX = 11,232 + SetY = 11,150 + SetX = 12,528 + SetY = 12,30 + SetX = 13,536 + SetY = 13,38 + SetX = 14,544 + SetY = 14,46 + SetX = 16,536 + SetY = 16,38 + SetX = 17,240 + SetY = 17,158 + SetX = 19,528 + SetY = 19,30 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 2,528 + SetY = 2,22 + SetX = 3,536 + SetY = 3,38 + SetX = 4,256 + SetY = 4,182 + SetX = 5,352 + SetY = 5,70 + SetX = 6,376 + SetY = 6,102 + SetX = 7,400 + SetY = 7,126 + SetX = 8,432 + SetY = 8,158 + SetX = 9,512 + SetY = 9,14 + SetX = 11,520 + SetY = 11,22 + SetX = 12,360 + SetY = 12,94 + SetX = 13,352 + SetY = 13,54 + SetX = 14,336 + SetY = 14,38 + SetX = 15,352 + SetY = 15,46 + SetX = 16,248 + SetY = 16,166 + SetX = 17,528 + SetY = 17,30 + SetX = 18,416 + SetY = 18,158 + SetX = 19,560 + SetY = 19,70 + + Graphic = Ultra Beam + Focus = Target + SetX = 0,312 + SetY = 0,158 + SetVisible = 0,true + SetY = 1,142 + SetX = 2,296 + SetY = 2,110 + SetX = 3,280 + SetY = 3,102 + SetX = 5,296 + SetY = 5,126 + SetX = 6,312 + SetY = 6,134 + SetX = 7,320 + SetY = 7,150 + SetY = 8,174 + SetY = 10,158 + SetX = 11,312 + SetY = 11,142 + SetX = 12,296 + SetY = 12,126 + SetX = 13,288 + SetY = 13,102 + SetX = 14,280 + SetY = 14,94 + SetX = 15,296 + SetX = 16,304 + SetY = 16,118 + SetX = 17,312 + SetY = 17,150 + SetX = 18,320 + SetY = 18,166 + SetX = 19,352 + SetY = 19,54 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 1,464 + SetY = 1,62 + SetX = 2,440 + SetY = 2,30 + SetX = 3,416 + SetY = 3,14 + SetY = 4,22 + SetX = 5,432 + SetY = 5,46 + SetX = 6,448 + SetY = 6,62 + SetX = 7,464 + SetY = 7,86 + SetX = 8,496 + SetY = 8,102 + SetY = 9,86 + SetX = 10,488 + SetY = 10,94 + SetX = 11,464 + SetY = 11,78 + SetX = 12,440 + SetY = 12,62 + SetX = 13,424 + SetY = 13,38 + SetY = 14,22 + SetX = 15,440 + SetY = 15,38 + SetX = 16,448 + SetY = 16,54 + SetX = 17,472 + SetY = 17,86 + SetX = 18,488 + SetY = 18,94 + SetX = 19,448 + SetY = 19,30 + + Graphic = Ultra Beam + Focus = Target + SetX = 0,264 + SetY = 0,190 + SetVisible = 0,true + SetX = 1,256 + SetY = 1,182 + SetX = 2,248 + SetY = 2,174 + SetX = 3,240 + SetY = 3,166 + SetX = 4,528 + SetY = 4,30 + SetX = 5,424 + SetY = 5,134 + SetX = 6,408 + SetY = 6,118 + SetX = 7,272 + SetY = 7,198 + SetX = 8,280 + SetY = 8,206 + SetX = 9,344 + SetY = 9,46 + SetX = 10,272 + SetY = 10,198 + SetX = 11,400 + SetY = 11,102 + SetX = 12,256 + SetY = 12,182 + SetX = 13,440 + SetY = 13,150 + SetX = 14,456 + SetY = 14,158 + SetX = 15,440 + SetY = 15,142 + SetX = 16,408 + SetY = 16,118 + SetX = 17,384 + SetY = 17,94 + SetX = 18,360 + SetY = 18,62 + SetX = 19,512 + SetY = 19,118 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 2,544 + SetY = 2,38 + SetX = 3,440 + SetY = 3,134 + SetX = 4,240 + SetY = 4,166 + SetX = 5,248 + SetY = 5,174 + SetX = 6,264 + SetY = 6,190 + SetX = 7,376 + SetY = 7,86 + SetX = 8,352 + SetY = 8,54 + SetX = 9,280 + SetY = 9,206 + SetX = 10,560 + SetY = 10,62 + SetX = 11,264 + SetY = 11,190 + SetX = 12,544 + SetY = 12,46 + SetX = 13,248 + SetY = 13,174 + SetX = 14,528 + SetY = 14,30 + SetX = 15,248 + SetY = 15,166 + SetX = 16,552 + SetY = 16,54 + SetX = 17,560 + SetY = 17,62 + SetX = 18,568 + SetY = 18,70 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 1,376 + SetY = 1,54 + SetX = 2,408 + SetY = 2,102 + SetX = 3,536 + SetY = 3,30 + SetX = 4,448 + SetY = 4,150 + SetX = 5,536 + SetY = 5,38 + SetX = 6,552 + SetY = 6,54 + SetX = 7,560 + SetY = 7,62 + SetX = 8,568 + SetY = 8,70 + SetX = 10,368 + SetX = 11,552 + SetY = 11,54 + SetX = 12,424 + SetY = 12,134 + SetX = 13,536 + SetY = 13,38 + SetX = 14,240 + SetY = 14,158 + SetX = 15,536 + SetY = 15,38 + SetX = 16,264 + SetY = 16,182 + SetX = 17,272 + SetY = 17,190 + + Graphic = Ultra Beam + Focus = Target + SetX = 0,304 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,312 + SetX = 2,328 + SetY = 2,142 + SetX = 3,344 + SetY = 3,158 + SetY = 4,166 + SetX = 5,336 + SetY = 5,158 + SetY = 6,150 + SetX = 7,320 + SetY = 7,134 + SetX = 8,304 + SetY = 8,118 + SetX = 9,288 + SetX = 10,304 + SetY = 10,126 + SetX = 11,328 + SetY = 11,142 + SetX = 12,344 + SetY = 12,158 + SetY = 13,166 + SetY = 14,174 + SetY = 15,158 + SetX = 16,328 + SetY = 16,150 + SetX = 17,320 + SetY = 17,142 + SetX = 18,312 + SetY = 18,118 + + Graphic = Ultra Beam + Focus = Target + SetVisible = 0,true + SetX = 1,464 + SetY = 1,38 + SetX = 2,480 + SetY = 2,70 + SetX = 3,496 + SetY = 3,94 + SetX = 4,512 + SetX = 5,496 + SetY = 5,102 + SetX = 6,480 + SetY = 6,78 + SetX = 7,456 + SetY = 7,62 + SetY = 8,38 + SetY = 9,30 + SetY = 10,46 + SetX = 11,480 + SetY = 11,78 + SetX = 12,488 + SetY = 12,86 + SetX = 13,504 + SetY = 13,94 + SetX = 14,512 + SetY = 14,102 + SetX = 15,496 + SetY = 15,94 + SetX = 16,488 + SetY = 16,86 + SetX = 17,472 + SetY = 17,78 + SetX = 18,456 + SetY = 18,54 + + Play = 0,Teleport,80,100 + Play = 2,Twine,80,100 diff --git a/PBS/Animations/Converted/Move/SILVERWIND.txt b/PBS/Animations/Converted/Move/SILVERWIND.txt new file mode 100644 index 000000000..b02728c25 --- /dev/null +++ b/PBS/Animations/Converted/Move/SILVERWIND.txt @@ -0,0 +1,278 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SILVERWIND] +Name = SILVERWIND + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Heal5 + Focus = Target + SetX = 0,168 + SetY = 0,-10 + SetZoomX = 0,20 + SetZoomY = 0,20 + SetVisible = 0,true + SetX = 1,208 + SetY = 1,22 + SetX = 2,248 + SetY = 2,62 + SetX = 3,304 + SetY = 3,102 + SetX = 4,368 + SetY = 4,142 + SetX = 5,440 + SetY = 5,182 + SetX = 6,504 + SetY = 6,214 + SetX = 7,560 + SetY = 7,238 + SetX = 8,688 + SetY = 8,166 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 1,96 + SetY = 1,30 + SetZoomX = 1,20 + SetZoomY = 1,20 + SetX = 2,264 + SetY = 2,-42 + SetX = 3,312 + SetY = 3,-2 + SetX = 4,368 + SetY = 4,46 + SetX = 5,448 + SetY = 5,86 + SetX = 6,520 + SetY = 6,110 + SetX = 7,608 + SetY = 7,142 + SetX = 8,576 + SetY = 8,230 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 1,136 + SetY = 1,-42 + SetZoomX = 1,20 + SetZoomY = 1,20 + SetX = 2,152 + SetY = 2,94 + SetX = 3,216 + SetY = 3,150 + SetX = 4,296 + SetY = 4,198 + SetX = 5,368 + SetY = 5,238 + SetX = 6,448 + SetY = 6,166 + SetX = 7,512 + SetY = 7,206 + SetX = 8,656 + SetY = 8,134 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 2,192 + SetY = 2,6 + SetZoomX = 2,20 + SetZoomY = 2,20 + SetX = 3,248 + SetY = 3,54 + SetX = 4,312 + SetY = 4,102 + SetX = 5,384 + SetY = 5,142 + SetX = 6,344 + SetY = 6,230 + SetX = 7,576 + SetY = 7,102 + SetX = 8,456 + SetY = 8,222 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 2,104 + SetY = 2,6 + SetZoomX = 2,20 + SetZoomY = 2,20 + SetX = 3,160 + SetY = 3,70 + SetX = 4,224 + SetY = 4,134 + SetX = 5,280 + SetY = 5,190 + SetX = 6,480 + SetY = 6,70 + SetX = 7,272 + SetY = 7,230 + SetX = 8,488 + SetY = 8,134 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 3,240 + SetY = 3,-42 + SetZoomX = 3,20 + SetZoomY = 3,20 + SetX = 4,304 + SetY = 4,-10 + SetX = 5,384 + SetY = 5,30 + SetX = 6,224 + SetY = 6,174 + SetX = 7,376 + SetY = 7,158 + SetFlip = 8,true + SetX = 8,336 + SetY = 8,110 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetOpacity = 8,50 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 3,96 + SetY = 3,-10 + SetZoomX = 3,20 + SetZoomY = 3,20 + SetX = 4,128 + SetY = 4,46 + SetX = 5,176 + SetY = 5,118 + SetX = 6,296 + SetY = 6,94 + SetX = 7,192 + SetY = 7,214 + SetX = 8,264 + SetY = 8,222 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 3,216 + SetY = 3,38 + SetOpacity = 3,50 + SetX = 4,168 + SetY = 4,-26 + SetZoomX = 4,20 + SetZoomY = 4,20 + SetOpacity = 4,255 + SetX = 5,232 + SetY = 5,38 + SetX = 6,152 + SetY = 6,150 + SetX = 7,664 + SetY = 7,78 + SetX = 8,624 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 4,408 + SetY = 4,-42 + SetZoomX = 4,20 + SetZoomY = 4,20 + SetX = 5,104 + SetY = 5,86 + SetX = 6,576 + SetY = 6,30 + SetFlip = 7,true + SetX = 7,336 + SetY = 7,110 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetOpacity = 7,50 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 4,216 + SetY = 4,38 + SetOpacity = 4,50 + SetX = 5,496 + SetY = 5,-10 + SetZoomX = 5,20 + SetZoomY = 5,20 + SetOpacity = 5,255 + SetX = 6,456 + SetY = 6,134 + SetZoomX = 6,100 + SetZoomY = 6,100 + SetOpacity = 6,50 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 5,424 + SetY = 5,6 + SetOpacity = 5,50 + SetX = 7,344 + SetY = 7,54 + SetZoomX = 7,20 + SetZoomY = 7,20 + SetOpacity = 7,255 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 5,184 + SetY = 5,-34 + SetZoomX = 5,20 + SetZoomY = 5,20 + SetX = 6,136 + SetY = 6,230 + SetX = 7,208 + SetY = 7,142 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 5,88 + SetY = 5,166 + SetZoomX = 5,20 + SetZoomY = 5,20 + SetX = 6,264 + SetY = 6,6 + SetX = 7,520 + SetY = 7,30 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 5,96 + SetY = 5,6 + SetZoomX = 5,20 + SetZoomY = 5,20 + SetX = 6,144 + SetY = 6,54 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetX = 5,376 + SetY = 5,-50 + SetZoomX = 5,20 + SetZoomY = 5,20 + SetX = 6,440 + SetY = 6,-2 + + Graphic = Heal5 + Focus = Target + SetVisible = 0,true + SetFlip = 5,true + SetX = 5,184 + SetY = 5,142 + SetOpacity = 5,50 + + Play = 0,Wind8,80,100 diff --git a/PBS/Animations/Converted/Move/SING.txt b/PBS/Animations/Converted/Move/SING.txt new file mode 100644 index 000000000..22ffeaac5 --- /dev/null +++ b/PBS/Animations/Converted/Move/SING.txt @@ -0,0 +1,868 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SING] +Name = SING + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poi.hear.mus + Focus = Target + SetX = 0,200 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,212 + SetY = 1,227 + SetX = 2,219 + SetY = 2,223 + SetX = 3,241 + SetY = 3,193 + SetX = 4,255 + SetY = 4,194 + SetX = 5,252 + SetY = 5,198 + SetX = 6,264 + SetY = 6,163 + SetX = 7,310 + SetY = 7,172 + SetX = 8,336 + SetY = 8,142 + SetX = 9,240 + SetY = 9,223 + SetX = 10,255 + SetY = 10,220 + SetX = 11,350 + SetY = 11,115 + SetX = 12,249 + SetY = 12,208 + SetX = 13,262 + SetY = 13,202 + SetX = 14,293 + SetY = 14,188 + SetX = 15,228 + SetY = 15,222 + SetX = 16,241 + SetY = 16,215 + SetX = 17,281 + SetY = 17,220 + SetX = 18,316 + SetY = 18,186 + SetX = 19,345 + SetY = 19,170 + SetX = 20,247 + SetY = 20,225 + SetX = 21,296 + SetY = 21,218 + SetX = 22,229 + SetY = 22,243 + SetX = 23,255 + SetY = 23,236 + SetX = 24,401 + SetY = 24,90 + SetX = 25,272 + SetY = 25,217 + SetX = 26,286 + SetY = 26,208 + SetX = 27,318 + SetY = 27,207 + SetX = 28,265 + SetY = 28,213 + SetX = 29,285 + SetY = 29,218 + SetX = 30,315 + SetY = 30,202 + SetX = 31,251 + SetY = 31,221 + SetX = 32,278 + SetY = 32,213 + SetX = 33,314 + SetY = 33,197 + SetX = 34,280 + SetY = 34,207 + SetX = 35,317 + SetY = 35,212 + SetX = 36,218 + SetY = 36,234 + SetX = 37,299 + SetY = 37,197 + SetX = 38,349 + SetY = 38,171 + SetX = 39,404 + SetY = 39,142 + SetX = 40,427 + SetY = 40,104 + SetX = 41,431 + SetY = 41,90 + SetX = 42,410 + SetY = 42,88 + SetY = 43,93 + SetX = 44,355 + SetY = 44,65 + SetX = 45,388 + SetY = 45,57 + SetX = 46,400 + SetY = 46,48 + SetX = 47,410 + SetY = 47,36 + SetX = 48,436 + SetX = 49,432 + SetY = 49,14 + SetX = 50,435 + SetY = 50,9 + SetX = 51,438 + SetY = 51,11 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 1,211 + SetY = 1,212 + SetX = 2,217 + SetY = 2,209 + SetX = 3,237 + SetY = 3,201 + SetX = 4,245 + SetY = 4,206 + SetX = 5,251 + SetY = 5,207 + SetX = 6,293 + SetY = 6,194 + SetX = 7,284 + SetY = 7,149 + SetX = 8,300 + SetY = 8,150 + SetX = 9,244 + SetY = 9,192 + SetX = 10,338 + SetY = 10,123 + SetX = 11,259 + SetY = 11,205 + SetX = 12,383 + SetY = 12,96 + SetX = 13,264 + SetY = 13,200 + SetX = 14,301 + SetY = 14,185 + SetX = 15,236 + SetY = 15,232 + SetX = 16,241 + SetY = 16,220 + SetX = 17,292 + SetY = 17,211 + SetX = 18,324 + SetY = 18,200 + SetX = 19,318 + SetY = 19,162 + SetX = 20,244 + SetY = 20,201 + SetX = 21,309 + SetY = 21,193 + SetX = 22,244 + SetY = 22,218 + SetX = 23,272 + SetY = 23,228 + SetX = 24,381 + SetY = 24,113 + SetX = 25,253 + SetY = 25,222 + SetX = 26,286 + SetY = 26,209 + SetX = 27,344 + SetY = 27,191 + SetX = 28,257 + SetY = 28,222 + SetX = 29,286 + SetY = 29,193 + SetX = 30,293 + SetY = 30,190 + SetX = 31,230 + SetY = 31,209 + SetX = 32,287 + SetY = 32,201 + SetX = 33,322 + SetY = 33,208 + SetX = 34,277 + SetY = 34,206 + SetX = 35,297 + SetY = 35,176 + SetX = 36,247 + SetY = 36,226 + SetX = 37,296 + SetY = 37,195 + SetX = 38,360 + SetY = 38,148 + SetX = 39,374 + SetY = 39,130 + SetX = 40,399 + SetY = 40,113 + SetX = 41,425 + SetY = 41,101 + SetX = 42,376 + SetY = 42,77 + SetX = 43,411 + SetY = 43,86 + SetX = 44,360 + SetY = 44,87 + SetX = 45,393 + SetY = 45,48 + SetX = 46,397 + SetY = 46,55 + SetX = 47,407 + SetY = 47,57 + SetX = 48,428 + SetY = 48,48 + SetY = 49,45 + SetX = 50,429 + SetY = 50,7 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 2,236 + SetY = 2,216 + SetX = 4,257 + SetY = 4,202 + SetX = 5,256 + SetY = 5,174 + SetX = 6,294 + SetY = 6,173 + SetX = 7,306 + SetY = 7,166 + SetX = 8,234 + SetY = 8,243 + SetX = 9,342 + SetY = 9,145 + SetX = 10,338 + SetY = 10,132 + SetX = 11,230 + SetY = 11,198 + SetX = 12,260 + SetY = 12,195 + SetX = 13,401 + SetY = 13,107 + SetX = 14,427 + SetY = 14,108 + SetX = 15,329 + SetY = 15,174 + SetX = 16,274 + SetY = 16,212 + SetX = 17,293 + SetY = 17,181 + SetX = 18,304 + SetY = 18,178 + SetX = 19,227 + SetY = 19,247 + SetX = 20,354 + SetY = 20,147 + SetX = 21,276 + SetY = 21,191 + SetX = 22,321 + SetY = 22,192 + SetX = 23,266 + SetY = 23,209 + SetX = 24,352 + SetY = 24,168 + SetX = 25,372 + SetY = 25,118 + SetX = 26,420 + SetY = 26,111 + SetX = 27,316 + SetY = 27,181 + SetX = 28,347 + SetY = 28,169 + SetX = 29,376 + SetY = 29,138 + SetX = 30,403 + SetY = 30,127 + SetX = 31,340 + SetY = 31,194 + SetX = 32,347 + SetY = 32,177 + SetX = 33,222 + SetY = 33,235 + SetX = 34,397 + SetY = 34,183 + SetX = 35,341 + SetY = 35,180 + SetX = 36,334 + SetY = 36,184 + SetX = 37,383 + SetY = 37,137 + SetX = 38,355 + SetY = 38,145 + SetX = 39,410 + SetY = 39,107 + SetX = 40,403 + SetY = 40,118 + SetX = 41,417 + SetY = 41,63 + SetX = 42,407 + SetY = 42,55 + SetX = 43,394 + SetY = 43,77 + SetX = 44,364 + SetY = 44,50 + SetX = 45,396 + SetY = 45,51 + SetX = 46,415 + SetY = 46,43 + SetX = 47,437 + SetY = 47,49 + SetX = 48,436 + SetY = 48,44 + SetX = 49,437 + SetY = 49,5 + SetX = 50,424 + SetY = 50,20 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 8,222 + SetY = 8,198 + SetX = 9,351 + SetY = 9,130 + SetX = 10,257 + SetY = 10,192 + SetX = 11,355 + SetY = 11,107 + SetX = 12,394 + SetY = 12,113 + SetX = 13,419 + SetY = 13,90 + SetX = 14,430 + SetY = 14,96 + SetX = 15,331 + SetY = 15,164 + SetX = 16,373 + SetY = 16,152 + SetX = 17,353 + SetY = 17,142 + SetX = 18,445 + SetY = 18,95 + SetX = 19,231 + SetY = 19,236 + SetX = 20,363 + SetY = 20,162 + SetX = 21,400 + SetY = 21,118 + SetX = 22,324 + SetY = 22,186 + SetX = 23,378 + SetY = 23,141 + SetX = 24,357 + SetY = 24,173 + SetX = 25,383 + SetY = 25,135 + SetX = 26,426 + SetY = 26,116 + SetX = 27,419 + SetY = 27,94 + SetX = 28,344 + SetY = 28,163 + SetX = 29,378 + SetY = 29,148 + SetX = 30,425 + SetY = 30,113 + SetX = 31,312 + SetY = 31,182 + SetX = 32,370 + SetY = 32,165 + SetX = 33,253 + SetY = 33,226 + SetX = 34,390 + SetY = 34,148 + SetX = 35,439 + SetY = 35,113 + SetX = 36,348 + SetY = 36,154 + SetX = 37,405 + SetY = 37,121 + SetX = 38,432 + SetY = 38,113 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 13,282 + SetY = 13,189 + SetX = 14,226 + SetY = 14,238 + SetX = 15,448 + SetY = 15,78 + SetX = 16,356 + SetY = 16,148 + SetX = 17,384 + SetY = 17,150 + SetX = 18,442 + SetY = 18,83 + SetX = 19,427 + SetY = 19,72 + SetX = 20,345 + SetY = 20,152 + SetX = 21,368 + SetY = 21,119 + SetX = 22,416 + SetY = 22,113 + SetX = 23,356 + SetY = 23,155 + SetX = 24,221 + SetY = 24,234 + SetX = 25,352 + SetY = 25,134 + SetX = 26,403 + SetY = 26,86 + SetX = 27,416 + SetY = 27,109 + SetX = 28,423 + SetY = 28,116 + SetX = 29,392 + SetY = 29,153 + SetX = 30,231 + SetY = 30,240 + SetX = 31,394 + SetY = 31,133 + SetX = 32,345 + SetY = 32,145 + SetX = 33,387 + SetY = 33,146 + SetX = 34,421 + SetY = 34,114 + SetX = 35,408 + SetY = 35,98 + SetX = 36,423 + SetY = 36,119 + SetX = 37,379 + SetY = 37,104 + SetX = 38,422 + SetY = 38,90 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 15,429 + SetY = 15,91 + SetX = 16,352 + SetY = 16,157 + SetX = 18,426 + SetY = 18,99 + SetX = 19,425 + SetY = 19,95 + SetX = 20,412 + SetY = 20,93 + SetX = 21,391 + SetY = 21,122 + SetX = 22,424 + SetY = 22,105 + SetX = 24,255 + SetY = 24,224 + SetX = 27,232 + SetY = 27,226 + SetX = 28,421 + SetY = 28,88 + SetX = 31,402 + SetY = 31,130 + SetX = 32,423 + SetY = 32,124 + SetX = 33,390 + SetY = 33,139 + SetX = 34,447 + SetY = 34,96 + SetX = 35,433 + SetY = 35,112 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 15,437 + SetY = 15,85 + SetX = 16,416 + SetY = 16,84 + SetX = 25,413 + SetY = 25,98 + SetX = 27,209 + SetY = 27,217 + SetX = 31,400 + SetY = 31,125 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 16,417 + SetY = 16,89 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 16,417 + SetY = 16,93 + + Play = 0,Sing,80,100 +#------------------------------- +[OppMove,SING] +Name = SING + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poi.hear.mus + Focus = Target + SetX = 0,364 + SetY = 0,92 + SetVisible = 0,true + SetX = 1,369 + SetY = 1,117 + SetX = 2,358 + SetY = 2,154 + SetX = 3,332 + SetY = 3,182 + SetX = 4,382 + SetY = 4,106 + SetX = 5,365 + SetY = 5,96 + SetX = 6,212 + SetY = 6,246 + SetX = 7,356 + SetY = 7,172 + SetX = 8,320 + SetY = 8,192 + SetX = 9,298 + SetY = 9,201 + SetX = 10,265 + SetY = 10,239 + SetX = 11,231 + SetY = 11,255 + SetX = 12,282 + SetY = 12,196 + SetX = 13,255 + SetY = 13,253 + SetX = 14,348 + SetY = 14,175 + SetX = 15,303 + SetY = 15,213 + SetX = 16,384 + SetY = 16,110 + SetX = 17,355 + SetY = 17,167 + SetX = 18,316 + SetY = 18,200 + SetX = 19,289 + SetY = 19,223 + SetX = 20,244 + SetY = 20,239 + SetX = 21,313 + SetY = 21,199 + SetX = 22,281 + SetY = 22,248 + SetX = 23,238 + SetY = 23,242 + SetX = 24,341 + SetY = 24,194 + SetX = 25,296 + SetY = 25,225 + SetX = 26,369 + SetY = 26,116 + SetX = 27,326 + SetY = 27,171 + SetX = 28,186 + SetY = 28,240 + SetX = 29,156 + SetY = 29,241 + SetX = 30,150 + SetX = 31,180 + SetY = 31,214 + SetX = 32,183 + SetX = 33,193 + SetY = 33,171 + SetX = 34,161 + SetY = 34,235 + SetX = 35,190 + SetY = 35,195 + SetX = 36,164 + SetY = 36,176 + SetX = 37,167 + SetY = 37,175 + SetX = 38,159 + SetY = 38,143 + SetX = 39,202 + SetY = 39,108 + SetOpacity = 39,243 + SetX = 40,183 + SetY = 40,119 + SetOpacity = 40,255 + + Graphic = poi.hear.mus + Focus = Target + SetX = 0,365 + SetY = 0,125 + SetVisible = 0,true + SetX = 1,350 + SetY = 1,146 + SetX = 2,356 + SetY = 2,143 + SetX = 3,304 + SetY = 3,177 + SetX = 4,294 + SetY = 4,203 + SetX = 5,383 + SetY = 5,125 + SetX = 6,228 + SetY = 6,232 + SetX = 7,375 + SetY = 7,166 + SetX = 8,344 + SetY = 8,188 + SetX = 9,282 + SetY = 9,205 + SetX = 10,287 + SetY = 10,225 + SetX = 11,242 + SetY = 11,244 + SetX = 12,314 + SetY = 12,207 + SetX = 13,240 + SetY = 13,244 + SetX = 14,342 + SetY = 14,181 + SetX = 15,332 + SetY = 15,221 + SetX = 16,377 + SetY = 16,126 + SetX = 17,360 + SetY = 17,154 + SetX = 18,309 + SetY = 18,211 + SetX = 19,284 + SetY = 19,236 + SetX = 20,252 + SetY = 20,256 + SetX = 21,345 + SetY = 21,203 + SetX = 22,300 + SetY = 22,240 + SetX = 23,231 + SetY = 23,245 + SetX = 24,350 + SetY = 24,216 + SetX = 25,306 + SetY = 25,242 + SetX = 26,361 + SetY = 26,143 + SetX = 27,333 + SetY = 27,171 + SetX = 28,183 + SetY = 28,258 + SetX = 29,163 + SetY = 29,239 + SetX = 30,176 + SetY = 30,223 + SetX = 31,173 + SetY = 31,204 + SetX = 32,159 + SetY = 32,186 + SetX = 33,182 + SetY = 33,191 + SetX = 34,153 + SetY = 34,221 + SetX = 35,181 + SetY = 35,163 + SetX = 36,193 + SetY = 36,197 + SetX = 37,191 + SetY = 37,163 + SetX = 38,172 + SetY = 38,161 + SetX = 39,204 + SetY = 39,163 + SetX = 40,183 + SetY = 40,100 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 4,300 + SetY = 4,200 + SetX = 5,262 + SetY = 5,233 + SetX = 6,369 + SetY = 6,129 + SetX = 7,334 + SetY = 7,162 + SetX = 8,316 + SetY = 8,166 + SetX = 9,305 + SetY = 9,207 + SetX = 10,263 + SetY = 10,215 + SetX = 11,214 + SetY = 11,227 + SetX = 12,328 + SetY = 12,211 + SetX = 13,243 + SetY = 13,222 + SetX = 14,319 + SetY = 14,174 + SetX = 15,338 + SetY = 15,219 + SetX = 16,287 + SetY = 16,257 + SetX = 17,252 + SetY = 17,240 + SetX = 18,341 + SetY = 18,216 + SetX = 19,388 + SetY = 19,118 + SetX = 20,365 + SetY = 20,153 + SetX = 21,222 + SetY = 21,259 + SetX = 22,268 + SetY = 22,239 + SetX = 23,234 + SetY = 23,242 + SetX = 24,316 + SetY = 24,212 + SetX = 25,305 + SetY = 25,234 + SetX = 26,239 + SetY = 26,246 + SetX = 27,346 + SetY = 27,201 + SetX = 28,212 + SetY = 28,248 + SetX = 29,181 + SetY = 29,253 + SetX = 30,167 + SetY = 30,247 + SetX = 31,196 + SetY = 31,222 + SetX = 32,180 + SetY = 32,271 + SetX = 33,189 + SetY = 33,192 + SetX = 34,169 + SetY = 34,208 + SetX = 35,198 + SetY = 35,169 + SetX = 36,197 + SetY = 36,163 + SetX = 37,155 + SetY = 37,173 + SetX = 38,189 + SetY = 38,155 + SetX = 39,178 + SetY = 39,142 + SetX = 40,169 + SetY = 40,139 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 4,305 + SetY = 4,227 + SetX = 5,275 + SetY = 5,241 + SetX = 6,370 + SetY = 6,121 + SetX = 9,381 + SetY = 9,113 + SetX = 10,378 + SetY = 10,125 + SetX = 11,348 + SetY = 11,181 + SetX = 12,391 + SetY = 12,104 + SetX = 13,377 + SetY = 13,141 + SetX = 16,287 + SetY = 16,252 + SetX = 17,233 + SetY = 17,251 + SetX = 19,378 + SetY = 19,135 + SetX = 20,372 + SetY = 20,173 + SetX = 21,237 + SetY = 21,267 + SetX = 22,390 + SetY = 22,124 + SetX = 23,368 + SetY = 23,151 + SetX = 26,272 + SetY = 26,240 + SetX = 27,236 + SetY = 27,247 + SetX = 28,300 + SetY = 28,211 + SetX = 29,278 + SetY = 29,252 + SetX = 30,275 + SetY = 30,253 + SetX = 31,226 + SetY = 31,269 + SetX = 32,150 + SetY = 32,250 + SetX = 33,161 + SetY = 33,260 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 10,380 + SetY = 10,124 + SetX = 11,349 + SetY = 11,180 + SetX = 12,379 + SetY = 12,122 + SetX = 13,371 + SetY = 13,140 + SetX = 16,282 + SetY = 16,252 + SetX = 17,238 + SetY = 17,245 + SetX = 20,367 + SetY = 20,183 + SetX = 21,292 + SetY = 21,204 + SetX = 23,369 + SetY = 23,179 + SetX = 26,250 + SetY = 26,250 + SetX = 27,218 + SetY = 27,255 + SetX = 28,308 + SetY = 28,205 + SetX = 29,279 + SetY = 29,245 + SetX = 30,263 + SetY = 30,244 + SetX = 31,218 + SetY = 31,254 + SetX = 32,181 + SetY = 32,263 + SetX = 33,132 + SetY = 33,243 + + Graphic = poi.hear.mus + Focus = Target + SetVisible = 0,true + SetX = 11,319 + SetY = 11,172 + SetX = 13,361 + SetY = 13,158 + SetX = 23,335 + SetY = 23,156 + SetX = 27,241 + SetY = 27,261 + SetX = 28,327 + SetY = 28,222 + SetX = 30,262 + SetY = 30,252 + + Play = 0,Sing,95,100 diff --git a/PBS/Animations/Converted/Move/SKETCH.txt b/PBS/Animations/Converted/Move/SKETCH.txt new file mode 100644 index 000000000..e4cc4f39f --- /dev/null +++ b/PBS/Animations/Converted/Move/SKETCH.txt @@ -0,0 +1,57 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SKETCH] +Name = SKETCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = Target + SetX = 0,152 + SetY = 0,30 + SetZoomX = 0,75 + SetZoomY = 0,75 + SetVisible = 0,true + SetX = 1,184 + SetY = 1,54 + SetX = 2,224 + SetY = 2,86 + SetX = 3,288 + SetY = 3,134 + SetX = 4,368 + SetY = 4,174 + SetX = 5,464 + SetY = 5,166 + SetX = 6,424 + SetY = 6,134 + SetX = 7,320 + SetY = 7,102 + SetX = 8,224 + SetY = 8,54 + SetX = 9,216 + SetY = 9,6 + SetX = 10,272 + SetY = 10,38 + SetX = 11,320 + SetY = 11,70 + SetX = 12,400 + SetY = 12,110 + SetX = 13,480 + SetY = 13,150 + SetX = 14,504 + SetY = 14,158 + SetX = 15,488 + SetY = 15,110 + SetX = 16,424 + SetY = 16,54 + SetX = 17,344 + SetY = 17,-18 + + Play = 0,Slash6,80,100 + Play = 6,Slash6,80,100 + Play = 10,Slash6,80,100 + Play = 15,Slash6,80,100 diff --git a/PBS/Animations/Converted/Move/SLAM.txt b/PBS/Animations/Converted/Move/SLAM.txt new file mode 100644 index 000000000..8a9f01a12 --- /dev/null +++ b/PBS/Animations/Converted/Move/SLAM.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SLAM] +Name = SLAM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Blow6,80,100 diff --git a/PBS/Animations/Converted/Move/SLASH.txt b/PBS/Animations/Converted/Move/SLASH.txt new file mode 100644 index 000000000..3df39ea50 --- /dev/null +++ b/PBS/Animations/Converted/Move/SLASH.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SLASH] +Name = SLASH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = zan03 + Focus = Target + SetX = 0,280 + SetY = 0,6 + SetVisible = 0,true + SetX = 1,344 + SetY = 1,54 + SetX = 2,376 + SetY = 2,70 + SetX = 3,384 + SetY = 3,94 + + Graphic = zan03 + Focus = Target + SetX = 0,304 + SetY = 0,-26 + SetVisible = 0,true + SetX = 1,320 + SetY = 1,86 + SetX = 2,336 + SetX = 3,352 + SetY = 3,118 + + Graphic = zan03 + Focus = Target + SetX = 0,256 + SetY = 0,38 + SetVisible = 0,true + SetX = 1,368 + SetY = 1,30 + SetX = 2,408 + SetY = 2,54 + SetX = 3,416 + SetY = 3,78 + + Play = 0,Slash3,80,100 diff --git a/PBS/Animations/Converted/Move/SLEEPPOWDER.txt b/PBS/Animations/Converted/Move/SLEEPPOWDER.txt new file mode 100644 index 000000000..6227d2564 --- /dev/null +++ b/PBS/Animations/Converted/Move/SLEEPPOWDER.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SLEEPPOWDER] +Name = SLEEPPOWDER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Special5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sand,80,100 diff --git a/PBS/Animations/Converted/Move/SLUDGE.txt b/PBS/Animations/Converted/Move/SLUDGE.txt new file mode 100644 index 000000000..89d0af95e --- /dev/null +++ b/PBS/Animations/Converted/Move/SLUDGE.txt @@ -0,0 +1,30 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SLUDGE] +Name = SLUDGE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = State1 + Focus = Target + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,172 + SetY = 1,186 + SetAngle = 1,325 + SetX = 2,249 + SetY = 2,148 + SetX = 3,313 + SetY = 3,129 + SetX = 4,358 + SetY = 4,91 + SetY = 5,110 + SetAngle = 5,0 + + Play = 0,throw,80,100 + Play = 7,Poison,80,100 diff --git a/PBS/Animations/Converted/Move/SLUDGEBOMB.txt b/PBS/Animations/Converted/Move/SLUDGEBOMB.txt new file mode 100644 index 000000000..13a11267f --- /dev/null +++ b/PBS/Animations/Converted/Move/SLUDGEBOMB.txt @@ -0,0 +1,79 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SLUDGEBOMB] +Name = SLUDGEBOMB + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison4 + Focus = UserAndTarget + SetX = 0,140 + SetY = 0,217 + SetVisible = 0,true + SetX = 1,172 + SetY = 1,211 + SetX = 2,134 + SetX = 3,179 + SetY = 3,148 + SetX = 4,243 + SetY = 4,104 + SetX = 5,294 + SetY = 5,79 + SetX = 6,256 + SetY = 6,135 + + Graphic = poison4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,147 + SetY = 1,198 + SetX = 2,211 + SetY = 2,186 + SetX = 3,262 + SetY = 3,142 + SetX = 4,326 + SetY = 4,135 + SetX = 5,236 + SetY = 5,148 + + Graphic = poison4 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,166 + SetY = 2,186 + SetX = 3,192 + SetY = 3,167 + SetX = 4,217 + SetY = 4,154 + + Graphic = poison4 + Focus = UserAndTarget + SetX = 0,134 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,166 + SetY = 1,173 + SetX = 2,198 + SetY = 2,148 + SetX = 3,281 + SetY = 3,104 + SetX = 4,358 + SetY = 4,110 + SetX = 5,345 + SetX = 7,275 + SetY = 7,123 + SetX = 8,288 + SetY = 8,116 + SetX = 9,307 + SetY = 9,110 + SetX = 10,332 + SetX = 11,352 + SetX = 12,358 + + Play = 3,Poison,80,100 + Play = 5,Poison,80,100 + Play = 7,Poison,80,100 diff --git a/PBS/Animations/Converted/Move/SMOG.txt b/PBS/Animations/Converted/Move/SMOG.txt new file mode 100644 index 000000000..acd1951ff --- /dev/null +++ b/PBS/Animations/Converted/Move/SMOG.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SMOG] +Name = SMOG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Wind8,80,100 diff --git a/PBS/Animations/Converted/Move/SMOKESCREEN.txt b/PBS/Animations/Converted/Move/SMOKESCREEN.txt new file mode 100644 index 000000000..5233e994a --- /dev/null +++ b/PBS/Animations/Converted/Move/SMOKESCREEN.txt @@ -0,0 +1,102 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SMOKESCREEN] +Name = SMOKESCREEN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Anima (2) + Focus = Target + SetX = 0,384 + SetY = 0,102 + SetVisible = 0,true + SetFlip = 5,true + SetZoomX = 5,110 + SetZoomY = 5,110 + SetZoomX = 6,100 + SetZoomY = 6,100 + SetFlip = 10,false + SetX = 10,336 + SetY = 10,78 + SetX = 11,408 + SetY = 11,62 + SetX = 12,440 + SetY = 12,110 + SetOpacity = 14,150 + + Graphic = Anima (2) + Focus = Target + SetVisible = 0,true + SetX = 2,336 + SetY = 2,78 + SetX = 10,408 + SetY = 10,62 + SetX = 11,440 + SetY = 11,110 + SetX = 12,320 + SetOpacity = 13,150 + + Graphic = Anima (2) + Focus = Target + SetVisible = 0,true + SetX = 3,408 + SetY = 3,62 + SetX = 10,440 + SetY = 10,110 + SetX = 11,320 + SetFlip = 12,true + SetX = 12,352 + SetY = 12,126 + SetOpacity = 13,150 + + Graphic = Anima (2) + Focus = Target + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,352 + SetY = 3,126 + SetFlip = 4,false + SetX = 4,440 + SetY = 4,110 + SetFlip = 9,true + SetZoomX = 9,125 + SetZoomY = 9,125 + SetFlip = 10,false + SetX = 10,320 + SetZoomX = 10,100 + SetZoomY = 10,100 + SetFlip = 11,true + SetX = 11,352 + SetY = 11,126 + + Graphic = Anima (2) + Focus = Target + SetVisible = 0,true + SetFlip = 4,true + SetX = 4,352 + SetY = 4,126 + SetFlip = 5,false + SetX = 5,320 + SetY = 5,110 + SetFlip = 10,true + SetX = 10,352 + SetY = 10,126 + + Graphic = Anima (2) + Focus = Target + SetVisible = 0,true + SetFlip = 5,true + SetX = 5,352 + SetY = 5,126 + SetFlip = 8,false + SetZoomX = 8,125 + SetZoomY = 8,125 + SetFlip = 9,true + SetZoomX = 9,100 + SetZoomY = 9,100 + + Play = 0,Wind8,80,100 diff --git a/PBS/Animations/Converted/Move/SPIDERWEB.txt b/PBS/Animations/Converted/Move/SPIDERWEB.txt new file mode 100644 index 000000000..ebf3da7d5 --- /dev/null +++ b/PBS/Animations/Converted/Move/SPIDERWEB.txt @@ -0,0 +1,69 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SPIDERWEB] +Name = SPIDERWEB + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ghost2 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 3,true + SetX = 3,358 + SetY = 3,98 + SetOpacity = 3,20 + SetFlip = 4,false + SetX = 4,281 + SetY = 4,142 + SetZoomX = 4,110 + SetZoomY = 4,110 + SetAngle = 4,330 + SetOpacity = 4,255 + SetX = 5,288 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetX = 6,307 + SetY = 6,129 + SetZoomX = 6,75 + SetZoomY = 6,75 + SetX = 7,320 + SetY = 7,123 + SetZoomX = 7,50 + SetZoomY = 7,50 + + Graphic = ghost2 + Focus = UserAndTarget + SetX = 0,192 + SetY = 0,205 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetAngle = 0,330 + SetVisible = 0,true + SetX = 1,204 + SetY = 1,192 + SetZoomX = 1,75 + SetZoomY = 1,75 + SetX = 2,217 + SetY = 2,179 + SetZoomX = 2,100 + SetZoomY = 2,100 + SetX = 3,249 + SetY = 3,161 + SetZoomX = 3,110 + SetZoomY = 3,110 + SetFlip = 4,true + SetX = 4,358 + SetY = 4,98 + SetZoomX = 4,100 + SetZoomY = 4,100 + SetAngle = 4,0 + SetOpacity = 4,50 + SetOpacity = 5,255 + SetOpacity = 8,150 + SetOpacity = 9,50 + + Play = 0,throw,80,100 diff --git a/PBS/Animations/Converted/Move/SPIKECANNON.txt b/PBS/Animations/Converted/Move/SPIKECANNON.txt new file mode 100644 index 000000000..16f71dc2f --- /dev/null +++ b/PBS/Animations/Converted/Move/SPIKECANNON.txt @@ -0,0 +1,376 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SPIKECANNON] +Name = SPIKECANNON + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,135 + SetX = 3,358 + SetY = 3,110 + SetY = 4,104 + SetX = 5,364 + SetY = 5,123 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,262 + SetY = 3,142 + SetX = 4,345 + SetY = 4,148 + SetX = 5,320 + SetY = 5,104 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,217 + SetY = 2,205 + SetX = 3,268 + SetY = 3,179 + SetX = 4,281 + SetY = 4,129 + SetX = 5,371 + SetY = 5,110 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,192 + SetX = 3,198 + SetY = 3,167 + SetX = 4,371 + SetY = 4,85 + SetOpacity = 4,50 + SetX = 5,332 + SetY = 5,91 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,364 + SetY = 3,98 + SetOpacity = 3,50 + + Play = 0,Slash10,80,100 + Play = 2,Slash10,80,100 + Play = 4,Slash10,80,100 +#------------------------------- +[Move,SPIKECANNON,1] +Name = Spike Cannon hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,364 + SetY = 3,98 + SetOpacity = 3,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,135 + SetX = 3,358 + SetY = 3,110 + SetY = 4,104 + SetX = 5,364 + SetY = 5,123 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,262 + SetY = 3,142 + SetX = 4,345 + SetY = 4,148 + SetX = 5,320 + SetY = 5,104 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,217 + SetY = 2,205 + SetX = 3,268 + SetY = 3,179 + SetX = 4,281 + SetY = 4,129 + SetX = 5,371 + SetY = 5,110 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,192 + SetX = 3,198 + SetY = 3,167 + SetX = 4,371 + SetY = 4,85 + SetOpacity = 4,50 + SetX = 5,332 + SetY = 5,91 + + Play = 0,Slash10,80,100 + Play = 2,Slash10,80,100 + Play = 4,Slash10,80,100 +#------------------------------- +[Move,SPIKECANNON,2] +Name = Spike Cannon hit 3 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,192 + SetX = 3,198 + SetY = 3,167 + SetX = 4,371 + SetY = 4,85 + SetOpacity = 4,50 + SetX = 5,332 + SetY = 5,91 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,364 + SetY = 3,98 + SetOpacity = 3,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,135 + SetX = 3,358 + SetY = 3,110 + SetY = 4,104 + SetX = 5,364 + SetY = 5,123 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,262 + SetY = 3,142 + SetX = 4,345 + SetY = 4,148 + SetX = 5,320 + SetY = 5,104 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,217 + SetY = 2,205 + SetX = 3,268 + SetY = 3,179 + SetX = 4,281 + SetY = 4,129 + SetX = 5,371 + SetY = 5,110 + SetOpacity = 5,50 + + Play = 0,Slash10,80,100 + Play = 2,Slash10,80,100 + Play = 4,Slash10,80,100 +#------------------------------- +[Move,SPIKECANNON,3] +Name = Spike Cannon hit 4 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,217 + SetY = 2,205 + SetX = 3,268 + SetY = 3,179 + SetX = 4,281 + SetY = 4,129 + SetX = 5,371 + SetY = 5,110 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,192 + SetX = 3,198 + SetY = 3,167 + SetX = 4,371 + SetY = 4,85 + SetOpacity = 4,50 + SetX = 5,332 + SetY = 5,91 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,364 + SetY = 3,98 + SetOpacity = 3,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,135 + SetX = 3,358 + SetY = 3,110 + SetY = 4,104 + SetX = 5,364 + SetY = 5,123 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,262 + SetY = 3,142 + SetX = 4,345 + SetY = 4,148 + SetX = 5,320 + SetY = 5,104 + + Play = 0,Slash10,80,100 + Play = 2,Slash10,80,100 + Play = 4,Slash10,80,100 +#------------------------------- +[Move,SPIKECANNON,4] +Name = Spike Cannon hit 5 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,160 + SetY = 1,198 + SetX = 2,211 + SetY = 2,173 + SetX = 3,262 + SetY = 3,142 + SetX = 4,345 + SetY = 4,148 + SetX = 5,320 + SetY = 5,104 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,217 + SetY = 2,205 + SetX = 3,268 + SetY = 3,179 + SetX = 4,281 + SetY = 4,129 + SetX = 5,371 + SetY = 5,110 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,153 + SetY = 2,192 + SetX = 3,198 + SetY = 3,167 + SetX = 4,371 + SetY = 4,85 + SetOpacity = 4,50 + SetX = 5,332 + SetY = 5,91 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,364 + SetY = 3,98 + SetOpacity = 3,50 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,147 + SetY = 0,211 + SetVisible = 0,true + SetX = 1,217 + SetY = 1,179 + SetX = 2,294 + SetY = 2,135 + SetX = 3,358 + SetY = 3,110 + SetY = 4,104 + SetX = 5,364 + SetY = 5,123 + + Play = 0,Slash10,80,100 + Play = 2,Slash10,80,100 + Play = 4,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/SPIKES.txt b/PBS/Animations/Converted/Move/SPIKES.txt new file mode 100644 index 000000000..7e0b722e2 --- /dev/null +++ b/PBS/Animations/Converted/Move/SPIKES.txt @@ -0,0 +1,84 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SPIKES] +Name = SPIKES + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal2 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,128 + SetY = 3,236 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,153 + SetY = 4,154 + SetX = 5,185 + SetY = 5,110 + SetX = 6,128 + SetY = 6,230 + SetX = 7,147 + SetY = 7,148 + SetX = 8,371 + SetY = 8,66 + SetX = 9,409 + SetY = 9,129 + SetX = 10,307 + SetX = 12,358 + SetY = 12,110 + SetX = 13,307 + SetY = 13,129 + + Graphic = normal2 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,243 + SetY = 6,85 + SetZoomX = 6,50 + SetZoomY = 6,50 + SetX = 7,307 + SetY = 7,129 + SetX = 8,204 + SetY = 8,85 + SetX = 9,307 + SetY = 9,129 + SetX = 10,409 + + Graphic = normal2 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,211 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetX = 1,140 + SetY = 1,161 + SetX = 2,166 + SetY = 2,116 + SetX = 3,211 + SetY = 3,85 + SetX = 4,268 + SetY = 4,91 + SetX = 5,307 + SetY = 5,129 + SetX = 7,288 + SetY = 7,60 + SetX = 8,307 + SetY = 8,129 + SetY = 9,47 + SetX = 10,358 + SetY = 10,110 + SetX = 12,307 + SetY = 12,129 + SetX = 13,358 + SetY = 13,110 + + Play = 1,throw,80,100 + Play = 5,Sword1,80,100 + Play = 8,Sword1,80,100 + Play = 10,Sword1,80,100 diff --git a/PBS/Animations/Converted/Move/SPLASH.txt b/PBS/Animations/Converted/Move/SPLASH.txt new file mode 100644 index 000000000..b26799194 --- /dev/null +++ b/PBS/Animations/Converted/Move/SPLASH.txt @@ -0,0 +1,69 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SPLASH] +Name = SPLASH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison2 + Focus = User + SetVisible = 0,true + SetFlip = 1,true + SetX = 1,56 + SetY = 1,230 + SetX = 3,40 + SetY = 3,214 + SetX = 4,32 + SetY = 4,206 + SetX = 5,16 + SetY = 5,222 + SetFlip = 6,false + SetX = 6,240 + SetY = 6,206 + SetFlip = 7,true + SetX = 7,48 + SetX = 8,32 + SetY = 8,198 + SetX = 9,8 + + Graphic = poison2 + Focus = User + SetVisible = 0,true + SetX = 2,200 + SetY = 2,222 + SetX = 4,208 + SetX = 5,224 + SetY = 5,214 + SetFlip = 6,true + SetX = 6,64 + + Graphic = poison2 + Focus = User + SetX = 0,184 + SetY = 0,238 + SetVisible = 0,true + SetX = 1,192 + SetY = 1,230 + SetFlip = 2,true + SetX = 2,48 + SetY = 2,222 + SetFlip = 3,false + SetX = 3,208 + SetX = 4,224 + SetY = 4,230 + SetX = 5,232 + SetY = 5,238 + SetFlip = 6,true + SetX = 6,8 + SetFlip = 7,false + SetX = 7,248 + SetY = 7,198 + SetX = 8,264 + SetX = 9,272 + SetY = 9,206 + + Play = 0,Water2,40,70 diff --git a/PBS/Animations/Converted/Move/SPORE.txt b/PBS/Animations/Converted/Move/SPORE.txt new file mode 100644 index 000000000..1c43bba5a --- /dev/null +++ b/PBS/Animations/Converted/Move/SPORE.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SPORE] +Name = SPORE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Special5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sand,80,100 diff --git a/PBS/Animations/Converted/Move/STEALTHROCK.txt b/PBS/Animations/Converted/Move/STEALTHROCK.txt new file mode 100644 index 000000000..7182c4ef5 --- /dev/null +++ b/PBS/Animations/Converted/Move/STEALTHROCK.txt @@ -0,0 +1,479 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,STEALTHROCK] +Name = STEALTHROCK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Rock Tomb + Focus = Screen + SetX = 0,128 + SetY = 0,224 + SetVisible = 0,true + SetX = 1,150 + SetY = 1,192 + SetX = 2,180 + SetY = 2,158 + SetX = 3,208 + SetY = 3,124 + SetX = 4,248 + SetY = 4,104 + SetX = 5,290 + SetY = 5,96 + SetX = 6,336 + SetY = 6,110 + SetX = 7,370 + SetY = 7,136 + SetX = 8,384 + SetY = 8,166 + SetX = 9,290 + SetY = 9,96 + SetX = 10,336 + SetY = 10,110 + SetX = 11,370 + SetY = 11,136 + SetX = 12,384 + SetY = 12,166 + SetX = 13,290 + SetY = 13,96 + SetX = 14,336 + SetY = 14,110 + SetX = 15,370 + SetY = 15,136 + SetX = 16,384 + SetY = 16,166 + SetX = 17,290 + SetY = 17,96 + SetX = 18,336 + SetY = 18,110 + SetX = 19,370 + SetY = 19,136 + SetX = 20,384 + SetY = 20,166 + SetX = 21,323 + SetY = 21,169 + SetOpacity = 22,192 + SetOpacity = 23,128 + SetOpacity = 24,64 + SetX = 25,288 + SetY = 25,181 + SetOpacity = 25,255 + SetOpacity = 26,192 + SetOpacity = 27,128 + SetOpacity = 28,64 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 4,128 + SetY = 4,224 + SetX = 5,150 + SetY = 5,192 + SetX = 6,180 + SetY = 6,158 + SetX = 7,208 + SetY = 7,124 + SetX = 8,248 + SetY = 8,104 + SetX = 9,150 + SetY = 9,192 + SetX = 10,180 + SetY = 10,158 + SetX = 11,208 + SetY = 11,124 + SetX = 12,248 + SetY = 12,104 + SetX = 13,150 + SetY = 13,192 + SetX = 14,180 + SetY = 14,158 + SetX = 15,208 + SetY = 15,124 + SetX = 16,248 + SetY = 16,104 + SetX = 17,352 + SetY = 17,186 + SetX = 18,475 + SetY = 18,175 + SetOpacity = 18,192 + SetX = 19,352 + SetY = 19,186 + SetOpacity = 19,128 + SetX = 20,475 + SetY = 20,175 + SetOpacity = 20,64 + SetX = 21,395 + SetY = 21,190 + SetOpacity = 21,255 + SetOpacity = 22,192 + SetOpacity = 23,128 + SetOpacity = 24,64 + SetX = 25,444 + SetY = 25,176 + SetOpacity = 25,255 + SetOpacity = 26,192 + SetOpacity = 27,128 + SetOpacity = 28,64 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 7,431 + SetY = 7,188 + SetOpacity = 7,128 + SetX = 8,128 + SetY = 8,224 + SetOpacity = 8,255 + SetX = 9,431 + SetY = 9,188 + SetX = 10,295 + SetY = 10,174 + SetX = 12,128 + SetY = 12,224 + SetX = 13,295 + SetY = 13,174 + SetOpacity = 14,192 + SetOpacity = 15,128 + SetOpacity = 16,64 + SetX = 17,475 + SetY = 17,175 + SetOpacity = 17,255 + SetX = 18,352 + SetY = 18,186 + SetOpacity = 18,192 + SetX = 19,475 + SetY = 19,175 + SetOpacity = 19,128 + SetX = 20,352 + SetY = 20,186 + SetOpacity = 20,64 + SetX = 21,288 + SetY = 21,181 + SetOpacity = 21,255 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 8,295 + SetY = 8,174 + SetOpacity = 8,192 + SetOpacity = 9,255 + SetX = 10,431 + SetY = 10,188 + SetOpacity = 14,192 + SetOpacity = 15,128 + SetOpacity = 16,64 + SetX = 17,323 + SetY = 17,169 + SetOpacity = 17,255 + SetX = 21,444 + SetY = 21,176 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 7,295 + SetY = 7,174 + SetOpacity = 7,128 + SetX = 8,431 + SetY = 8,188 + SetOpacity = 8,192 + SetX = 11,352 + SetY = 11,186 + SetOpacity = 11,128 + SetX = 12,295 + SetY = 12,174 + SetOpacity = 12,255 + SetX = 13,352 + SetY = 13,186 + SetX = 16,475 + SetY = 16,175 + SetX = 17,395 + SetY = 17,190 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 11,475 + SetY = 11,175 + SetOpacity = 11,128 + SetOpacity = 12,192 + SetOpacity = 13,255 + SetX = 16,352 + SetY = 16,186 + SetX = 19,444 + SetY = 19,176 + SetOpacity = 19,128 + SetX = 20,288 + SetY = 20,181 + SetOpacity = 20,192 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 12,352 + SetY = 12,186 + SetOpacity = 12,192 + SetX = 15,323 + SetY = 15,169 + SetOpacity = 15,128 + SetOpacity = 16,192 + SetX = 19,288 + SetY = 19,181 + SetOpacity = 19,128 + SetX = 20,444 + SetY = 20,176 + SetOpacity = 20,192 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 15,395 + SetY = 15,190 + SetOpacity = 15,128 + SetOpacity = 16,192 + + Play = 0,Slam,80,100 +#------------------------------- +[OppMove,STEALTHROCK] +Name = STEALTHROCK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Rock Tomb + Focus = Screen + SetX = 0,376 + SetY = 0,84 + SetVisible = 0,true + SetX = 1,332 + SetY = 1,72 + SetX = 2,294 + SetY = 2,62 + SetX = 3,250 + SetY = 3,74 + SetX = 4,214 + SetY = 4,104 + SetX = 5,178 + SetY = 5,142 + SetX = 6,152 + SetY = 6,178 + SetX = 7,128 + SetY = 7,224 + SetX = 8,114 + SetY = 8,274 + SetX = 9,178 + SetY = 9,142 + SetX = 10,152 + SetY = 10,178 + SetX = 11,128 + SetY = 11,224 + SetX = 12,114 + SetY = 12,274 + SetX = 13,178 + SetY = 13,142 + SetX = 14,152 + SetY = 14,178 + SetX = 15,128 + SetY = 15,224 + SetX = 16,114 + SetY = 16,274 + SetX = 17,178 + SetY = 17,142 + SetX = 18,152 + SetY = 18,178 + SetX = 19,128 + SetY = 19,224 + SetX = 20,114 + SetY = 20,274 + SetX = 21,99 + SetY = 21,265 + SetOpacity = 22,192 + SetOpacity = 23,128 + SetOpacity = 24,64 + SetX = 25,64 + SetY = 25,277 + SetOpacity = 25,255 + SetOpacity = 26,192 + SetOpacity = 27,128 + SetOpacity = 28,64 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 4,376 + SetY = 4,84 + SetX = 5,332 + SetY = 5,72 + SetX = 6,294 + SetY = 6,62 + SetX = 7,250 + SetY = 7,74 + SetX = 8,214 + SetY = 8,104 + SetX = 9,332 + SetY = 9,72 + SetX = 10,294 + SetY = 10,62 + SetX = 11,250 + SetY = 11,74 + SetX = 12,214 + SetY = 12,104 + SetX = 13,332 + SetY = 13,72 + SetX = 14,294 + SetY = 14,62 + SetX = 15,250 + SetY = 15,74 + SetX = 16,214 + SetY = 16,104 + SetX = 17,128 + SetY = 17,282 + SetX = 18,251 + SetY = 18,271 + SetOpacity = 18,192 + SetX = 19,128 + SetY = 19,282 + SetOpacity = 19,128 + SetX = 20,251 + SetY = 20,271 + SetOpacity = 20,64 + SetX = 21,171 + SetY = 21,286 + SetOpacity = 21,255 + SetOpacity = 22,192 + SetOpacity = 23,128 + SetOpacity = 24,64 + SetX = 25,220 + SetY = 25,272 + SetOpacity = 25,255 + SetOpacity = 26,192 + SetOpacity = 27,128 + SetOpacity = 28,64 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 7,207 + SetY = 7,284 + SetOpacity = 7,128 + SetX = 8,376 + SetY = 8,84 + SetOpacity = 8,255 + SetX = 9,207 + SetY = 9,284 + SetX = 10,71 + SetY = 10,270 + SetX = 12,376 + SetY = 12,84 + SetX = 13,71 + SetY = 13,270 + SetOpacity = 14,192 + SetOpacity = 15,128 + SetOpacity = 16,64 + SetX = 17,251 + SetY = 17,271 + SetOpacity = 17,255 + SetX = 18,128 + SetY = 18,282 + SetOpacity = 18,192 + SetX = 19,251 + SetY = 19,271 + SetOpacity = 19,128 + SetX = 20,128 + SetY = 20,282 + SetOpacity = 20,64 + SetX = 21,64 + SetY = 21,277 + SetOpacity = 21,255 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 8,71 + SetY = 8,270 + SetOpacity = 8,192 + SetOpacity = 9,255 + SetX = 10,207 + SetY = 10,284 + SetOpacity = 14,192 + SetOpacity = 15,128 + SetOpacity = 16,64 + SetX = 17,99 + SetY = 17,265 + SetOpacity = 17,255 + SetX = 21,220 + SetY = 21,272 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 7,71 + SetY = 7,270 + SetOpacity = 7,128 + SetX = 8,207 + SetY = 8,284 + SetOpacity = 8,192 + SetX = 11,128 + SetY = 11,282 + SetOpacity = 11,128 + SetX = 12,71 + SetY = 12,270 + SetOpacity = 12,255 + SetX = 13,128 + SetY = 13,282 + SetX = 16,251 + SetY = 16,271 + SetX = 17,171 + SetY = 17,286 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 11,251 + SetY = 11,271 + SetOpacity = 11,128 + SetOpacity = 12,192 + SetOpacity = 13,255 + SetX = 16,128 + SetY = 16,282 + SetX = 19,220 + SetY = 19,272 + SetOpacity = 19,128 + SetX = 20,64 + SetY = 20,277 + SetOpacity = 20,192 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 12,128 + SetY = 12,282 + SetOpacity = 12,192 + SetX = 15,99 + SetY = 15,265 + SetOpacity = 15,128 + SetOpacity = 16,192 + SetX = 19,64 + SetY = 19,277 + SetOpacity = 19,128 + SetX = 20,220 + SetY = 20,272 + SetOpacity = 20,192 + + Graphic = Rock Tomb + Focus = Screen + SetVisible = 0,true + SetX = 15,171 + SetY = 15,286 + SetOpacity = 15,128 + SetOpacity = 16,192 + + Play = 0,Slam,80,100 diff --git a/PBS/Animations/Converted/Move/STOMP.txt b/PBS/Animations/Converted/Move/STOMP.txt new file mode 100644 index 000000000..1eae1b62a --- /dev/null +++ b/PBS/Animations/Converted/Move/STOMP.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,STOMP] +Name = STOMP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = normal1 + Focus = Target + SetX = 0,384 + SetY = 0,-18 + SetVisible = 0,true + SetY = 1,22 + SetY = 2,54 + SetY = 3,70 + SetY = 4,78 + + Play = 2,Blow6,80,100 diff --git a/PBS/Animations/Converted/Move/STRINGSHOT.txt b/PBS/Animations/Converted/Move/STRINGSHOT.txt new file mode 100644 index 000000000..76b6e013c --- /dev/null +++ b/PBS/Animations/Converted/Move/STRINGSHOT.txt @@ -0,0 +1,121 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,STRINGSHOT] +Name = STRINGSHOT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = water3 + Focus = Target + SetVisible = 0,true + SetX = 1,128 + SetY = 1,236 + SetZoomX = 1,25 + SetZoomY = 1,25 + SetX = 2,211 + SetY = 2,179 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetX = 3,281 + SetY = 3,142 + SetZoomX = 3,75 + SetZoomY = 3,75 + SetX = 4,382 + SetY = 4,135 + SetZoomX = 4,100 + SetZoomY = 4,100 + SetZoomX = 5,90 + SetZoomY = 5,90 + SetX = 6,382 + SetY = 6,135 + SetZoomX = 7,95 + SetZoomY = 7,95 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetZoomX = 10,95 + SetZoomY = 10,95 + SetZoomX = 11,90 + SetZoomY = 11,90 + SetZoomX = 13,95 + SetZoomY = 13,95 + SetZoomX = 14,100 + SetZoomY = 14,100 + SetOpacity = 15,100 + + Graphic = water3 + Focus = Target + SetVisible = 0,true + SetX = 2,128 + SetY = 2,236 + SetZoomX = 2,25 + SetZoomY = 2,25 + SetX = 3,204 + SetY = 3,186 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetX = 4,281 + SetY = 4,161 + SetZoomX = 4,75 + SetZoomY = 4,75 + SetX = 5,382 + SetZoomX = 5,100 + SetZoomY = 5,100 + SetZoomX = 6,96 + SetZoomY = 6,96 + SetZoomX = 7,100 + SetZoomY = 7,100 + SetZoomX = 10,95 + SetZoomY = 10,95 + SetZoomX = 11,90 + SetZoomY = 11,90 + SetZoomX = 13,95 + SetZoomY = 13,95 + SetZoomX = 14,100 + SetZoomY = 14,100 + SetOpacity = 15,100 + + Graphic = water3 + Focus = Target + SetX = 0,128 + SetY = 0,236 + SetZoomX = 0,25 + SetZoomY = 0,25 + SetVisible = 0,true + SetX = 1,211 + SetY = 1,179 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetX = 2,294 + SetY = 2,129 + SetZoomX = 2,75 + SetZoomY = 2,75 + SetX = 3,382 + SetY = 3,110 + SetZoomX = 3,100 + SetZoomY = 3,100 + SetZoomX = 4,95 + SetZoomY = 4,95 + SetZoomX = 5,90 + SetZoomY = 5,90 + SetX = 6,382 + SetY = 6,110 + SetZoomX = 7,95 + SetZoomY = 7,95 + SetZoomX = 8,100 + SetZoomY = 8,100 + SetZoomX = 10,95 + SetZoomY = 10,95 + SetZoomX = 11,90 + SetZoomY = 11,90 + SetZoomX = 13,95 + SetZoomY = 13,95 + SetZoomX = 14,100 + SetZoomY = 14,100 + SetOpacity = 15,100 + + Play = 0,throw,80,100 + Play = 0,Battle1,80,100 diff --git a/PBS/Animations/Converted/Move/STRUGGLE.txt b/PBS/Animations/Converted/Move/STRUGGLE.txt new file mode 100644 index 000000000..905dc6092 --- /dev/null +++ b/PBS/Animations/Converted/Move/STRUGGLE.txt @@ -0,0 +1,55 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,STRUGGLE] +Name = STRUGGLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = User + SetX = 0,168 + SetY = 0,230 + SetVisible = 0,true + SetX = 1,176 + SetY = 1,238 + SetY = 2,222 + SetFlip = 3,true + SetY = 3,238 + SetX = 4,184 + SetY = 4,222 + SetFlip = 5,false + SetX = 5,176 + SetY = 5,230 + SetY = 6,214 + SetX = 7,168 + SetY = 7,230 + SetX = 8,80 + SetY = 8,206 + SetX = 9,72 + SetY = 9,238 + + Graphic = Struggle + Focus = User + SetX = 0,88 + SetY = 0,230 + SetVisible = 0,true + SetY = 1,246 + SetX = 2,96 + SetY = 2,230 + SetFlip = 3,true + SetY = 3,222 + SetX = 4,88 + SetY = 4,238 + SetFlip = 5,false + SetY = 5,222 + SetX = 6,96 + SetY = 6,206 + SetX = 7,80 + SetY = 7,230 + SetX = 8,168 + SetY = 8,214 + SetY = 9,230 diff --git a/PBS/Animations/Converted/Move/STUNSPORE.txt b/PBS/Animations/Converted/Move/STUNSPORE.txt new file mode 100644 index 000000000..711a09d1a --- /dev/null +++ b/PBS/Animations/Converted/Move/STUNSPORE.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,STUNSPORE] +Name = STUNSPORE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Special5 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Sand,80,100 diff --git a/PBS/Animations/Converted/Move/SUNNYDAY.txt b/PBS/Animations/Converted/Move/SUNNYDAY.txt new file mode 100644 index 000000000..8638ce4f2 --- /dev/null +++ b/PBS/Animations/Converted/Move/SUNNYDAY.txt @@ -0,0 +1,41 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SUNNYDAY] +Name = SUNNYDAY + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = weather + Focus = Screen + SetX = 0,64 + SetY = 0,64 + SetVisible = 0,true + SetOpacity = 0,64 + SetX = 1,72 + SetY = 1,72 + SetOpacity = 1,128 + SetX = 2,80 + SetY = 2,80 + SetOpacity = 2,192 + SetX = 3,88 + SetY = 3,88 + SetOpacity = 3,224 + SetX = 4,94 + SetY = 4,94 + SetOpacity = 4,255 + SetX = 12,88 + SetY = 12,88 + SetOpacity = 12,224 + SetX = 13,80 + SetY = 13,80 + SetOpacity = 13,192 + SetX = 14,72 + SetY = 14,72 + SetOpacity = 14,128 + SetX = 15,64 + SetY = 15,64 + SetOpacity = 15,64 diff --git a/PBS/Animations/Converted/Move/SUPERSONIC.txt b/PBS/Animations/Converted/Move/SUPERSONIC.txt new file mode 100644 index 000000000..3478e0c88 --- /dev/null +++ b/PBS/Animations/Converted/Move/SUPERSONIC.txt @@ -0,0 +1,103 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SUPERSONIC] +Name = SUPERSONIC + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,147 + SetY = 2,224 + SetAngle = 2,20 + SetX = 3,166 + SetY = 3,205 + SetZoomX = 3,120 + SetZoomY = 3,120 + SetX = 4,204 + SetY = 4,179 + SetZoomX = 4,130 + SetZoomY = 4,130 + SetX = 5,224 + SetY = 5,173 + SetZoomX = 5,120 + SetZoomY = 5,120 + SetX = 6,204 + SetY = 6,186 + SetX = 7,236 + SetY = 7,161 + SetZoomX = 7,130 + SetZoomY = 7,130 + SetX = 8,243 + SetY = 8,167 + SetZoomX = 8,120 + SetZoomY = 8,120 + SetX = 9,230 + SetX = 10,236 + SetY = 10,179 + SetZoomX = 10,130 + SetZoomY = 10,130 + + Graphic = Struggle + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,160 + SetY = 4,211 + SetAngle = 4,20 + SetX = 5,172 + SetY = 5,205 + SetX = 7,185 + SetY = 7,192 + SetX = 8,192 + SetY = 8,198 + + Graphic = Struggle + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetAngle = 1,20 + SetX = 2,172 + SetY = 2,205 + SetZoomX = 2,120 + SetZoomY = 2,120 + SetX = 3,211 + SetY = 3,179 + SetZoomX = 3,130 + SetZoomY = 3,130 + SetX = 4,256 + SetY = 4,154 + SetZoomX = 4,150 + SetZoomY = 4,150 + SetX = 5,281 + SetY = 5,142 + SetX = 6,256 + SetY = 6,154 + SetZoomX = 6,130 + SetZoomY = 6,130 + SetX = 7,294 + SetY = 7,135 + SetZoomX = 7,150 + SetZoomY = 7,150 + SetX = 8,300 + SetX = 9,294 + SetZoomX = 9,130 + SetZoomY = 9,130 + SetY = 10,142 + SetZoomX = 10,150 + SetZoomY = 10,150 + SetX = 11,275 + SetY = 11,161 + SetX = 12,358 + SetY = 12,110 + SetZoomX = 12,100 + SetZoomY = 12,100 + SetAngle = 12,0 + SetOpacity = 12,100 + + Play = 0,Twine,80,100 diff --git a/PBS/Animations/Converted/Move/SWAGGER.txt b/PBS/Animations/Converted/Move/SWAGGER.txt new file mode 100644 index 000000000..e68e8a1e9 --- /dev/null +++ b/PBS/Animations/Converted/Move/SWAGGER.txt @@ -0,0 +1,43 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SWAGGER] +Name = SWAGGER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = mixed status + Focus = Target + SetVisible = 0,true + SetX = 4,405 + SetY = 4,40 + SetX = 5,402 + SetY = 5,38 + SetX = 6,372 + SetY = 6,68 + SetX = 7,374 + SetY = 7,72 + SetX = 8,433 + SetY = 8,66 + SetX = 9,427 + SetY = 9,63 + SetX = 10,361 + SetY = 10,46 + SetX = 11,362 + SetX = 12,407 + SetY = 12,59 + SetX = 13,405 + SetY = 13,55 + SetX = 14,367 + SetY = 14,69 + SetX = 15,374 + SetY = 15,72 + SetX = 16,409 + SetY = 16,65 + SetX = 17,411 + SetY = 17,61 + + Play = 0,Swagger,100,100 diff --git a/PBS/Animations/Converted/Move/SWEETKISS.txt b/PBS/Animations/Converted/Move/SWEETKISS.txt new file mode 100644 index 000000000..febbb9392 --- /dev/null +++ b/PBS/Animations/Converted/Move/SWEETKISS.txt @@ -0,0 +1,75 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SWEETKISS] +Name = SWEETKISS + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = electric2 + Focus = Target + SetVisible = 0,true + SetX = 8,368 + SetY = 8,54 + SetX = 9,376 + SetY = 9,46 + SetX = 10,384 + SetY = 10,38 + SetY = 11,30 + SetFlip = 12,true + SetX = 12,296 + SetY = 12,46 + SetZoomX = 12,75 + SetZoomY = 12,75 + + Graphic = electric2 + Focus = Target + SetX = 0,440 + SetY = 0,134 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetOpacity = 0,100 + SetX = 1,416 + SetY = 1,118 + SetZoomX = 1,75 + SetZoomY = 1,75 + SetOpacity = 1,200 + SetX = 2,384 + SetY = 2,110 + SetOpacity = 2,255 + SetX = 3,368 + SetY = 3,102 + SetX = 4,352 + SetY = 4,86 + SetX = 5,328 + SetY = 5,62 + SetX = 6,312 + SetY = 6,54 + SetX = 7,304 + SetFlip = 8,true + SetX = 8,296 + SetY = 8,46 + SetFlip = 12,false + SetX = 12,376 + SetY = 12,22 + SetZoomX = 12,100 + SetZoomY = 12,100 + SetX = 13,368 + SetY = 13,14 + SetY = 14,6 + SetX = 15,376 + SetY = 15,-2 + SetX = 16,384 + SetY = 16,-10 + SetY = 17,-18 + SetFlip = 18,true + SetX = 18,296 + SetY = 18,46 + SetZoomX = 18,75 + SetZoomY = 18,75 + + Play = 4,Saint1,80,100 diff --git a/PBS/Animations/Converted/Move/SWIFT.txt b/PBS/Animations/Converted/Move/SWIFT.txt new file mode 100644 index 000000000..733ef2834 --- /dev/null +++ b/PBS/Animations/Converted/Move/SWIFT.txt @@ -0,0 +1,117 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SWIFT] +Name = SWIFT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,236 + SetVisible = 0,true + SetX = 1,179 + SetY = 1,211 + SetX = 2,217 + SetY = 2,186 + SetX = 3,288 + SetY = 3,142 + SetX = 4,358 + SetY = 4,110 + SetX = 5,256 + SetY = 5,116 + SetX = 6,288 + SetY = 6,98 + SetX = 7,352 + SetY = 7,79 + SetX = 8,288 + SetY = 8,91 + SetX = 9,307 + SetY = 9,135 + SetX = 10,358 + SetY = 10,104 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,128 + SetY = 1,236 + SetX = 2,172 + SetY = 2,211 + SetX = 3,236 + SetY = 3,173 + SetX = 4,288 + SetY = 4,135 + SetX = 5,339 + SetY = 5,110 + SetX = 6,300 + SetY = 6,135 + SetX = 7,294 + SetY = 7,85 + SetX = 8,332 + SetY = 8,110 + SetX = 9,262 + SetY = 9,148 + SetX = 10,313 + SetY = 10,123 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,128 + SetY = 2,217 + SetX = 3,179 + SetY = 3,179 + SetX = 4,224 + SetY = 4,148 + SetX = 5,256 + SetY = 5,186 + SetX = 6,236 + SetY = 6,135 + SetX = 7,288 + SetY = 7,142 + SetX = 8,262 + SetY = 8,167 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,192 + SetY = 3,224 + SetX = 4,224 + SetY = 4,205 + SetX = 5,172 + SetY = 5,161 + SetX = 6,230 + SetY = 6,173 + SetX = 7,217 + SetY = 7,186 + SetX = 8,204 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,115 + SetY = 3,205 + SetX = 4,147 + SetY = 4,179 + SetX = 5,179 + SetY = 5,205 + SetX = 6,185 + SetY = 6,211 + SetX = 7,166 + + Graphic = 007-Weapon02 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,128 + SetY = 4,242 + + Play = 0,Saint3,80,100 + Play = 2,Saint3,80,100 + Play = 5,Saint3,80,100 + Play = 8,Saint3,80,100 diff --git a/PBS/Animations/Converted/Move/SWORDSDANCE.txt b/PBS/Animations/Converted/Move/SWORDSDANCE.txt new file mode 100644 index 000000000..4b2c60a32 --- /dev/null +++ b/PBS/Animations/Converted/Move/SWORDSDANCE.txt @@ -0,0 +1,102 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,SWORDSDANCE] +Name = SWORDSDANCE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = Target + SetX = 0,436 + SetY = 0,219 + SetVisible = 0,true + SetX = 1,434 + SetY = 1,177 + SetX = 2,348 + SetY = 2,150 + SetX = 3,350 + SetY = 3,81 + SetX = 4,435 + SetY = 4,32 + SetX = 5,341 + SetY = 5,107 + SetX = 6,369 + SetY = 6,127 + SetX = 7,403 + SetY = 7,81 + SetX = 8,383 + SetY = 8,117 + SetX = 9,317 + SetY = 9,129 + SetX = 10,331 + SetY = 10,98 + SetX = 11,332 + SetY = 11,45 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 1,393 + SetY = 1,4 + SetX = 2,435 + SetY = 2,155 + SetX = 3,427 + SetY = 3,75 + SetX = 4,396 + SetY = 4,162 + SetX = 5,382 + SetY = 5,103 + SetX = 6,393 + SetY = 6,113 + SetX = 8,361 + SetY = 8,123 + SetX = 9,435 + SetY = 9,106 + SetX = 10,304 + SetY = 10,82 + SetY = 11,40 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,458 + SetY = 4,119 + + Graphic = fly copy + Focus = Target + SetVisible = 0,true + SetX = 4,303 + SetY = 4,111 + + Graphic = fly copy + Focus = Target + SetX = 0,343 + SetY = 0,215 + SetVisible = 0,true + SetX = 1,341 + SetY = 1,177 + SetX = 2,391 + SetY = 2,58 + SetX = 3,384 + SetY = 3,133 + SetX = 4,362 + SetY = 4,35 + SetX = 5,424 + SetY = 5,108 + SetX = 6,397 + SetY = 6,114 + SetX = 7,385 + SetY = 7,123 + SetX = 8,417 + SetY = 8,103 + SetX = 9,351 + SetY = 9,120 + SetX = 10,461 + SetY = 10,53 + SetX = 11,465 + + Play = 0,Swords Dance,90,100 diff --git a/PBS/Animations/Converted/Move/TACKLE.txt b/PBS/Animations/Converted/Move/TACKLE.txt new file mode 100644 index 000000000..a11171b34 --- /dev/null +++ b/PBS/Animations/Converted/Move/TACKLE.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TACKLE] +Name = TACKLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Tackle_B + Focus = Target + SetVisible = 0,true + SetX = 2,384 + SetY = 2,99 + SetOpacity = 2,150 + SetOpacity = 3,255 + SetOpacity = 8,150 + SetOpacity = 9,100 + + Play = 0,Blow1,80,100 diff --git a/PBS/Animations/Converted/Move/TAILGLOW.txt b/PBS/Animations/Converted/Move/TAILGLOW.txt new file mode 100644 index 000000000..279ece532 --- /dev/null +++ b/PBS/Animations/Converted/Move/TAILGLOW.txt @@ -0,0 +1,39 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TAILGLOW] +Name = TAILGLOW + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Light1 + Focus = Target + SetX = 0,384 + SetY = 0,94 + SetVisible = 0,true + SetOpacity = 0,50 + SetOpacity = 1,255 + SetZoomX = 7,110 + SetZoomY = 7,110 + SetZoomX = 8,115 + SetZoomY = 8,115 + SetZoomX = 9,110 + SetZoomY = 9,110 + SetZoomX = 10,100 + SetZoomY = 10,100 + SetZoomX = 11,110 + SetZoomY = 11,110 + SetZoomX = 12,115 + SetZoomY = 12,115 + SetZoomX = 13,110 + SetZoomY = 13,110 + SetZoomX = 14,100 + SetZoomY = 14,100 + SetZoomX = 15,110 + SetZoomY = 15,110 + SetOpacity = 15,100 + + Play = 0,Saint4,80,100 diff --git a/PBS/Animations/Converted/Move/TAILWHIP.txt b/PBS/Animations/Converted/Move/TAILWHIP.txt new file mode 100644 index 000000000..0a30e16aa --- /dev/null +++ b/PBS/Animations/Converted/Move/TAILWHIP.txt @@ -0,0 +1,36 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TAILWHIP] +Name = TAILWHIP + + SetX = 0,128 + SetY = 0,224 + SetX = 1,149 + SetY = 1,227 + SetX = 2,168 + SetY = 2,235 + SetX = 3,143 + SetY = 3,238 + SetX = 4,107 + SetX = 5,84 + SetY = 5,230 + SetX = 6,106 + SetY = 6,228 + SetX = 7,128 + SetY = 7,224 + SetX = 9,149 + SetY = 9,227 + SetX = 10,168 + SetY = 10,235 + SetX = 11,143 + SetY = 11,238 + SetX = 12,107 + SetX = 13,84 + SetY = 13,230 + SetX = 14,106 + SetY = 14,228 + SetX = 15,128 + SetY = 15,224 + + SetX = 0,384 + SetY = 0,96 diff --git a/PBS/Animations/Converted/Move/TELEPORT.txt b/PBS/Animations/Converted/Move/TELEPORT.txt new file mode 100644 index 000000000..02d0abd95 --- /dev/null +++ b/PBS/Animations/Converted/Move/TELEPORT.txt @@ -0,0 +1,63 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TELEPORT] +Name = TELEPORT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = ! + Focus = User + SetX = 0,123 + SetY = 0,374 + SetVisible = 0,true + SetX = 1,114 + SetY = 1,338 + SetX = 2,119 + SetY = 2,324 + SetX = 3,112 + SetY = 3,284 + SetX = 4,116 + SetY = 4,256 + SetX = 5,123 + SetY = 5,216 + SetX = 6,124 + SetY = 6,184 + + Graphic = ! + Focus = User + SetVisible = 0,true + SetX = 1,145 + SetY = 1,363 + SetX = 2,148 + SetY = 2,300 + SetX = 3,133 + SetY = 3,255 + SetX = 4,144 + SetY = 4,214 + SetX = 5,146 + SetY = 5,203 + SetX = 6,142 + SetY = 6,135 + + Graphic = ! + Focus = User + SetX = 0,74 + SetY = 0,358 + SetVisible = 0,true + SetX = 1,87 + SetY = 1,304 + SetX = 2,93 + SetY = 2,305 + SetX = 3,91 + SetY = 3,268 + SetX = 4,94 + SetY = 4,230 + SetY = 5,182 + SetX = 6,104 + SetY = 6,153 + + Play = 0,Trump Card,80,100 diff --git a/PBS/Animations/Converted/Move/THUNDER.txt b/PBS/Animations/Converted/Move/THUNDER.txt new file mode 100644 index 000000000..deafb82c0 --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDER.txt @@ -0,0 +1,66 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDER] +Name = THUNDER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Trovao + Focus = Target + SetVisible = 0,true + SetFlip = 1,true + SetX = 1,376 + SetY = 1,86 + SetFlip = 2,false + SetY = 2,46 + SetY = 3,78 + SetX = 4,392 + SetY = 4,54 + SetX = 5,368 + SetY = 5,86 + SetX = 9,376 + SetY = 9,102 + SetOpacity = 9,100 + + Graphic = Trovao + Focus = Target + SetVisible = 0,true + SetX = 2,400 + SetY = 2,150 + SetX = 3,376 + SetX = 4,384 + SetY = 4,110 + SetX = 5,376 + SetY = 5,118 + + Graphic = Trovao + Focus = Target + SetFlip = 0,true + SetX = 0,392 + SetY = 0,-58 + SetVisible = 0,true + SetX = 1,352 + SetFlip = 2,false + SetX = 2,376 + SetY = 2,-66 + SetX = 3,400 + SetY = 3,-34 + SetX = 4,384 + SetY = 4,-42 + SetX = 5,392 + SetY = 5,-34 + SetX = 6,376 + SetY = 6,102 + SetFlip = 9,true + SetFlip = 10,false + SetOpacity = 10,100 + SetFlip = 11,true + SetZoomX = 11,150 + SetZoomY = 11,150 + SetOpacity = 11,20 + + Play = 0,Thunder1,80,100 diff --git a/PBS/Animations/Converted/Move/THUNDERBOLT.txt b/PBS/Animations/Converted/Move/THUNDERBOLT.txt new file mode 100644 index 000000000..c57c3c0eb --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDERBOLT.txt @@ -0,0 +1,40 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDERBOLT] +Name = THUNDERBOLT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 017-Thunder01 + Focus = Target + SetVisible = 0,true + SetX = 5,384 + SetY = 5,94 + SetY = 6,54 + SetOpacity = 6,100 + + Graphic = 017-Thunder01 + Focus = Target + SetX = 0,384 + SetY = 0,54 + SetVisible = 0,true + SetFlip = 4,true + SetOpacity = 4,200 + SetOpacity = 5,100 + SetFlip = 6,false + SetY = 6,94 + SetOpacity = 6,255 + SetFlip = 7,true + SetFlip = 9,false + SetZoomX = 9,120 + SetZoomY = 9,120 + SetOpacity = 9,100 + SetOpacity = 10,50 + SetFlip = 11,true + SetOpacity = 11,20 + + Play = 0,Thunder9,80,100 diff --git a/PBS/Animations/Converted/Move/THUNDERFANG.txt b/PBS/Animations/Converted/Move/THUNDERFANG.txt new file mode 100644 index 000000000..2cfdef107 --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDERFANG.txt @@ -0,0 +1,71 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDERFANG] +Name = THUNDERFANG + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 6,327 + SetY = 6,73 + SetX = 7,326 + SetX = 8,327 + SetY = 8,70 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 7,471 + SetY = 7,67 + SetX = 8,314 + SetY = 8,124 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,481 + SetY = 8,124 + + Graphic = element fangs + Focus = Target + SetVisible = 0,true + SetX = 8,471 + SetY = 8,60 + + Graphic = element fangs + Focus = Target + SetX = 0,391 + SetY = 0,96 + SetVisible = 0,true + SetY = 1,90 + SetX = 2,386 + SetY = 2,92 + SetX = 3,390 + SetY = 3,98 + SetX = 4,386 + SetY = 4,95 + SetX = 5,392 + SetY = 5,101 + SetX = 6,386 + SetY = 6,100 + SetX = 7,389 + SetY = 7,99 + SetX = 8,388 + SetY = 8,92 + SetX = 9,386 + SetY = 9,100 + SetX = 10,394 + SetY = 10,95 + SetX = 11,387 + SetY = 11,94 + SetX = 12,384 + SetY = 12,97 + + Play = 6,Super Fang,100,100 + Play = 7,Uproar,83,137 diff --git a/PBS/Animations/Converted/Move/THUNDERPUNCH.txt b/PBS/Animations/Converted/Move/THUNDERPUNCH.txt new file mode 100644 index 000000000..e75c78fe3 --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDERPUNCH.txt @@ -0,0 +1,111 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDERPUNCH] +Name = THUNDERPUNCH + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = punches + Focus = Target + SetX = 0,385 + SetY = 0,97 + SetVisible = 0,true + SetX = 1,384 + SetY = 1,93 + SetX = 2,395 + SetY = 2,76 + SetX = 3,429 + SetY = 3,54 + SetX = 4,381 + SetY = 4,102 + SetX = 5,363 + SetY = 5,104 + SetX = 6,474 + SetY = 6,46 + SetX = 7,410 + SetY = 7,11 + SetX = 8,343 + SetY = 8,142 + SetX = 9,487 + SetY = 9,1 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,412 + SetY = 2,82 + SetX = 3,378 + SetY = 3,108 + SetX = 4,410 + SetY = 4,105 + SetX = 5,390 + SetY = 5,126 + SetX = 6,440 + SetY = 6,16 + SetX = 7,478 + SetY = 7,55 + SetX = 8,450 + SetY = 8,47 + SetX = 9,305 + SetY = 9,184 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 2,385 + SetY = 2,92 + SetX = 3,386 + SetY = 3,98 + SetX = 4,429 + SetY = 4,67 + SetX = 5,391 + SetY = 5,58 + SetX = 6,311 + SetY = 6,144 + SetX = 7,317 + SetY = 7,138 + SetX = 8,386 + SetY = 8,94 + SetX = 9,383 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 4,387 + SetY = 4,70 + SetX = 5,443 + SetY = 5,55 + SetX = 6,357 + SetY = 6,171 + SetX = 7,358 + SetY = 7,163 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 4,389 + SetY = 4,99 + SetX = 5,385 + SetY = 5,93 + SetY = 6,97 + SetX = 7,424 + SetY = 7,60 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,351 + SetY = 7,135 + + Graphic = punches + Focus = Target + SetVisible = 0,true + SetX = 7,384 + SetY = 7,97 + + Play = 0,Mega Punch,100,89 + Play = 0,Work Up,100,111 diff --git a/PBS/Animations/Converted/Move/THUNDERSHOCK.txt b/PBS/Animations/Converted/Move/THUNDERSHOCK.txt new file mode 100644 index 000000000..394e1a0c9 --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDERSHOCK.txt @@ -0,0 +1,20 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDERSHOCK] +Name = THUNDERSHOCK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = electric1 + Focus = Target + SetX = 0,376 + SetY = 0,94 + SetVisible = 0,true + SetFlip = 9,true + SetOpacity = 12,100 + + Play = 0,Thunder1,80,100 diff --git a/PBS/Animations/Converted/Move/THUNDERWAVE.txt b/PBS/Animations/Converted/Move/THUNDERWAVE.txt new file mode 100644 index 000000000..f2ffb755a --- /dev/null +++ b/PBS/Animations/Converted/Move/THUNDERWAVE.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,THUNDERWAVE] +Name = THUNDERWAVE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = T. Shock + Focus = Target + SetVisible = 0,true + SetX = 6,392 + SetY = 6,114 + SetX = 7,368 + SetX = 8,408 + SetX = 9,360 + SetX = 12,344 + SetX = 13,352 + SetX = 14,360 + SetX = 15,368 + + Graphic = T. Shock + Focus = Target + SetVisible = 0,true + SetX = 6,368 + SetY = 6,114 + + Graphic = T. Shock + Focus = Target + SetVisible = 0,true + SetX = 1,392 + SetY = 1,42 + SetY = 2,58 + SetY = 3,82 + SetY = 4,98 + SetY = 5,114 + SetX = 6,408 + SetX = 8,368 + SetX = 9,416 + SetX = 12,424 + SetX = 13,432 + SetX = 14,424 + + Play = 2,Paralyze1,80,100 diff --git a/PBS/Animations/Converted/Move/TOXIC.txt b/PBS/Animations/Converted/Move/TOXIC.txt new file mode 100644 index 000000000..37d7a3c08 --- /dev/null +++ b/PBS/Animations/Converted/Move/TOXIC.txt @@ -0,0 +1,62 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TOXIC] +Name = TOXIC + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 2,440 + SetY = 2,86 + SetX = 14,400 + SetY = 14,142 + SetX = 15,352 + SetY = 15,102 + SetX = 17,328 + SetY = 17,134 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 3,400 + SetY = 3,142 + SetX = 14,352 + SetY = 14,102 + SetX = 15,328 + SetY = 15,134 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 4,352 + SetY = 4,102 + SetX = 14,328 + SetY = 14,134 + + Graphic = State1 + Focus = Target + SetVisible = 0,true + SetX = 5,328 + SetY = 5,134 + + Graphic = State1 + Focus = Target + SetX = 0,304 + SetY = 0,118 + SetVisible = 0,true + SetX = 14,440 + SetY = 14,86 + SetX = 15,400 + SetY = 15,142 + SetX = 17,352 + SetY = 17,102 + + Play = 0,Poison,80,100 + Play = 4,Poison,80,100 + Play = 8,Poison,80,100 diff --git a/PBS/Animations/Converted/Move/TRICKROOM.txt b/PBS/Animations/Converted/Move/TRICKROOM.txt new file mode 100644 index 000000000..b1be0296c --- /dev/null +++ b/PBS/Animations/Converted/Move/TRICKROOM.txt @@ -0,0 +1,33 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TRICKROOM] +Name = TRICKROOM + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = mixed status + Focus = UserAndTarget + SetX = 0,310 + SetY = 0,210 + SetZoomX = 0,446 + SetZoomY = 0,273 + SetVisible = 0,true + SetX = 1,311 + SetY = 1,209 + SetX = 3,313 + SetY = 3,211 + SetX = 4,311 + SetX = 5,313 + SetY = 5,212 + SetX = 6,311 + SetY = 7,211 + SetX = 8,313 + SetY = 8,213 + SetX = 9,310 + SetY = 9,211 + + Play = 0,MiningPing,100,84 diff --git a/PBS/Animations/Converted/Move/TWINEEDLE.txt b/PBS/Animations/Converted/Move/TWINEEDLE.txt new file mode 100644 index 000000000..22d9da1b0 --- /dev/null +++ b/PBS/Animations/Converted/Move/TWINEEDLE.txt @@ -0,0 +1,123 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TWINEEDLE] +Name = TWINEEDLE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,364 + SetY = 4,104 + SetOpacity = 4,50 + SetX = 5,396 + SetY = 5,116 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,192 + SetVisible = 0,true + SetX = 1,185 + SetY = 1,173 + SetX = 2,256 + SetY = 2,154 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,116 + SetX = 5,390 + SetY = 5,129 + SetX = 6,396 + SetY = 6,116 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,185 + SetY = 1,217 + SetX = 2,256 + SetY = 2,198 + SetX = 3,307 + SetY = 3,173 + SetX = 4,364 + SetY = 4,154 + SetX = 5,371 + SetY = 5,104 + SetZoomX = 5,125 + SetZoomY = 5,125 + SetOpacity = 5,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 +#------------------------------- +[Move,TWINEEDLE,1] +Name = Twineedle hit 2 + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,185 + SetY = 1,217 + SetX = 2,256 + SetY = 2,198 + SetX = 3,307 + SetY = 3,173 + SetX = 4,364 + SetY = 4,154 + SetX = 5,371 + SetY = 5,104 + SetZoomX = 5,125 + SetZoomY = 5,125 + SetOpacity = 5,50 + + Graphic = poison3 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,364 + SetY = 4,104 + SetOpacity = 4,50 + SetX = 5,396 + SetY = 5,116 + + Graphic = poison3 + Focus = UserAndTarget + SetX = 0,128 + SetY = 0,192 + SetVisible = 0,true + SetX = 1,185 + SetY = 1,173 + SetX = 2,256 + SetY = 2,154 + SetX = 3,300 + SetY = 3,129 + SetX = 4,358 + SetY = 4,116 + SetX = 5,390 + SetY = 5,129 + SetX = 6,396 + SetY = 6,116 + SetZoomX = 6,125 + SetZoomY = 6,125 + SetOpacity = 6,50 + + Play = 0,throw,80,100 + Play = 2,throw,80,100 + Play = 4,Slash10,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/TWISTER.txt b/PBS/Animations/Converted/Move/TWISTER.txt new file mode 100644 index 000000000..c361e6a7d --- /dev/null +++ b/PBS/Animations/Converted/Move/TWISTER.txt @@ -0,0 +1,23 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,TWISTER] +Name = TWISTER + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = water3 + Focus = Target + SetX = 0,384 + SetY = 0,78 + SetVisible = 0,true + SetFlip = 11,true + + Play = 0,Water3,80,100 + Play = 0,Twine,80,100 + Play = 2,Water1,80,100 + Play = 5,Water2,80,100 + Play = 9,Water1,80,100 diff --git a/PBS/Animations/Converted/Move/VINEWHIP.txt b/PBS/Animations/Converted/Move/VINEWHIP.txt new file mode 100644 index 000000000..274907428 --- /dev/null +++ b/PBS/Animations/Converted/Move/VINEWHIP.txt @@ -0,0 +1,34 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,VINEWHIP] +Name = VINEWHIP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 003-Attack01 + Focus = Target + SetVisible = 0,true + SetX = 2,368 + SetY = 2,118 + SetOpacity = 2,150 + SetX = 3,336 + SetOpacity = 3,255 + SetX = 4,304 + SetY = 4,142 + + Graphic = 003-Attack01 + Focus = Target + SetX = 0,448 + SetY = 0,14 + SetVisible = 0,true + SetX = 1,408 + SetY = 1,46 + SetX = 2,368 + SetY = 2,94 + SetY = 3,118 + + Play = 2,Slash1,80,100 diff --git a/PBS/Animations/Converted/Move/WATERGUN.txt b/PBS/Animations/Converted/Move/WATERGUN.txt new file mode 100644 index 000000000..2835dc896 --- /dev/null +++ b/PBS/Animations/Converted/Move/WATERGUN.txt @@ -0,0 +1,209 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WATERGUN] +Name = WATERGUN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = UserAndTarget + SetX = 0,160 + SetY = 0,200 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetOpacity = 0,235 + SetX = 7,184 + SetY = 7,184 + SetX = 8,208 + SetY = 8,168 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,184 + SetY = 1,181 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetOpacity = 1,235 + SetY = 2,190 + SetX = 3,185 + SetY = 3,181 + SetX = 7,208 + SetY = 7,165 + SetX = 8,232 + SetY = 8,149 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,208 + SetY = 2,173 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetOpacity = 2,235 + SetY = 3,162 + SetX = 7,232 + SetY = 7,146 + SetX = 8,256 + SetY = 8,122 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,232 + SetY = 3,145 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetOpacity = 3,235 + SetX = 7,256 + SetY = 7,121 + SetX = 8,280 + SetY = 8,105 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,252 + SetY = 4,124 + SetZoomX = 4,50 + SetZoomY = 4,50 + SetOpacity = 4,235 + SetX = 7,280 + SetY = 7,108 + SetX = 8,304 + SetY = 8,100 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,280 + SetY = 5,109 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetOpacity = 5,235 + SetX = 7,304 + SetY = 7,101 + SetX = 8,336 + SetY = 8,93 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,305 + SetY = 6,99 + SetZoomX = 6,50 + SetZoomY = 6,50 + SetOpacity = 6,235 + SetX = 7,336 + SetY = 7,91 + SetX = 8,368 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 8,380 + SetY = 8,108 + SetZoomX = 8,70 + SetOpacity = 8,224 + + Play = 0,Yawn,88,100 +#------------------------------- +[OppMove,WATERGUN] +Name = WATERGUN + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = fly copy + Focus = UserAndTarget + SetX = 0,352 + SetY = 0,81 + SetZoomX = 0,50 + SetZoomY = 0,50 + SetVisible = 0,true + SetOpacity = 0,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 1,328 + SetY = 1,96 + SetZoomX = 1,50 + SetZoomY = 1,50 + SetOpacity = 1,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 2,304 + SetY = 2,118 + SetZoomX = 2,50 + SetZoomY = 2,50 + SetOpacity = 2,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,280 + SetY = 3,134 + SetZoomX = 3,50 + SetZoomY = 3,50 + SetOpacity = 3,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 4,258 + SetY = 4,161 + SetZoomX = 4,50 + SetZoomY = 4,50 + SetOpacity = 4,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 5,232 + SetY = 5,179 + SetZoomX = 5,50 + SetZoomY = 5,50 + SetOpacity = 5,235 + + Graphic = fly copy + Focus = UserAndTarget + SetVisible = 0,true + SetX = 6,202 + SetY = 6,196 + SetZoomX = 6,50 + SetZoomY = 6,50 + SetOpacity = 6,235 + + Graphic = fly copy + Focus = User + SetVisible = 0,true + SetX = 7,167 + SetY = 7,217 + SetZoomX = 7,50 + SetZoomY = 7,50 + SetOpacity = 7,235 + SetX = 9,129 + SetY = 9,220 + SetZoomX = 9,100 + SetZoomY = 9,100 + SetOpacity = 9,255 + + Graphic = fly copy + Focus = User + SetVisible = 0,true + SetX = 8,128 + SetY = 8,220 + SetOpacity = 8,240 + + Play = 0,Yawn,88,100 diff --git a/PBS/Animations/Converted/Move/WATERPULSE.txt b/PBS/Animations/Converted/Move/WATERPULSE.txt new file mode 100644 index 000000000..514c19bb4 --- /dev/null +++ b/PBS/Animations/Converted/Move/WATERPULSE.txt @@ -0,0 +1,45 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WATERPULSE] +Name = WATERPULSE + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + SetToneBlue = 15,255 + SetToneBlue = 18,0 + + Graphic = Water pulse + Focus = UserAndTarget + SetX = 0,131 + SetY = 0,229 + SetVisible = 0,true + SetX = 1,208 + SetY = 1,192 + SetX = 2,232 + SetY = 2,184 + SetX = 3,240 + SetY = 3,176 + SetX = 4,264 + SetY = 4,160 + SetX = 5,280 + SetY = 5,144 + SetX = 6,304 + SetY = 6,128 + SetX = 7,337 + SetY = 7,114 + SetX = 8,361 + SetY = 8,110 + SetX = 9,356 + SetY = 9,104 + SetX = 10,350 + SetY = 10,107 + SetX = 11,354 + SetY = 11,105 + SetX = 12,349 + SetY = 12,100 + SetX = 13,350 + SetY = 13,122 + SetX = 14,344 diff --git a/PBS/Animations/Converted/Move/WHIRLWIND.txt b/PBS/Animations/Converted/Move/WHIRLWIND.txt new file mode 100644 index 000000000..a558ae68f --- /dev/null +++ b/PBS/Animations/Converted/Move/WHIRLWIND.txt @@ -0,0 +1,18 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WHIRLWIND] +Name = WHIRLWIND + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Wind1 + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Wind1,80,100 diff --git a/PBS/Animations/Converted/Move/WILLOWISP.txt b/PBS/Animations/Converted/Move/WILLOWISP.txt new file mode 100644 index 000000000..96f546661 --- /dev/null +++ b/PBS/Animations/Converted/Move/WILLOWISP.txt @@ -0,0 +1,70 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WILLOWISP] +Name = WILLOWISP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = 015-Fire01 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 1,true + SetX = 1,134 + SetY = 1,179 + SetAngle = 1,90 + SetX = 2,172 + SetY = 2,161 + SetX = 3,243 + SetY = 3,129 + SetX = 4,332 + SetY = 4,148 + SetFlip = 5,false + SetX = 5,358 + SetY = 5,110 + SetAngle = 5,0 + + Graphic = 015-Fire01 + Focus = UserAndTarget + SetVisible = 0,true + SetFlip = 2,true + SetX = 2,224 + SetY = 2,186 + SetAngle = 2,90 + SetX = 3,288 + SetY = 3,167 + SetFlip = 4,false + SetX = 4,358 + SetY = 4,110 + SetAngle = 4,0 + + Graphic = 015-Fire01 + Focus = UserAndTarget + SetVisible = 0,true + SetX = 3,358 + SetY = 3,110 + + Graphic = 015-Fire01 + Focus = UserAndTarget + SetFlip = 0,true + SetX = 0,160 + SetY = 0,186 + SetAngle = 0,90 + SetVisible = 0,true + SetX = 1,198 + SetY = 1,167 + SetX = 2,262 + SetY = 2,129 + SetX = 3,320 + SetY = 3,104 + SetX = 4,300 + SetX = 5,352 + SetY = 5,110 + SetFlip = 6,false + SetX = 6,358 + SetAngle = 6,0 + + Play = 0,Fire2,80,100 diff --git a/PBS/Animations/Converted/Move/WINGATTACK.txt b/PBS/Animations/Converted/Move/WINGATTACK.txt new file mode 100644 index 000000000..83916406d --- /dev/null +++ b/PBS/Animations/Converted/Move/WINGATTACK.txt @@ -0,0 +1,19 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WINGATTACK] +Name = WINGATTACK + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Wind1 + Focus = Target + SetX = 0,392 + SetY = 0,94 + SetVisible = 0,true + + Play = 0,Wind1,80,100 + Play = 2,Wind5,80,100 diff --git a/PBS/Animations/Converted/Move/WRAP.txt b/PBS/Animations/Converted/Move/WRAP.txt new file mode 100644 index 000000000..ce82fd671 --- /dev/null +++ b/PBS/Animations/Converted/Move/WRAP.txt @@ -0,0 +1,47 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WRAP] +Name = WRAP + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Struggle + Focus = Target + SetX = 0,440 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,480 + SetY = 1,94 + SetX = 2,488 + SetY = 2,102 + SetX = 3,464 + SetY = 3,94 + SetX = 4,432 + SetX = 5,464 + SetX = 6,496 + SetY = 6,102 + SetX = 7,480 + + Graphic = Struggle + Focus = Target + SetX = 0,320 + SetY = 0,102 + SetVisible = 0,true + SetX = 1,288 + SetY = 1,94 + SetX = 2,240 + SetY = 2,102 + SetX = 3,264 + SetY = 3,94 + SetX = 4,296 + SetX = 5,256 + SetX = 6,216 + SetX = 7,264 + + Play = 0,Slash10,80,100 + Play = 3,Slash10,80,100 + Play = 6,Slash10,80,100 diff --git a/PBS/Animations/Converted/Move/WRINGOUT.txt b/PBS/Animations/Converted/Move/WRINGOUT.txt new file mode 100644 index 000000000..76db75cdd --- /dev/null +++ b/PBS/Animations/Converted/Move/WRINGOUT.txt @@ -0,0 +1,56 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,WRINGOUT] +Name = WRINGOUT + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Fakeout + Focus = Target + SetX = 0,273 + SetY = 0,84 + SetVisible = 0,true + SetX = 1,283 + SetY = 1,139 + SetX = 2,323 + SetY = 2,177 + SetX = 3,361 + SetY = 3,183 + SetX = 4,391 + SetY = 4,168 + SetX = 5,399 + SetY = 5,127 + SetX = 6,408 + SetY = 6,104 + SetX = 7,375 + SetY = 7,75 + SetX = 8,314 + SetY = 8,66 + SetX = 9,288 + SetY = 9,118 + SetX = 10,299 + SetY = 10,166 + SetX = 11,358 + SetY = 11,178 + SetX = 12,400 + SetY = 12,153 + SetX = 13,401 + SetY = 13,108 + SetX = 14,376 + SetY = 14,79 + SetX = 15,320 + SetY = 15,73 + SetX = 16,290 + SetY = 16,115 + SetX = 17,305 + SetY = 17,158 + SetX = 18,366 + SetY = 18,185 + SetX = 19,430 + SetY = 19,161 + + Play = 0,Wring Out,100,100 diff --git a/PBS/Animations/Converted/Move/XSCISSOR.txt b/PBS/Animations/Converted/Move/XSCISSOR.txt new file mode 100644 index 000000000..1f3b439a6 --- /dev/null +++ b/PBS/Animations/Converted/Move/XSCISSOR.txt @@ -0,0 +1,40 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,XSCISSOR] +Name = XSCISSOR + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = X-Scizzor + Focus = Target + SetX = 0,319 + SetY = 0,36 + SetVisible = 0,true + SetX = 1,351 + SetY = 1,62 + SetX = 2,384 + SetY = 2,96 + SetX = 3,347 + SetY = 3,135 + SetX = 4,455 + SetY = 4,165 + + Graphic = X-Scizzor + Focus = Target + SetX = 0,455 + SetY = 0,37 + SetVisible = 0,true + SetX = 1,420 + SetY = 1,62 + SetX = 2,384 + SetY = 2,96 + SetX = 3,418 + SetY = 3,135 + SetX = 4,307 + SetY = 4,164 + + Play = 0,Slash,80,100 diff --git a/PBS/Animations/Converted/Move/ZAPCANNON.txt b/PBS/Animations/Converted/Move/ZAPCANNON.txt new file mode 100644 index 000000000..57468e979 --- /dev/null +++ b/PBS/Animations/Converted/Move/ZAPCANNON.txt @@ -0,0 +1,22 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[Move,ZAPCANNON] +Name = ZAPCANNON + + SetX = 0,128 + SetY = 0,224 + + SetX = 0,384 + SetY = 0,96 + + Graphic = Thunder2 + Focus = Target + SetX = 0,384 + SetY = 0,86 + SetVisible = 0,true + SetFlip = 6,true + SetAngle = 6,180 + SetOpacity = 7,100 + SetAngle = 8,18 + + Play = 0,Thunder9,80,100