Anim Editor: Changes to example animations and converter

This commit is contained in:
Maruno17
2024-04-13 22:12:11 +01:00
parent 44cc500fdc
commit c14faf3fed
82 changed files with 1961 additions and 2065 deletions

View File

@@ -2,6 +2,12 @@
# them swapping back. # them swapping back.
module AnimationConverter module AnimationConverter
NO_USER_COMMON_ANIMATIONS = [
"Hail", "HarshSun", "HeavyRain", "Rain", "Sandstorm", "Sun", "ShadowSky",
"Rainbow", "RainbowOpp", "SeaOfFire", "SeaOfFireOpp", "Swamp", "SwampOpp"
]
HAS_TARGET_COMMON_ANIMATIONS = ["LeechSeed", "ParentalBond"]
module_function module_function
def convert_old_animations_to_new def convert_old_animations_to_new
@@ -52,6 +58,26 @@ module AnimationConverter
:pbs_path => pbs_path :pbs_path => pbs_path
} }
# Decide whether the animation involves a user or target
has_user = true
has_target = true
if new_anim[:type] == :common
if NO_USER_COMMON_ANIMATIONS.include?(new_anim[:move])
has_user = false
has_target = false
elsif !HAS_TARGET_COMMON_ANIMATIONS.include?(new_anim[:move])
has_target = false
end
else
move_data = GameData::Move.try_get(new_anim[:move])
if move_data
target_data = GameData::Target.get(move_data.target)
has_target = false if target_data.num_targets == 0 && target_data.id != :None
end
end
new_anim[:no_user] = true if !has_user
new_anim[:no_target] = true if !has_target
add_frames_to_new_anim_hash(anim, new_anim) add_frames_to_new_anim_hash(anim, new_anim)
add_bg_fg_commands_to_new_anim_hash(anim, new_anim) add_bg_fg_commands_to_new_anim_hash(anim, new_anim)
add_se_commands_to_new_anim_hash(anim, new_anim) add_se_commands_to_new_anim_hash(anim, new_anim)
@@ -63,6 +89,8 @@ module AnimationConverter
end end
#-----------------------------------------------------------------------------
def add_frames_to_new_anim_hash(anim, hash) def add_frames_to_new_anim_hash(anim, hash)
# Lookup array for particle index using cel index # Lookup array for particle index using cel index
index_lookup = [] index_lookup = []
@@ -95,6 +123,10 @@ module AnimationConverter
default_frame[99] = "Examples/" + anim.graphic default_frame[99] = "Examples/" + anim.graphic
last_frame_values = [] last_frame_values = []
anim_graphic = anim.graphic
anim_graphic.gsub!(".", " ")
anim_graphic.gsub!(" ", " ")
# Go through each frame # Go through each frame
anim.length.times do |frame_num| anim.length.times do |frame_num|
frame = anim[frame_num] frame = anim[frame_num]
@@ -102,12 +134,19 @@ module AnimationConverter
changed_particles = [] changed_particles = []
frame.each_with_index do |cel, i| frame.each_with_index do |cel, i|
next if !cel next if !cel
next if i == 0 && hash[:no_user]
next if i == 1 && hash[:no_target]
# If the particle from the previous frame for this cel had a different # If the particle from the previous frame for this cel had a different
# focus, start a new particle. # focus, start a new particle.
if i > 1 && frame_num > 0 && index_lookup[i] && index_lookup[i] >= 0 && if i > 1 && frame_num > 0 && index_lookup[i] && index_lookup[i] >= 0 &&
last_frame_values[index_lookup[i]] last_frame_values[index_lookup[i]]
this_graphic = (cel[AnimFrame::PATTERN] == -1) ? "USER" : (cel[AnimFrame::PATTERN] == -2) ? "TARGET" : "Examples/" + anim.graphic this_graphic = (cel[AnimFrame::PATTERN] == -1) ? "USER" : (cel[AnimFrame::PATTERN] == -2) ? "TARGET" : "Examples/" + anim_graphic
if last_frame_values[index_lookup[i]][AnimFrame::FOCUS] != cel[AnimFrame::FOCUS] || this_graphic.gsub!(".", " ")
this_graphic.gsub!(" ", "")
focus = cel[AnimFrame::FOCUS]
focus = 2 if (focus == 1 || focus == 3) && hash[:no_target]
focus = 0 if (focus == 2 || focus == 3) && hash[:no_user]
if last_frame_values[index_lookup[i]][AnimFrame::FOCUS] != focus ||
last_frame_values[index_lookup[i]][99] != this_graphic # Graphic last_frame_values[index_lookup[i]][99] != this_graphic # Graphic
index_lookup[i] = -1 index_lookup[i] = -1
end end
@@ -124,9 +163,9 @@ module AnimationConverter
particle = hash[:particles][idx] particle = hash[:particles][idx]
last_frame = last_frame_values[idx] || default_frame.clone last_frame = last_frame_values[idx] || default_frame.clone
# User and target particles have specific names # User and target particles have specific names
if idx == 0 if i == 0
particle[:name] = "User" particle[:name] = "User"
elsif idx == 1 elsif i == 1
particle[:name] = "Target" particle[:name] = "Target"
else else
# Set graphic # Set graphic
@@ -138,14 +177,17 @@ module AnimationConverter
particle[:graphic] = "TARGET" particle[:graphic] = "TARGET"
last_frame[99] = "TARGET" last_frame[99] = "TARGET"
else else
particle[:graphic] = "Examples/" + anim.graphic particle[:graphic] = "Examples/" + anim_graphic
last_frame[99] = "Examples/" + anim.graphic last_frame[99] = "Examples/" + anim_graphic
end end
end end
# Set focus for non-User/non-Target # Set focus for non-User/non-Target
if idx > 1 if i > 1
particle[:focus] = [:foreground, :target, :user, :user_and_target, :foreground][cel[AnimFrame::FOCUS]] focus = cel[AnimFrame::FOCUS]
last_frame[AnimFrame::FOCUS] = cel[AnimFrame::FOCUS] focus = 2 if (focus == 1 || focus == 3) && hash[:no_target]
focus = 0 if (focus == 2 || focus == 3) && hash[:no_user]
particle[:focus] = [:foreground, :target, :user, :user_and_target, :foreground][focus]
last_frame[AnimFrame::FOCUS] = focus
end end
# Copy commands across # Copy commands across
@@ -175,23 +217,59 @@ module AnimationConverter
val = cel[property[0]].to_i val = cel[property[0]].to_i
case property[1] case property[1]
when :x when :x
case cel[AnimFrame::FOCUS]
when 1 # :target
val -= Battle::Scene::FOCUSTARGET_X
when 2 # :user
val -= Battle::Scene::FOCUSUSER_X
when 3 # :user_and_target
# TODO: What if the animation is an OppMove one? I think this should # TODO: What if the animation is an OppMove one? I think this should
# be the other way around. # be the other way around.
if particle[:focus] == :user_and_target user_x = Battle::Scene::FOCUSUSER_X
fraction = (val - Battle::Scene::FOCUSUSER_X).to_f / (Battle::Scene::FOCUSTARGET_X - Battle::Scene::FOCUSUSER_X) target_x = Battle::Scene::FOCUSTARGET_X
if hash[:type] == :opp_move
user_x = Battle::Scene::FOCUSTARGET_X
target_x = Battle::Scene::FOCUSUSER_X
end
fraction = (val - user_x).to_f / (target_x - user_x)
val = (fraction * GameData::Animation::USER_AND_TARGET_SEPARATION[0]).to_i val = (fraction * GameData::Animation::USER_AND_TARGET_SEPARATION[0]).to_i
end end
if cel[AnimFrame::FOCUS] != particle[:focus]
pseudo_focus = cel[AnimFrame::FOCUS]
# Was focused on target, now focused on user
pseudo_focus = 2 if [1, 3].include?(pseudo_focus) && hash[:no_target]
# Was focused on user, now focused on screen
val += Battle::Scene::FOCUSUSER_X if [2, 3].include?(pseudo_focus) && hash[:no_user]
end
when :y when :y
case cel[AnimFrame::FOCUS]
when 1 # :target
val -= Battle::Scene::FOCUSTARGET_Y
when 2 # :user
val -= Battle::Scene::FOCUSUSER_Y
when 3 # :user_and_target
# TODO: What if the animation is an OppMove one? I think this should # TODO: What if the animation is an OppMove one? I think this should
# be the other way around. # be the other way around.
if particle[:focus] == :user_and_target user_y = Battle::Scene::FOCUSUSER_Y
fraction = (val - Battle::Scene::FOCUSUSER_Y).to_f / (Battle::Scene::FOCUSTARGET_Y - Battle::Scene::FOCUSUSER_Y) target_y = Battle::Scene::FOCUSTARGET_Y
if hash[:type] == :opp_move
user_y = Battle::Scene::FOCUSTARGET_Y
target_y = Battle::Scene::FOCUSUSER_Y
end
fraction = (val - user_y).to_f / (target_y - user_y)
val = (fraction * GameData::Animation::USER_AND_TARGET_SEPARATION[1]).to_i val = (fraction * GameData::Animation::USER_AND_TARGET_SEPARATION[1]).to_i
end end
if cel[AnimFrame::FOCUS] != particle[:focus]
pseudo_focus = cel[AnimFrame::FOCUS]
# Was focused on target, now focused on user
pseudo_focus = 2 if [1, 3].include?(pseudo_focus) && hash[:no_target]
# Was focused on user, now focused on screen
val += Battle::Scene::FOCUSUSER_Y if [2, 3].include?(pseudo_focus) && hash[:no_user]
end
when :visible, :flip when :visible, :flip
val = (val == 1) # Boolean val = (val == 1) # Boolean
when :z when :z
next if idx <= 1 # User or target next if i <= 1 # User or target
case val case val
when 0 then val = -50 + i # Back when 0 then val = -50 + i # Back
when 1 then val = 25 + i # Front when 1 then val = 25 + i # Front
@@ -231,7 +309,7 @@ module AnimationConverter
# doesn't have any commands # doesn't have any commands
if frame_num == anim.length - 1 && changed_particles.empty? if frame_num == anim.length - 1 && changed_particles.empty?
hash[:particles].each_with_index do |particle, idx| hash[:particles].each_with_index do |particle, idx|
next if !particle || idx <= 1 # User or target next if !particle || ["User", "Target"].include?(particle[:name])
# TODO: Making all non-user non-target particles invisible in the last # TODO: Making all non-user non-target particles invisible in the last
# frame isn't a perfect solution, but it's good enough to get # frame isn't a perfect solution, but it's good enough to get
# example animation data. # example animation data.
@@ -242,29 +320,17 @@ module AnimationConverter
end end
end end
hash[:particles][0][:focus] = :user if hash[:particles].any? { |particle| particle[:name] == "User" }
hash[:particles][1][:focus] = :target user_particle = hash[:particles].select { |particle| particle[:name] == "User" }[0]
user_particle[:focus] = :user
end
if hash[:particles].any? { |particle| particle[:name] == "Target" }
target_particle = hash[:particles].select { |particle| particle[:name] == "Target" }[0]
target_particle[:focus] = :target
end
end
# Adjust all x/y positions based on particle[:focus] #-----------------------------------------------------------------------------
hash[:particles].each do |particle|
next if !particle
offset_x = 0
offset_y = 0
case particle[:focus]
when :user
offset_x = -Battle::Scene::FOCUSUSER_X
offset_y = -Battle::Scene::FOCUSUSER_Y
when :target
offset_x = -Battle::Scene::FOCUSTARGET_X
offset_y = -Battle::Scene::FOCUSTARGET_Y
when :user_and_target
# NOTE: No change, done above.
end
next if offset_x == 0 && offset_y == 0
particle[:x].each { |cmd| cmd[2] += offset_x }
particle[:y].each { |cmd| cmd[2] += offset_y }
end
end
# TODO: Haven't tested this as no Essentials animations use them. # TODO: Haven't tested this as no Essentials animations use them.
def add_bg_fg_commands_to_new_anim_hash(anim, new_anim) def add_bg_fg_commands_to_new_anim_hash(anim, new_anim)

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Attract] [Common,Attract]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0 Graphic = Examples/poi hear mus
SetY = 0,0 Focus = User
<Particle 3>
Graphic = Examples/poi.hear.mus
Focus = Target
SetFrame = 7,2 SetFrame = 7,2
SetX = 7,-29 SetX = 7,-29
SetY = 7,-46 SetY = 7,-46
@@ -38,9 +36,9 @@ Name = Example anim
SetOpacity = 16,128 SetOpacity = 16,128
SetY = 17,-93 SetY = 17,-93
SetOpacity = 17,64 SetOpacity = 17,64
<Particle 4> <Particle 3>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = User
SetFrame = 8,2 SetFrame = 8,2
SetX = 8,-35 SetX = 8,-35
SetY = 8,-46 SetY = 8,-46
@@ -66,9 +64,9 @@ Name = Example anim
SetOpacity = 16,128 SetOpacity = 16,128
SetY = 17,-70 SetY = 17,-70
SetOpacity = 17,64 SetOpacity = 17,64
<Particle 5> <Particle 4>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = User
SetFrame = 12,2 SetFrame = 12,2
SetX = 12,13 SetX = 12,13
SetY = 12,-3 SetY = 12,-3
@@ -86,9 +84,9 @@ Name = Example anim
SetOpacity = 16,128 SetOpacity = 16,128
SetY = 17,-72 SetY = 17,-72
SetOpacity = 17,64 SetOpacity = 17,64
<Particle 2> <Particle 1>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = User
SetFrame = 0,2 SetFrame = 0,2
SetX = 0,-10 SetX = 0,-10
SetY = 0,-29 SetY = 0,-29

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Bind] [Common,Bind]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetFrame = 0,1 SetFrame = 0,1
SetX = 0,56 SetX = 0,56
SetY = 0,6 SetY = 0,6
@@ -26,9 +24,9 @@ Name = Example anim
SetX = 6,112 SetX = 6,112
SetY = 6,6 SetY = 6,6
SetX = 7,96 SetX = 7,96
<Particle 2> <Particle 1>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetX = 0,-64 SetX = 0,-64
SetY = 0,6 SetY = 0,6
SetZ = 0,27 SetZ = 0,27

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Burn] [Common,Burn]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/Flames Graphic = Examples/Flames
Focus = Target Focus = User
SetFrame = 0,2 SetFrame = 0,2
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Confusion] [Common,Confusion]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/confused Graphic = Examples/confused
Focus = Target Focus = User
SetX = 0,0 SetX = 0,0
SetY = 0,-33 SetY = 0,-33
SetZ = 0,27 SetZ = 0,27

View File

@@ -2,167 +2,165 @@
#------------------------------- #-------------------------------
[Common,FireSpin] [Common,FireSpin]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,16 SetFrame = 0,16
SetX = 0,-29 SetX = 0,-29
SetY = 0,40 SetY = 0,40
SetZ = 0,27 SetZ = 0,27
SetVisible = 6,false SetVisible = 6,false
<Particle 3> <Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,16 SetFrame = 0,16
SetX = 0,9 SetX = 0,9
SetY = 0,42 SetY = 0,42
SetZ = 0,28 SetZ = 0,28
SetVisible = 6,false SetVisible = 6,false
<Particle 4> <Particle 3>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,16 SetFrame = 0,16
SetX = 0,44 SetX = 0,44
SetY = 0,41 SetY = 0,41
SetZ = 0,29 SetZ = 0,29
SetVisible = 6,false SetVisible = 6,false
<Particle 5> <Particle 4>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 1,16 SetFrame = 1,16
SetX = 1,-29 SetX = 1,-29
SetY = 1,25 SetY = 1,25
SetZ = 1,30 SetZ = 1,30
SetVisible = 6,false SetVisible = 6,false
<Particle 6> <Particle 5>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 1,16 SetFrame = 1,16
SetX = 1,10 SetX = 1,10
SetY = 1,27 SetY = 1,27
SetZ = 1,31 SetZ = 1,31
SetVisible = 6,false SetVisible = 6,false
<Particle 7> <Particle 6>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 1,16 SetFrame = 1,16
SetX = 1,47 SetX = 1,47
SetY = 1,26 SetY = 1,26
SetZ = 1,32 SetZ = 1,32
SetVisible = 6,false SetVisible = 6,false
<Particle 8> <Particle 7>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 2,16 SetFrame = 2,16
SetX = 2,-25 SetX = 2,-25
SetY = 2,12 SetY = 2,12
SetZ = 2,33 SetZ = 2,33
SetVisible = 6,false SetVisible = 6,false
<Particle 9> <Particle 8>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 2,16 SetFrame = 2,16
SetX = 2,11 SetX = 2,11
SetY = 2,11 SetY = 2,11
SetZ = 2,34 SetZ = 2,34
SetVisible = 6,false SetVisible = 6,false
<Particle 10> <Particle 9>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 2,16 SetFrame = 2,16
SetX = 2,49 SetX = 2,49
SetY = 2,9 SetY = 2,9
SetZ = 2,35 SetZ = 2,35
SetVisible = 6,false SetVisible = 6,false
<Particle 11> <Particle 10>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 3,16 SetFrame = 3,16
SetX = 3,-27 SetX = 3,-27
SetY = 3,-4 SetY = 3,-4
SetZ = 3,36 SetZ = 3,36
SetVisible = 6,false SetVisible = 6,false
<Particle 12> <Particle 11>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 3,16 SetFrame = 3,16
SetX = 3,12 SetX = 3,12
SetY = 3,-5 SetY = 3,-5
SetZ = 3,37 SetZ = 3,37
SetVisible = 6,false SetVisible = 6,false
<Particle 13> <Particle 12>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 3,16 SetFrame = 3,16
SetX = 3,47 SetX = 3,47
SetY = 3,-7 SetY = 3,-7
SetZ = 3,38 SetZ = 3,38
SetVisible = 6,false SetVisible = 6,false
<Particle 14> <Particle 13>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 4,16 SetFrame = 4,16
SetX = 4,-28 SetX = 4,-28
SetY = 4,-19 SetY = 4,-19
SetZ = 4,39 SetZ = 4,39
SetVisible = 6,false SetVisible = 6,false
<Particle 15> <Particle 14>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 4,16 SetFrame = 4,16
SetX = 4,13 SetX = 4,13
SetY = 4,-18 SetY = 4,-18
SetZ = 4,40 SetZ = 4,40
SetVisible = 6,false SetVisible = 6,false
<Particle 16> <Particle 15>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 4,16 SetFrame = 4,16
SetX = 4,51 SetX = 4,51
SetY = 4,-20 SetY = 4,-20
SetZ = 4,41 SetZ = 4,41
SetVisible = 6,false SetVisible = 6,false
<Particle 17> <Particle 16>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,16 SetFrame = 5,16
SetX = 5,-29 SetX = 5,-29
SetY = 5,-34 SetY = 5,-34
SetZ = 5,42 SetZ = 5,42
SetVisible = 6,false SetVisible = 6,false
<Particle 18> <Particle 17>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,16 SetFrame = 5,16
SetX = 5,13 SetX = 5,13
SetY = 5,-33 SetY = 5,-33
SetZ = 5,43 SetZ = 5,43
SetVisible = 6,false SetVisible = 6,false
<Particle 19> <Particle 18>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,16 SetFrame = 5,16
SetX = 5,50 SetX = 5,50
SetY = 5,-35 SetY = 5,-35
SetZ = 5,44 SetZ = 5,44
SetVisible = 6,false SetVisible = 6,false
<Particle 20> <Particle 19>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,16 SetFrame = 5,16
SetX = 5,-10 SetX = 5,-10
SetY = 5,41 SetY = 5,41
SetZ = 5,45 SetZ = 5,45
SetVisible = 6,false SetVisible = 6,false
<Particle 21> <Particle 20>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,16 SetFrame = 5,16
SetX = 5,31 SetX = 5,31
SetY = 5,42 SetY = 5,42

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Frozen] [Common,Frozen]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/016-Ice01 Graphic = Examples/016-Ice01
Focus = Target Focus = User
SetFrame = 0,6 SetFrame = 0,6
SetX = 0,-56 SetX = 0,-56
SetY = 0,-82 SetY = 0,-82
@@ -33,17 +31,17 @@ Name = Example anim
SetX = 13,80 SetX = 13,80
SetY = 13,-2 SetY = 13,-2
SetVisible = 14,false SetVisible = 14,false
<Particle 4> <Particle 3>
Graphic = Examples/016-Ice01 Graphic = Examples/016-Ice01
Focus = Target Focus = User
SetFrame = 1,9 SetFrame = 1,9
SetX = 1,0 SetX = 1,0
SetY = 1,-2 SetY = 1,-2
SetZ = 1,29 SetZ = 1,29
SetVisible = 2,false SetVisible = 2,false
<Particle 5> <Particle 4>
Graphic = Examples/016-Ice01 Graphic = Examples/016-Ice01
Focus = Target Focus = User
SetFrame = 6,11 SetFrame = 6,11
SetX = 6,0 SetX = 6,0
SetY = 6,-2 SetY = 6,-2
@@ -51,9 +49,9 @@ Name = Example anim
SetOpacity = 6,192 SetOpacity = 6,192
SetOpacity = 7,255 SetOpacity = 7,255
SetVisible = 8,false SetVisible = 8,false
<Particle 6> <Particle 5>
Graphic = Examples/016-Ice01 Graphic = Examples/016-Ice01
Focus = Target Focus = User
SetFrame = 9,8 SetFrame = 9,8
SetX = 9,48 SetX = 9,48
SetY = 9,-82 SetY = 9,-82
@@ -69,9 +67,9 @@ Name = Example anim
SetX = 13,-32 SetX = 13,-32
SetY = 13,46 SetY = 13,46
SetVisible = 14,false SetVisible = 14,false
<Particle 2> <Particle 1>
Graphic = Examples/016-Ice01 Graphic = Examples/016-Ice01
Focus = Target Focus = User
SetFrame = 0,9 SetFrame = 0,9
SetX = 0,0 SetX = 0,0
SetY = 0,-2 SetY = 0,-2

View File

@@ -2,13 +2,9 @@
#------------------------------- #-------------------------------
[Common,Hail] [Common,Hail]
Name = Example anim Name = Example anim
<User> NoUser = true
SetX = 0,0 NoTarget = true
SetY = 0,0 <Particle 0>
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,7 SetFrame = 0,7
@@ -42,7 +38,7 @@ Name = Example anim
SetX = 10,136 SetX = 10,136
SetY = 10,107 SetY = 10,107
SetVisible = 11,false SetVisible = 11,false
<Particle 3> <Particle 1>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,7 SetFrame = 0,7
@@ -52,7 +48,7 @@ Name = Example anim
SetX = 1,464 SetX = 1,464
SetY = 1,117 SetY = 1,117
SetVisible = 2,false SetVisible = 2,false
<Particle 4> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,8 SetFrame = 0,8
@@ -68,7 +64,7 @@ Name = Example anim
SetX = 3,278 SetX = 3,278
SetY = 3,164 SetY = 3,164
SetVisible = 4,false SetVisible = 4,false
<Particle 5> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,9 SetFrame = 0,9
@@ -87,7 +83,7 @@ Name = Example anim
SetX = 4,390 SetX = 4,390
SetY = 4,210 SetY = 4,210
SetVisible = 5,false SetVisible = 5,false
<Particle 6> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,9 SetFrame = 0,9
@@ -95,7 +91,7 @@ Name = Example anim
SetY = 0,252 SetY = 0,252
SetZ = 0,31 SetZ = 0,31
SetVisible = 1,false SetVisible = 1,false
<Particle 7> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,7 SetFrame = 2,7
@@ -103,7 +99,7 @@ Name = Example anim
SetY = 2,206 SetY = 2,206
SetZ = 2,31 SetZ = 2,31
SetVisible = 3,false SetVisible = 3,false
<Particle 8> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 3,9 SetFrame = 3,9
@@ -111,7 +107,7 @@ Name = Example anim
SetY = 3,241 SetY = 3,241
SetZ = 3,28 SetZ = 3,28
SetVisible = 4,false SetVisible = 4,false
<Particle 9> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,9 SetFrame = 4,9
@@ -138,7 +134,7 @@ Name = Example anim
SetFrame = 12,9 SetFrame = 12,9
SetX = 12,198 SetX = 12,198
SetY = 12,28 SetY = 12,28
<Particle 10> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,8 SetFrame = 4,8
@@ -146,7 +142,7 @@ Name = Example anim
SetY = 4,220 SetY = 4,220
SetZ = 4,32 SetZ = 4,32
SetVisible = 5,false SetVisible = 5,false
<Particle 11> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,9 SetFrame = 5,9
@@ -154,7 +150,7 @@ Name = Example anim
SetY = 5,69 SetY = 5,69
SetZ = 5,28 SetZ = 5,28
SetVisible = 6,false SetVisible = 6,false
<Particle 12> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,8 SetFrame = 6,8
@@ -162,7 +158,7 @@ Name = Example anim
SetY = 6,226 SetY = 6,226
SetZ = 6,29 SetZ = 6,29
SetVisible = 7,false SetVisible = 7,false
<Particle 13> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,9 SetFrame = 6,9
@@ -185,7 +181,7 @@ Name = Example anim
SetFrame = 12,8 SetFrame = 12,8
SetX = 12,230 SetX = 12,230
SetY = 12,142 SetY = 12,142
<Particle 14> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,9 SetFrame = 6,9
@@ -195,7 +191,7 @@ Name = Example anim
SetX = 7,296 SetX = 7,296
SetY = 7,172 SetY = 7,172
SetVisible = 8,false SetVisible = 8,false
<Particle 15> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 8,8 SetFrame = 8,8
@@ -205,7 +201,7 @@ Name = Example anim
SetX = 9,163 SetX = 9,163
SetY = 9,99 SetY = 9,99
SetVisible = 10,false SetVisible = 10,false
<Particle 16> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 8,9 SetFrame = 8,9
@@ -218,7 +214,7 @@ Name = Example anim
SetX = 10,444 SetX = 10,444
SetY = 10,89 SetY = 10,89
SetVisible = 11,false SetVisible = 11,false
<Particle 17> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,9 SetFrame = 9,9
@@ -233,7 +229,7 @@ Name = Example anim
SetY = 11,246 SetY = 11,246
SetX = 12,167 SetX = 12,167
SetY = 12,237 SetY = 12,237
<Particle 18> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,8 SetFrame = 11,8
@@ -241,7 +237,7 @@ Name = Example anim
SetY = 11,119 SetY = 11,119
SetZ = 11,28 SetZ = 11,28
SetVisible = 12,false SetVisible = 12,false
<Particle 19> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,7 SetFrame = 11,7
@@ -251,7 +247,7 @@ Name = Example anim
SetFrame = 12,9 SetFrame = 12,9
SetX = 12,41 SetX = 12,41
SetY = 12,229 SetY = 12,229
<Particle 20> <Particle 18>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,9 SetFrame = 11,9
@@ -259,14 +255,14 @@ Name = Example anim
SetY = 11,47 SetY = 11,47
SetZ = 11,34 SetZ = 11,34
SetVisible = 12,false SetVisible = 12,false
<Particle 21> <Particle 19>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 12,8 SetFrame = 12,8
SetX = 12,474 SetX = 12,474
SetY = 12,59 SetY = 12,59
SetZ = 12,29 SetZ = 12,29
<Particle 22> <Particle 20>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 12,9 SetFrame = 12,9

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,HealthDown] [Common,HealthDown]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,-50 SetX = 0,-50
SetY = 0,-53 SetY = 0,-53
@@ -34,9 +32,9 @@ Name = Example anim
SetX = 9,25 SetX = 9,25
SetY = 9,92 SetY = 9,92
SetVisible = 10,false SetVisible = 10,false
<Particle 3> <Particle 2>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,35 SetX = 0,35
SetY = 0,-52 SetY = 0,-52
@@ -56,9 +54,9 @@ Name = Example anim
SetX = 7,-41 SetX = 7,-41
SetY = 7,62 SetY = 7,62
SetVisible = 8,false SetVisible = 8,false
<Particle 4> <Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,22 SetX = 0,22
SetY = 0,-29 SetY = 0,-29
@@ -69,9 +67,9 @@ Name = Example anim
SetToneBlue = 0,-128 SetToneBlue = 0,-128
SetX = 1,-16 SetX = 1,-16
SetVisible = 2,false SetVisible = 2,false
<Particle 5> <Particle 4>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,35 SetX = 1,35
SetY = 1,-32 SetY = 1,-32
@@ -92,9 +90,9 @@ Name = Example anim
SetX = 8,-41 SetX = 8,-41
SetY = 8,82 SetY = 8,82
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 5>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,22 SetX = 1,22
SetY = 1,-9 SetY = 1,-9
@@ -116,9 +114,9 @@ Name = Example anim
SetX = 8,25 SetX = 8,25
SetY = 8,72 SetY = 8,72
SetVisible = 9,false SetVisible = 9,false
<Particle 7> <Particle 6>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-16 SetX = 2,-16
SetY = 2,-9 SetY = 2,-9
@@ -136,9 +134,9 @@ Name = Example anim
SetY = 7,52 SetY = 7,52
SetOpacity = 7,126 SetOpacity = 7,126
SetVisible = 8,false SetVisible = 8,false
<Particle 8> <Particle 7>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-1 SetX = 2,-1
SetY = 2,-57 SetY = 2,-57
@@ -152,9 +150,9 @@ Name = Example anim
SetY = 5,3 SetY = 5,3
SetY = 6,23 SetY = 6,23
SetVisible = 7,false SetVisible = 7,false
<Particle 9> <Particle 8>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-41 SetX = 2,-41
SetY = 2,-38 SetY = 2,-38
@@ -164,9 +162,9 @@ Name = Example anim
SetToneGreen = 2,64 SetToneGreen = 2,64
SetToneBlue = 2,-128 SetToneBlue = 2,-128
SetVisible = 3,false SetVisible = 3,false
<Particle 10> <Particle 9>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,-41 SetX = 3,-41
SetY = 3,-18 SetY = 3,-18
@@ -179,9 +177,9 @@ Name = Example anim
SetY = 5,22 SetY = 5,22
SetY = 6,42 SetY = 6,42
SetVisible = 7,false SetVisible = 7,false
<Particle 11> <Particle 10>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,25 SetX = 3,25
SetY = 3,-28 SetY = 3,-28

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,HealthUp] [Common,HealthUp]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 1,10 SetFrame = 1,10
SetX = 1,48 SetX = 1,48
SetY = 1,-42 SetY = 1,-42
@@ -23,9 +21,9 @@ Name = Example anim
SetX = 10,-40 SetX = 10,-40
SetY = 10,-26 SetY = 10,-26
SetVisible = 11,false SetVisible = 11,false
<Particle 4> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 4,10 SetFrame = 4,10
SetX = 4,-40 SetX = 4,-40
SetY = 4,-26 SetY = 4,-26
@@ -33,9 +31,9 @@ Name = Example anim
SetFrame = 6,8 SetFrame = 6,8
SetFrame = 8,7 SetFrame = 8,7
SetVisible = 10,false SetVisible = 10,false
<Particle 2> <Particle 1>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 0,10 SetFrame = 0,10
SetX = 0,8 SetX = 0,8
SetY = 0,-2 SetY = 0,-2

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Paralysis] [Common,Paralysis]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetFrame = 1,1 SetFrame = 1,1
SetX = 1,40 SetX = 1,40
SetY = 1,6 SetY = 1,6
@@ -36,9 +34,9 @@ Name = Example anim
SetFrame = 11,1 SetFrame = 11,1
SetX = 11,24 SetX = 11,24
SetY = 11,14 SetY = 11,14
<Particle 2> <Particle 1>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetX = 1,-48 SetX = 1,-48
SetY = 1,-2 SetY = 1,-2
SetZ = 1,27 SetZ = 1,27

View File

@@ -2,18 +2,18 @@
#------------------------------- #-------------------------------
[Common,Poison] [Common,Poison]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/State1 Graphic = Examples/State1
Focus = Target Focus = User
SetX = 1,0 SetX = 1,0
SetY = 1,-10 SetY = 1,-10
SetZ = 1,27 SetZ = 1,27
SetZoomX = 1,200
SetZoomY = 1,200
SetFrame = 2,1 SetFrame = 2,1
SetFrame = 3,2 SetFrame = 3,2
SetFrame = 4,3 SetFrame = 4,3

View File

@@ -2,13 +2,9 @@
#------------------------------- #-------------------------------
[Common,Rain] [Common,Rain]
Name = Example anim Name = Example anim
<User> NoUser = true
SetX = 0,0 NoTarget = true
SetY = 0,0 <Particle 0>
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -32,7 +28,7 @@ Name = Example anim
SetY = 8,218 SetY = 8,218
SetX = 9,99 SetX = 9,99
SetY = 9,55 SetY = 9,55
<Particle 3> <Particle 1>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -57,7 +53,7 @@ Name = Example anim
SetY = 8,251 SetY = 8,251
SetX = 9,253 SetX = 9,253
SetY = 9,148 SetY = 9,148
<Particle 4> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -82,7 +78,7 @@ Name = Example anim
SetY = 8,110 SetY = 8,110
SetX = 9,254 SetX = 9,254
SetY = 9,274 SetY = 9,274
<Particle 5> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -107,7 +103,7 @@ Name = Example anim
SetY = 8,59 SetY = 8,59
SetX = 9,418 SetX = 9,418
SetY = 9,243 SetY = 9,243
<Particle 6> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -132,7 +128,7 @@ Name = Example anim
SetY = 8,204 SetY = 8,204
SetX = 9,181 SetX = 9,181
SetY = 9,238 SetY = 9,238
<Particle 7> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -157,7 +153,7 @@ Name = Example anim
SetY = 8,63 SetY = 8,63
SetX = 9,108 SetX = 9,108
SetY = 9,245 SetY = 9,245
<Particle 8> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -182,7 +178,7 @@ Name = Example anim
SetY = 8,173 SetY = 8,173
SetX = 9,25 SetX = 9,25
SetY = 9,205 SetY = 9,205
<Particle 9> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -207,7 +203,7 @@ Name = Example anim
SetY = 8,144 SetY = 8,144
SetX = 9,148 SetX = 9,148
SetY = 9,25 SetY = 9,25
<Particle 10> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 1,2 SetFrame = 1,2
@@ -223,7 +219,7 @@ Name = Example anim
SetX = 5,422 SetX = 5,422
SetY = 5,252 SetY = 5,252
SetVisible = 6,false SetVisible = 6,false
<Particle 11> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,2 SetFrame = 2,2
@@ -237,7 +233,7 @@ Name = Example anim
SetX = 5,319 SetX = 5,319
SetY = 5,241 SetY = 5,241
SetVisible = 6,false SetVisible = 6,false
<Particle 12> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,2 SetFrame = 4,2
@@ -245,7 +241,7 @@ Name = Example anim
SetY = 4,203 SetY = 4,203
SetZ = 4,37 SetZ = 4,37
SetVisible = 5,false SetVisible = 5,false
<Particle 13> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -253,7 +249,7 @@ Name = Example anim
SetY = 7,126 SetY = 7,126
SetZ = 7,35 SetZ = 7,35
SetVisible = 8,false SetVisible = 8,false
<Particle 14> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -261,7 +257,7 @@ Name = Example anim
SetY = 7,237 SetY = 7,237
SetZ = 7,36 SetZ = 7,36
SetVisible = 8,false SetVisible = 8,false
<Particle 15> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -269,28 +265,28 @@ Name = Example anim
SetY = 7,194 SetY = 7,194
SetZ = 7,37 SetZ = 7,37
SetVisible = 8,false SetVisible = 8,false
<Particle 16> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,247 SetX = 9,247
SetY = 9,72 SetY = 9,72
SetZ = 9,35 SetZ = 9,35
<Particle 17> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,365 SetX = 9,365
SetY = 9,42 SetY = 9,42
SetZ = 9,36 SetZ = 9,36
<Particle 18> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,479 SetX = 9,479
SetY = 9,180 SetY = 9,180
SetZ = 9,37 SetZ = 9,37
<Particle 19> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2

View File

@@ -2,13 +2,9 @@
#------------------------------- #-------------------------------
[Common,Sandstorm] [Common,Sandstorm]
Name = Example anim Name = Example anim
<User> NoUser = true
SetX = 0,0 NoTarget = true
SetY = 0,0 <Particle 0>
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -33,7 +29,7 @@ Name = Example anim
SetY = 8,62 SetY = 8,62
SetX = 9,32 SetX = 9,32
SetY = 9,252 SetY = 9,252
<Particle 3> <Particle 1>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -58,7 +54,7 @@ Name = Example anim
SetY = 8,85 SetY = 8,85
SetX = 9,119 SetX = 9,119
SetY = 9,175 SetY = 9,175
<Particle 4> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -83,7 +79,7 @@ Name = Example anim
SetY = 8,223 SetY = 8,223
SetX = 9,143 SetX = 9,143
SetY = 9,267 SetY = 9,267
<Particle 5> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -108,7 +104,7 @@ Name = Example anim
SetY = 8,207 SetY = 8,207
SetX = 9,222 SetX = 9,222
SetY = 9,197 SetY = 9,197
<Particle 6> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -133,7 +129,7 @@ Name = Example anim
SetY = 8,253 SetY = 8,253
SetX = 9,162 SetX = 9,162
SetY = 9,82 SetY = 9,82
<Particle 7> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -158,7 +154,7 @@ Name = Example anim
SetY = 8,227 SetY = 8,227
SetX = 9,49 SetX = 9,49
SetY = 9,61 SetY = 9,61
<Particle 8> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -183,7 +179,7 @@ Name = Example anim
SetY = 8,76 SetY = 8,76
SetX = 9,21 SetX = 9,21
SetY = 9,158 SetY = 9,158
<Particle 9> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -208,7 +204,7 @@ Name = Example anim
SetY = 8,130 SetY = 8,130
SetX = 9,350 SetX = 9,350
SetY = 9,240 SetY = 9,240
<Particle 10> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -233,7 +229,7 @@ Name = Example anim
SetY = 8,142 SetY = 8,142
SetX = 9,481 SetX = 9,481
SetY = 9,206 SetY = 9,206
<Particle 11> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -258,7 +254,7 @@ Name = Example anim
SetY = 8,22 SetY = 8,22
SetX = 9,456 SetX = 9,456
SetY = 9,64 SetY = 9,64
<Particle 12> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -266,7 +262,7 @@ Name = Example anim
SetY = 0,32 SetY = 0,32
SetZ = 0,37 SetZ = 0,37
SetVisible = 1,false SetVisible = 1,false
<Particle 13> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -274,7 +270,7 @@ Name = Example anim
SetY = 0,135 SetY = 0,135
SetZ = 0,38 SetZ = 0,38
SetVisible = 1,false SetVisible = 1,false
<Particle 14> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -282,7 +278,7 @@ Name = Example anim
SetY = 0,18 SetY = 0,18
SetZ = 0,39 SetZ = 0,39
SetVisible = 1,false SetVisible = 1,false
<Particle 15> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -290,7 +286,7 @@ Name = Example anim
SetY = 0,9 SetY = 0,9
SetZ = 0,40 SetZ = 0,40
SetVisible = 1,false SetVisible = 1,false
<Particle 16> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -298,7 +294,7 @@ Name = Example anim
SetY = 2,32 SetY = 2,32
SetZ = 2,37 SetZ = 2,37
SetVisible = 3,false SetVisible = 3,false
<Particle 17> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -306,7 +302,7 @@ Name = Example anim
SetY = 2,135 SetY = 2,135
SetZ = 2,38 SetZ = 2,38
SetVisible = 3,false SetVisible = 3,false
<Particle 18> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -314,7 +310,7 @@ Name = Example anim
SetY = 2,18 SetY = 2,18
SetZ = 2,39 SetZ = 2,39
SetVisible = 3,false SetVisible = 3,false
<Particle 19> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -322,7 +318,7 @@ Name = Example anim
SetY = 2,9 SetY = 2,9
SetZ = 2,40 SetZ = 2,40
SetVisible = 3,false SetVisible = 3,false
<Particle 20> <Particle 18>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,3 SetFrame = 4,3
@@ -332,7 +328,7 @@ Name = Example anim
SetX = 5,487 SetX = 5,487
SetY = 5,32 SetY = 5,32
SetVisible = 6,false SetVisible = 6,false
<Particle 21> <Particle 19>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,3 SetFrame = 4,3
@@ -342,7 +338,7 @@ Name = Example anim
SetX = 5,492 SetX = 5,492
SetY = 5,135 SetY = 5,135
SetVisible = 6,false SetVisible = 6,false
<Particle 22> <Particle 20>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,3 SetFrame = 5,3
@@ -350,7 +346,7 @@ Name = Example anim
SetY = 5,18 SetY = 5,18
SetZ = 5,39 SetZ = 5,39
SetVisible = 6,false SetVisible = 6,false
<Particle 23> <Particle 21>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,3 SetFrame = 5,3
@@ -358,7 +354,7 @@ Name = Example anim
SetY = 5,9 SetY = 5,9
SetZ = 5,40 SetZ = 5,40
SetVisible = 6,false SetVisible = 6,false
<Particle 24> <Particle 22>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -366,7 +362,7 @@ Name = Example anim
SetY = 7,32 SetY = 7,32
SetZ = 7,37 SetZ = 7,37
SetVisible = 8,false SetVisible = 8,false
<Particle 25> <Particle 23>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -374,7 +370,7 @@ Name = Example anim
SetY = 7,135 SetY = 7,135
SetZ = 7,38 SetZ = 7,38
SetVisible = 8,false SetVisible = 8,false
<Particle 26> <Particle 24>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -382,7 +378,7 @@ Name = Example anim
SetY = 7,18 SetY = 7,18
SetZ = 7,39 SetZ = 7,39
SetVisible = 8,false SetVisible = 8,false
<Particle 27> <Particle 25>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -390,21 +386,21 @@ Name = Example anim
SetY = 7,9 SetY = 7,9
SetZ = 7,40 SetZ = 7,40
SetVisible = 8,false SetVisible = 8,false
<Particle 28> <Particle 26>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3
SetX = 9,311 SetX = 9,311
SetY = 9,55 SetY = 9,55
SetZ = 9,37 SetZ = 9,37
<Particle 29> <Particle 27>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3
SetX = 9,328 SetX = 9,328
SetY = 9,146 SetY = 9,146
SetZ = 9,38 SetZ = 9,38
<Particle 30> <Particle 28>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Shadow] [Common,Shadow]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,56 SetX = 2,56
SetY = 2,30 SetY = 2,30
@@ -28,9 +26,9 @@ Name = Example anim
SetX = 9,32 SetX = 9,32
SetY = 9,22 SetY = 9,22
SetVisible = 10,false SetVisible = 10,false
<Particle 4> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,-88 SetX = 3,-88
SetY = 3,-10 SetY = 3,-10
@@ -45,9 +43,9 @@ Name = Example anim
SetX = 8,32 SetX = 8,32
SetY = 8,22 SetY = 8,22
SetVisible = 9,false SetVisible = 9,false
<Particle 5> <Particle 4>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 5,5 SetFrame = 5,5
SetX = 5,32 SetX = 5,32
SetY = 5,-42 SetY = 5,-42
@@ -57,9 +55,9 @@ Name = Example anim
SetX = 7,32 SetX = 7,32
SetY = 7,22 SetY = 7,22
SetVisible = 8,false SetVisible = 8,false
<Particle 2> <Particle 1>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,-24 SetX = 0,-24
SetY = 0,14 SetY = 0,14

View File

@@ -2,23 +2,15 @@
#------------------------------- #-------------------------------
[Common,ShadowSky] [Common,ShadowSky]
Name = Example anim Name = Example anim
<User> NoUser = true
SetX = 0,0 NoTarget = true
SetY = 0,0 <Particle 0>
<Target> Graphic = Examples/shadow sky
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,10 SetOpacity = 0,0
SetX = 0,258 MoveOpacity = 0,5,255,
SetY = 0,132 SetOpacity = 5,255
SetZ = 0,27 SetOpacity = 15,255
SetZoomX = 0,327 MoveOpacity = 15,5,0,
SetZoomY = 0,242 SetOpacity = 20,0
SetOpacity = 0,128 <SE>
SetOpacity = 1,192
SetOpacity = 2,249
SetOpacity = 8,192
SetOpacity = 9,128

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Shiny] [Common,Shiny]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,56 SetX = 2,56
SetY = 2,30 SetY = 2,30
@@ -28,9 +26,9 @@ Name = Example anim
SetX = 9,32 SetX = 9,32
SetY = 9,22 SetY = 9,22
SetVisible = 10,false SetVisible = 10,false
<Particle 4> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,-57 SetX = 3,-57
SetY = 3,-18 SetY = 3,-18
@@ -45,9 +43,9 @@ Name = Example anim
SetX = 8,32 SetX = 8,32
SetY = 8,22 SetY = 8,22
SetVisible = 9,false SetVisible = 9,false
<Particle 5> <Particle 4>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 5,5 SetFrame = 5,5
SetX = 5,32 SetX = 5,32
SetY = 5,-42 SetY = 5,-42
@@ -57,9 +55,9 @@ Name = Example anim
SetX = 7,32 SetX = 7,32
SetY = 7,22 SetY = 7,22
SetVisible = 8,false SetVisible = 8,false
<Particle 2> <Particle 1>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,-24 SetX = 0,-24
SetY = 0,14 SetY = 0,14

View File

@@ -2,15 +2,55 @@
#------------------------------- #-------------------------------
[Common,Sleep] [Common,Sleep]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 3> <Particle 3>
Graphic = Examples/028-State01 Graphic = Examples/028-State01
Focus = Target Focus = User
SetFrame = 1,8
SetX = 1,24
SetY = 1,-18
SetZ = 1,27
SetZoomX = 1,50
SetZoomY = 1,50
MoveX = 1,4,52
MoveY = 1,4,-67
SetX = 5,52
SetY = 5,-67
SetVisible = 5,false
SetX = 6,-41
SetY = 6,-17
SetVisible = 6,true
MoveX = 6,4,-75
MoveY = 6,4,-71
SetX = 10,-75
SetY = 10,-71
SetVisible = 11,false
<Particle 4>
Graphic = Examples/028-State01
Focus = User
SetFrame = 5,8
SetX = 5,-14
SetY = 5,-32
SetZ = 5,29
SetZoomX = 5,50
SetZoomY = 5,50
SetVisible = 6,false
<Particle 5>
Graphic = Examples/028-State01
Focus = User
SetFrame = 7,8
SetX = 7,40
SetY = 7,-10
SetZ = 7,29
SetZoomX = 7,50
SetZoomY = 7,50
SetVisible = 8,false
<Particle 2>
Graphic = Examples/028-State01
Focus = User
SetFrame = 3,8 SetFrame = 3,8
SetX = 3,40 SetX = 3,40
SetY = 3,-42 SetY = 3,-42
@@ -33,59 +73,5 @@ Name = Example anim
SetY = 10,-58 SetY = 10,-58
SetX = 11,79 SetX = 11,79
SetY = 11,-76 SetY = 11,-76
<Particle 4>
Graphic = Examples/028-State01
Focus = Target
SetFrame = 4,8
SetX = 4,47
SetY = 4,-55
SetZ = 4,27
SetZoomX = 4,50
SetZoomY = 4,50
SetX = 5,52
SetY = 5,-67
SetX = 6,-41
SetY = 6,-17
SetX = 7,-50
SetY = 7,-30
SetX = 8,-59
SetY = 8,-43
SetX = 9,-67
SetY = 9,-57
SetX = 10,-75
SetY = 10,-71
SetVisible = 11,false
<Particle 5>
Graphic = Examples/028-State01
Focus = Target
SetFrame = 5,8
SetX = 5,-14
SetY = 5,-32
SetZ = 5,29
SetZoomX = 5,50
SetZoomY = 5,50
SetVisible = 6,false
<Particle 6>
Graphic = Examples/028-State01
Focus = Target
SetFrame = 7,8
SetX = 7,40
SetY = 7,-10
SetZ = 7,29
SetZoomX = 7,50
SetZoomY = 7,50
SetVisible = 8,false
<Particle 2>
Graphic = Examples/028-State01
Focus = Target
SetFrame = 1,8
SetX = 1,24
SetY = 1,-18
SetZ = 1,27
SetZoomX = 1,50
SetZoomY = 1,50
SetX = 2,32
SetY = 2,-29
SetVisible = 3,false
<SE> <SE>
Play = 0,Sleep,80 Play = 0,Sleep,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,StatDown] [Common,StatDown]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,-50 SetX = 0,-50
SetY = 0,-53 SetY = 0,-53
@@ -31,9 +29,9 @@ Name = Example anim
SetX = 9,25 SetX = 9,25
SetY = 9,92 SetY = 9,92
SetVisible = 10,false SetVisible = 10,false
<Particle 3> <Particle 2>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,35 SetX = 0,35
SetY = 0,-52 SetY = 0,-52
@@ -50,9 +48,9 @@ Name = Example anim
SetX = 7,-41 SetX = 7,-41
SetY = 7,62 SetY = 7,62
SetVisible = 8,false SetVisible = 8,false
<Particle 4> <Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,22 SetX = 0,22
SetY = 0,-29 SetY = 0,-29
@@ -60,9 +58,9 @@ Name = Example anim
SetOpacity = 0,126 SetOpacity = 0,126
SetX = 1,-16 SetX = 1,-16
SetVisible = 2,false SetVisible = 2,false
<Particle 5> <Particle 4>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,35 SetX = 1,35
SetY = 1,-32 SetY = 1,-32
@@ -80,9 +78,9 @@ Name = Example anim
SetX = 8,-41 SetX = 8,-41
SetY = 8,82 SetY = 8,82
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 5>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,22 SetX = 1,22
SetY = 1,-9 SetY = 1,-9
@@ -101,9 +99,9 @@ Name = Example anim
SetX = 8,25 SetX = 8,25
SetY = 8,72 SetY = 8,72
SetVisible = 9,false SetVisible = 9,false
<Particle 7> <Particle 6>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-16 SetX = 2,-16
SetY = 2,-9 SetY = 2,-9
@@ -118,9 +116,9 @@ Name = Example anim
SetY = 7,52 SetY = 7,52
SetOpacity = 7,126 SetOpacity = 7,126
SetVisible = 8,false SetVisible = 8,false
<Particle 8> <Particle 7>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-1 SetX = 2,-1
SetY = 2,-57 SetY = 2,-57
@@ -131,18 +129,18 @@ Name = Example anim
SetY = 5,3 SetY = 5,3
SetY = 6,23 SetY = 6,23
SetVisible = 7,false SetVisible = 7,false
<Particle 9> <Particle 8>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,-41 SetX = 2,-41
SetY = 2,-38 SetY = 2,-38
SetZ = 2,35 SetZ = 2,35
SetOpacity = 2,126 SetOpacity = 2,126
SetVisible = 3,false SetVisible = 3,false
<Particle 10> <Particle 9>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,-41 SetX = 3,-41
SetY = 3,-18 SetY = 3,-18
@@ -152,9 +150,9 @@ Name = Example anim
SetY = 5,22 SetY = 5,22
SetY = 6,42 SetY = 6,42
SetVisible = 7,false SetVisible = 7,false
<Particle 11> <Particle 10>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,25 SetX = 3,25
SetY = 3,-28 SetY = 3,-28

View File

@@ -2,34 +2,13 @@
#------------------------------- #-------------------------------
[Common,StatUp] [Common,StatUp]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,6
SetX = 0,-41
SetY = 0,138
SetZ = 0,27
SetOpacity = 0,126
SetY = 1,114
SetY = 2,82
SetY = 3,50
SetY = 4,18
SetY = 5,-14
SetY = 6,-34
SetY = 7,-54
SetY = 8,-74
SetOpacity = 8,63
SetY = 9,-94
SetOpacity = 9,0
<Particle 3>
Graphic = Examples/!
Focus = Target
SetFrame = 0,6 SetFrame = 0,6
SetX = 0,7 SetX = 0,7
SetY = 0,106 SetY = 0,106
@@ -46,9 +25,9 @@ Name = Example anim
SetOpacity = 8,63 SetOpacity = 8,63
SetY = 9,-142 SetY = 9,-142
SetOpacity = 9,0 SetOpacity = 9,0
<Particle 4> <Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 0,6 SetFrame = 0,6
SetX = 0,55 SetX = 0,55
SetY = 0,138 SetY = 0,138
@@ -67,9 +46,9 @@ Name = Example anim
SetOpacity = 8,63 SetOpacity = 8,63
SetY = 9,-94 SetY = 9,-94
SetOpacity = 9,0 SetOpacity = 9,0
<Particle 5> <Particle 4>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 2,6 SetFrame = 2,6
SetX = 2,-9 SetX = 2,-9
SetY = 2,138 SetY = 2,138
@@ -84,9 +63,9 @@ Name = Example anim
SetOpacity = 8,63 SetOpacity = 8,63
SetY = 9,-38 SetY = 9,-38
SetOpacity = 9,0 SetOpacity = 9,0
<Particle 6> <Particle 5>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 3,6 SetFrame = 3,6
SetX = 3,39 SetX = 3,39
SetY = 3,138 SetY = 3,138
@@ -100,9 +79,9 @@ Name = Example anim
SetOpacity = 8,63 SetOpacity = 8,63
SetY = 9,-6 SetY = 9,-6
SetOpacity = 9,0 SetOpacity = 9,0
<Particle 7> <Particle 6>
Graphic = Examples/! Graphic = Examples/!
Focus = Target Focus = User
SetFrame = 5,6 SetFrame = 5,6
SetX = 5,-25 SetX = 5,-25
SetY = 5,138 SetY = 5,138
@@ -113,5 +92,24 @@ Name = Example anim
SetOpacity = 8,63 SetOpacity = 8,63
SetY = 9,58 SetY = 9,58
SetOpacity = 9,0 SetOpacity = 9,0
<Particle 1>
Graphic = Examples/!
Focus = User
SetFrame = 0,6
SetX = 0,-41
SetY = 0,138
SetZ = 0,27
SetOpacity = 0,126
SetY = 1,114
SetY = 2,82
SetY = 3,50
SetY = 4,18
SetY = 5,-14
SetY = 6,-34
SetY = 7,-54
SetY = 8,-74
SetOpacity = 8,63
SetY = 9,-94
SetOpacity = 9,0
<SE> <SE>
Play = 0,increase Play = 0,increase

View File

@@ -2,40 +2,27 @@
#------------------------------- #-------------------------------
[Common,Sun] [Common,Sun]
Name = Example anim Name = Example anim
<User> NoUser = true
SetX = 0,0 NoTarget = true
SetY = 0,0 <Particle 0>
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetX = 0,64 SetX = 0,64
SetY = 0,64 SetY = 0,64
SetZ = 0,28 SetOpacity = 0,0
SetOpacity = 0,64 MoveX = 0,4,94
SetX = 1,72 MoveY = 0,4,94
SetY = 1,72 MoveOpacity = 0,5,255
SetOpacity = 1,128
SetX = 2,80
SetY = 2,80
SetOpacity = 2,192
SetX = 3,88
SetY = 3,88
SetOpacity = 3,224
SetX = 4,94 SetX = 4,94
SetY = 4,94 SetY = 4,94
SetOpacity = 4,255 SetOpacity = 5,255
SetX = 12,88 SetOpacity = 10,255
SetY = 12,88 MoveOpacity = 10,5,0
SetOpacity = 12,224 SetX = 11,94
SetX = 13,80 SetY = 11,94
SetY = 13,80 MoveX = 11,4,64
SetOpacity = 13,192 MoveY = 11,4,64
SetX = 14,72
SetY = 14,72
SetOpacity = 14,128
SetX = 15,64 SetX = 15,64
SetY = 15,64 SetY = 15,64
SetOpacity = 15,64 SetOpacity = 15,0
<SE>

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,SuperShiny] [Common,SuperShiny]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,56 SetX = 2,56
SetY = 2,30 SetY = 2,30
@@ -28,9 +26,9 @@ Name = Example anim
SetX = 9,32 SetX = 9,32
SetY = 9,22 SetY = 9,22
SetVisible = 10,false SetVisible = 10,false
<Particle 4> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,-57 SetX = 3,-57
SetY = 3,-18 SetY = 3,-18
@@ -45,9 +43,9 @@ Name = Example anim
SetX = 8,32 SetX = 8,32
SetY = 8,22 SetY = 8,22
SetVisible = 9,false SetVisible = 9,false
<Particle 5> <Particle 4>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 5,5 SetFrame = 5,5
SetX = 5,32 SetX = 5,32
SetY = 5,-42 SetY = 5,-42
@@ -57,9 +55,9 @@ Name = Example anim
SetX = 7,32 SetX = 7,32
SetY = 7,22 SetY = 7,22
SetVisible = 8,false SetVisible = 8,false
<Particle 2> <Particle 1>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = Target Focus = User
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,-24 SetX = 0,-24
SetY = 0,14 SetY = 0,14

View File

@@ -2,30 +2,17 @@
#------------------------------- #-------------------------------
[Common,Toxic] [Common,Toxic]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/State1 Graphic = Examples/State1
Focus = Target Focus = User
SetX = 1,0 SetFrame = 1,0
SetY = 1,-10 SetZoomX = 1,200
SetZ = 1,27 SetZoomY = 1,200
SetFrame = 2,1 MoveFrame = 1,14,14
SetFrame = 3,2 SetFrame = 15,14
SetFrame = 4,3
SetFrame = 5,4
SetFrame = 6,5
SetFrame = 7,6
SetFrame = 8,7
SetFrame = 9,8
SetFrame = 10,9
SetFrame = 11,10
SetFrame = 12,11
SetFrame = 13,12
SetFrame = 14,13
<SE> <SE>
Play = 0,Poison,80,80 Play = 0,Poison,80,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Common,Wrap] [Common,Wrap]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetFrame = 0,1 SetFrame = 0,1
SetX = 0,56 SetX = 0,56
SetY = 0,6 SetY = 0,6
@@ -26,9 +24,9 @@ Name = Example anim
SetX = 6,112 SetX = 6,112
SetY = 6,6 SetY = 6,6
SetX = 7,96 SetX = 7,96
<Particle 2> <Particle 1>
Graphic = Examples/Struggle Graphic = Examples/Struggle
Focus = Target Focus = User
SetX = 0,-64 SetX = 0,-64
SetY = 0,6 SetY = 0,6
SetZ = 0,27 SetZ = 0,27

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,ACIDARMOR] [Move,ACIDARMOR]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/poison3 Graphic = Examples/poison3
Focus = Target Focus = User
SetFrame = 0,1 SetFrame = 0,1
SetX = 0,8 SetX = 0,8
SetY = 0,-2 SetY = 0,-2

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 3> <Particle 3>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 2,12 SetFrame = 2,12
SetX = 2,-8 SetX = 2,-8
@@ -26,7 +26,7 @@ Name = Example anim
SetZoomX = 6,84 SetZoomX = 6,84
SetZoomY = 6,84 SetZoomY = 6,84
<Particle 2> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 0,13 SetFrame = 0,13
SetX = 0,8 SetX = 0,8

View File

@@ -12,23 +12,25 @@ Name = Example anim
Graphic = Examples/mixed status Graphic = Examples/mixed status
Focus = Target Focus = Target
SetFrame = 0,13 SetFrame = 0,13
SetX = 0,15 SetX = 0,25
SetY = 0,-3 SetY = 0,-60
SetZ = 0,27 SetZ = 0,27
SetX = 1,13 SetZoomX = 0,200
SetY = 1,-2 SetZoomY = 0,200
SetX = 2,11 SetX = 1,23
SetX = 3,10 SetY = 1,-62
SetY = 3,0 SetX = 2,21
SetY = 4,-3 SetX = 3,20
SetX = 5,13 SetY = 3,-60
SetY = 5,-2 SetY = 4,-63
SetX = 6,9 SetX = 5,23
SetY = 6,-4 SetY = 5,-62
SetX = 7,11 SetX = 6,19
SetY = 7,-1 SetY = 6,-64
SetX = 8,9 SetX = 7,21
SetY = 8,-4 SetY = 7,-61
SetX = 8,19
SetY = 8,-64
SetVisible = 9,false SetVisible = 9,false
<Particle 3> <Particle 3>
Graphic = Examples/mixed status Graphic = Examples/mixed status

View File

@@ -273,11 +273,7 @@ Name = Example anim
[OppMove,AERIALACE] [OppMove,AERIALACE]
Name = Example anim Name = Example anim
<User> <User>
SetX = 0,0
SetY = 0,0
<Target> <Target>
SetX = 0,0
SetY = 0,0
SetOpacity = 1,170 SetOpacity = 1,170
SetOpacity = 2,85 SetOpacity = 2,85
SetOpacity = 3,0 SetOpacity = 3,0

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,AGILITY] [Move,AGILITY]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 0,5 SetFrame = 0,5
@@ -25,7 +23,7 @@ Name = Example anim
SetX = 7,82 SetX = 7,82
SetX = 8,107 SetX = 8,107
SetX = 9,132 SetX = 9,132
<Particle 4> <Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 0,5 SetFrame = 0,5
@@ -41,7 +39,7 @@ Name = Example anim
SetX = 6,152 SetX = 6,152
SetX = 7,187 SetX = 7,187
SetVisible = 8,false SetVisible = 8,false
<Particle 5> <Particle 4>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 1,5 SetFrame = 1,5
@@ -57,7 +55,7 @@ Name = Example anim
SetX = 7,62 SetX = 7,62
SetX = 8,87 SetX = 8,87
SetX = 9,112 SetX = 9,112
<Particle 6> <Particle 5>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 2,5 SetFrame = 2,5
@@ -72,7 +70,7 @@ Name = Example anim
SetX = 7,77 SetX = 7,77
SetX = 8,112 SetX = 8,112
SetX = 9,147 SetX = 9,147
<Particle 2> <Particle 1>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 0,5 SetFrame = 0,5

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,ALLYSWITCH] [Move,ALLYSWITCH]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = User Focus = User
SetFrame = 0,10 SetFrame = 0,10

View File

@@ -2,23 +2,23 @@
#------------------------------- #-------------------------------
[Move,AMNESIA] [Move,AMNESIA]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/mixed Graphic = Examples/mixed
Focus = Target Focus = User
SetFrame = 0,3 SetFrame = 0,3
SetX = 0,44 SetX = 0,44
SetY = 0,-16 SetY = 0,-16
SetZ = 0,27 SetZoomX = 0,200
SetOpacity = 0,200 SetZoomY = 0,200
SetOpacity = 1,220 SetOpacity = 0,0
SetOpacity = 2,250 MoveOpacity = 0,4,255
SetOpacity = 3,255 SetOpacity = 4,255
SetVisible = 7,false SetOpacity = 10,255
MoveOpacity = 10,4,0
SetOpacity = 14,0
<SE> <SE>
Play = 0,Yawn Play = 0,Yawn

View File

@@ -2,75 +2,73 @@
#------------------------------- #-------------------------------
[Move,AQUARING] [Move,AQUARING]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/fly copy
Focus = UserAndTarget
SetX = 2,203
SetY = 2,-181
SetZ = 2,28
SetFrame = 3,9
SetX = 3,202
SetY = 3,-193
SetFrame = 4,8
SetX = 4,187
SetY = 4,-200
SetX = 5,197
SetY = 5,-204
<Particle 4>
Graphic = Examples/fly copy
Focus = UserAndTarget
SetX = 3,209
SetY = 3,-176
SetZ = 3,29
SetFrame = 4,7
SetX = 4,192
SetY = 4,-198
SetX = 5,201
SetY = 5,-206
<Particle 5>
Graphic = Examples/fly copy
Focus = UserAndTarget
SetFrame = 4,5
SetX = 4,196
SetY = 4,-203
SetZ = 4,30
SetVisible = 5,false
<Particle 6>
Graphic = Examples/fly copy
Focus = UserAndTarget
SetX = 4,201
SetY = 4,-187
SetZ = 4,31
SetVisible = 5,false
<Particle 2> <Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = User
SetX = 0,207 SetX = 2,5
SetY = 0,-185 SetY = 2,12
SetZ = 2,28
SetFrame = 3,9
SetX = 3,3
SetY = 3,4
SetFrame = 4,8
SetX = 4,-16
SetY = 4,0
SetX = 5,-3
SetY = 5,-3
<Particle 3>
Graphic = Examples/fly copy
Focus = User
SetX = 3,12
SetY = 3,15
SetZ = 3,29
SetFrame = 4,7
SetX = 4,-10
SetY = 4,1
SetX = 5,2
SetY = 5,-4
<Particle 4>
Graphic = Examples/fly copy
Focus = User
SetFrame = 4,5
SetX = 4,-4
SetY = 4,-2
SetZ = 4,30
SetVisible = 5,false
<Particle 5>
Graphic = Examples/fly copy
Focus = User
SetX = 4,2
SetY = 4,8
SetZ = 4,31
SetVisible = 5,false
<Particle 1>
Graphic = Examples/fly copy
Focus = User
SetX = 0,10
SetY = 0,9
SetZ = 0,27 SetZ = 0,27
SetX = 1,208 SetX = 1,11
SetY = 1,-182 SetY = 1,11
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,203 SetX = 2,4
SetY = 2,-203 SetY = 2,-2
SetZoomX = 2,110 SetZoomX = 2,110
SetZoomY = 2,110 SetZoomY = 2,110
SetFrame = 3,8 SetFrame = 3,8
SetX = 3,196 SetX = 3,-5
SetY = 3,-196 SetY = 3,2
SetZoomX = 3,100 SetZoomX = 3,100
SetZoomY = 3,100 SetZoomY = 3,100
SetFrame = 4,9 SetFrame = 4,9
SetX = 4,198 SetX = 4,-2
SetY = 4,-193 SetY = 4,4
SetFrame = 5,0 SetFrame = 5,0
SetX = 5,207 SetX = 5,10
SetY = 5,-187 SetY = 5,8
<SE> <SE>
Play = 0,Weatherball,80 Play = 0,Weatherball,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,BARRIER] [Move,BARRIER]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 1,7 SetFrame = 1,7
SetX = 1,-28 SetX = 1,-28
SetY = 1,-31 SetY = 1,-31
@@ -37,9 +35,9 @@ Name = Example anim
SetY = 8,-7 SetY = 8,-7
SetFrame = 9,7 SetFrame = 9,7
SetX = 9,-17 SetX = 9,-17
<Particle 2> <Particle 1>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 0,15 SetFrame = 0,15
SetX = 0,8 SetX = 0,8
SetY = 0,-1 SetY = 0,-1

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 3> <Particle 3>
Graphic = Examples/anim sheet.2 Graphic = Examples/anim sheet 2
Focus = Target Focus = Target
SetFrame = 4,13 SetFrame = 4,13
SetX = 4,6 SetX = 4,6
@@ -22,7 +22,7 @@ Name = Example anim
SetX = 6,8 SetX = 6,8
SetVisible = 7,false SetVisible = 7,false
<Particle 4> <Particle 4>
Graphic = Examples/anim sheet.2 Graphic = Examples/anim sheet 2
Focus = Target Focus = Target
SetFrame = 8,16 SetFrame = 8,16
SetX = 8,0 SetX = 8,0
@@ -37,7 +37,7 @@ Name = Example anim
SetX = 11,1 SetX = 11,1
SetY = 11,-4 SetY = 11,-4
<Particle 2> <Particle 2>
Graphic = Examples/anim sheet.2 Graphic = Examples/anim sheet 2
Focus = Target Focus = Target
SetFrame = 0,10 SetFrame = 0,10
SetX = 0,-2 SetX = 0,-2

View File

@@ -2,30 +2,13 @@
#------------------------------- #-------------------------------
[Move,BULKUP] [Move,BULKUP]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = Target Focus = User
SetFrame = 0,15
SetX = 0,80
SetY = 0,6
SetZ = 0,27
SetOpacity = 0,200
SetY = 1,-2
SetOpacity = 1,150
SetY = 2,-10
SetOpacity = 2,100
SetY = 3,-18
SetOpacity = 3,50
SetVisible = 4,false
<Particle 3>
Graphic = Examples/animsheet
Focus = Target
SetFrame = 0,15 SetFrame = 0,15
SetX = 0,-40 SetX = 0,-40
SetY = 0,6 SetY = 0,6
@@ -38,9 +21,9 @@ Name = Example anim
SetY = 3,-18 SetY = 3,-18
SetOpacity = 3,50 SetOpacity = 3,50
SetVisible = 4,false SetVisible = 4,false
<Particle 4> <Particle 3>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = Target Focus = User
SetFrame = 6,15 SetFrame = 6,15
SetX = 6,80 SetX = 6,80
SetY = 6,6 SetY = 6,6
@@ -53,9 +36,9 @@ Name = Example anim
SetY = 9,-18 SetY = 9,-18
SetOpacity = 9,50 SetOpacity = 9,50
SetVisible = 10,false SetVisible = 10,false
<Particle 5> <Particle 4>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = Target Focus = User
SetFrame = 6,15 SetFrame = 6,15
SetX = 6,-40 SetX = 6,-40
SetY = 6,6 SetY = 6,6
@@ -68,9 +51,9 @@ Name = Example anim
SetY = 9,-18 SetY = 9,-18
SetOpacity = 9,50 SetOpacity = 9,50
SetVisible = 10,false SetVisible = 10,false
<Particle 6> <Particle 5>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = Target Focus = User
SetFrame = 12,15 SetFrame = 12,15
SetX = 12,80 SetX = 12,80
SetY = 12,6 SetY = 12,6
@@ -83,9 +66,9 @@ Name = Example anim
SetY = 15,-18 SetY = 15,-18
SetOpacity = 15,50 SetOpacity = 15,50
SetVisible = 16,false SetVisible = 16,false
<Particle 7> <Particle 6>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = Target Focus = User
SetFrame = 12,15 SetFrame = 12,15
SetX = 12,-40 SetX = 12,-40
SetY = 12,6 SetY = 12,6
@@ -98,6 +81,21 @@ Name = Example anim
SetY = 15,-18 SetY = 15,-18
SetOpacity = 15,50 SetOpacity = 15,50
SetVisible = 16,false SetVisible = 16,false
<Particle 1>
Graphic = Examples/animsheet
Focus = User
SetFrame = 0,15
SetX = 0,80
SetY = 0,6
SetZ = 0,27
SetOpacity = 0,200
SetY = 1,-2
SetOpacity = 1,150
SetY = 2,-10
SetOpacity = 2,100
SetY = 3,-18
SetOpacity = 3,50
SetVisible = 4,false
<SE> <SE>
Play = 0,fog2,80,150 Play = 0,fog2,80,150
Play = 6,fog2,80,150 Play = 6,fog2,80,150

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,CHARGE] [Move,CHARGE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetX = 0,200 SetX = 0,200
@@ -40,7 +38,7 @@ Name = Example anim
SetY = 10,70 SetY = 10,70
SetFrame = 11,6 SetFrame = 11,6
SetOpacity = 11,100 SetOpacity = 11,100
<Particle 3> <Particle 2>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetFrame = 1,3 SetFrame = 1,3
@@ -72,7 +70,7 @@ Name = Example anim
SetFrame = 11,3 SetFrame = 11,3
SetX = 11,104 SetX = 11,104
SetY = 11,-2 SetY = 11,-2
<Particle 4> <Particle 3>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetFrame = 3,4 SetFrame = 3,4
@@ -94,7 +92,7 @@ Name = Example anim
SetX = 8,48 SetX = 8,48
SetY = 8,-2 SetY = 8,-2
SetVisible = 9,false SetVisible = 9,false
<Particle 5> <Particle 4>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetX = 4,-200 SetX = 4,-200
@@ -111,7 +109,7 @@ Name = Example anim
SetX = 8,64 SetX = 8,64
SetY = 8,-50 SetY = 8,-50
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 5>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetX = 5,216 SetX = 5,216
@@ -126,7 +124,7 @@ Name = Example anim
SetX = 8,48 SetX = 8,48
SetY = 8,54 SetY = 8,54
SetVisible = 9,false SetVisible = 9,false
<Particle 7> <Particle 6>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetFrame = 7,1 SetFrame = 7,1
@@ -134,7 +132,7 @@ Name = Example anim
SetY = 7,62 SetY = 7,62
SetZ = 7,32 SetZ = 7,32
SetVisible = 8,false SetVisible = 8,false
<Particle 8> <Particle 7>
Graphic = Examples/electric2 Graphic = Examples/electric2
Focus = User Focus = User
SetFrame = 10,4 SetFrame = 10,4

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 1,7 SetFrame = 1,7
SetX = 1,-23 SetX = 1,-23
@@ -53,7 +53,7 @@ Name = Example anim
SetX = 13,18 SetX = 13,18
SetY = 13,1 SetY = 13,1
<Particle 3> <Particle 3>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 1,9 SetFrame = 1,9
SetX = 1,-52 SetX = 1,-52
@@ -91,7 +91,7 @@ Name = Example anim
SetX = 13,4 SetX = 13,4
SetY = 13,7 SetY = 13,7
<Particle 4> <Particle 4>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 1,11 SetFrame = 1,11
SetX = 1,-31 SetX = 1,-31
@@ -121,7 +121,7 @@ Name = Example anim
SetY = 8,27 SetY = 8,27
SetVisible = 9,false SetVisible = 9,false
<Particle 5> <Particle 5>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 2,9 SetFrame = 2,9
SetX = 2,33 SetX = 2,33
@@ -148,7 +148,7 @@ Name = Example anim
SetY = 7,-9 SetY = 7,-9
SetVisible = 8,false SetVisible = 8,false
<Particle 6> <Particle 6>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 2,9 SetFrame = 2,9
SetX = 2,-5 SetX = 2,-5
@@ -172,7 +172,7 @@ Name = Example anim
SetY = 7,-2 SetY = 7,-2
SetVisible = 8,false SetVisible = 8,false
<Particle 7> <Particle 7>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 2,11 SetFrame = 2,11
SetX = 2,16 SetX = 2,16
@@ -190,7 +190,7 @@ Name = Example anim
SetY = 5,14 SetY = 5,14
SetVisible = 6,false SetVisible = 6,false
<Particle 8> <Particle 8>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 3,7 SetFrame = 3,7
SetX = 3,29 SetX = 3,29
@@ -203,7 +203,7 @@ Name = Example anim
SetY = 5,-1 SetY = 5,-1
SetVisible = 6,false SetVisible = 6,false
<Particle 9> <Particle 9>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 3,7 SetFrame = 3,7
SetX = 3,-7 SetX = 3,-7
@@ -216,7 +216,7 @@ Name = Example anim
SetY = 5,7 SetY = 5,7
SetVisible = 6,false SetVisible = 6,false
<Particle 10> <Particle 10>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 3,11 SetFrame = 3,11
SetX = 3,15 SetX = 3,15
@@ -224,7 +224,7 @@ Name = Example anim
SetZ = 3,36 SetZ = 3,36
SetVisible = 4,false SetVisible = 4,false
<Particle 11> <Particle 11>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 4,10 SetFrame = 4,10
SetX = 4,-1 SetX = 4,-1
@@ -257,7 +257,7 @@ Name = Example anim
SetX = 13,-12 SetX = 13,-12
SetY = 13,20 SetY = 13,20
<Particle 12> <Particle 12>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 11,7 SetFrame = 11,7
SetX = 11,-11 SetX = 11,-11
@@ -265,7 +265,7 @@ Name = Example anim
SetZ = 11,30 SetZ = 11,30
SetVisible = 12,false SetVisible = 12,false
<Particle 13> <Particle 13>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 11,9 SetFrame = 11,9
SetX = 11,18 SetX = 11,18
@@ -273,7 +273,7 @@ Name = Example anim
SetZ = 11,31 SetZ = 11,31
SetVisible = 12,false SetVisible = 12,false
<Particle 14> <Particle 14>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 11,11 SetFrame = 11,11
SetX = 11,9 SetX = 11,9
@@ -281,21 +281,21 @@ Name = Example anim
SetZ = 11,32 SetZ = 11,32
SetVisible = 12,false SetVisible = 12,false
<Particle 15> <Particle 15>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 13,9 SetFrame = 13,9
SetX = 13,-30 SetX = 13,-30
SetY = 13,-27 SetY = 13,-27
SetZ = 13,30 SetZ = 13,30
<Particle 16> <Particle 16>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 13,7 SetFrame = 13,7
SetX = 13,0 SetX = 13,0
SetY = 13,-33 SetY = 13,-33
SetZ = 13,31 SetZ = 13,31
<Particle 17> <Particle 17>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 13,11 SetFrame = 13,11
SetX = 13,-10 SetX = 13,-10

View File

@@ -2,13 +2,79 @@
#------------------------------- #-------------------------------
[Move,COTTONGUARD] [Move,COTTONGUARD]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/animsheet
Focus = User
SetFrame = 1,15
SetX = 1,28
SetY = 1,34
SetZ = 1,28
SetX = 2,38
SetY = 2,23
SetX = 3,39
SetY = 3,19
SetX = 4,26
SetY = 4,10
SetX = 5,37
SetY = 5,32
SetX = 6,26
SetY = 6,-7
SetVisible = 7,false
<Particle 3>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,5
SetY = 3,39
SetZ = 3,29
SetX = 4,42
SetY = 4,35
SetX = 5,18
SetY = 5,13
SetX = 6,13
SetY = 6,28
SetVisible = 7,false
<Particle 4>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,39
SetY = 3,42
SetZ = 3,30
SetX = 4,10
SetY = 4,45
SetX = 5,35
SetY = 5,-10
SetX = 6,50
SetY = 6,41
SetVisible = 7,false
<Particle 5>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,48
SetY = 3,-4
SetZ = 3,31
SetX = 4,62
SetY = 4,12
SetX = 5,52
SetY = 5,8
SetX = 6,10
SetY = 6,45
SetVisible = 7,false
<Particle 6>
Graphic = Examples/animsheet
Focus = User
SetFrame = 4,15
SetX = 4,1
SetY = 4,13
SetZ = 4,32
SetVisible = 5,false
<Particle 1>
Graphic = Examples/animsheet Graphic = Examples/animsheet
Focus = User Focus = User
SetFrame = 0,15 SetFrame = 0,15
@@ -27,73 +93,5 @@ Name = Example anim
SetX = 6,56 SetX = 6,56
SetY = 6,9 SetY = 6,9
SetVisible = 7,false SetVisible = 7,false
<Particle 3>
Graphic = Examples/animsheet
Focus = User
SetFrame = 1,15
SetX = 1,28
SetY = 1,34
SetZ = 1,28
SetX = 2,38
SetY = 2,23
SetX = 3,39
SetY = 3,19
SetX = 4,26
SetY = 4,10
SetX = 5,37
SetY = 5,32
SetX = 6,26
SetY = 6,-7
SetVisible = 7,false
<Particle 4>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,5
SetY = 3,39
SetZ = 3,29
SetX = 4,42
SetY = 4,35
SetX = 5,18
SetY = 5,13
SetX = 6,13
SetY = 6,28
SetVisible = 7,false
<Particle 5>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,39
SetY = 3,42
SetZ = 3,30
SetX = 4,10
SetY = 4,45
SetX = 5,35
SetY = 5,-10
SetX = 6,50
SetY = 6,41
SetVisible = 7,false
<Particle 6>
Graphic = Examples/animsheet
Focus = User
SetFrame = 3,15
SetX = 3,48
SetY = 3,-4
SetZ = 3,31
SetX = 4,62
SetY = 4,12
SetX = 5,52
SetY = 5,8
SetX = 6,10
SetY = 6,45
SetVisible = 7,false
<Particle 7>
Graphic = Examples/animsheet
Focus = User
SetFrame = 4,15
SetX = 4,1
SetY = 4,13
SetZ = 4,32
SetVisible = 5,false
<SE> <SE>
Play = 0,Substitute,80 Play = 0,Substitute,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,CURSE] [Move,CURSE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 0,8 SetFrame = 0,8
SetX = 0,8 SetX = 0,8
SetY = 0,-82 SetY = 0,-82

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,DEFENSECURL] [Move,DEFENSECURL]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = User Focus = User
SetFrame = 0,5 SetFrame = 0,5

View File

@@ -2,31 +2,29 @@
#------------------------------- #-------------------------------
[Move,DETECT] [Move,DETECT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 0,8 SetFrame = 0,8
SetX = 0,229 SetX = 0,38
SetY = 0,-246 SetY = 0,-30
SetZ = 0,27 SetZ = 0,27
SetX = 1,230 SetX = 1,39
SetY = 1,-243 SetY = 1,-28
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,225 SetX = 2,32
SetY = 2,-235 SetY = 2,-23
SetX = 3,228 SetX = 3,36
SetY = 3,-237 SetY = 3,-24
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,218 SetX = 4,24
SetY = 4,-234 SetY = 4,-22
SetX = 5,219 SetX = 5,25
SetY = 5,-228 SetY = 5,-18
SetVisible = 6,false SetVisible = 6,false
<SE> <SE>
Play = 0,Flash2,80,85 Play = 0,Flash2,80,85

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,DRAGONDANCE] [Move,DRAGONDANCE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/electric1 Graphic = Examples/electric1
Focus = Target Focus = User
SetFrame = 3,9 SetFrame = 3,9
SetX = 3,8 SetX = 3,8
SetY = 3,-50 SetY = 3,-50
@@ -22,9 +20,9 @@ Name = Example anim
SetY = 7,-2 SetY = 7,-2
SetFrame = 8,10 SetFrame = 8,10
SetVisible = 9,false SetVisible = 9,false
<Particle 2> <Particle 1>
Graphic = Examples/electric1 Graphic = Examples/electric1
Focus = Target Focus = User
SetFrame = 1,9 SetFrame = 1,9
SetX = 1,8 SetX = 1,8
SetY = 1,-2 SetY = 1,-2

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 0,7 SetFrame = 0,7
SetX = 0,-20 SetX = 0,-20

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/anim sheet.2 Graphic = Examples/anim sheet 2
Focus = Target Focus = Target
SetFrame = 0,10 SetFrame = 0,10
SetX = 0,4 SetX = 0,4

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,7 SetFrame = 0,7
SetX = 0,176 SetX = 0,176

View File

@@ -204,155 +204,155 @@ Name = Example anim
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,9 SetFrame = 0,9
SetX = 0,210 SetX = 0,-10
SetY = 0,-251 SetY = 0,51
SetZ = 0,27 SetZ = 0,27
SetFrame = 8,15 SetFrame = 8,15
SetX = 8,8 SetX = 8,191
SetY = 8,4 SetY = 8,-204
SetFrame = 9,14 SetFrame = 9,14
SetX = 9,3 SetX = 9,196
SetY = 9,-12 SetY = 9,-187
SetX = 10,10 SetX = 10,189
SetY = 10,-10 SetY = 10,-189
SetX = 11,7 SetX = 11,192
SetY = 11,-1 SetY = 11,-198
<Particle 3> <Particle 3>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,9 SetFrame = 0,9
SetX = 0,225 SetX = 0,-25
SetY = 0,-232 SetY = 0,32
SetZ = 0,28 SetZ = 0,28
SetVisible = 8,false SetVisible = 8,false
<Particle 4> <Particle 4>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,9 SetFrame = 1,9
SetX = 1,229 SetX = 1,-29
SetY = 1,-190 SetY = 1,-9
SetZ = 1,29 SetZ = 1,29
SetVisible = 8,false SetVisible = 8,false
<Particle 5> <Particle 5>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 2,9 SetFrame = 2,9
SetX = 2,217 SetX = 2,-17
SetY = 2,-162 SetY = 2,-37
SetZ = 2,30 SetZ = 2,30
SetVisible = 8,false SetVisible = 8,false
<Particle 6> <Particle 6>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,9 SetFrame = 3,9
SetX = 3,196 SetX = 3,3
SetY = 3,-178 SetY = 3,-21
SetZ = 3,31 SetZ = 3,31
SetX = 4,194 SetX = 4,5
SetY = 4,-175 SetY = 4,-25
SetVisible = 8,false SetVisible = 8,false
<Particle 7> <Particle 7>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,9 SetFrame = 4,9
SetX = 4,185 SetX = 4,14
SetY = 4,-206 SetY = 4,6
SetZ = 4,32 SetZ = 4,32
SetVisible = 8,false SetVisible = 8,false
<Particle 8> <Particle 8>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 5,9 SetFrame = 5,9
SetX = 5,193 SetX = 5,6
SetY = 5,-239 SetY = 5,39
SetZ = 5,33 SetZ = 5,33
SetVisible = 8,false SetVisible = 8,false
<Particle 9> <Particle 9>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,10 SetFrame = 6,10
SetX = 6,203 SetX = 6,-3
SetY = 6,-253 SetY = 6,53
SetZ = 6,34 SetZ = 6,34
SetVisible = 8,false SetVisible = 8,false
<Particle 10> <Particle 10>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,10 SetFrame = 6,10
SetX = 6,218 SetX = 6,-18
SetY = 6,-239 SetY = 6,39
SetZ = 6,35 SetZ = 6,35
SetVisible = 8,false SetVisible = 8,false
<Particle 11> <Particle 11>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,10 SetFrame = 6,10
SetX = 6,229 SetX = 6,-29
SetY = 6,-201 SetY = 6,1
SetZ = 6,36 SetZ = 6,36
SetVisible = 8,false SetVisible = 8,false
<Particle 12> <Particle 12>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,10 SetFrame = 6,10
SetX = 6,217 SetX = 6,-17
SetY = 6,-173 SetY = 6,-26
SetZ = 6,37 SetZ = 6,37
SetVisible = 8,false SetVisible = 8,false
<Particle 13> <Particle 13>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,10 SetFrame = 7,10
SetX = 7,200 SetX = 7,0
SetY = 7,-181 SetY = 7,-18
SetZ = 7,38 SetZ = 7,38
SetVisible = 8,false SetVisible = 8,false
<Particle 14> <Particle 14>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,10 SetFrame = 7,10
SetX = 7,192 SetX = 7,7
SetY = 7,-215 SetY = 7,15
SetZ = 7,39 SetZ = 7,39
SetVisible = 8,false SetVisible = 8,false
<Particle 15> <Particle 15>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,10 SetFrame = 7,10
SetX = 7,196 SetX = 7,3
SetY = 7,-240 SetY = 7,40
SetZ = 7,40 SetZ = 7,40
SetVisible = 8,false SetVisible = 8,false
<Particle 16> <Particle 16>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 10,10 SetFrame = 10,10
SetX = 10,37 SetX = 10,162
SetY = 10,-57 SetY = 10,-142
SetZ = 10,28 SetZ = 10,28
SetX = 11,27 SetX = 11,172
<Particle 17> <Particle 17>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 10,10 SetFrame = 10,10
SetX = 10,-7 SetX = 10,207
SetY = 10,15 SetY = 10,-215
SetZ = 10,29 SetZ = 10,29
SetX = 11,-8 SetX = 11,208
SetY = 11,31 SetY = 11,-231
<Particle 18> <Particle 18>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 11,10 SetFrame = 11,10
SetX = 11,-14 SetX = 11,214
SetY = 11,-37 SetY = 11,-162
SetZ = 11,30 SetZ = 11,30
<Particle 19> <Particle 19>
Graphic = Examples/punches Graphic = Examples/punches
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 11,10 SetFrame = 11,10
SetX = 11,34 SetX = 11,165
SetY = 11,23 SetY = 11,-223
SetZ = 11,31 SetZ = 11,31
<SE> <SE>
Play = 0,Trump Card,100,110 Play = 0,Trump Card,100,110

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,FOCUSENERGY] [Move,FOCUSENERGY]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/Fire3 Graphic = Examples/Fire3
Focus = User Focus = User
SetFrame = 4,29 SetFrame = 4,29
@@ -17,7 +15,7 @@ Name = Example anim
SetZ = 4,28 SetZ = 4,28
SetFrame = 5,28 SetFrame = 5,28
SetVisible = 6,false SetVisible = 6,false
<Particle 2> <Particle 1>
Graphic = Examples/Fire3 Graphic = Examples/Fire3
Focus = User Focus = User
SetFrame = 0,29 SetFrame = 0,29

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,FOLLOWME] [Move,FOLLOWME]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0 Graphic = Examples/finger spoon
SetY = 0,0 Focus = User
<Particle 2>
Graphic = Examples/finger.spoon
Focus = Target
SetX = 0,2 SetX = 0,2
SetY = 0,1 SetY = 0,1
SetZ = 0,27 SetZ = 0,27
@@ -35,9 +33,9 @@ Name = Example anim
SetX = 9,-205 SetX = 9,-205
SetY = 9,139 SetY = 9,139
SetVisible = 10,false SetVisible = 10,false
<Particle 3> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = User
SetFrame = 6,1 SetFrame = 6,1
SetX = 6,-117 SetX = 6,-117
SetY = 6,120 SetY = 6,120
@@ -48,22 +46,20 @@ Name = Example anim
#------------------------------- #-------------------------------
[OppMove,FOLLOWME] [OppMove,FOLLOWME]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0 Graphic = Examples/finger spoon
SetY = 0,0 Focus = User
<Particle 3>
Graphic = Examples/finger.spoon
Focus = Target
SetX = 5,-102 SetX = 5,-102
SetY = 5,110 SetY = 5,110
SetZ = 5,28 SetZ = 5,28
SetVisible = 6,false SetVisible = 6,false
<Particle 2> <Particle 1>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = User
SetFrame = 0,1 SetFrame = 0,1
SetX = 0,-193 SetX = 0,-193
SetY = 0,125 SetY = 0,125

View File

@@ -249,23 +249,23 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,159 SetX = 3,40
SetY = 3,-151 SetY = 3,-48
SetZ = 3,28 SetZ = 3,28
SetAngle = 3,180 SetAngle = 3,180
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,121 SetX = 4,78
SetY = 4,-103 SetY = 4,-96
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,71 SetX = 5,128
SetY = 5,-42 SetY = 5,-157
SetVisible = 6,false SetVisible = 6,false
<Particle 5> <Particle 5>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,1 SetFrame = 4,1
SetX = 4,0 SetX = 4,199
SetY = 4,28 SetY = 4,-228
SetZ = 4,27 SetZ = 4,27
SetFrame = 5,2 SetFrame = 5,2
SetFrame = 6,1 SetFrame = 6,1
@@ -274,16 +274,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,164 SetX = 0,35
SetY = 0,-150 SetY = 0,-50
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetFrame = 1,6 SetFrame = 1,6
SetX = 1,125 SetX = 1,75
SetY = 1,-107 SetY = 1,-92
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,66 SetX = 2,133
SetY = 2,-32 SetY = 2,-167
SetVisible = 3,false SetVisible = 3,false
<SE> <SE>
Play = 3,normaldamage,80 Play = 3,normaldamage,80
@@ -301,16 +301,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,164 SetX = 0,35
SetY = 0,-150 SetY = 0,-50
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetFrame = 1,6 SetFrame = 1,6
SetX = 1,125 SetX = 1,75
SetY = 1,-107 SetY = 1,-92
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,66 SetX = 2,133
SetY = 2,-32 SetY = 2,-167
SetVisible = 3,false SetVisible = 3,false
<Particle 3> <Particle 3>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
@@ -323,23 +323,23 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,159 SetX = 3,40
SetY = 3,-151 SetY = 3,-48
SetZ = 3,28 SetZ = 3,28
SetAngle = 3,180 SetAngle = 3,180
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,121 SetX = 4,78
SetY = 4,-103 SetY = 4,-96
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,71 SetX = 5,128
SetY = 5,-42 SetY = 5,-157
SetVisible = 6,false SetVisible = 6,false
<Particle 5> <Particle 5>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,1 SetFrame = 4,1
SetX = 4,0 SetX = 4,199
SetY = 4,28 SetY = 4,-228
SetZ = 4,27 SetZ = 4,27
SetFrame = 5,2 SetFrame = 5,2
SetFrame = 6,1 SetFrame = 6,1
@@ -360,8 +360,8 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,1 SetFrame = 4,1
SetX = 4,0 SetX = 4,199
SetY = 4,28 SetY = 4,-228
SetZ = 4,27 SetZ = 4,27
SetFrame = 5,2 SetFrame = 5,2
SetFrame = 6,1 SetFrame = 6,1
@@ -370,16 +370,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,164 SetX = 0,35
SetY = 0,-150 SetY = 0,-50
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetFrame = 1,6 SetFrame = 1,6
SetX = 1,125 SetX = 1,75
SetY = 1,-107 SetY = 1,-92
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,66 SetX = 2,133
SetY = 2,-32 SetY = 2,-167
SetVisible = 3,false SetVisible = 3,false
<Particle 3> <Particle 3>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
@@ -392,16 +392,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,159 SetX = 3,40
SetY = 3,-151 SetY = 3,-48
SetZ = 3,28 SetZ = 3,28
SetAngle = 3,180 SetAngle = 3,180
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,121 SetX = 4,78
SetY = 4,-103 SetY = 4,-96
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,71 SetX = 5,128
SetY = 5,-42 SetY = 5,-157
SetVisible = 6,false SetVisible = 6,false
<SE> <SE>
Play = 3,normaldamage,80 Play = 3,normaldamage,80
@@ -419,23 +419,23 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,159 SetX = 3,40
SetY = 3,-151 SetY = 3,-48
SetZ = 3,28 SetZ = 3,28
SetAngle = 3,180 SetAngle = 3,180
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,121 SetX = 4,78
SetY = 4,-103 SetY = 4,-96
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,71 SetX = 5,128
SetY = 5,-42 SetY = 5,-157
SetVisible = 6,false SetVisible = 6,false
<Particle 5> <Particle 5>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,1 SetFrame = 4,1
SetX = 4,0 SetX = 4,199
SetY = 4,28 SetY = 4,-228
SetZ = 4,27 SetZ = 4,27
SetFrame = 5,2 SetFrame = 5,2
SetFrame = 6,1 SetFrame = 6,1
@@ -444,16 +444,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,164 SetX = 0,35
SetY = 0,-150 SetY = 0,-50
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetFrame = 1,6 SetFrame = 1,6
SetX = 1,125 SetX = 1,75
SetY = 1,-107 SetY = 1,-92
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,66 SetX = 2,133
SetY = 2,-32 SetY = 2,-167
SetVisible = 3,false SetVisible = 3,false
<Particle 3> <Particle 3>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
@@ -485,23 +485,23 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,159 SetX = 3,40
SetY = 3,-151 SetY = 3,-48
SetZ = 3,28 SetZ = 3,28
SetAngle = 3,180 SetAngle = 3,180
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,121 SetX = 4,78
SetY = 4,-103 SetY = 4,-96
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,71 SetX = 5,128
SetY = 5,-42 SetY = 5,-157
SetVisible = 6,false SetVisible = 6,false
<Particle 5> <Particle 5>
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,1 SetFrame = 4,1
SetX = 4,0 SetX = 4,199
SetY = 4,28 SetY = 4,-228
SetZ = 4,27 SetZ = 4,27
SetFrame = 5,2 SetFrame = 5,2
SetFrame = 6,1 SetFrame = 6,1
@@ -510,16 +510,16 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,164 SetX = 0,35
SetY = 0,-150 SetY = 0,-50
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetFrame = 1,6 SetFrame = 1,6
SetX = 1,125 SetX = 1,75
SetY = 1,-107 SetY = 1,-92
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,66 SetX = 2,133
SetY = 2,-32 SetY = 2,-167
SetVisible = 3,false SetVisible = 3,false
<SE> <SE>
Play = 3,normaldamage,80 Play = 3,normaldamage,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,GRUDGE] [Move,GRUDGE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetX = 0,128 SetX = 0,128
SetY = 0,6 SetY = 0,6
SetZ = 0,27 SetZ = 0,27
@@ -45,9 +43,9 @@ Name = Example anim
SetFrame = 11,3 SetFrame = 11,3
SetX = 11,80 SetX = 11,80
SetY = 11,22 SetY = 11,22
<Particle 3> <Particle 2>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 1,3 SetFrame = 1,3
SetX = 1,128 SetX = 1,128
SetY = 1,6 SetY = 1,6
@@ -78,9 +76,9 @@ Name = Example anim
SetFrame = 11,0 SetFrame = 11,0
SetX = 11,112 SetX = 11,112
SetY = 11,14 SetY = 11,14
<Particle 4> <Particle 3>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 2,2 SetFrame = 2,2
SetX = 2,128 SetX = 2,128
SetY = 2,6 SetY = 2,6
@@ -109,9 +107,9 @@ Name = Example anim
SetY = 10,-34 SetY = 10,-34
SetFrame = 11,3 SetFrame = 11,3
SetX = 11,80 SetX = 11,80
<Particle 5> <Particle 4>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetX = 3,128 SetX = 3,128
SetY = 3,6 SetY = 3,6
SetZ = 3,30 SetZ = 3,30
@@ -139,9 +137,9 @@ Name = Example anim
SetFrame = 11,1 SetFrame = 11,1
SetX = 11,40 SetX = 11,40
SetY = 11,-50 SetY = 11,-50
<Particle 6> <Particle 5>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 4,3 SetFrame = 4,3
SetX = 4,128 SetX = 4,128
SetY = 4,-18 SetY = 4,-18
@@ -166,9 +164,9 @@ Name = Example anim
SetFrame = 11,2 SetFrame = 11,2
SetX = 11,-24 SetX = 11,-24
SetY = 11,-50 SetY = 11,-50
<Particle 7> <Particle 6>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetX = 6,120 SetX = 6,120
SetY = 6,6 SetY = 6,6
SetZ = 6,32 SetZ = 6,32
@@ -187,9 +185,9 @@ Name = Example anim
SetFrame = 11,5 SetFrame = 11,5
SetX = 11,-72 SetX = 11,-72
SetY = 11,-42 SetY = 11,-42
<Particle 8> <Particle 7>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 7,5 SetFrame = 7,5
SetX = 7,120 SetX = 7,120
SetY = 7,-10 SetY = 7,-10
@@ -206,9 +204,9 @@ Name = Example anim
SetFrame = 11,1 SetFrame = 11,1
SetX = 11,-112 SetX = 11,-112
SetY = 11,-2 SetY = 11,-2
<Particle 9> <Particle 8>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 8,2 SetFrame = 8,2
SetX = 8,112 SetX = 8,112
SetY = 8,6 SetY = 8,6
@@ -221,9 +219,9 @@ Name = Example anim
SetFrame = 11,5 SetFrame = 11,5
SetX = 11,-56 SetX = 11,-56
SetY = 11,22 SetY = 11,22
<Particle 10> <Particle 9>
Graphic = Examples/ghost1 Graphic = Examples/ghost1
Focus = Target Focus = User
SetFrame = 10,7 SetFrame = 10,7
SetX = 10,48 SetX = 10,48
SetY = 10,30 SetY = 10,30

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,HAIL] [Move,HAIL]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,7 SetFrame = 0,7
@@ -42,7 +40,7 @@ Name = Example anim
SetX = 10,136 SetX = 10,136
SetY = 10,107 SetY = 10,107
SetVisible = 11,false SetVisible = 11,false
<Particle 3> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,7 SetFrame = 0,7
@@ -52,7 +50,7 @@ Name = Example anim
SetX = 1,464 SetX = 1,464
SetY = 1,117 SetY = 1,117
SetVisible = 2,false SetVisible = 2,false
<Particle 4> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,8 SetFrame = 0,8
@@ -68,7 +66,7 @@ Name = Example anim
SetX = 3,278 SetX = 3,278
SetY = 3,164 SetY = 3,164
SetVisible = 4,false SetVisible = 4,false
<Particle 5> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,9 SetFrame = 0,9
@@ -87,7 +85,7 @@ Name = Example anim
SetX = 4,390 SetX = 4,390
SetY = 4,210 SetY = 4,210
SetVisible = 5,false SetVisible = 5,false
<Particle 6> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,9 SetFrame = 0,9
@@ -95,7 +93,7 @@ Name = Example anim
SetY = 0,252 SetY = 0,252
SetZ = 0,31 SetZ = 0,31
SetVisible = 1,false SetVisible = 1,false
<Particle 7> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,7 SetFrame = 2,7
@@ -103,7 +101,7 @@ Name = Example anim
SetY = 2,206 SetY = 2,206
SetZ = 2,31 SetZ = 2,31
SetVisible = 3,false SetVisible = 3,false
<Particle 8> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 3,9 SetFrame = 3,9
@@ -111,7 +109,7 @@ Name = Example anim
SetY = 3,241 SetY = 3,241
SetZ = 3,28 SetZ = 3,28
SetVisible = 4,false SetVisible = 4,false
<Particle 9> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,9 SetFrame = 4,9
@@ -138,7 +136,7 @@ Name = Example anim
SetFrame = 12,9 SetFrame = 12,9
SetX = 12,198 SetX = 12,198
SetY = 12,28 SetY = 12,28
<Particle 10> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,8 SetFrame = 4,8
@@ -146,7 +144,7 @@ Name = Example anim
SetY = 4,220 SetY = 4,220
SetZ = 4,32 SetZ = 4,32
SetVisible = 5,false SetVisible = 5,false
<Particle 11> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,9 SetFrame = 5,9
@@ -154,7 +152,7 @@ Name = Example anim
SetY = 5,69 SetY = 5,69
SetZ = 5,28 SetZ = 5,28
SetVisible = 6,false SetVisible = 6,false
<Particle 12> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,8 SetFrame = 6,8
@@ -162,7 +160,7 @@ Name = Example anim
SetY = 6,226 SetY = 6,226
SetZ = 6,29 SetZ = 6,29
SetVisible = 7,false SetVisible = 7,false
<Particle 13> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,9 SetFrame = 6,9
@@ -185,7 +183,7 @@ Name = Example anim
SetFrame = 12,8 SetFrame = 12,8
SetX = 12,230 SetX = 12,230
SetY = 12,142 SetY = 12,142
<Particle 14> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 6,9 SetFrame = 6,9
@@ -195,7 +193,7 @@ Name = Example anim
SetX = 7,296 SetX = 7,296
SetY = 7,172 SetY = 7,172
SetVisible = 8,false SetVisible = 8,false
<Particle 15> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 8,8 SetFrame = 8,8
@@ -205,7 +203,7 @@ Name = Example anim
SetX = 9,163 SetX = 9,163
SetY = 9,99 SetY = 9,99
SetVisible = 10,false SetVisible = 10,false
<Particle 16> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 8,9 SetFrame = 8,9
@@ -218,7 +216,7 @@ Name = Example anim
SetX = 10,444 SetX = 10,444
SetY = 10,89 SetY = 10,89
SetVisible = 11,false SetVisible = 11,false
<Particle 17> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,9 SetFrame = 9,9
@@ -233,7 +231,7 @@ Name = Example anim
SetY = 11,246 SetY = 11,246
SetX = 12,167 SetX = 12,167
SetY = 12,237 SetY = 12,237
<Particle 18> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,8 SetFrame = 11,8
@@ -241,7 +239,7 @@ Name = Example anim
SetY = 11,119 SetY = 11,119
SetZ = 11,28 SetZ = 11,28
SetVisible = 12,false SetVisible = 12,false
<Particle 19> <Particle 18>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,7 SetFrame = 11,7
@@ -251,7 +249,7 @@ Name = Example anim
SetFrame = 12,9 SetFrame = 12,9
SetX = 12,41 SetX = 12,41
SetY = 12,229 SetY = 12,229
<Particle 20> <Particle 19>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 11,9 SetFrame = 11,9
@@ -259,14 +257,14 @@ Name = Example anim
SetY = 11,47 SetY = 11,47
SetZ = 11,34 SetZ = 11,34
SetVisible = 12,false SetVisible = 12,false
<Particle 21> <Particle 20>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 12,8 SetFrame = 12,8
SetX = 12,474 SetX = 12,474
SetY = 12,59 SetY = 12,59
SetZ = 12,29 SetZ = 12,29
<Particle 22> <Particle 21>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 12,9 SetFrame = 12,9

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,HARDEN] [Move,HARDEN]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = User Focus = User
SetFrame = 0,15 SetFrame = 0,15

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/finger.spoon Graphic = Examples/finger spoon
Focus = Target Focus = Target
SetFrame = 0,2 SetFrame = 0,2
SetX = 0,-1 SetX = 0,-1

View File

@@ -114,22 +114,22 @@ Name = Example anim
<Particle 3> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetX = 2,200 SetX = 2,0
SetY = 2,-196 SetY = 2,-3
SetZ = 2,28 SetZ = 2,28
SetX = 3,175 SetX = 3,25
SetY = 3,-237 SetY = 3,37
SetX = 4,139 SetX = 4,60
SetY = 4,-256 SetY = 4,56
SetX = 5,100 SetX = 5,100
SetY = 5,-237 SetY = 5,37
SetX = 6,44 SetX = 6,155
SetY = 6,-178 SetY = 6,-21
SetX = 7,-5 SetX = 7,205
SetY = 7,-79 SetY = 7,-120
SetFrame = 8,3 SetFrame = 8,3
SetX = 8,0 SetX = 8,200
SetY = 8,39 SetY = 8,-239
SetFrame = 10,1 SetFrame = 10,1
SetFrame = 12,2 SetFrame = 12,2
SetFrame = 14,1 SetFrame = 14,1
@@ -138,34 +138,34 @@ Name = Example anim
<Particle 4> <Particle 4>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetX = 4,200 SetX = 4,0
SetY = 4,-196 SetY = 4,-3
SetZ = 4,29 SetZ = 4,29
SetX = 5,175 SetX = 5,25
SetY = 5,-226 SetY = 5,26
SetX = 6,139 SetX = 6,60
SetY = 6,-237 SetY = 6,37
SetVisible = 7,false SetVisible = 7,false
<Particle 5> <Particle 5>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetX = 8,64 SetX = 8,135
SetY = 8,-128 SetY = 8,-71
SetZ = 8,29 SetZ = 8,29
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 6>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetX = 10,25 SetX = 10,175
SetY = 10,39 SetY = 10,-239
SetZ = 10,29 SetZ = 10,29
SetVisible = 11,false SetVisible = 11,false
<Particle 7> <Particle 7>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 12,3 SetFrame = 12,3
SetX = 12,25 SetX = 12,175
SetY = 12,39 SetY = 12,-239
SetZ = 12,29 SetZ = 12,29
SetFrame = 14,1 SetFrame = 14,1
SetFrame = 16,2 SetFrame = 16,2
@@ -175,30 +175,30 @@ Name = Example anim
<Particle 2> <Particle 2>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetX = 0,200 SetX = 0,0
SetY = 0,-196 SetY = 0,-3
SetZ = 0,27 SetZ = 0,27
SetX = 1,175 SetX = 1,25
SetY = 1,-226 SetY = 1,26
SetX = 2,144 SetX = 2,55
SetY = 2,-237 SetY = 2,37
SetX = 3,100 SetX = 3,100
SetY = 3,-217 SetY = 3,17
SetX = 4,64 SetX = 4,135
SetY = 4,-157 SetY = 4,-42
SetX = 5,25 SetX = 5,175
SetY = 5,-59 SetY = 5,-140
SetX = 6,0 SetX = 6,200
SetY = 6,39 SetY = 6,-239
SetX = 7,94 SetX = 7,105
SetY = 7,-207 SetY = 7,7
SetX = 8,-30 SetX = 8,230
SetY = 8,39 SetY = 8,-239
SetX = 9,39 SetX = 9,160
SetY = 9,-40 SetY = 9,-159
SetFrame = 10,3 SetFrame = 10,3
SetX = 10,-25 SetX = 10,225
SetY = 10,39 SetY = 10,-239
SetFrame = 12,1 SetFrame = 12,1
SetFrame = 14,2 SetFrame = 14,2
SetFrame = 16,1 SetFrame = 16,1

View File

@@ -39,19 +39,19 @@ Name = Example anim
<Particle 2> <Particle 2>
Graphic = Examples/leer Graphic = Examples/leer
Focus = UserAndTarget Focus = UserAndTarget
SetX = 0,173 SetX = 0,26
SetY = 0,-226 SetY = 0,26
SetZ = 0,27 SetZ = 0,27
SetFrame = 1,1 SetFrame = 1,1
SetY = 1,-229 SetY = 1,29
SetFrame = 2,2 SetFrame = 2,2
SetX = 2,175 SetX = 2,25
SetY = 2,-232 SetY = 2,32
SetFrame = 3,3 SetFrame = 3,3
SetX = 3,171 SetX = 3,28
SetY = 3,-229 SetY = 3,29
SetFrame = 4,4 SetFrame = 4,4
SetX = 4,178 SetX = 4,21
SetY = 4,-232 SetY = 4,32
<SE> <SE>
Play = 0,Saint9 Play = 0,Saint9

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,LIGHTSCREEN] [Move,LIGHTSCREEN]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 1,10 SetFrame = 1,10
SetX = 1,58 SetX = 1,58
SetY = 1,-39 SetY = 1,-39
@@ -38,9 +36,9 @@ Name = Example anim
SetFrame = 10,6 SetFrame = 10,6
SetX = 10,46 SetX = 10,46
SetY = 10,-39 SetY = 10,-39
<Particle 4> <Particle 3>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 4,10 SetFrame = 4,10
SetX = 4,-16 SetX = 4,-16
SetY = 4,15 SetY = 4,15
@@ -58,9 +56,9 @@ Name = Example anim
SetY = 9,48 SetY = 9,48
SetX = 10,-7 SetX = 10,-7
SetY = 10,-38 SetY = 10,-38
<Particle 5> <Particle 4>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 7,6 SetFrame = 7,6
SetX = 7,56 SetX = 7,56
SetY = 7,64 SetY = 7,64
@@ -71,9 +69,9 @@ Name = Example anim
SetY = 9,66 SetY = 9,66
SetX = 10,-37 SetX = 10,-37
SetY = 10,39 SetY = 10,39
<Particle 6> <Particle 5>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 8,10 SetFrame = 8,10
SetX = 8,0 SetX = 8,0
SetY = 8,-54 SetY = 8,-54
@@ -83,9 +81,9 @@ Name = Example anim
SetY = 9,-31 SetY = 9,-31
SetX = 10,64 SetX = 10,64
SetY = 10,66 SetY = 10,66
<Particle 2> <Particle 1>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 1,15 SetFrame = 1,15
SetBlending = 1,1 SetBlending = 1,1
SetX = 1,6 SetX = 1,6

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,4 SetFrame = 0,4
SetX = 0,208 SetX = 0,208
@@ -34,7 +34,7 @@ Name = Example anim
SetX = 9,178 SetX = 9,178
SetY = 9,-184 SetY = 9,-184
<Particle 3> <Particle 3>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,193 SetX = 1,193
@@ -59,7 +59,7 @@ Name = Example anim
SetX = 9,185 SetX = 9,185
SetY = 9,-262 SetY = 9,-262
<Particle 4> <Particle 4>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,3 SetFrame = 1,3
SetX = 1,217 SetX = 1,217
@@ -83,7 +83,7 @@ Name = Example anim
SetX = 9,189 SetX = 9,189
SetY = 9,-215 SetY = 9,-215
<Particle 5> <Particle 5>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 5,5 SetFrame = 5,5
SetX = 5,189 SetX = 5,189
@@ -97,7 +97,7 @@ Name = Example anim
SetX = 9,187 SetX = 9,187
SetY = 9,-237 SetY = 9,-237
<Particle 6> <Particle 6>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,5 SetFrame = 6,5
SetX = 6,180 SetX = 6,180
@@ -107,7 +107,7 @@ Name = Example anim
SetY = 7,-256 SetY = 7,-256
SetVisible = 8,false SetVisible = 8,false
<Particle 7> <Particle 7>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,5 SetFrame = 7,5
SetX = 7,158 SetX = 7,158

View File

@@ -2,321 +2,319 @@
#------------------------------- #-------------------------------
[Move,LUCKYCHANT] [Move,LUCKYCHANT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 0,14 SetFrame = 0,14
SetX = 0,192 SetX = 0,-9
SetY = 0,-193 SetY = 0,4
SetZ = 0,27 SetZ = 0,27
SetOpacity = 0,220 SetOpacity = 0,220
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 2>
Graphic = Examples/anim sheet
Focus = User
SetFrame = 0,8
SetX = 0,-48
SetY = 0,-9
SetZ = 0,28
SetX = 1,42
SetY = 1,55
SetX = 2,-32
SetY = 2,51
SetX = 3,-22
SetY = 3,39
SetX = 4,-33
SetY = 4,37
SetX = 5,-39
SetY = 5,24
SetX = 6,-29
SetY = 6,-11
SetX = 7,-26
SetY = 7,-14
SetOpacity = 9,128
<Particle 3> <Particle 3>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 0,8 SetFrame = 0,8
SetX = 0,162 SetX = 0,-48
SetY = 0,-214 SetY = 0,8
SetZ = 0,28 SetZ = 0,29
SetX = 1,232 SetX = 1,-43
SetY = 1,-114 SetY = 1,34
SetX = 2,175 SetX = 2,-38
SetY = 2,-120 SetY = 2,38
SetX = 3,182 SetX = 3,-12
SetY = 3,-139 SetY = 3,48
SetX = 4,174 SetX = 4,-19
SetY = 4,-142 SetY = 4,38
SetX = 5,169 SetX = 5,-28
SetY = 5,-162 SetY = 5,31
SetX = 6,177 SetX = 6,-18
SetY = 6,-217 SetY = 6,-21
SetX = 7,179 SetX = 7,-14
SetY = 7,-221 SetY = 7,-28
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 4> <Particle 4>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 0,8 SetFrame = 1,8
SetX = 0,162 SetX = 1,-41
SetY = 0,-187 SetY = 1,47
SetZ = 0,29 SetZ = 1,30
SetX = 1,166 SetX = 2,-26
SetY = 1,-146 SetY = 2,33
SetX = 2,170 SetX = 3,-29
SetY = 2,-140 SetY = 3,48
SetX = 3,190 SetX = 4,-28
SetY = 3,-125 SetY = 4,26
SetX = 4,185 SetX = 5,-22
SetY = 4,-140 SetY = 5,44
SetX = 5,178 SetX = 6,-37
SetY = 5,-151 SetY = 6,2
SetX = 6,185 SetX = 7,-1
SetY = 6,-232 SetY = 7,-32
SetX = 7,189
SetY = 7,-243
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 5> <Particle 5>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 1,8 SetFrame = 1,8
SetX = 1,167 SetX = 1,-23
SetY = 1,-126 SetY = 1,54
SetZ = 1,30 SetZ = 1,31
SetX = 2,179 SetX = 2,33
SetY = 2,-148 SetY = 2,39
SetX = 3,177 SetX = 3,-38
SetY = 3,-125 SetY = 3,31
SetX = 4,178 SetX = 4,-7
SetY = 4,-159 SetY = 4,50
SetX = 5,182 SetX = 5,-32
SetY = 5,-131 SetY = 5,12
SetX = 6,171 SetY = 6,24
SetY = 6,-196 SetX = 7,10
SetX = 7,199 SetY = 7,-32
SetY = 7,-250
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 6> <Particle 6>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 1,8 SetFrame = 2,8
SetX = 1,182 SetX = 2,48
SetY = 1,-115 SetY = 2,33
SetZ = 1,31 SetZ = 2,32
SetX = 2,225 SetX = 3,-33
SetY = 2,-139 SetY = 3,17
SetX = 3,170 SetX = 4,8
SetY = 3,-151 SetY = 4,56
SetX = 4,194 SetX = 5,-40
SetY = 4,-121 SetY = 5,3
SetX = 5,175 SetX = 6,-18
SetY = 5,-181 SetY = 6,37
SetY = 6,-162 SetX = 7,-12
SetX = 7,207 SetY = 7,-43
SetY = 7,-250
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 7> <Particle 7>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 2,8 SetFrame = 2,8
SetX = 2,237 SetX = 2,39
SetY = 2,-148 SetY = 2,48
SetZ = 2,32 SetZ = 2,33
SetX = 3,174 SetX = 3,-45
SetY = 3,-173 SetY = 3,2
SetX = 4,206 SetX = 4,13
SetY = 4,-112 SetY = 4,50
SetX = 5,168 SetX = 5,-10
SetY = 5,-195 SetY = 5,40
SetX = 6,185 SetX = 6,-5
SetY = 6,-142 SetY = 6,49
SetX = 7,190 SetX = 7,-41
SetY = 7,-267 SetY = 7,-1
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 8> <Particle 8>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 2,8 SetFrame = 2,8
SetX = 2,230 SetX = 2,22
SetY = 2,-125 SetY = 2,49
SetZ = 2,33 SetZ = 2,34
SetX = 3,164 SetX = 3,41
SetY = 3,-196 SetY = 3,37
SetX = 4,210 SetX = 4,28
SetY = 4,-121 SetY = 4,47
SetX = 5,192 SetX = 5,-4
SetY = 5,-137 SetY = 5,54
SetX = 6,196 SetX = 6,9
SetY = 6,-123 SetY = 6,58
SetX = 7,167 SetX = 7,-30
SetY = 7,-201 SetY = 7,8
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 9> <Particle 9>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 2,8 SetFrame = 2,8
SetX = 2,217 SetX = 2,43
SetY = 2,-123 SetY = 2,15
SetZ = 2,34 SetZ = 2,35
SetX = 3,232 SetX = 3,51
SetY = 3,-142 SetY = 3,34
SetX = 4,221 SetX = 4,39
SetY = 4,-126 SetY = 4,47
SetX = 5,196 SetX = 5,7
SetY = 5,-115 SetY = 5,49
SetX = 6,207 SetX = 6,27
SetY = 6,-109 SetY = 6,53
SetX = 7,176 SetX = 7,-38
SetY = 7,-187 SetY = 7,29
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 10> <Particle 10>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 2,8 SetFrame = 2,8
SetX = 2,233 SetX = 2,-26
SetY = 2,-176 SetY = 2,13
SetZ = 2,35 SetZ = 2,36
SetX = 3,239 SetX = 3,48
SetY = 3,-146 SetY = 3,20
SetX = 4,230 SetX = 4,45
SetY = 4,-126 SetY = 4,33
SetX = 5,205 SetX = 5,23
SetY = 5,-123 SetY = 5,54
SetX = 6,221 SetX = 6,44
SetY = 6,-117 SetY = 6,42
SetX = 7,170 SetX = 7,-19
SetY = 7,-154 SetY = 7,31
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 11> <Particle 11>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 2,8 SetFrame = 3,8
SetX = 2,179 SetX = 3,55
SetY = 2,-179 SetY = 3,9
SetZ = 2,36 SetZ = 3,37
SetX = 3,237 SetY = 4,30
SetY = 3,-168 SetX = 5,31
SetX = 4,235 SetY = 5,43
SetY = 4,-148 SetX = 6,57
SetX = 5,217 SetY = 6,23
SetY = 5,-115 SetX = 7,-18
SetX = 6,234 SetY = 7,49
SetY = 6,-134
SetX = 7,185
SetY = 7,-151
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 12> <Particle 12>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 3,8 SetFrame = 3,8
SetX = 3,242 SetX = 3,-31
SetY = 3,-185 SetY = 3,0
SetZ = 3,37 SetZ = 3,38
SetY = 4,-153 SetX = 4,51
SetX = 5,224 SetY = 4,17
SetY = 5,-132 SetX = 5,44
SetX = 6,244 SetY = 5,38
SetY = 6,-164 SetX = 6,59
SetX = 7,185 SetY = 6,5
SetY = 7,-123 SetX = 7,1
SetY = 7,43
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 13> <Particle 13>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 3,8 SetFrame = 3,8
SetX = 3,175 SetX = 3,45
SetY = 3,-200 SetY = 3,-2
SetZ = 3,38 SetZ = 3,39
SetX = 4,239 SetX = 4,60
SetY = 4,-173 SetY = 4,6
SetX = 5,234 SetX = 5,55
SetY = 5,-140 SetY = 5,26
SetX = 6,246 SetX = 6,-53
SetY = 6,-192 SetY = 6,14
SetX = 7,200 SetX = 7,17
SetY = 7,-132 SetY = 7,59
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 14> <Particle 14>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 3,8 SetFrame = 4,8
SetX = 3,235 SetX = 4,43
SetY = 3,-203 SetY = 4,-5
SetZ = 3,39 SetZ = 4,40
SetX = 4,246 SetX = 5,50
SetY = 4,-190 SetY = 5,6
SetX = 5,242 SetX = 6,-60
SetY = 5,-159 SetY = 6,29
SetX = 6,158 SetX = 7,33
SetY = 6,-178 SetY = 7,41
SetX = 7,213
SetY = 7,-107
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 15> <Particle 15>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 4,8 SetFrame = 4,8
SetX = 4,233 SetX = 4,-39
SetY = 4,-207 SetY = 4,10
SetZ = 4,40
SetX = 5,239
SetY = 5,-190
SetX = 6,153
SetY = 6,-154
SetX = 7,225
SetY = 7,-135
SetOpacity = 9,128
<Particle 16>
Graphic = Examples/anim sheet
Focus = UserAndTarget
SetFrame = 4,8
SetX = 4,169
SetY = 4,-184
SetZ = 4,41 SetZ = 4,41
SetVisible = 5,false SetVisible = 5,false
<Particle 16>
Graphic = Examples/anim sheet
Focus = User
SetFrame = 6,8
SetX = 6,-58
SetY = 6,-3
SetZ = 6,41
SetX = 7,49
SetY = 7,22
SetOpacity = 9,128
<Particle 17> <Particle 17>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 6,8 SetFrame = 6,8
SetX = 6,154 SetX = 6,-44
SetY = 6,-204 SetY = 6,-20
SetZ = 6,41 SetZ = 6,42
SetX = 7,238 SetX = 7,62
SetY = 7,-165 SetY = 7,9
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 18> <Particle 18>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 6,8 SetFrame = 7,8
SetX = 6,165 SetX = 7,47
SetY = 6,-231 SetY = 7,-2
SetZ = 6,42 SetZ = 7,43
SetX = 7,248
SetY = 7,-185
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 19> <Particle 19>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 7,8 SetFrame = 7,8
SetX = 7,236 SetX = 7,58
SetY = 7,-203 SetY = 7,-14
SetZ = 7,43 SetZ = 7,44
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 20> <Particle 20>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 7,8 SetFrame = 7,8
SetX = 7,245 SetX = 7,36
SetY = 7,-221 SetY = 7,-32
SetZ = 7,44 SetZ = 7,45
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 21> <Particle 21>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 7,8 SetFrame = 7,8
SetX = 7,228 SetX = 7,23
SetY = 7,-250 SetY = 7,-41
SetZ = 7,45 SetZ = 7,46
SetOpacity = 9,128 SetOpacity = 9,128
<Particle 22> <Particle 22>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = UserAndTarget Focus = User
SetFrame = 7,8 SetFrame = 7,8
SetX = 7,217 SetX = 7,29
SetY = 7,-264 SetY = 7,-28
SetZ = 7,46
SetOpacity = 9,128
<Particle 23>
Graphic = Examples/anim sheet
Focus = UserAndTarget
SetFrame = 7,8
SetX = 7,222
SetY = 7,-243
SetZ = 7,47 SetZ = 7,47
SetOpacity = 9,128 SetOpacity = 9,128
<SE> <SE>

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,MAGICCOAT] [Move,MAGICCOAT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 0,15 SetFrame = 0,15
SetX = 0,1 SetX = 0,1
SetY = 0,2 SetY = 0,2
@@ -19,9 +17,9 @@ Name = Example anim
SetOpacity = 1,74 SetOpacity = 1,74
SetOpacity = 9,72 SetOpacity = 9,72
SetOpacity = 10,37 SetOpacity = 10,37
<Particle 3> <Particle 2>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,4 SetX = 2,4
SetY = 2,-69 SetY = 2,-69
@@ -43,9 +41,9 @@ Name = Example anim
SetY = 9,-7 SetY = 9,-7
SetX = 10,6 SetX = 10,6
SetY = 10,50 SetY = 10,50
<Particle 4> <Particle 3>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,19 SetX = 2,19
SetY = 2,-50 SetY = 2,-50
@@ -68,9 +66,9 @@ Name = Example anim
SetFrame = 10,7 SetFrame = 10,7
SetX = 10,63 SetX = 10,63
SetY = 10,-41 SetY = 10,-41
<Particle 5> <Particle 4>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,44 SetX = 2,44
SetY = 2,63 SetY = 2,63
@@ -92,9 +90,9 @@ Name = Example anim
SetX = 9,61 SetX = 9,61
SetY = 9,14 SetY = 9,14
SetVisible = 10,false SetVisible = 10,false
<Particle 6> <Particle 5>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,21 SetX = 2,21
SetY = 2,68 SetY = 2,68
@@ -114,9 +112,9 @@ Name = Example anim
SetX = 8,52 SetX = 8,52
SetY = 8,-17 SetY = 8,-17
SetVisible = 9,false SetVisible = 9,false
<Particle 7> <Particle 6>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,-47 SetX = 2,-47
SetY = 2,51 SetY = 2,51
@@ -124,41 +122,41 @@ Name = Example anim
SetX = 3,46 SetX = 3,46
SetY = 3,-25 SetY = 3,-25
SetVisible = 4,false SetVisible = 4,false
<Particle 8> <Particle 7>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 2,7 SetFrame = 2,7
SetX = 2,-47 SetX = 2,-47
SetY = 2,24 SetY = 2,24
SetZ = 2,33 SetZ = 2,33
SetVisible = 3,false SetVisible = 3,false
<Particle 9> <Particle 8>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 6,7 SetFrame = 6,7
SetX = 6,57 SetX = 6,57
SetY = 6,55 SetY = 6,55
SetZ = 6,32 SetZ = 6,32
SetVisible = 7,false SetVisible = 7,false
<Particle 10> <Particle 9>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 6,7 SetFrame = 6,7
SetX = 6,69 SetX = 6,69
SetY = 6,64 SetY = 6,64
SetZ = 6,33 SetZ = 6,33
SetVisible = 7,false SetVisible = 7,false
<Particle 11> <Particle 10>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 8,7 SetFrame = 8,7
SetX = 8,-27 SetX = 8,-27
SetY = 8,-19 SetY = 8,-19
SetZ = 8,32 SetZ = 8,32
SetVisible = 9,false SetVisible = 9,false
<Particle 12> <Particle 11>
Graphic = Examples/anim sheet Graphic = Examples/anim sheet
Focus = Target Focus = User
SetFrame = 8,7 SetFrame = 8,7
SetX = 8,-15 SetX = 8,-15
SetY = 8,-7 SetY = 8,-7

View File

@@ -145,209 +145,209 @@ Name = Example anim
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,11 SetFrame = 0,11
SetX = 0,0 SetX = 0,200
SetY = 0,-7 SetY = 0,-192
SetZ = 0,27 SetZ = 0,27
SetX = 1,16 SetX = 1,183
SetY = 1,14 SetY = 1,-214
SetFrame = 2,12 SetFrame = 2,12
SetX = 2,72 SetX = 2,127
SetY = 2,-78 SetY = 2,-121
SetX = 3,59 SetX = 3,140
SetY = 3,-157 SetY = 3,-42
SetX = 4,14 SetX = 4,185
SetY = 4,-89 SetY = 4,-110
SetX = 5,190 SetX = 5,9
SetY = 5,-193 SetY = 5,-6
SetVisible = 6,false SetVisible = 6,false
<Particle 3> <Particle 3>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,11 SetFrame = 1,11
SetX = 1,0 SetX = 1,199
SetY = 1,20 SetY = 1,-220
SetZ = 1,28 SetZ = 1,28
SetFrame = 2,12 SetFrame = 2,12
SetX = 2,49 SetX = 2,150
SetY = 2,-45 SetY = 2,-154
SetX = 3,129 SetX = 3,70
SetY = 3,-50 SetY = 3,-150
SetX = 4,84 SetX = 4,115
SetY = 4,-10 SetY = 4,-189
SetX = 5,208 SetX = 5,-8
SetY = 5,-195 SetY = 5,-4
SetVisible = 6,false SetVisible = 6,false
<Particle 4> <Particle 4>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 2,11 SetFrame = 2,11
SetX = 2,0 SetX = 2,199
SetY = 2,-9 SetY = 2,-190
SetZ = 2,29 SetZ = 2,29
SetFrame = 3,12 SetFrame = 3,12
SetX = 3,64 SetX = 3,135
SetY = 3,-39 SetY = 3,-160
SetX = 4,100 SetX = 4,100
SetY = 4,-118 SetY = 4,-81
SetX = 5,168 SetX = 5,31
SetY = 5,-128 SetY = 5,-71
SetX = 6,207 SetX = 6,-7
SetY = 6,-196 SetY = 6,-3
SetX = 7,207 SetX = 7,-7
SetY = 7,-198 SetY = 7,-1
SetVisible = 8,false SetVisible = 8,false
<Particle 5> <Particle 5>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,11 SetFrame = 3,11
SetX = 3,3 SetX = 3,196
SetY = 3,0 SetY = 3,-200
SetZ = 3,30 SetZ = 3,30
SetFrame = 4,12 SetFrame = 4,12
SetX = 4,172 SetX = 4,27
SetY = 4,-68 SetY = 4,-131
SetX = 5,129 SetX = 5,70
SetY = 5,-50 SetY = 5,-150
SetX = 6,199 SetX = 6,0
SetY = 6,-82 SetY = 6,-117
SetX = 7,204 SetX = 7,-4
SetY = 7,-126 SetY = 7,-73
SetX = 8,211 SetX = 8,-11
SetY = 8,-195 SetY = 8,-4
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 6>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,12 SetFrame = 4,12
SetX = 4,139 SetX = 4,60
SetY = 4,-198 SetY = 4,-1
SetZ = 4,31 SetZ = 4,31
SetX = 5,94 SetX = 5,105
SetY = 5,-168 SetY = 5,-31
SetX = 6,153 SetX = 6,46
SetY = 6,-173 SetY = 6,-26
SetVisible = 7,false SetVisible = 7,false
<Particle 7> <Particle 7>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,12 SetFrame = 7,12
SetX = 7,178 SetX = 7,21
SetY = 7,-196 SetY = 7,-3
SetZ = 7,27 SetZ = 7,27
SetVisible = 8,false SetVisible = 8,false
<Particle 8> <Particle 8>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 9,10 SetFrame = 9,10
SetX = 9,208 SetX = 9,-8
SetY = 9,-198 SetY = 9,-1
SetZ = 9,27 SetZ = 9,27
SetFrame = 10,8 SetFrame = 10,8
SetX = 10,212 SetX = 10,-12
SetY = 10,-200 SetY = 10,0
SetFrame = 11,7 SetFrame = 11,7
SetX = 11,205 SetX = 11,-5
SetFrame = 12,6 SetFrame = 12,6
SetX = 12,207 SetX = 12,-7
SetY = 12,-195 SetY = 12,-4
SetFrame = 13,5 SetFrame = 13,5
SetX = 13,208 SetX = 13,-8
SetFrame = 14,10 SetFrame = 14,10
SetX = 14,213 SetX = 14,-13
SetY = 14,-193 SetY = 14,-6
SetX = 15,208 SetX = 15,-8
SetY = 15,-195 SetY = 15,-4
SetX = 16,169 SetX = 16,30
SetY = 16,-221 SetY = 16,21
SetX = 17,208 SetX = 17,-8
SetY = 17,-260 SetY = 17,60
SetX = 18,184 SetX = 18,15
SetY = 18,-181 SetY = 18,-18
SetX = 19,218 SetX = 19,-18
SetY = 19,-225 SetY = 19,25
<Particle 9> <Particle 9>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 10,10 SetFrame = 10,10
SetX = 10,188 SetX = 10,11
SetY = 10,-226 SetY = 10,26
SetZ = 10,28 SetZ = 10,28
SetFrame = 11,8 SetFrame = 11,8
SetX = 11,174 SetX = 11,25
SetFrame = 12,7 SetFrame = 12,7
SetX = 12,170 SetX = 12,29
SetY = 12,-253 SetY = 12,53
SetFrame = 13,6 SetFrame = 13,6
SetX = 13,168 SetX = 13,31
SetY = 13,-259 SetY = 13,59
SetFrame = 14,5 SetFrame = 14,5
SetX = 14,174 SetX = 14,25
SetY = 14,-256 SetY = 14,56
SetFrame = 15,10 SetFrame = 15,10
SetX = 15,171 SetX = 15,28
SetY = 15,-231 SetY = 15,31
SetX = 16,202 SetX = 16,-2
SetY = 16,-264 SetY = 16,64
SetX = 17,178 SetX = 17,21
SetY = 17,-182 SetY = 17,-17
SetX = 18,227 SetX = 18,-27
SetY = 18,-231 SetY = 18,31
SetVisible = 19,false SetVisible = 19,false
<Particle 10> <Particle 10>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 11,10 SetFrame = 11,10
SetX = 11,211 SetX = 11,-11
SetY = 11,-237 SetY = 11,37
SetZ = 11,29 SetZ = 11,29
SetFrame = 12,8 SetFrame = 12,8
SetX = 12,210 SetX = 12,-10
SetY = 12,-262 SetY = 12,62
SetFrame = 13,7 SetFrame = 13,7
SetX = 13,213 SetX = 13,-13
SetY = 13,-264 SetY = 13,64
SetFrame = 14,6 SetFrame = 14,6
SetX = 14,223 SetX = 14,-23
SetY = 14,-262 SetY = 14,62
SetFrame = 15,5 SetFrame = 15,5
SetX = 15,196 SetX = 15,3
SetY = 15,-223 SetY = 15,23
SetX = 16,183 SetX = 16,16
SetY = 16,-182 SetY = 16,-17
SetX = 17,225 SetX = 17,-25
SetY = 17,-226 SetY = 17,26
SetVisible = 18,false SetVisible = 18,false
<Particle 11> <Particle 11>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 12,10 SetFrame = 12,10
SetX = 12,185 SetX = 12,14
SetY = 12,-151 SetY = 12,-48
SetZ = 12,30 SetZ = 12,30
SetFrame = 13,8 SetFrame = 13,8
SetX = 13,176 SetX = 13,23
SetY = 13,-142 SetY = 13,-57
SetFrame = 14,7 SetFrame = 14,7
SetX = 14,185 SetX = 14,14
SetY = 14,-157 SetY = 14,-42
SetFrame = 15,6 SetFrame = 15,6
SetX = 15,178 SetX = 15,21
SetY = 15,-173 SetY = 15,-26
SetX = 16,224 SetX = 16,-24
SetY = 16,-228 SetY = 16,28
SetVisible = 17,false SetVisible = 17,false
<Particle 12> <Particle 12>
Graphic = Examples/leech-seed Graphic = Examples/leech-seed
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 13,10 SetFrame = 13,10
SetX = 13,211 SetX = 13,-11
SetY = 13,-214 SetY = 13,14
SetZ = 13,31 SetZ = 13,31
SetFrame = 14,8 SetFrame = 14,8
SetX = 14,213 SetX = 14,-13
SetFrame = 15,7 SetFrame = 15,7
SetX = 15,217 SetX = 15,-17
SetY = 15,-239 SetY = 15,39
SetVisible = 16,false SetVisible = 16,false
<SE> <SE>
Play = 0,Present - Heal Play = 0,Present - Heal

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,METRONOME] [Move,METRONOME]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0 Graphic = Examples/finger spoon
SetY = 0,0 Focus = User
<Particle 2>
Graphic = Examples/finger.spoon
Focus = Target
SetX = 0,-210 SetX = 0,-210
SetY = 0,126 SetY = 0,126
SetZ = 0,27 SetZ = 0,27
@@ -47,15 +45,13 @@ Name = Example anim
#------------------------------- #-------------------------------
[OppMove,METRONOME] [OppMove,METRONOME]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0 Graphic = Examples/finger spoon
SetY = 0,0 Focus = User
<Particle 2>
Graphic = Examples/finger.spoon
Focus = Target
SetFrame = 0,1 SetFrame = 0,1
SetX = 0,-2 SetX = 0,-2
SetY = 0,4 SetY = 0,4

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,MIST] [Move,MIST]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 4,6 SetFrame = 4,6
SetX = 4,30 SetX = 4,30
SetY = 4,5 SetY = 4,5
@@ -20,9 +18,9 @@ Name = Example anim
SetX = 6,38 SetX = 6,38
SetY = 6,17 SetY = 6,17
SetVisible = 7,false SetVisible = 7,false
<Particle 4> <Particle 3>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 5,6 SetFrame = 5,6
SetX = 5,42 SetX = 5,42
SetY = 5,20 SetY = 5,20
@@ -30,9 +28,9 @@ Name = Example anim
SetX = 6,-3 SetX = 6,-3
SetY = 6,-32 SetY = 6,-32
SetVisible = 7,false SetVisible = 7,false
<Particle 2> <Particle 1>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,6 SetFrame = 0,6
SetX = 0,1 SetX = 0,1
SetY = 0,3 SetY = 0,3

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,MOONLIGHT] [Move,MOONLIGHT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetFrame = 0,12 SetFrame = 0,12
SetX = 0,0 SetX = 0,0
SetY = 0,110 SetY = 0,110

View File

@@ -2,24 +2,22 @@
#------------------------------- #-------------------------------
[Move,MORNINGSUN] [Move,MORNINGSUN]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/Heal3 Graphic = Examples/Heal3
Focus = Target Focus = User
SetFrame = 10,15 SetFrame = 10,15
SetX = 10,0 SetX = 10,0
SetY = 10,-26 SetY = 10,-26
SetZ = 10,28 SetZ = 10,28
SetOpacity = 10,100 SetOpacity = 10,100
SetVisible = 11,false SetVisible = 11,false
<Particle 2> <Particle 1>
Graphic = Examples/Heal3 Graphic = Examples/Heal3
Focus = Target Focus = User
SetX = 0,0 SetX = 0,0
SetY = 0,-26 SetY = 0,-26
SetZ = 0,27 SetZ = 0,27

View File

@@ -49,31 +49,31 @@ Name = Example anim
Graphic = Examples/003-Attack01 Graphic = Examples/003-Attack01
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,174 SetX = 0,25
SetY = 0,-132 SetY = 0,-67
SetZ = 0,27 SetZ = 0,27
SetAngle = 0,180 SetAngle = 0,180
SetX = 1,149 SetX = 1,50
SetY = 1,-109 SetY = 1,-90
SetFrame = 2,6 SetFrame = 2,6
SetX = 2,124 SetX = 2,75
SetY = 2,-87 SetY = 2,-112
SetX = 3,99 SetX = 3,100
SetY = 3,-64 SetY = 3,-135
SetX = 4,74 SetX = 4,125
SetY = 4,-42 SetY = 4,-157
SetFrame = 5,7 SetFrame = 5,7
SetX = 5,49 SetX = 5,150
SetY = 5,-20 SetY = 5,-179
SetX = 6,24 SetX = 6,175
SetY = 6,3 SetY = 6,-203
SetFrame = 7,9 SetFrame = 7,9
SetX = 7,-4 SetX = 7,204
SetY = 7,-4 SetY = 7,-195
SetAngle = 7,0 SetAngle = 7,0
SetFrame = 8,3 SetFrame = 8,3
SetX = 8,0 SetX = 8,200
SetY = 8,18 SetY = 8,-218
SetFrame = 9,4 SetFrame = 9,4
<SE> <SE>
Play = 0,throw,80 Play = 0,throw,80

View File

@@ -145,86 +145,86 @@ Name = Example anim
Graphic = Examples/Psycho Cut Graphic = Examples/Psycho Cut
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,12 SetFrame = 0,12
SetX = 0,209 SetX = 0,-9
SetY = 0,-176 SetY = 0,-23
SetZ = 0,28 SetZ = 0,28
SetOpacity = 0,128 SetOpacity = 0,128
SetFrame = 1,11 SetFrame = 1,11
SetX = 1,192 SetX = 1,7
SetY = 1,-154 SetY = 1,-45
SetOpacity = 1,255 SetOpacity = 1,255
SetFrame = 2,10 SetFrame = 2,10
SetX = 2,189 SetX = 2,10
SetY = 2,-134 SetY = 2,-65
SetFrame = 3,8 SetFrame = 3,8
SetX = 3,196 SetX = 3,3
SetY = 3,-115 SetY = 3,-84
SetFrame = 4,7 SetFrame = 4,7
SetX = 4,209 SetX = 4,-9
SetY = 4,-104 SetY = 4,-95
SetFrame = 5,6 SetFrame = 5,6
SetX = 5,221 SetX = 5,-21
SetY = 5,-121 SetY = 5,-78
SetFrame = 6,5 SetFrame = 6,5
SetX = 6,225 SetX = 6,-25
SetY = 6,-145 SetY = 6,-54
SetFrame = 7,13 SetFrame = 7,13
SetX = 7,224 SetX = 7,-24
SetY = 7,-157 SetY = 7,-42
SetFrame = 8,12 SetFrame = 8,12
SetX = 8,209 SetX = 8,-9
SetY = 8,-176 SetY = 8,-23
SetFrame = 9,11 SetFrame = 9,11
SetX = 9,192 SetX = 9,7
SetY = 9,-154 SetY = 9,-45
SetFrame = 10,0 SetFrame = 10,0
SetFlip = 10,true SetFlip = 10,true
SetX = 10,172 SetX = 10,27
SetY = 10,-126 SetY = 10,-73
SetOpacity = 10,128 SetOpacity = 10,128
SetFrame = 11,2 SetFrame = 11,2
SetX = 11,149 SetX = 11,50
SetY = 11,-93 SetY = 11,-106
SetOpacity = 11,255 SetOpacity = 11,255
SetFrame = 12,1 SetFrame = 12,1
SetX = 12,132 SetX = 12,67
SetY = 12,-84 SetY = 12,-115
SetZoomX = 12,125 SetZoomX = 12,125
SetZoomY = 12,125 SetZoomY = 12,125
SetFrame = 13,2 SetFrame = 13,2
SetX = 13,121 SetX = 13,78
SetY = 13,-64 SetY = 13,-135
SetZoomX = 13,150 SetZoomX = 13,150
SetZoomY = 13,150 SetZoomY = 13,150
SetFrame = 14,1 SetFrame = 14,1
SetX = 14,96 SetX = 14,103
SetY = 14,-51 SetY = 14,-148
SetZoomX = 14,160 SetZoomX = 14,160
SetZoomY = 14,160 SetZoomY = 14,160
SetFrame = 15,2 SetFrame = 15,2
SetX = 15,74 SetX = 15,125
SetY = 15,-25 SetY = 15,-175
SetZoomX = 15,170 SetZoomX = 15,170
SetZoomY = 15,170 SetZoomY = 15,170
SetFrame = 16,1 SetFrame = 16,1
SetX = 16,46 SetX = 16,153
SetY = 16,-14 SetY = 16,-185
SetZoomX = 16,180 SetZoomX = 16,180
SetZoomY = 16,180 SetZoomY = 16,180
SetOpacity = 16,192 SetOpacity = 16,192
SetFrame = 17,2 SetFrame = 17,2
SetX = 17,17 SetX = 17,182
SetY = 17,26 SetY = 17,-226
SetOpacity = 17,128 SetOpacity = 17,128
SetX = 18,-10 SetX = 18,210
SetY = 18,62 SetY = 18,-262
SetOpacity = 18,64 SetOpacity = 18,64
<Particle 2> <Particle 2>
Graphic = Examples/Psycho Cut Graphic = Examples/Psycho Cut
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,15 SetFrame = 0,15
SetX = 0,203 SetX = 0,-3
SetY = 0,-153 SetY = 0,-46
SetZ = 0,27 SetZ = 0,27
SetOpacity = 0,128 SetOpacity = 0,128
SetAngle = 1,45 SetAngle = 1,45

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,RAINDANCE] [Move,RAINDANCE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -32,7 +30,7 @@ Name = Example anim
SetY = 8,218 SetY = 8,218
SetX = 9,99 SetX = 9,99
SetY = 9,55 SetY = 9,55
<Particle 3> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -57,7 +55,7 @@ Name = Example anim
SetY = 8,251 SetY = 8,251
SetX = 9,253 SetX = 9,253
SetY = 9,148 SetY = 9,148
<Particle 4> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -82,7 +80,7 @@ Name = Example anim
SetY = 8,110 SetY = 8,110
SetX = 9,254 SetX = 9,254
SetY = 9,274 SetY = 9,274
<Particle 5> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -107,7 +105,7 @@ Name = Example anim
SetY = 8,59 SetY = 8,59
SetX = 9,418 SetX = 9,418
SetY = 9,243 SetY = 9,243
<Particle 6> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -132,7 +130,7 @@ Name = Example anim
SetY = 8,204 SetY = 8,204
SetX = 9,181 SetX = 9,181
SetY = 9,238 SetY = 9,238
<Particle 7> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -157,7 +155,7 @@ Name = Example anim
SetY = 8,63 SetY = 8,63
SetX = 9,108 SetX = 9,108
SetY = 9,245 SetY = 9,245
<Particle 8> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -182,7 +180,7 @@ Name = Example anim
SetY = 8,173 SetY = 8,173
SetX = 9,25 SetX = 9,25
SetY = 9,205 SetY = 9,205
<Particle 9> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,2 SetFrame = 0,2
@@ -207,7 +205,7 @@ Name = Example anim
SetY = 8,144 SetY = 8,144
SetX = 9,148 SetX = 9,148
SetY = 9,25 SetY = 9,25
<Particle 10> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 1,2 SetFrame = 1,2
@@ -223,7 +221,7 @@ Name = Example anim
SetX = 5,422 SetX = 5,422
SetY = 5,252 SetY = 5,252
SetVisible = 6,false SetVisible = 6,false
<Particle 11> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,2 SetFrame = 2,2
@@ -237,7 +235,7 @@ Name = Example anim
SetX = 5,319 SetX = 5,319
SetY = 5,241 SetY = 5,241
SetVisible = 6,false SetVisible = 6,false
<Particle 12> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,2 SetFrame = 4,2
@@ -245,7 +243,7 @@ Name = Example anim
SetY = 4,203 SetY = 4,203
SetZ = 4,37 SetZ = 4,37
SetVisible = 5,false SetVisible = 5,false
<Particle 13> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -253,7 +251,7 @@ Name = Example anim
SetY = 7,126 SetY = 7,126
SetZ = 7,35 SetZ = 7,35
SetVisible = 8,false SetVisible = 8,false
<Particle 14> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -261,7 +259,7 @@ Name = Example anim
SetY = 7,237 SetY = 7,237
SetZ = 7,36 SetZ = 7,36
SetVisible = 8,false SetVisible = 8,false
<Particle 15> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,2 SetFrame = 7,2
@@ -269,28 +267,28 @@ Name = Example anim
SetY = 7,194 SetY = 7,194
SetZ = 7,37 SetZ = 7,37
SetVisible = 8,false SetVisible = 8,false
<Particle 16> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,247 SetX = 9,247
SetY = 9,72 SetY = 9,72
SetZ = 9,35 SetZ = 9,35
<Particle 17> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,365 SetX = 9,365
SetY = 9,42 SetY = 9,42
SetZ = 9,36 SetZ = 9,36
<Particle 18> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,479 SetX = 9,479
SetY = 9,180 SetY = 9,180
SetZ = 9,37 SetZ = 9,37
<Particle 19> <Particle 18>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,2 SetFrame = 9,2

View File

@@ -2,28 +2,13 @@
#------------------------------- #-------------------------------
[Move,REFLECT] [Move,REFLECT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetFrame = 0,11
SetX = 0,-8
SetY = 0,-10
SetZ = 0,27
SetOpacity = 0,75
SetOpacity = 1,100
SetOpacity = 2,150
SetOpacity = 3,255
SetOpacity = 6,150
SetOpacity = 7,100
<Particle 3>
Graphic = Examples/normal2
Focus = Target
SetX = 1,-56 SetX = 1,-56
SetY = 1,-114 SetY = 1,-114
SetZ = 1,28 SetZ = 1,28
@@ -41,9 +26,9 @@ Name = Example anim
SetY = 6,142 SetY = 6,142
SetX = 7,-72 SetX = 7,-72
SetY = 7,126 SetY = 7,126
<Particle 4> <Particle 3>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetX = 1,80 SetX = 1,80
SetY = 1,-106 SetY = 1,-106
SetZ = 1,29 SetZ = 1,29
@@ -59,9 +44,9 @@ Name = Example anim
SetY = 6,54 SetY = 6,54
SetX = 7,48 SetX = 7,48
SetY = 7,134 SetY = 7,134
<Particle 5> <Particle 4>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetX = 2,8 SetX = 2,8
SetY = 2,-114 SetY = 2,-114
SetZ = 2,30 SetZ = 2,30
@@ -73,9 +58,9 @@ Name = Example anim
SetX = 6,80 SetX = 6,80
SetY = 6,30 SetY = 6,30
SetVisible = 7,false SetVisible = 7,false
<Particle 6> <Particle 5>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetX = 3,-56 SetX = 3,-56
SetY = 3,-114 SetY = 3,-114
SetZ = 3,31 SetZ = 3,31
@@ -84,14 +69,27 @@ Name = Example anim
SetX = 5,-64 SetX = 5,-64
SetY = 5,-18 SetY = 5,-18
SetVisible = 6,false SetVisible = 6,false
<Particle 7> <Particle 6>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = Target Focus = User
SetX = 4,48 SetX = 4,48
SetY = 4,-106 SetY = 4,-106
SetZ = 4,32 SetZ = 4,32
SetX = 5,16 SetX = 5,16
SetY = 5,-42 SetY = 5,-42
SetVisible = 6,false SetVisible = 6,false
<Particle 1>
Graphic = Examples/normal2
Focus = User
SetFrame = 0,11
SetX = 0,-8
SetY = 0,-10
SetZ = 0,27
SetOpacity = 0,75
SetOpacity = 1,100
SetOpacity = 2,150
SetOpacity = 3,255
SetOpacity = 6,150
SetOpacity = 7,100
<SE> <SE>
Play = 0,Saint7,80 Play = 0,Saint7,80

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,REST] [Move,REST]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,20 SetFrame = 0,20
SetX = 0,-27 SetX = 0,-27
SetY = 0,-29 SetY = 0,-29

View File

@@ -328,300 +328,300 @@ Name = Example anim
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,2 SetFrame = 0,2
SetX = 0,194 SetX = 0,5
SetY = 0,-153 SetY = 0,-46
SetZ = 0,27 SetZ = 0,27
SetX = 1,175 SetX = 1,25
SetY = 1,-128 SetY = 1,-71
SetX = 2,145 SetX = 2,54
SetY = 2,-101 SetY = 2,-98
SetX = 3,115 SetX = 3,84
SetY = 3,-75 SetY = 3,-125
SetX = 4,87 SetX = 4,112
SetY = 4,-46 SetY = 4,-153
SetX = 5,58 SetX = 5,141
SetY = 5,-20 SetY = 5,-179
SetX = 6,28 SetX = 6,171
SetY = 6,6 SetY = 6,-206
SetX = 7,0 SetX = 7,200
SetY = 7,34 SetY = 7,-234
SetFrame = 8,0 SetFrame = 8,0
SetX = 8,184 SetX = 8,15
SetY = 8,-128 SetY = 8,-71
SetAngle = 8,270 SetAngle = 8,270
SetX = 9,150 SetX = 9,50
SetY = 9,-109 SetY = 9,-90
SetX = 10,121 SetX = 10,78
SetY = 10,-89 SetY = 10,-110
SetX = 11,94 SetX = 11,105
SetY = 11,-70 SetY = 11,-129
SetX = 12,67 SetX = 12,132
SetY = 12,-50 SetY = 12,-150
SetX = 13,39 SetX = 13,160
SetY = 13,-29 SetY = 13,-170
SetX = 14,12 SetX = 14,187
SetY = 14,-10 SetY = 14,-189
SetX = 15,-15 SetX = 15,215
SetY = 15,9 SetY = 15,-209
<Particle 3> <Particle 3>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,1 SetFrame = 1,1
SetX = 1,164 SetX = 1,35
SetY = 1,-157 SetY = 1,-42
SetZ = 1,28 SetZ = 1,28
SetX = 2,134 SetX = 2,65
SetY = 2,-134 SetY = 2,-65
SetX = 3,104 SetX = 3,95
SetY = 3,-110 SetY = 3,-89
SetX = 4,75 SetX = 4,125
SetY = 4,-87 SetY = 4,-112
SetX = 5,44 SetX = 5,155
SetY = 5,-64 SetY = 5,-135
SetX = 6,14 SetX = 6,185
SetY = 6,-40 SetY = 6,-159
SetX = 7,-15 SetX = 7,215
SetY = 7,-15 SetY = 7,-184
SetVisible = 8,false SetVisible = 8,false
<Particle 4> <Particle 4>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetX = 1,175 SetX = 1,25
SetY = 1,-128 SetY = 1,-71
SetZ = 1,29 SetZ = 1,29
SetX = 2,144 SetX = 2,55
SetY = 2,-107 SetY = 2,-92
SetX = 3,114 SetX = 3,85
SetY = 3,-87 SetY = 3,-112
SetX = 4,84 SetX = 4,115
SetY = 4,-67 SetY = 4,-132
SetX = 5,54 SetX = 5,145
SetY = 5,-46 SetY = 5,-153
SetX = 6,25 SetX = 6,175
SetY = 6,-26 SetY = 6,-173
SetX = 7,-5 SetX = 7,205
SetY = 7,-6 SetY = 7,-193
SetVisible = 8,false SetVisible = 8,false
<Particle 5> <Particle 5>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 2,1 SetFrame = 2,1
SetX = 2,189 SetX = 2,10
SetY = 2,-168 SetY = 2,-31
SetZ = 2,30 SetZ = 2,30
SetX = 3,154 SetX = 3,45
SetY = 3,-148 SetY = 3,-51
SetX = 4,127 SetX = 4,72
SetY = 4,-126 SetY = 4,-73
SetX = 5,100 SetX = 5,100
SetY = 5,-104 SetY = 5,-95
SetX = 6,71 SetX = 6,128
SetY = 6,-84 SetY = 6,-115
SetX = 7,44 SetX = 7,155
SetY = 7,-64 SetY = 7,-135
SetX = 8,17 SetX = 8,182
SetY = 8,-42 SetY = 8,-157
SetX = 9,-10 SetX = 9,210
SetY = 9,-20 SetY = 9,-179
SetVisible = 10,false SetVisible = 10,false
<Particle 6> <Particle 6>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetX = 3,164 SetX = 3,35
SetY = 3,-118 SetY = 3,-81
SetZ = 3,31 SetZ = 3,31
SetX = 4,135 SetX = 4,64
SetY = 4,-101 SetY = 4,-98
SetX = 5,107 SetX = 5,92
SetY = 5,-87 SetY = 5,-112
SetX = 6,79 SetX = 6,120
SetY = 6,-70 SetY = 6,-129
SetX = 7,51 SetX = 7,148
SetY = 7,-53 SetY = 7,-146
SetX = 8,23 SetX = 8,176
SetY = 8,-37 SetY = 8,-162
SetX = 9,-5 SetX = 9,205
SetY = 9,-20 SetY = 9,-179
SetVisible = 10,false SetVisible = 10,false
<Particle 7> <Particle 7>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,2 SetFrame = 3,2
SetX = 3,164 SetX = 3,35
SetY = 3,-118 SetY = 3,-81
SetZ = 3,32 SetZ = 3,32
SetX = 4,137 SetX = 4,62
SetY = 4,-93 SetY = 4,-106
SetX = 5,110 SetX = 5,89
SetY = 5,-67 SetY = 5,-132
SetX = 6,84 SetX = 6,115
SetY = 6,-40 SetY = 6,-159
SetX = 7,58 SetX = 7,141
SetY = 7,-14 SetY = 7,-185
SetX = 8,31 SetX = 8,168
SetY = 8,10 SetY = 8,-210
SetX = 9,4 SetX = 9,195
SetY = 9,39 SetY = 9,-239
SetVisible = 10,false SetVisible = 10,false
<Particle 8> <Particle 8>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetX = 4,209 SetX = 4,-9
SetY = 4,-128 SetY = 4,-71
SetZ = 4,33 SetZ = 4,33
SetX = 5,175 SetX = 5,25
SetY = 5,-89 SetY = 5,-110
SetX = 6,147 SetX = 6,52
SetY = 6,-67 SetY = 6,-132
SetX = 7,121 SetX = 7,78
SetY = 7,-43 SetY = 7,-156
SetX = 8,94 SetX = 8,105
SetY = 8,-20 SetY = 8,-179
SetX = 9,68 SetX = 9,131
SetY = 9,1 SetY = 9,-201
SetX = 10,41 SetX = 10,158
SetY = 10,25 SetY = 10,-225
SetX = 11,14 SetX = 11,185
SetY = 11,48 SetY = 11,-248
SetVisible = 12,false SetVisible = 12,false
<Particle 9> <Particle 9>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 5,2 SetFrame = 5,2
SetX = 5,159 SetX = 5,40
SetY = 5,-128 SetY = 5,-71
SetZ = 5,34 SetZ = 5,34
SetX = 6,131 SetX = 6,68
SetY = 6,-109 SetY = 6,-90
SetX = 7,103 SetX = 7,96
SetY = 7,-89 SetY = 7,-110
SetX = 8,75 SetX = 8,125
SetY = 8,-70 SetY = 8,-129
SetX = 9,46 SetX = 9,153
SetY = 9,-50 SetY = 9,-150
SetX = 10,18 SetX = 10,181
SetY = 10,-29 SetY = 10,-170
SetX = 11,-10 SetX = 11,210
SetY = 11,-10 SetY = 11,-189
SetVisible = 12,false SetVisible = 12,false
<Particle 10> <Particle 10>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetX = 5,164 SetX = 5,35
SetY = 5,-118 SetY = 5,-81
SetZ = 5,35 SetZ = 5,35
SetX = 6,135 SetX = 6,64
SetY = 6,-101 SetY = 6,-98
SetX = 7,106 SetX = 7,93
SetY = 7,-87 SetY = 7,-112
SetX = 8,77 SetX = 8,122
SetY = 8,-70 SetY = 8,-129
SetX = 9,48 SetX = 9,151
SetY = 9,-53 SetY = 9,-146
SetX = 10,18 SetX = 10,181
SetY = 10,-37 SetY = 10,-162
SetX = 11,-10 SetX = 11,210
SetY = 11,-20 SetY = 11,-179
SetVisible = 12,false SetVisible = 12,false
<Particle 11> <Particle 11>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFlip = 6,true SetFlip = 6,true
SetX = 6,194 SetX = 6,5
SetY = 6,-128 SetY = 6,-71
SetZ = 6,36 SetZ = 6,36
SetX = 7,159 SetX = 7,40
SetY = 7,-109 SetY = 7,-90
SetX = 8,131 SetX = 8,68
SetY = 8,-89 SetY = 8,-110
SetX = 9,103 SetX = 9,96
SetY = 9,-70 SetY = 9,-129
SetX = 10,75 SetX = 10,125
SetY = 10,-50 SetY = 10,-150
SetX = 11,46 SetX = 11,153
SetY = 11,-29 SetY = 11,-170
SetX = 12,19 SetX = 12,180
SetY = 12,-10 SetY = 12,-189
SetX = 13,-10 SetX = 13,210
SetY = 13,9 SetY = 13,-209
SetVisible = 14,false SetVisible = 14,false
<Particle 12> <Particle 12>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,2 SetFrame = 7,2
SetX = 7,154 SetX = 7,45
SetY = 7,-148 SetY = 7,-51
SetZ = 7,37 SetZ = 7,37
SetX = 8,125 SetX = 8,74
SetY = 8,-131 SetY = 8,-68
SetX = 9,98 SetX = 9,101
SetY = 9,-115 SetY = 9,-84
SetX = 10,69 SetX = 10,130
SetY = 10,-98 SetY = 10,-101
SetX = 11,41 SetX = 11,158
SetY = 11,-82 SetY = 11,-117
SetX = 12,13 SetX = 12,186
SetY = 12,-67 SetY = 12,-132
SetX = 13,-15 SetX = 13,215
SetY = 13,-50 SetY = 13,-150
SetVisible = 14,false SetVisible = 14,false
<Particle 13> <Particle 13>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,1 SetFrame = 7,1
SetFlip = 7,true SetFlip = 7,true
SetX = 7,179 SetX = 7,20
SetY = 7,-139 SetY = 7,-60
SetZ = 7,38 SetZ = 7,38
SetX = 8,152 SetX = 8,47
SetY = 8,-114 SetY = 8,-85
SetX = 9,125 SetX = 9,75
SetY = 9,-89 SetY = 9,-110
SetX = 10,96 SetX = 10,103
SetY = 10,-64 SetY = 10,-135
SetX = 11,69 SetX = 11,130
SetY = 11,-40 SetY = 11,-159
SetX = 12,42 SetX = 12,157
SetY = 12,-15 SetY = 12,-184
SetX = 13,14 SetX = 13,185
SetY = 13,9 SetY = 13,-209
SetVisible = 14,false SetVisible = 14,false
<Particle 14> <Particle 14>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetX = 9,164 SetX = 9,35
SetY = 9,-109 SetY = 9,-90
SetZ = 9,28 SetZ = 9,28
SetX = 10,135 SetX = 10,64
SetY = 10,-93 SetY = 10,-106
SetX = 11,107 SetX = 11,92
SetY = 11,-79 SetY = 11,-120
SetX = 12,79 SetX = 12,120
SetY = 12,-64 SetY = 12,-135
SetX = 13,51 SetX = 13,148
SetY = 13,-50 SetY = 13,-150
SetX = 14,23 SetX = 14,176
SetY = 14,-35 SetY = 14,-164
SetX = 15,-5 SetX = 15,205
SetY = 15,-20 SetY = 15,-179
<Particle 15> <Particle 15>
Graphic = Examples/Sand-Attack Graphic = Examples/Sand-Attack
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,164 SetX = 9,35
SetY = 9,-109 SetY = 9,-90
SetZ = 9,29 SetZ = 9,29
SetX = 10,137 SetX = 10,62
SetY = 10,-87 SetY = 10,-112
SetX = 11,109 SetX = 11,90
SetY = 11,-64 SetY = 11,-135
SetX = 12,82 SetX = 12,117
SetY = 12,-40 SetY = 12,-159
SetX = 13,54 SetX = 13,145
SetY = 13,-18 SetY = 13,-181
SetX = 14,27 SetX = 14,172
SetY = 14,4 SetY = 14,-204
SetX = 15,0 SetX = 15,200
SetY = 15,28 SetY = 15,-228
<SE> <SE>
Play = 0,Sand Play = 0,Sand

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,SANDSTORM] [Move,SANDSTORM]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -33,7 +31,7 @@ Name = Example anim
SetY = 8,62 SetY = 8,62
SetX = 9,32 SetX = 9,32
SetY = 9,252 SetY = 9,252
<Particle 3> <Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -58,7 +56,7 @@ Name = Example anim
SetY = 8,85 SetY = 8,85
SetX = 9,119 SetX = 9,119
SetY = 9,175 SetY = 9,175
<Particle 4> <Particle 3>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -83,7 +81,7 @@ Name = Example anim
SetY = 8,223 SetY = 8,223
SetX = 9,143 SetX = 9,143
SetY = 9,267 SetY = 9,267
<Particle 5> <Particle 4>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -108,7 +106,7 @@ Name = Example anim
SetY = 8,207 SetY = 8,207
SetX = 9,222 SetX = 9,222
SetY = 9,197 SetY = 9,197
<Particle 6> <Particle 5>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -133,7 +131,7 @@ Name = Example anim
SetY = 8,253 SetY = 8,253
SetX = 9,162 SetX = 9,162
SetY = 9,82 SetY = 9,82
<Particle 7> <Particle 6>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -158,7 +156,7 @@ Name = Example anim
SetY = 8,227 SetY = 8,227
SetX = 9,49 SetX = 9,49
SetY = 9,61 SetY = 9,61
<Particle 8> <Particle 7>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -183,7 +181,7 @@ Name = Example anim
SetY = 8,76 SetY = 8,76
SetX = 9,21 SetX = 9,21
SetY = 9,158 SetY = 9,158
<Particle 9> <Particle 8>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -208,7 +206,7 @@ Name = Example anim
SetY = 8,130 SetY = 8,130
SetX = 9,350 SetX = 9,350
SetY = 9,240 SetY = 9,240
<Particle 10> <Particle 9>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -233,7 +231,7 @@ Name = Example anim
SetY = 8,142 SetY = 8,142
SetX = 9,481 SetX = 9,481
SetY = 9,206 SetY = 9,206
<Particle 11> <Particle 10>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -258,7 +256,7 @@ Name = Example anim
SetY = 8,22 SetY = 8,22
SetX = 9,456 SetX = 9,456
SetY = 9,64 SetY = 9,64
<Particle 12> <Particle 11>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -266,7 +264,7 @@ Name = Example anim
SetY = 0,32 SetY = 0,32
SetZ = 0,37 SetZ = 0,37
SetVisible = 1,false SetVisible = 1,false
<Particle 13> <Particle 12>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -274,7 +272,7 @@ Name = Example anim
SetY = 0,135 SetY = 0,135
SetZ = 0,38 SetZ = 0,38
SetVisible = 1,false SetVisible = 1,false
<Particle 14> <Particle 13>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -282,7 +280,7 @@ Name = Example anim
SetY = 0,18 SetY = 0,18
SetZ = 0,39 SetZ = 0,39
SetVisible = 1,false SetVisible = 1,false
<Particle 15> <Particle 14>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 0,3 SetFrame = 0,3
@@ -290,7 +288,7 @@ Name = Example anim
SetY = 0,9 SetY = 0,9
SetZ = 0,40 SetZ = 0,40
SetVisible = 1,false SetVisible = 1,false
<Particle 16> <Particle 15>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -298,7 +296,7 @@ Name = Example anim
SetY = 2,32 SetY = 2,32
SetZ = 2,37 SetZ = 2,37
SetVisible = 3,false SetVisible = 3,false
<Particle 17> <Particle 16>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -306,7 +304,7 @@ Name = Example anim
SetY = 2,135 SetY = 2,135
SetZ = 2,38 SetZ = 2,38
SetVisible = 3,false SetVisible = 3,false
<Particle 18> <Particle 17>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -314,7 +312,7 @@ Name = Example anim
SetY = 2,18 SetY = 2,18
SetZ = 2,39 SetZ = 2,39
SetVisible = 3,false SetVisible = 3,false
<Particle 19> <Particle 18>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 2,3 SetFrame = 2,3
@@ -322,7 +320,7 @@ Name = Example anim
SetY = 2,9 SetY = 2,9
SetZ = 2,40 SetZ = 2,40
SetVisible = 3,false SetVisible = 3,false
<Particle 20> <Particle 19>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,3 SetFrame = 4,3
@@ -332,7 +330,7 @@ Name = Example anim
SetX = 5,487 SetX = 5,487
SetY = 5,32 SetY = 5,32
SetVisible = 6,false SetVisible = 6,false
<Particle 21> <Particle 20>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 4,3 SetFrame = 4,3
@@ -342,7 +340,7 @@ Name = Example anim
SetX = 5,492 SetX = 5,492
SetY = 5,135 SetY = 5,135
SetVisible = 6,false SetVisible = 6,false
<Particle 22> <Particle 21>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,3 SetFrame = 5,3
@@ -350,7 +348,7 @@ Name = Example anim
SetY = 5,18 SetY = 5,18
SetZ = 5,39 SetZ = 5,39
SetVisible = 6,false SetVisible = 6,false
<Particle 23> <Particle 22>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 5,3 SetFrame = 5,3
@@ -358,7 +356,7 @@ Name = Example anim
SetY = 5,9 SetY = 5,9
SetZ = 5,40 SetZ = 5,40
SetVisible = 6,false SetVisible = 6,false
<Particle 24> <Particle 23>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -366,7 +364,7 @@ Name = Example anim
SetY = 7,32 SetY = 7,32
SetZ = 7,37 SetZ = 7,37
SetVisible = 8,false SetVisible = 8,false
<Particle 25> <Particle 24>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -374,7 +372,7 @@ Name = Example anim
SetY = 7,135 SetY = 7,135
SetZ = 7,38 SetZ = 7,38
SetVisible = 8,false SetVisible = 8,false
<Particle 26> <Particle 25>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -382,7 +380,7 @@ Name = Example anim
SetY = 7,18 SetY = 7,18
SetZ = 7,39 SetZ = 7,39
SetVisible = 8,false SetVisible = 8,false
<Particle 27> <Particle 26>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -390,21 +388,21 @@ Name = Example anim
SetY = 7,9 SetY = 7,9
SetZ = 7,40 SetZ = 7,40
SetVisible = 8,false SetVisible = 8,false
<Particle 28> <Particle 27>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3
SetX = 9,311 SetX = 9,311
SetY = 9,55 SetY = 9,55
SetZ = 9,37 SetZ = 9,37
<Particle 29> <Particle 28>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3
SetX = 9,328 SetX = 9,328
SetY = 9,146 SetY = 9,146
SetZ = 9,38 SetZ = 9,38
<Particle 30> <Particle 29>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetFrame = 9,3 SetFrame = 9,3

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 0,7 SetFrame = 0,7
SetX = 0,-184 SetX = 0,-184
@@ -152,7 +152,7 @@ Name = Example anim
SetY = 51,-85 SetY = 51,-85
SetVisible = 52,false SetVisible = 52,false
<Particle 3> <Particle 3>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 1,7 SetFrame = 1,7
SetX = 1,-173 SetX = 1,-173
@@ -291,7 +291,7 @@ Name = Example anim
SetY = 50,-89 SetY = 50,-89
SetVisible = 51,false SetVisible = 51,false
<Particle 4> <Particle 4>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 2,8 SetFrame = 2,8
SetX = 2,-148 SetX = 2,-148
@@ -299,7 +299,7 @@ Name = Example anim
SetZ = 2,29 SetZ = 2,29
SetVisible = 3,false SetVisible = 3,false
<Particle 5> <Particle 5>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 4,10 SetFrame = 4,10
SetX = 4,-127 SetX = 4,-127
@@ -433,7 +433,7 @@ Name = Example anim
SetY = 50,-76 SetY = 50,-76
SetVisible = 51,false SetVisible = 51,false
<Particle 6> <Particle 6>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 8,7 SetFrame = 8,7
SetX = 8,-162 SetX = 8,-162
@@ -522,7 +522,7 @@ Name = Example anim
SetY = 38,17 SetY = 38,17
SetVisible = 39,false SetVisible = 39,false
<Particle 7> <Particle 7>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 13,8 SetFrame = 13,8
SetX = 13,-102 SetX = 13,-102
@@ -598,7 +598,7 @@ Name = Example anim
SetY = 38,-6 SetY = 38,-6
SetVisible = 39,false SetVisible = 39,false
<Particle 8> <Particle 8>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 15,8 SetFrame = 15,8
SetX = 15,45 SetX = 15,45
@@ -608,7 +608,7 @@ Name = Example anim
SetY = 16,61 SetY = 16,61
SetVisible = 17,false SetVisible = 17,false
<Particle 9> <Particle 9>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 15,9 SetFrame = 15,9
SetX = 15,53 SetX = 15,53
@@ -619,7 +619,7 @@ Name = Example anim
SetY = 16,-12 SetY = 16,-12
SetVisible = 17,false SetVisible = 17,false
<Particle 10> <Particle 10>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 16,8 SetFrame = 16,8
SetX = 16,33 SetX = 16,33
@@ -627,7 +627,7 @@ Name = Example anim
SetZ = 16,34 SetZ = 16,34
SetVisible = 17,false SetVisible = 17,false
<Particle 11> <Particle 11>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 16,10 SetFrame = 16,10
SetX = 16,33 SetX = 16,33
@@ -635,7 +635,7 @@ Name = Example anim
SetZ = 16,35 SetZ = 16,35
SetVisible = 17,false SetVisible = 17,false
<Particle 12> <Particle 12>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 18,8 SetFrame = 18,8
SetX = 18,42 SetX = 18,42
@@ -653,7 +653,7 @@ Name = Example anim
SetY = 22,9 SetY = 22,9
SetVisible = 23,false SetVisible = 23,false
<Particle 13> <Particle 13>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 24,9 SetFrame = 24,9
SetX = 24,-129 SetX = 24,-129
@@ -661,7 +661,7 @@ Name = Example anim
SetZ = 24,32 SetZ = 24,32
SetVisible = 25,false SetVisible = 25,false
<Particle 14> <Particle 14>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 25,10 SetFrame = 25,10
SetX = 25,29 SetX = 25,29
@@ -669,7 +669,7 @@ Name = Example anim
SetZ = 25,33 SetZ = 25,33
SetVisible = 26,false SetVisible = 26,false
<Particle 15> <Particle 15>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 27,9 SetFrame = 27,9
SetX = 27,-152 SetX = 27,-152
@@ -679,7 +679,7 @@ Name = Example anim
SetY = 28,-8 SetY = 28,-8
SetVisible = 29,false SetVisible = 29,false
<Particle 16> <Particle 16>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 27,11 SetFrame = 27,11
SetX = 27,-175 SetX = 27,-175
@@ -687,7 +687,7 @@ Name = Example anim
SetZ = 27,33 SetZ = 27,33
SetVisible = 28,false SetVisible = 28,false
<Particle 17> <Particle 17>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 31,9 SetFrame = 31,9
SetX = 31,18 SetX = 31,18
@@ -706,7 +706,7 @@ Name = Example anim
SetY = 35,16 SetY = 35,16
SetVisible = 36,false SetVisible = 36,false
<Particle 18> <Particle 18>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 31,11 SetFrame = 31,11
SetX = 31,16 SetX = 31,16
@@ -725,7 +725,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 0,7 SetFrame = 0,7
SetX = 0,-20 SetX = 0,-20
@@ -837,7 +837,7 @@ Name = Example anim
SetY = 40,23 SetY = 40,23
SetOpacity = 40,255 SetOpacity = 40,255
<Particle 3> <Particle 3>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 0,8 SetFrame = 0,8
SetX = 0,-19 SetX = 0,-19
@@ -948,7 +948,7 @@ Name = Example anim
SetX = 40,-201 SetX = 40,-201
SetY = 40,4 SetY = 40,4
<Particle 4> <Particle 4>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 4,9 SetFrame = 4,9
SetX = 4,-84 SetX = 4,-84
@@ -1052,7 +1052,7 @@ Name = Example anim
SetX = 40,-215 SetX = 40,-215
SetY = 40,43 SetY = 40,43
<Particle 5> <Particle 5>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 4,10 SetFrame = 4,10
SetX = 4,-79 SetX = 4,-79
@@ -1065,7 +1065,7 @@ Name = Example anim
SetY = 6,25 SetY = 6,25
SetVisible = 7,false SetVisible = 7,false
<Particle 6> <Particle 6>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 9,11 SetFrame = 9,11
SetX = 9,-3 SetX = 9,-3
@@ -1084,7 +1084,7 @@ Name = Example anim
SetY = 13,45 SetY = 13,45
SetVisible = 14,false SetVisible = 14,false
<Particle 7> <Particle 7>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 10,9 SetFrame = 10,9
SetX = 10,-4 SetX = 10,-4
@@ -1099,7 +1099,7 @@ Name = Example anim
SetY = 13,44 SetY = 13,44
SetVisible = 14,false SetVisible = 14,false
<Particle 8> <Particle 8>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 11,11 SetFrame = 11,11
SetX = 11,-65 SetX = 11,-65
@@ -1107,7 +1107,7 @@ Name = Example anim
SetZ = 11,32 SetZ = 11,32
SetVisible = 12,false SetVisible = 12,false
<Particle 9> <Particle 9>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 13,10 SetFrame = 13,10
SetX = 13,-23 SetX = 13,-23
@@ -1115,7 +1115,7 @@ Name = Example anim
SetZ = 13,32 SetZ = 13,32
SetVisible = 14,false SetVisible = 14,false
<Particle 10> <Particle 10>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 16,11 SetFrame = 16,11
SetX = 16,-97 SetX = 16,-97
@@ -1126,7 +1126,7 @@ Name = Example anim
SetY = 17,155 SetY = 17,155
SetVisible = 18,false SetVisible = 18,false
<Particle 11> <Particle 11>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 16,10 SetFrame = 16,10
SetX = 16,-102 SetX = 16,-102
@@ -1137,7 +1137,7 @@ Name = Example anim
SetY = 17,149 SetY = 17,149
SetVisible = 18,false SetVisible = 18,false
<Particle 12> <Particle 12>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 19,11 SetFrame = 19,11
SetX = 19,-6 SetX = 19,-6
@@ -1155,7 +1155,7 @@ Name = Example anim
SetY = 23,55 SetY = 23,55
SetVisible = 24,false SetVisible = 24,false
<Particle 13> <Particle 13>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 20,8 SetFrame = 20,8
SetX = 20,-17 SetX = 20,-17
@@ -1166,7 +1166,7 @@ Name = Example anim
SetY = 21,108 SetY = 21,108
SetVisible = 22,false SetVisible = 22,false
<Particle 14> <Particle 14>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 23,10 SetFrame = 23,10
SetX = 23,-15 SetX = 23,-15
@@ -1174,7 +1174,7 @@ Name = Example anim
SetZ = 23,31 SetZ = 23,31
SetVisible = 24,false SetVisible = 24,false
<Particle 15> <Particle 15>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 23,11 SetFrame = 23,11
SetX = 23,-49 SetX = 23,-49
@@ -1182,7 +1182,7 @@ Name = Example anim
SetZ = 23,32 SetZ = 23,32
SetVisible = 24,false SetVisible = 24,false
<Particle 16> <Particle 16>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 26,9 SetFrame = 26,9
SetX = 26,-112 SetX = 26,-112
@@ -1208,7 +1208,7 @@ Name = Example anim
SetY = 33,164 SetY = 33,164
SetVisible = 34,false SetVisible = 34,false
<Particle 17> <Particle 17>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 26,8 SetFrame = 26,8
SetX = 26,-134 SetX = 26,-134
@@ -1235,7 +1235,7 @@ Name = Example anim
SetY = 33,147 SetY = 33,147
SetVisible = 34,false SetVisible = 34,false
<Particle 18> <Particle 18>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 27,10 SetFrame = 27,10
SetX = 27,-143 SetX = 27,-143
@@ -1245,7 +1245,7 @@ Name = Example anim
SetY = 28,126 SetY = 28,126
SetVisible = 29,false SetVisible = 29,false
<Particle 19> <Particle 19>
Graphic = Examples/poi.hear.mus Graphic = Examples/poi hear mus
Focus = Target Focus = Target
SetFrame = 30,11 SetFrame = 30,11
SetX = 30,-122 SetX = 30,-122

View File

@@ -2,84 +2,82 @@
#------------------------------- #-------------------------------
[Move,SPIKES] [Move,SPIKES]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = UserAndTarget Focus = User
SetFrame = 3,13 SetFrame = 3,13
SetX = 3,0 SetX = 3,0
SetY = 3,18 SetY = 3,12
SetZ = 3,28 SetZ = 3,28
SetZoomX = 3,50 SetZoomX = 3,50
SetZoomY = 3,50 SetZoomY = 3,50
SetX = 4,19 SetX = 4,25
SetY = 4,-109 SetY = 4,-70
SetX = 5,44 SetX = 5,57
SetY = 5,-178 SetY = 5,-114
SetX = 6,0 SetX = 6,0
SetY = 6,9 SetY = 6,6
SetX = 7,14 SetX = 7,19
SetY = 7,-118 SetY = 7,-76
SetX = 8,189 SetX = 8,243
SetY = 8,-246 SetY = 8,-158
SetX = 9,219 SetX = 9,281
SetY = 9,-148 SetY = 9,-95
SetX = 10,139 SetX = 10,179
SetX = 12,179 SetX = 12,230
SetY = 12,-178 SetY = 12,-114
SetX = 13,139 SetX = 13,179
SetY = 13,-148 SetY = 13,-95
<Particle 4> <Particle 3>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = UserAndTarget Focus = User
SetFrame = 6,13 SetFrame = 6,13
SetX = 6,89 SetX = 6,115
SetY = 6,-217 SetY = 6,-139
SetZ = 6,29 SetZ = 6,29
SetZoomX = 6,50 SetZoomX = 6,50
SetZoomY = 6,50 SetZoomY = 6,50
SetX = 7,139 SetX = 7,179
SetY = 7,-148 SetY = 7,-95
SetX = 8,59 SetX = 8,76
SetY = 8,-217 SetY = 8,-139
SetX = 9,139 SetX = 9,179
SetY = 9,-148 SetY = 9,-95
SetX = 10,219 SetX = 10,281
<Particle 2> <Particle 1>
Graphic = Examples/normal2 Graphic = Examples/normal2
Focus = UserAndTarget Focus = User
SetFrame = 0,13 SetFrame = 0,13
SetX = 0,0 SetX = 0,0
SetY = 0,-20 SetY = 0,-13
SetZ = 0,27 SetZ = 0,27
SetZoomX = 0,50 SetZoomX = 0,50
SetZoomY = 0,50 SetZoomY = 0,50
SetX = 1,9 SetX = 1,12
SetY = 1,-98 SetY = 1,-63
SetX = 2,29 SetX = 2,38
SetY = 2,-168 SetY = 2,-108
SetX = 3,64 SetX = 3,83
SetY = 3,-217 SetY = 3,-139
SetX = 4,109 SetX = 4,140
SetY = 4,-207 SetY = 4,-133
SetX = 5,139 SetX = 5,179
SetY = 5,-148 SetY = 5,-95
SetX = 7,125 SetX = 7,160
SetY = 7,-256 SetY = 7,-164
SetX = 8,139 SetX = 8,179
SetY = 8,-148 SetY = 8,-95
SetY = 9,-276 SetY = 9,-177
SetX = 10,179 SetX = 10,230
SetY = 10,-178 SetY = 10,-114
SetX = 12,139 SetX = 12,179
SetY = 12,-148 SetY = 12,-95
SetX = 13,179 SetX = 13,230
SetY = 13,-178 SetY = 13,-114
<SE> <SE>
Play = 1,throw,80 Play = 1,throw,80
Play = 5,Sword1,80 Play = 5,Sword1,80

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,SPLASH] [Move,SPLASH]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/poison2 Graphic = Examples/poison2
Focus = User Focus = User
SetFlip = 1,true SetFlip = 1,true
@@ -16,7 +14,7 @@ Name = Example anim
SetY = 1,6 SetY = 1,6
SetZ = 1,28 SetZ = 1,28
SetVisible = 2,false SetVisible = 2,false
<Particle 4> <Particle 3>
Graphic = Examples/poison2 Graphic = Examples/poison2
Focus = User Focus = User
SetFrame = 2,1 SetFrame = 2,1
@@ -24,7 +22,7 @@ Name = Example anim
SetY = 2,-2 SetY = 2,-2
SetZ = 2,29 SetZ = 2,29
SetVisible = 3,false SetVisible = 3,false
<Particle 5> <Particle 4>
Graphic = Examples/poison2 Graphic = Examples/poison2
Focus = User Focus = User
SetFrame = 3,1 SetFrame = 3,1
@@ -49,7 +47,7 @@ Name = Example anim
SetY = 8,-26 SetY = 8,-26
SetFrame = 9,2 SetFrame = 9,2
SetX = 9,-120 SetX = 9,-120
<Particle 6> <Particle 5>
Graphic = Examples/poison2 Graphic = Examples/poison2
Focus = User Focus = User
SetX = 4,80 SetX = 4,80
@@ -60,7 +58,7 @@ Name = Example anim
SetFlip = 6,true SetFlip = 6,true
SetX = 6,-64 SetX = 6,-64
SetVisible = 7,false SetVisible = 7,false
<Particle 2> <Particle 1>
Graphic = Examples/poison2 Graphic = Examples/poison2
Focus = User Focus = User
SetX = 0,56 SetX = 0,56

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,STEALTHROCK] [Move,STEALTHROCK]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 0,5 SetFrame = 0,5
@@ -88,7 +86,7 @@ Name = Example anim
SetOpacity = 27,128 SetOpacity = 27,128
SetOpacity = 28,64 SetOpacity = 28,64
SetVisible = 29,false SetVisible = 29,false
<Particle 3> <Particle 2>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 4,5 SetFrame = 4,5
@@ -160,7 +158,7 @@ Name = Example anim
SetOpacity = 27,128 SetOpacity = 27,128
SetOpacity = 28,64 SetOpacity = 28,64
SetVisible = 29,false SetVisible = 29,false
<Particle 4> <Particle 3>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetX = 7,431 SetX = 7,431
@@ -207,7 +205,7 @@ Name = Example anim
SetY = 21,181 SetY = 21,181
SetOpacity = 21,255 SetOpacity = 21,255
SetVisible = 25,false SetVisible = 25,false
<Particle 5> <Particle 4>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -220,7 +218,7 @@ Name = Example anim
SetY = 8,188 SetY = 8,188
SetOpacity = 8,192 SetOpacity = 8,192
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 5>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 8,3 SetFrame = 8,3
@@ -242,7 +240,7 @@ Name = Example anim
SetX = 21,444 SetX = 21,444
SetY = 21,176 SetY = 21,176
SetVisible = 25,false SetVisible = 25,false
<Particle 7> <Particle 6>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 11,1 SetFrame = 11,1
@@ -264,7 +262,7 @@ Name = Example anim
SetX = 17,395 SetX = 17,395
SetY = 17,190 SetY = 17,190
SetVisible = 21,false SetVisible = 21,false
<Particle 8> <Particle 7>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 11,2 SetFrame = 11,2
@@ -278,7 +276,7 @@ Name = Example anim
SetX = 16,352 SetX = 16,352
SetY = 16,186 SetY = 16,186
SetVisible = 17,false SetVisible = 17,false
<Particle 9> <Particle 8>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 12,1 SetFrame = 12,1
@@ -287,7 +285,7 @@ Name = Example anim
SetZ = 12,33 SetZ = 12,33
SetOpacity = 12,192 SetOpacity = 12,192
SetVisible = 13,false SetVisible = 13,false
<Particle 10> <Particle 9>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetX = 15,323 SetX = 15,323
@@ -296,7 +294,7 @@ Name = Example anim
SetOpacity = 15,128 SetOpacity = 15,128
SetOpacity = 16,192 SetOpacity = 16,192
SetVisible = 17,false SetVisible = 17,false
<Particle 11> <Particle 10>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 15,3 SetFrame = 15,3
@@ -306,7 +304,7 @@ Name = Example anim
SetOpacity = 15,128 SetOpacity = 15,128
SetOpacity = 16,192 SetOpacity = 16,192
SetVisible = 17,false SetVisible = 17,false
<Particle 12> <Particle 11>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 19,1 SetFrame = 19,1
@@ -319,7 +317,7 @@ Name = Example anim
SetY = 20,181 SetY = 20,181
SetOpacity = 20,192 SetOpacity = 20,192
SetVisible = 21,false SetVisible = 21,false
<Particle 13> <Particle 12>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 19,2 SetFrame = 19,2
@@ -337,13 +335,11 @@ Name = Example anim
#------------------------------- #-------------------------------
[OppMove,STEALTHROCK] [OppMove,STEALTHROCK]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 0,5 SetFrame = 0,5
@@ -423,7 +419,7 @@ Name = Example anim
SetOpacity = 27,128 SetOpacity = 27,128
SetOpacity = 28,64 SetOpacity = 28,64
SetVisible = 29,false SetVisible = 29,false
<Particle 3> <Particle 2>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 4,5 SetFrame = 4,5
@@ -495,7 +491,7 @@ Name = Example anim
SetOpacity = 27,128 SetOpacity = 27,128
SetOpacity = 28,64 SetOpacity = 28,64
SetVisible = 29,false SetVisible = 29,false
<Particle 4> <Particle 3>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetX = 7,207 SetX = 7,207
@@ -542,7 +538,7 @@ Name = Example anim
SetY = 21,277 SetY = 21,277
SetOpacity = 21,255 SetOpacity = 21,255
SetVisible = 25,false SetVisible = 25,false
<Particle 5> <Particle 4>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 7,3 SetFrame = 7,3
@@ -555,7 +551,7 @@ Name = Example anim
SetY = 8,284 SetY = 8,284
SetOpacity = 8,192 SetOpacity = 8,192
SetVisible = 9,false SetVisible = 9,false
<Particle 6> <Particle 5>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 8,3 SetFrame = 8,3
@@ -577,7 +573,7 @@ Name = Example anim
SetX = 21,220 SetX = 21,220
SetY = 21,272 SetY = 21,272
SetVisible = 25,false SetVisible = 25,false
<Particle 7> <Particle 6>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 11,1 SetFrame = 11,1
@@ -599,7 +595,7 @@ Name = Example anim
SetX = 17,171 SetX = 17,171
SetY = 17,286 SetY = 17,286
SetVisible = 21,false SetVisible = 21,false
<Particle 8> <Particle 7>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 11,2 SetFrame = 11,2
@@ -613,7 +609,7 @@ Name = Example anim
SetX = 16,128 SetX = 16,128
SetY = 16,282 SetY = 16,282
SetVisible = 17,false SetVisible = 17,false
<Particle 9> <Particle 8>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 12,1 SetFrame = 12,1
@@ -622,7 +618,7 @@ Name = Example anim
SetZ = 12,33 SetZ = 12,33
SetOpacity = 12,192 SetOpacity = 12,192
SetVisible = 13,false SetVisible = 13,false
<Particle 10> <Particle 9>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetX = 15,99 SetX = 15,99
@@ -631,7 +627,7 @@ Name = Example anim
SetOpacity = 15,128 SetOpacity = 15,128
SetOpacity = 16,192 SetOpacity = 16,192
SetVisible = 17,false SetVisible = 17,false
<Particle 11> <Particle 10>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 15,3 SetFrame = 15,3
@@ -641,7 +637,7 @@ Name = Example anim
SetOpacity = 15,128 SetOpacity = 15,128
SetOpacity = 16,192 SetOpacity = 16,192
SetVisible = 17,false SetVisible = 17,false
<Particle 12> <Particle 11>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 19,1 SetFrame = 19,1
@@ -654,7 +650,7 @@ Name = Example anim
SetY = 20,277 SetY = 20,277
SetOpacity = 20,192 SetOpacity = 20,192
SetVisible = 21,false SetVisible = 21,false
<Particle 13> <Particle 12>
Graphic = Examples/Rock Tomb Graphic = Examples/Rock Tomb
Focus = Foreground Focus = Foreground
SetFrame = 19,2 SetFrame = 19,2

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,SUNNYDAY] [Move,SUNNYDAY]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/weather Graphic = Examples/weather
Focus = Foreground Focus = Foreground
SetX = 0,64 SetX = 0,64

View File

@@ -2,15 +2,96 @@
#------------------------------- #-------------------------------
[Move,SWORDSDANCE] [Move,SWORDSDANCE]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2> <Particle 2>
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = Target Focus = User
SetFrame = 0,10
SetX = 0,52
SetY = 0,123
SetZ = 0,28
SetX = 1,50
SetY = 1,81
SetX = 2,-36
SetY = 2,54
SetX = 3,-34
SetY = 3,-15
SetX = 4,51
SetY = 4,-64
SetFrame = 5,13
SetX = 5,-43
SetY = 5,11
SetX = 6,-15
SetY = 6,31
SetFrame = 7,14
SetX = 7,19
SetY = 7,-15
SetFrame = 8,13
SetX = 8,-1
SetY = 8,21
SetX = 9,-67
SetY = 9,33
SetX = 10,-53
SetY = 10,2
SetX = 11,-52
SetY = 11,-51
<Particle 3>
Graphic = Examples/fly copy
Focus = User
SetFrame = 1,11
SetX = 1,9
SetY = 1,-92
SetZ = 1,29
SetFrame = 2,10
SetX = 2,51
SetY = 2,59
SetX = 3,43
SetY = 3,-21
SetFrame = 4,11
SetX = 4,12
SetY = 4,66
SetFrame = 5,12
SetX = 5,-2
SetY = 5,7
SetX = 6,9
SetY = 6,17
SetVisible = 7,false
<Particle 4>
Graphic = Examples/fly copy
Focus = User
SetFrame = 4,13
SetX = 4,74
SetY = 4,23
SetZ = 4,30
SetVisible = 5,false
<Particle 5>
Graphic = Examples/fly copy
Focus = User
SetFrame = 4,13
SetX = 4,-81
SetY = 4,15
SetZ = 4,31
SetVisible = 5,false
<Particle 6>
Graphic = Examples/fly copy
Focus = User
SetFrame = 8,13
SetX = 8,-23
SetY = 8,27
SetZ = 8,29
SetFrame = 9,12
SetX = 9,51
SetY = 9,10
SetFrame = 10,13
SetX = 10,-80
SetY = 10,-14
SetY = 11,-56
<Particle 1>
Graphic = Examples/fly copy
Focus = User
SetFrame = 0,10 SetFrame = 0,10
SetX = 0,-41 SetX = 0,-41
SetY = 0,119 SetY = 0,119
@@ -42,88 +123,5 @@ Name = Example anim
SetX = 10,77 SetX = 10,77
SetY = 10,-43 SetY = 10,-43
SetX = 11,81 SetX = 11,81
<Particle 3>
Graphic = Examples/fly copy
Focus = Target
SetFrame = 0,10
SetX = 0,52
SetY = 0,123
SetZ = 0,28
SetX = 1,50
SetY = 1,81
SetX = 2,-36
SetY = 2,54
SetX = 3,-34
SetY = 3,-15
SetX = 4,51
SetY = 4,-64
SetFrame = 5,13
SetX = 5,-43
SetY = 5,11
SetX = 6,-15
SetY = 6,31
SetFrame = 7,14
SetX = 7,19
SetY = 7,-15
SetFrame = 8,13
SetX = 8,-1
SetY = 8,21
SetX = 9,-67
SetY = 9,33
SetX = 10,-53
SetY = 10,2
SetX = 11,-52
SetY = 11,-51
<Particle 4>
Graphic = Examples/fly copy
Focus = Target
SetFrame = 1,11
SetX = 1,9
SetY = 1,-92
SetZ = 1,29
SetFrame = 2,10
SetX = 2,51
SetY = 2,59
SetX = 3,43
SetY = 3,-21
SetFrame = 4,11
SetX = 4,12
SetY = 4,66
SetFrame = 5,12
SetX = 5,-2
SetY = 5,7
SetX = 6,9
SetY = 6,17
SetVisible = 7,false
<Particle 5>
Graphic = Examples/fly copy
Focus = Target
SetFrame = 4,13
SetX = 4,74
SetY = 4,23
SetZ = 4,30
SetVisible = 5,false
<Particle 6>
Graphic = Examples/fly copy
Focus = Target
SetFrame = 4,13
SetX = 4,-81
SetY = 4,15
SetZ = 4,31
SetVisible = 5,false
<Particle 7>
Graphic = Examples/fly copy
Focus = Target
SetFrame = 8,13
SetX = 8,-23
SetY = 8,27
SetZ = 8,29
SetFrame = 9,12
SetX = 9,51
SetY = 9,10
SetFrame = 10,13
SetX = 10,-80
SetY = 10,-14
SetY = 11,-56
<SE> <SE>
Play = 0,Swords Dance,90 Play = 0,Swords Dance,90

View File

@@ -2,15 +2,13 @@
#------------------------------- #-------------------------------
[Move,TAILGLOW] [Move,TAILGLOW]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/Light1 Graphic = Examples/Light1
Focus = Target Focus = User
SetX = 0,0 SetX = 0,0
SetY = 0,-2 SetY = 0,-2
SetZ = 0,27 SetZ = 0,27

View File

@@ -2,13 +2,11 @@
#------------------------------- #-------------------------------
[Move,TELEPORT] [Move,TELEPORT]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 2>
SetX = 0,0
SetY = 0,0
<Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 0,6 SetFrame = 0,6
@@ -27,7 +25,7 @@ Name = Example anim
SetY = 5,-8 SetY = 5,-8
SetX = 6,-4 SetX = 6,-4
SetY = 6,-40 SetY = 6,-40
<Particle 4> <Particle 3>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 1,6 SetFrame = 1,6
@@ -44,7 +42,7 @@ Name = Example anim
SetY = 5,-21 SetY = 5,-21
SetX = 6,14 SetX = 6,14
SetY = 6,-89 SetY = 6,-89
<Particle 2> <Particle 1>
Graphic = Examples/! Graphic = Examples/!
Focus = User Focus = User
SetFrame = 0,6 SetFrame = 0,6

View File

@@ -9,7 +9,7 @@ Name = Example anim
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Particle 3> <Particle 3>
Graphic = Examples/T. Shock Graphic = Examples/T Shock
Focus = Target Focus = Target
SetX = 6,8 SetX = 6,8
SetY = 6,18 SetY = 6,18
@@ -28,7 +28,7 @@ Name = Example anim
SetX = 14,-24 SetX = 14,-24
SetX = 15,-16 SetX = 15,-16
<Particle 4> <Particle 4>
Graphic = Examples/T. Shock Graphic = Examples/T Shock
Focus = Target Focus = Target
SetFrame = 6,5 SetFrame = 6,5
SetX = 6,-16 SetX = 6,-16
@@ -36,7 +36,7 @@ Name = Example anim
SetZ = 6,29 SetZ = 6,29
SetVisible = 7,false SetVisible = 7,false
<Particle 2> <Particle 2>
Graphic = Examples/T. Shock Graphic = Examples/T Shock
Focus = Target Focus = Target
SetX = 1,8 SetX = 1,8
SetY = 1,-54 SetY = 1,-54

View File

@@ -2,32 +2,30 @@
#------------------------------- #-------------------------------
[Move,TRICKROOM] [Move,TRICKROOM]
Name = Example anim Name = Example anim
NoTarget = true
<User> <User>
SetX = 0,0 SetX = 0,0
SetY = 0,0 SetY = 0,0
<Target> <Particle 1>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/mixed status Graphic = Examples/mixed status
Focus = UserAndTarget Focus = Foreground
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,142 SetX = 0,310
SetY = 0,-21 SetY = 0,210
SetZoomX = 0,446 SetZoomX = 0,446
SetZoomY = 0,273 SetZoomY = 0,273
SetX = 1,142 SetX = 1,311
SetY = 1,-23 SetY = 1,209
SetX = 3,144 SetX = 3,313
SetY = 3,-20 SetY = 3,211
SetX = 4,142 SetX = 4,311
SetX = 5,144 SetX = 5,313
SetY = 5,-18 SetY = 5,212
SetX = 6,142 SetX = 6,311
SetY = 7,-20 SetY = 7,211
SetX = 8,144 SetX = 8,313
SetY = 8,-17 SetY = 8,213
SetX = 9,142 SetX = 9,310
SetY = 9,-20 SetY = 9,211
<SE> <SE>
Play = 0,MiningPing,100,84 Play = 0,MiningPing,100,84

View File

@@ -139,8 +139,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 0,5 SetFrame = 0,5
SetX = 0,175 SetX = 0,25
SetY = 0,-223 SetY = 0,23
SetZ = 0,27 SetZ = 0,27
SetZoomX = 0,50 SetZoomX = 0,50
SetZoomY = 0,50 SetZoomY = 0,50
@@ -150,8 +150,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 1,5 SetFrame = 1,5
SetX = 1,156 SetX = 1,43
SetY = 1,-200 SetY = 1,0
SetZ = 1,28 SetZ = 1,28
SetZoomX = 1,50 SetZoomX = 1,50
SetZoomY = 1,50 SetZoomY = 1,50
@@ -161,8 +161,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 2,5 SetFrame = 2,5
SetX = 2,137 SetX = 2,62
SetY = 2,-165 SetY = 2,-34
SetZ = 2,29 SetZ = 2,29
SetZoomX = 2,50 SetZoomX = 2,50
SetZoomY = 2,50 SetZoomY = 2,50
@@ -172,8 +172,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 3,5 SetFrame = 3,5
SetX = 3,118 SetX = 3,81
SetY = 3,-140 SetY = 3,-59
SetZ = 3,30 SetZ = 3,30
SetZoomX = 3,50 SetZoomX = 3,50
SetZoomY = 3,50 SetZoomY = 3,50
@@ -183,8 +183,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 4,5 SetFrame = 4,5
SetX = 4,101 SetX = 4,98
SetY = 4,-98 SetY = 4,-101
SetZ = 4,31 SetZ = 4,31
SetZoomX = 4,50 SetZoomX = 4,50
SetZoomY = 4,50 SetZoomY = 4,50
@@ -194,8 +194,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 5,5 SetFrame = 5,5
SetX = 5,81 SetX = 5,118
SetY = 5,-70 SetY = 5,-129
SetZ = 5,32 SetZ = 5,32
SetZoomX = 5,50 SetZoomX = 5,50
SetZoomY = 5,50 SetZoomY = 5,50
@@ -205,8 +205,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 6,5 SetFrame = 6,5
SetX = 6,57 SetX = 6,142
SetY = 6,-43 SetY = 6,-156
SetZ = 6,33 SetZ = 6,33
SetZoomX = 6,50 SetZoomX = 6,50
SetZoomY = 6,50 SetZoomY = 6,50
@@ -216,8 +216,8 @@ Name = Example anim
Graphic = Examples/fly copy Graphic = Examples/fly copy
Focus = UserAndTarget Focus = UserAndTarget
SetFrame = 7,5 SetFrame = 7,5
SetX = 7,30 SetX = 7,169
SetY = 7,-10 SetY = 7,-189
SetZ = 7,34 SetZ = 7,34
SetZoomX = 7,50 SetZoomX = 7,50
SetZoomY = 7,50 SetZoomY = 7,50