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.
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
def convert_old_animations_to_new
@@ -52,6 +58,26 @@ module AnimationConverter
: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_bg_fg_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
#-----------------------------------------------------------------------------
def add_frames_to_new_anim_hash(anim, hash)
# Lookup array for particle index using cel index
index_lookup = []
@@ -95,6 +123,10 @@ module AnimationConverter
default_frame[99] = "Examples/" + anim.graphic
last_frame_values = []
anim_graphic = anim.graphic
anim_graphic.gsub!(".", " ")
anim_graphic.gsub!(" ", " ")
# Go through each frame
anim.length.times do |frame_num|
frame = anim[frame_num]
@@ -102,12 +134,19 @@ module AnimationConverter
changed_particles = []
frame.each_with_index do |cel, i|
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
# focus, start a new particle.
if i > 1 && frame_num > 0 && index_lookup[i] && index_lookup[i] >= 0 &&
last_frame_values[index_lookup[i]]
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 = (cel[AnimFrame::PATTERN] == -1) ? "USER" : (cel[AnimFrame::PATTERN] == -2) ? "TARGET" : "Examples/" + anim_graphic
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
index_lookup[i] = -1
end
@@ -124,9 +163,9 @@ module AnimationConverter
particle = hash[:particles][idx]
last_frame = last_frame_values[idx] || default_frame.clone
# User and target particles have specific names
if idx == 0
if i == 0
particle[:name] = "User"
elsif idx == 1
elsif i == 1
particle[:name] = "Target"
else
# Set graphic
@@ -138,14 +177,17 @@ module AnimationConverter
particle[:graphic] = "TARGET"
last_frame[99] = "TARGET"
else
particle[:graphic] = "Examples/" + anim.graphic
last_frame[99] = "Examples/" + anim.graphic
particle[:graphic] = "Examples/" + anim_graphic
last_frame[99] = "Examples/" + anim_graphic
end
end
# Set focus for non-User/non-Target
if idx > 1
particle[:focus] = [:foreground, :target, :user, :user_and_target, :foreground][cel[AnimFrame::FOCUS]]
last_frame[AnimFrame::FOCUS] = cel[AnimFrame::FOCUS]
if i > 1
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
# Copy commands across
@@ -175,23 +217,59 @@ module AnimationConverter
val = cel[property[0]].to_i
case property[1]
when :x
# TODO: What if the animation is an OppMove one? I think this should
# be the other way around.
if particle[:focus] == :user_and_target
fraction = (val - Battle::Scene::FOCUSUSER_X).to_f / (Battle::Scene::FOCUSTARGET_X - Battle::Scene::FOCUSUSER_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
# be the other way around.
user_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
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
# TODO: What if the animation is an OppMove one? I think this should
# be the other way around.
if particle[:focus] == :user_and_target
fraction = (val - Battle::Scene::FOCUSUSER_Y).to_f / (Battle::Scene::FOCUSTARGET_Y - Battle::Scene::FOCUSUSER_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
# be the other way around.
user_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
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
val = (val == 1) # Boolean
when :z
next if idx <= 1 # User or target
next if i <= 1 # User or target
case val
when 0 then val = -50 + i # Back
when 1 then val = 25 + i # Front
@@ -231,7 +309,7 @@ module AnimationConverter
# doesn't have any commands
if frame_num == anim.length - 1 && changed_particles.empty?
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
# frame isn't a perfect solution, but it's good enough to get
# example animation data.
@@ -242,30 +320,18 @@ module AnimationConverter
end
end
hash[:particles][0][:focus] = :user
hash[:particles][1][:focus] = :target
# 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 }
if hash[:particles].any? { |particle| particle[:name] == "User" }
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
#-----------------------------------------------------------------------------
# TODO: Haven't tested this as no Essentials animations use them.
def add_bg_fg_commands_to_new_anim_hash(anim, new_anim)
bg_particle = { :name => "Background", :focus => :background }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,15 +2,55 @@
#-------------------------------
[Common,Sleep]
Name = Example anim
NoTarget = true
<User>
SetX = 0,0
SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 3>
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
SetX = 3,40
SetY = 3,-42
@@ -33,59 +73,5 @@ Name = Example anim
SetY = 10,-58
SetX = 11,79
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>
Play = 0,Sleep,80

View File

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

View File

@@ -2,34 +2,13 @@
#-------------------------------
[Common,StatUp]
Name = Example anim
NoTarget = true
<User>
SetX = 0,0
SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
Graphic = Examples/!
Focus = Target
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
Focus = User
SetFrame = 0,6
SetX = 0,7
SetY = 0,106
@@ -46,9 +25,9 @@ Name = Example anim
SetOpacity = 8,63
SetY = 9,-142
SetOpacity = 9,0
<Particle 4>
<Particle 3>
Graphic = Examples/!
Focus = Target
Focus = User
SetFrame = 0,6
SetX = 0,55
SetY = 0,138
@@ -67,9 +46,9 @@ Name = Example anim
SetOpacity = 8,63
SetY = 9,-94
SetOpacity = 9,0
<Particle 5>
<Particle 4>
Graphic = Examples/!
Focus = Target
Focus = User
SetFrame = 2,6
SetX = 2,-9
SetY = 2,138
@@ -84,9 +63,9 @@ Name = Example anim
SetOpacity = 8,63
SetY = 9,-38
SetOpacity = 9,0
<Particle 6>
<Particle 5>
Graphic = Examples/!
Focus = Target
Focus = User
SetFrame = 3,6
SetX = 3,39
SetY = 3,138
@@ -100,9 +79,9 @@ Name = Example anim
SetOpacity = 8,63
SetY = 9,-6
SetOpacity = 9,0
<Particle 7>
<Particle 6>
Graphic = Examples/!
Focus = Target
Focus = User
SetFrame = 5,6
SetX = 5,-25
SetY = 5,138
@@ -113,5 +92,24 @@ Name = Example anim
SetOpacity = 8,63
SetY = 9,58
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>
Play = 0,increase

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,75 +2,73 @@
#-------------------------------
[Move,AQUARING]
Name = Example anim
NoTarget = true
<User>
SetX = 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>
Graphic = Examples/fly copy
Focus = UserAndTarget
SetX = 0,207
SetY = 0,-185
Focus = User
SetX = 2,5
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
SetX = 1,208
SetY = 1,-182
SetX = 1,11
SetY = 1,11
SetFrame = 2,5
SetX = 2,203
SetY = 2,-203
SetX = 2,4
SetY = 2,-2
SetZoomX = 2,110
SetZoomY = 2,110
SetFrame = 3,8
SetX = 3,196
SetY = 3,-196
SetX = 3,-5
SetY = 3,2
SetZoomX = 3,100
SetZoomY = 3,100
SetFrame = 4,9
SetX = 4,198
SetY = 4,-193
SetX = 4,-2
SetY = 4,4
SetFrame = 5,0
SetX = 5,207
SetY = 5,-187
SetX = 5,10
SetY = 5,8
<SE>
Play = 0,Weatherball,80

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,13 +2,79 @@
#-------------------------------
[Move,COTTONGUARD]
Name = Example anim
NoTarget = true
<User>
SetX = 0,0
SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<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
Focus = User
SetFrame = 0,15
@@ -27,73 +93,5 @@ Name = Example anim
SetX = 6,56
SetY = 6,9
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>
Play = 0,Substitute,80

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,15 +2,96 @@
#-------------------------------
[Move,SWORDSDANCE]
Name = Example anim
NoTarget = true
<User>
SetX = 0,0
SetY = 0,0
<Target>
SetX = 0,0
SetY = 0,0
<Particle 2>
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
SetX = 0,-41
SetY = 0,119
@@ -42,88 +123,5 @@ Name = Example anim
SetX = 10,77
SetY = 10,-43
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>
Play = 0,Swords Dance,90

View File

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

View File

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

View File

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

View File

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

View File

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