first commit

This commit is contained in:
2025-02-18 15:25:17 +01:00
commit 37cf0e8062
7403 changed files with 1227142 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{
"criteria": {
"requirement": {
"trigger": "minecraft:fishing_rod_hooked",
"conditions": {
"item": {
"items": ["minecraft:barrier"],
"nbt": "{PokemonFishing:{}}"
}
}
}
},
"rewards": {
"function": "pokemonfishing:on_event/on_catch"
}
}

View File

@ -0,0 +1,10 @@
{
"criteria": {
"requirement": {
"trigger": "minecraft:tick"
}
},
"rewards": {
"function": "pokemonfishing:on_event/on_join"
}
}

View File

@ -0,0 +1,7 @@
# executes globally (scheduled a tick after a pokemon catch in order to be able to find placeholder item)
# find item
execute as @e[type=item,sort=nearest,tag=!pokemonfishing.placeholder.done] if data entity @s Item.tag.PokemonFishing run tag @s add pokemonfishing.placeholder.found
# item found
execute as @e[type=item,sort=nearest,tag=pokemonfishing.placeholder.found,limit=1] run function pokemonfishing:catch/init_iterate_catches

View File

@ -0,0 +1,45 @@
# executes as placeholder item
# debug
scoreboard players set #pokemonfishing:error_code pokemonfishing.temp 1
# get pokemon data from placeholder item
execute store result score #pokemonfishing:pokemon.id pokemonfishing.temp run data get entity @s Item.tag.PokemonFishing.PokemonID 1
execute store result score #pokemonfishing:pokemon.max_level pokemonfishing.temp run data get entity @s Item.tag.PokemonFishing.Max_Level 1
execute store result score #pokemonfishing:pokemon.min_level pokemonfishing.temp run data get entity @s Item.tag.PokemonFishing.Min_Level 1
# determine random level from data
scoreboard players operation #pokemonfishing:rng.input pokemonfishing.temp = #pokemonfishing:pokemon.max_level pokemonfishing.temp
scoreboard players operation #pokemonfishing:rng.input pokemonfishing.temp -= #pokemonfishing:pokemon.min_level pokemonfishing.temp
function pokemonfishing:utility/rng/rng
scoreboard players operation #pokemonfishing:pokemon.level pokemonfishing.temp = #pokemonfishing:rng.output pokemonfishing.temp
scoreboard players operation #pokemonfishing:pokemon.level pokemonfishing.temp += #pokemonfishing:pokemon.min_level pokemonfishing.temp
scoreboard players add #pokemonfishing:pokemon.level pokemonfishing.temp 1
# determine shiny chance
scoreboard players set #pokemonfishing:rng.input pokemonfishing.temp 8192
function pokemonfishing:utility/rng/rng
scoreboard players operation #pokemonfishing:pokemon.shiny pokemonfishing.temp = #pokemonfishing:rng.output pokemonfishing.temp
scoreboard players add #pokemonfishing:pokemon.shiny pokemonfishing.temp 1
# spawn shiny pokemon
execute if score #pokemonfishing:pokemon.shiny pokemonfishing.temp matches 8192 run function pokemonfishing:spawn_pokemon/pokemon_shiny
# spawn pokemon
execute unless score #pokemonfishing:pokemon.shiny pokemonfishing.temp matches 8192 run function pokemonfishing:spawn_pokemon/pokemon
# pokemon spawned
execute if score #pokemonfishing:pokemon.spawned pokemonfishing.temp matches 1 run function pokemonfishing:catch/find_pokemon
# pokemon failed to spawn
execute unless score #pokemonfishing:pokemon.spawned pokemonfishing.temp matches 1 run tag @a add pokemonfishing.broadcast_target
execute unless score #pokemonfishing:pokemon.spawned pokemonfishing.temp matches 1 run function pokemonfishing:debug/message/broadcast_error
# reset temp scores
scoreboard players reset #pokemonfishing:error_code pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.id pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.shiny pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.max_level pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.min_level pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.level pokemonfishing.temp
scoreboard players reset #pokemonfishing:pokemon.spawned pokemonfishing.temp

View File

@ -0,0 +1,17 @@
# executes as placeholder catch item (after spawning pokemon)
# debug
scoreboard players set #pokemonfishing:error_code pokemonfishing.temp 2
# find pokemon
tag @e[type=cobblemon:pokemon,tag=!pokemonfishing.ignore,sort=nearest,limit=1,distance=..3] add pokemonfishing.pokemon.execute
# pokemon found
execute if entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] run function pokemonfishing:catch/init_pokemon
# no pokemon found
execute unless entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] run tag @a add pokemonfishing.broadcast_target
execute unless entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] run function pokemonfishing:debug/message/broadcast_error
# remove temp tags
tag @e[type=cobblemon:pokemon,tag=pokemonfishing.pokemon.execute] remove pokemonfishing.pokemon.execute

View File

@ -0,0 +1,10 @@
# executes as placeholder item
# get pokemon amount
execute store result score #pokemonfishing:placeholder.amount pokemonfishing.temp run data get entity @s Item.tag.PokemonFishing.amount
# begin iteration
function pokemonfishing:catch/iterate_catches
# reset temp scores
scoreboard players reset #pokemonfishing:placeholder.amount pokemonfishing.temp

View File

@ -0,0 +1,15 @@
# executes as placeholder catch item (after finding pokemon)
# apply motion
data modify entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] Motion set from entity @s Motion
execute store result entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] Motion[1] double 1.5 run data get entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] Motion[1] 1
# apply rotation
execute facing entity @p feet run tp ~ ~ ~
data modify entity @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] Rotation set from entity @s Rotation
# ignore this pokemon now
tag @e[type=cobblemon:pokemon,sort=nearest,tag=pokemonfishing.pokemon.execute,limit=1] add pokemonfishing.ignore
# delete placeholder item (only after everything has succeeded and there are no more pokemon to spawn)
execute if score #pokemonfishing:pokemon.spawned pokemonfishing.temp matches 1.. unless score #pokemonfishing:placeholder.amount pokemonfishing.temp matches 2.. run kill @s

View File

@ -0,0 +1,8 @@
# executes as placeholder item
# begin spawn
execute at @s run function pokemonfishing:catch/execute_placeholder
# iterate
scoreboard players remove #pokemonfishing:placeholder.amount pokemonfishing.temp 1
execute if score #pokemonfishing:placeholder.amount pokemonfishing.temp matches 1.. run function pokemonfishing:catch/iterate_catches

View File

@ -0,0 +1,21 @@
# executes globally or as placeholder item
# generate error message
data remove storage pokemonfishing:message error.info
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1 run data modify storage pokemonfishing:message error.info append value '{"text":"Failed to spawn Pokémon", "color": "red"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 2 run data modify storage pokemonfishing:message error.info append value '{"text":"Failed to find Pokémon", "color": "red"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 3 run data modify storage pokemonfishing:message error.info append value '{"text":"Server bug detected. Run `/reload` in console.", "color": "red"}'
# create error code
function pokemonfishing:debug/message/create_error_code
# notify
tellraw @a[tag=pokemonfishing.broadcast_target] [{"text": "\n"}, {"text": "| ", "color": "dark_gray"}, {"storage":"pokemonfishing:message","nbt":"version[]","interpret":true,"separator":""}]
tellraw @a[tag=pokemonfishing.broadcast_target] [{"text": "| ", "color": "dark_gray"}, {"text":"Error: ", "color": "red"}, {"storage":"pokemonfishing:message","nbt":"error.info[]","interpret":true,"separator":""}, {"text": " (", "color": "gray"}, {"storage":"pokemonfishing:message","nbt":"error.code[]","interpret":true,"separator":""}, {"text": ")", "color":"gray"}]
tellraw @a[tag=pokemonfishing.broadcast_target] [{"text": "| ", "color": "dark_gray"}, {"text":"Please Check Logs and Report Issue", "color": "white"} ]
# sound
execute as @a[tag=pokemonfishing.broadcast_target] run playsound minecraft:block.note_block.didgeridoo master @s ~ ~ ~ 1 0.5
# remove target tag
tag @a remove pokemonfishing.broadcast_target

View File

@ -0,0 +1,13 @@
# executes globally or as placeholder item
# reset
data remove storage pokemonfishing:message error.code
# create
data modify storage pokemonfishing:message error.code append value '{"score":{"name":"#pokemonfishing:error_code","objective":"pokemonfishing.temp"}, "color": "red"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"text":"-", "color": "gray"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"score":{"name":"#pokemonfishing:pokemon.id","objective":"pokemonfishing.temp"}, "color": "red"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"text":"-", "color": "gray"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"score":{"name":"#pokemonfishing:pokemon.level","objective":"pokemonfishing.temp"}, "color": "red"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"text":"-", "color": "gray"}'
execute if score #pokemonfishing:error_code pokemonfishing.temp matches 1..2 run data modify storage pokemonfishing:message error.code append value '{"score":{"name":"#pokemonfishing:pokemon.shiny","objective":"pokemonfishing.temp"}, "color": "red"}'

View File

@ -0,0 +1,21 @@
# executes globally
# generate error message
data remove storage pokemonfishing:message error.info
data modify storage pokemonfishing:message error.info append value '{"text":"Server bug detected. Running /reload...", "color": "red"}'
# create error code
function pokemonfishing:debug/message/create_error_code
# notify
tellraw @a[tag=pokemonfishing.broadcast_target] [{"text": "\n"}, {"text": "| ", "color": "dark_gray"}, {"storage":"pokemonfishing:message","nbt":"version[]","interpret":true,"separator":""}]
tellraw @a[tag=pokemonfishing.broadcast_target] [{"text": "| ", "color": "dark_gray"}, {"text":"Error: ", "color": "red"}, {"storage":"pokemonfishing:message","nbt":"error.info[]","interpret":true,"separator":""}, {"text": " (", "color": "gray"}, {"storage":"pokemonfishing:message","nbt":"error.code[]","interpret":true,"separator":""}, {"text": ")", "color":"gray"}]
# sound
execute as @a[tag=pokemonfishing.broadcast_target] run playsound minecraft:block.note_block.didgeridoo master @s ~ ~ ~ 1 0.5
# remove target tag
tag @a remove pokemonfishing.broadcast_target
# reload
reload

View File

@ -0,0 +1,13 @@
# executes as player
# hide feedback
function pokemonfishing:utility/feedback/hide_feedback
# check for error pokemon (placeholders)
execute store result score #pokemonfishing:debug.resolve_placeholders.has_placeholders pokemonfishing.temp run clear @s minecraft:barrier{PokemonFishing:{}} 0
# player has error pokemon
execute if score #pokemonfishing:debug.resolve_placeholders.has_placeholders pokemonfishing.temp matches 1.. run function pokemonfishing:debug/resolve_placeholders/init_placeholder_iteration
# reset temp scores
scoreboard players reset #pokemonfishing:debug.resolve_placeholders.has_placeholders pokemonfishing.temp

View File

@ -0,0 +1,14 @@
# executes as player
# get first item in queue
data modify storage pokemonfishing:debug.resolve_placeholders placeholder set from storage pokemonfishing:debug.resolve_placeholders player_inventory[0]
# placeholder found
execute if data storage pokemonfishing:debug.resolve_placeholders placeholder.tag.PokemonFishing.PokemonID at @s run function pokemonfishing:debug/resolve_placeholders/found_placeholder
# delete from queue
data remove storage pokemonfishing:debug.resolve_placeholders player_inventory[0]
# iterate
scoreboard players remove #pokemonfishing:debug.resolve_placeholders.player_inventory_size pokemonfishing.temp 1
execute if score #pokemonfishing:debug.resolve_placeholders.player_inventory_size pokemonfishing.temp matches 1.. run function pokemonfishing:debug/resolve_placeholders/find_placeholders

View File

@ -0,0 +1,21 @@
# execute as and at player
# spawn item with the same data
summon minecraft:item ~ ~ ~ {PickupDelay:1000,Tags:["pokemonfishing.debug.resolve_placeholders.placeholder_spawn","global.ignore"],Item:{id:"minecraft:barrier",Count:1b,tag:{CustomModelData:4150000}}}
data modify entity @e[type=minecraft:item,tag=pokemonfishing.debug.resolve_placeholders.placeholder_spawn,limit=1,sort=nearest] Item set from storage pokemonfishing:debug.resolve_placeholders player_inventory[0]
# calculate new amount (using original placeholders data and new data based on how many placeholders the player had)
execute store result score #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp run data get storage pokemonfishing:debug.resolve_placeholders player_inventory[0].tag.PokemonFishing.amount
execute unless score #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp matches 1.. run scoreboard players set #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp 1
execute store result score #pokemonfishing:debug.resolve_placeholders.placeholder.amount_new pokemonfishing.temp run data get storage pokemonfishing:debug.resolve_placeholders player_inventory[0].Count
scoreboard players operation #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp *= #pokemonfishing:debug.resolve_placeholders.placeholder.amount_new pokemonfishing.temp
# set new amount
execute store result entity @e[type=minecraft:item,tag=pokemonfishing.debug.resolve_placeholders.placeholder_spawn,limit=1,sort=nearest] Item.tag.PokemonFishing.amount int 1 run scoreboard players get #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp
# make it spawn a pokemon
function pokemonfishing:catch/detect_catch
# reset temp scores
scoreboard players reset #pokemonfishing:debug.resolve_placeholders.placeholder.amount pokemonfishing.temp
scoreboard players reset #pokemonfishing:debug.resolve_placeholders.placeholder.amount_new pokemonfishing.temp

View File

@ -0,0 +1,20 @@
# executes as player
# get inventory
data modify storage pokemonfishing:debug.resolve_placeholders player_inventory set from entity @s Inventory
# get inventory size
execute store result score #pokemonfishing:debug.resolve_placeholders.player_inventory_size pokemonfishing.temp run data get storage pokemonfishing:debug.resolve_placeholders player_inventory
# iterate
function pokemonfishing:debug/resolve_placeholders/find_placeholders
# delete all placeholder items
clear @s minecraft:barrier{PokemonFishing:{}}
# reset temp scores
scoreboard players reset #pokemonfishing:debug.resolve_placeholders.player_inventory_size pokemonfishing.temp
# reset temp storage
data remove storage pokemonfishing:debug.resolve_placeholders player_inventory
data remove storage pokemonfishing:debug.resolve_placeholders placeholder

View File

@ -0,0 +1,10 @@
# executes globally
# reset temp scores
scoreboard players reset #pokemonfishing:fabric_bug pokemonfishing.temp
# try to spawn a pokemon
execute positioned ~ -1000 ~ store success score #pokemonfishing:fabric_bug pokemonfishing.temp run pokespawn magikarp
# failed
execute unless score #pokemonfishing:fabric_bug pokemonfishing.temp matches 1 run function pokemonfishing:debug/server_bug/warn_fabric_server_bug

View File

@ -0,0 +1,13 @@
# executes globally (after failed to spawn pokemon)
# set error code
scoreboard players set #pokemonfishing:error_code pokemonfishing.temp 3
# broadcast target
tag @a add pokemonfishing.broadcast_target
# warn if reload on error is off
execute unless score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run function pokemonfishing:debug/message/broadcast_error
# broadcast if reload on error is on
execute if score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run function pokemonfishing:debug/reload_on_error

View File

@ -0,0 +1,7 @@
# executes globally every 10 ticks (half a second)
# tag pokemon
tag @e[type=cobblemon:pokemon,tag=!pokemonfishing.ignore] add pokemonfishing.ignore
# schedule loop
schedule function pokemonfishing:loop/every_10_ticks 10t replace

View File

@ -0,0 +1,7 @@
# executes as player when they catch a pokemon through fishing
# schedule catch detection
schedule function pokemonfishing:catch/detect_catch 1t
# reset advancement
advancement revoke @s only pokemonfishing:catch_pokemon

View File

@ -0,0 +1,4 @@
# executes as player when they join the world
# warn
execute unless score #pokemonfishing:fabric_bug pokemonfishing.temp matches 1 run function pokemonfishing:warn_fabric_server_bug

View File

@ -0,0 +1,53 @@
# executes on every load or reload
# meta
scoreboard objectives add pokemonfishing.data dummy
scoreboard objectives add pokemonfishing.temp dummy
# rng
scoreboard players set #pokemonfishing:65536 pokemonfishing.data 65536
scoreboard players set #pokemonfishing:rng.multiplier pokemonfishing.data 1664525
scoreboard players set #pokemonfishing:rng.increment pokemonfishing.data 1013904223
# init rng
scoreboard players set #pokemonfishing:rng.input pokemonfishing.temp 0
function pokemonfishing:utility/rng/rng_init
scoreboard players operation #pokemonfishing:rng.value pokemonfishing.temp = #pokemonfishing:rng.output pokemonfishing.temp
# set versioning
scoreboard players set #pokemonfishing:version.major pokemonfishing.data 1
scoreboard players set #pokemonfishing:version.minor pokemonfishing.data 1
scoreboard players set #pokemonfishing:version.hotfix pokemonfishing.data 4
# generate versioning message
data remove storage pokemonfishing:message version
data modify storage pokemonfishing:message version append value '{"text":"Pokémon Fishing v", "color": "gray"}'
# major version
data modify storage pokemonfishing:message version append value '{"score":{"name":"#pokemonfishing:version.major","objective":"pokemonfishing.data"}, "color": "gray"}'
# only minor version
execute unless score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"text":".", "color": "gray"}'
execute unless score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"score":{"name":"#pokemonfishing:version.minor","objective":"pokemonfishing.data"}, "color": "gray"}'
# only hotfix version
execute unless score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"text":".0.", "color": "gray"}'
execute unless score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"score":{"name":"#pokemonfishing:version.hotfix","objective":"pokemonfishing.data"}, "color": "gray"}'
# minor and hotfix version
execute if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"text":".", "color": "gray"}'
execute if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"score":{"name":"#pokemonfishing:version.minor","objective":"pokemonfishing.data"}, "color": "gray"}'
execute if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"text":".", "color": "gray"}'
execute if score #pokemonfishing:version.minor pokemonfishing.data matches 1.. if score #pokemonfishing:version.hotfix pokemonfishing.data matches 1.. run data modify storage pokemonfishing:message version append value '{"score":{"name":"#pokemonfishing:version.hotfix","objective":"pokemonfishing.data"}, "color": "gray"}'
# check for fabric server bug
function pokemonfishing:debug/server_bug/detect_fabric_server_bug
# reset on join event
advancement revoke @a only pokemonfishing:on_join
# pause loops
schedule clear pokemonfishing:loop/every_10_ticks
# run loops
function pokemonfishing:loop/every_10_ticks

View File

@ -0,0 +1,27 @@
# executes as player
# toggle off
execute if score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run scoreboard players set #pokemonfishing:new_option_value pokemonfishing.temp 0
# toggle on
execute unless score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run scoreboard players set #pokemonfishing:new_option_value pokemonfishing.temp 1
# set value
scoreboard players operation #pokemonfishing:option.reload_on_error pokemonfishing.data = #pokemonfishing:new_option_value pokemonfishing.temp
# reset temp score
scoreboard players reset #pokemonfishing:new_option_value pokemonfishing.temp
# hide admin commands log
function pokemonfishing:utility/feedback/hide_feedback
# notify
tellraw @s [{"text": "\n"}, {"text": "| ", "color": "dark_gray"}, {"storage":"pokemonfishing:message","nbt":"version[]","interpret":true,"separator":""}]
# toggled on
execute if score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run tellraw @s [{"text": "| ", "color": "dark_gray"}, {"text":"Auto Reload on Error Toggled ON", "color":"yellow"}]
execute if score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run playsound cobblemon:pc.on master @s ~ ~ ~ 1 1.5
# toggled off
execute unless score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run tellraw @s [{"text": "| ", "color": "dark_gray"}, {"text":"Auto Reload on Error Toggled OFF", "color":"gray"}]
execute unless score #pokemonfishing:option.reload_on_error pokemonfishing.data matches 1.. run playsound cobblemon:pc.off master @s ~ ~ ~ 1 1.5

View File

@ -0,0 +1,104 @@
# 7 squirtle
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 7 run function pokemonfishing:spawn_pokemon/pokemon/7_squirtle
# 54 psyduck
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 54 run function pokemonfishing:spawn_pokemon/pokemon/54_psyduck
# 55 golduck
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 55 run function pokemonfishing:spawn_pokemon/pokemon/55_golduck
# 60 poliwag
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 60 run function pokemonfishing:spawn_pokemon/pokemon/60_poliwag
# 61 poliwhirl
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 61 run function pokemonfishing:spawn_pokemon/pokemon/61_poliwhirl
# 72 tentacool
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 72 run function pokemonfishing:spawn_pokemon/pokemon/72_tentacool
# 73 tentacruel
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 73 run function pokemonfishing:spawn_pokemon/pokemon/73_tentacruel
# 90 shellder
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 90 run function pokemonfishing:spawn_pokemon/pokemon/90_shellder
# 98 krabby
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 98 run function pokemonfishing:spawn_pokemon/pokemon/98_krabby
# 99 kingler
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 99 run function pokemonfishing:spawn_pokemon/pokemon/99_kingler
# 116 horsea
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 116 run function pokemonfishing:spawn_pokemon/pokemon/116_horsea
# 117 seadra
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 117 run function pokemonfishing:spawn_pokemon/pokemon/117_seadra
# 118 goldeen
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 118 run function pokemonfishing:spawn_pokemon/pokemon/118_goldeen
# 119 seaking
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 119 run function pokemonfishing:spawn_pokemon/pokemon/119_seaking
# 120 staryu
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 120 run function pokemonfishing:spawn_pokemon/pokemon/120_staryu
# 129 magikarp
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 129 run function pokemonfishing:spawn_pokemon/pokemon/129_magikarp
# 130 gyarados
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 130 run function pokemonfishing:spawn_pokemon/pokemon/130_gyarados
# 147 dratini
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 147 run function pokemonfishing:spawn_pokemon/pokemon/147_dratini
# 148 dragonair
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 148 run function pokemonfishing:spawn_pokemon/pokemon/148_dragonair
# 258 mudkip
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 258 run function pokemonfishing:spawn_pokemon/pokemon/258_mudkip
# 270 lotad
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 270 run function pokemonfishing:spawn_pokemon/pokemon/270_lotad
# 271 lombre
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 271 run function pokemonfishing:spawn_pokemon/pokemon/271_lombre
# 318 carvanha
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 318 run function pokemonfishing:spawn_pokemon/pokemon/318_carvanha
# 319 sharpedo
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 319 run function pokemonfishing:spawn_pokemon/pokemon/319_sharpedo
# 320 wailmer
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 320 run function pokemonfishing:spawn_pokemon/pokemon/320_wailmer
# 321 wailord
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 321 run function pokemonfishing:spawn_pokemon/pokemon/321_wailord
# 370 luvdisc
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 370 run function pokemonfishing:spawn_pokemon/pokemon/370_luvdisc
# 393 piplip
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 393 run function pokemonfishing:spawn_pokemon/pokemon/393_piplup
# 501 oshawott
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 501 run function pokemonfishing:spawn_pokemon/pokemon/501_oshawott
# 550 basculin blue stripe
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 550 if data entity @s {Item:{tag:{PokemonFishing:{fish_stripes:"blue"}}}} run function pokemonfishing:spawn_pokemon/pokemon/550_basculin_blue_stripe
# 550 basculin red stripe
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 550 if data entity @s {Item:{tag:{PokemonFishing:{fish_stripes:"red"}}}} run function pokemonfishing:spawn_pokemon/pokemon/550_basculin_red_stripe
# 656 froakie
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 656 run function pokemonfishing:spawn_pokemon/pokemon/656_froakie
# 728 popplio
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 728 run function pokemonfishing:spawn_pokemon/pokemon/728_popplio
# 781 dhelmise
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 781 run function pokemonfishing:spawn_pokemon/pokemon/781_dhelmise
# 816 sobble
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 816 run function pokemonfishing:spawn_pokemon/pokemon/816_sobble

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn horsea level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seadra level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn goldeen level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn seaking level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn staryu level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn magikarp level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn gyarados level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dratini level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dragonair level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn mudkip level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lotad level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn lombre level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn carvanha level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sharpedo level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailmer level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn wailord level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn luvdisc level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn piplup level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn oshawott level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn psyduck level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=blue level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn basculin striped=red level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn golduck level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwag level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn poliwhirl level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn froakie level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn popplio level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacool level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn tentacruel level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn dhelmise level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn squirtle level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn sobble level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shellder level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn krabby level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn kingler level=100

View File

@ -0,0 +1,104 @@
# 7 squirtle
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 7 run function pokemonfishing:spawn_pokemon/pokemon_shiny/7_squirtle
# 54 psyduck
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 54 run function pokemonfishing:spawn_pokemon/pokemon_shiny/54_psyduck
# 55 golduck
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 55 run function pokemonfishing:spawn_pokemon/pokemon_shiny/55_golduck
# 60 poliwag
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 60 run function pokemonfishing:spawn_pokemon/pokemon_shiny/60_poliwag
# 61 poliwhirl
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 61 run function pokemonfishing:spawn_pokemon/pokemon_shiny/61_poliwhirl
# 72 tentacool
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 72 run function pokemonfishing:spawn_pokemon/pokemon_shiny/72_tentacool
# 73 tentacruel
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 73 run function pokemonfishing:spawn_pokemon/pokemon_shiny/73_tentacruel
# 90 shellder
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 90 run function pokemonfishing:spawn_pokemon/pokemon_shiny/90_shellder
# 98 krabby
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 98 run function pokemonfishing:spawn_pokemon/pokemon_shiny/98_krabby
# 99 kingler
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 99 run function pokemonfishing:spawn_pokemon/pokemon_shiny/99_kingler
# 116 horsea
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 116 run function pokemonfishing:spawn_pokemon/pokemon_shiny/116_horsea
# 117 seadra
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 117 run function pokemonfishing:spawn_pokemon/pokemon_shiny/117_seadra
# 118 goldeen
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 118 run function pokemonfishing:spawn_pokemon/pokemon_shiny/118_goldeen
# 119 seaking
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 119 run function pokemonfishing:spawn_pokemon/pokemon_shiny/119_seaking
# 120 staryu
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 120 run function pokemonfishing:spawn_pokemon/pokemon_shiny/120_staryu
# 129 magikarp
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 129 run function pokemonfishing:spawn_pokemon/pokemon_shiny/129_magikarp
# 130 gyarados
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 130 run function pokemonfishing:spawn_pokemon/pokemon_shiny/130_gyarados
# 147 dratini
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 147 run function pokemonfishing:spawn_pokemon/pokemon_shiny/147_dratini
# 148 dragonair
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 148 run function pokemonfishing:spawn_pokemon/pokemon_shiny/148_dragonair
# 258 mudkip
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 258 run function pokemonfishing:spawn_pokemon/pokemon_shiny/258_mudkip
# 270 lotad
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 270 run function pokemonfishing:spawn_pokemon/pokemon_shiny/270_lotad
# 271 lombre
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 271 run function pokemonfishing:spawn_pokemon/pokemon_shiny/271_lombre
# 318 carvanha
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 318 run function pokemonfishing:spawn_pokemon/pokemon_shiny/318_carvanha
# 319 sharpedo
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 319 run function pokemonfishing:spawn_pokemon/pokemon_shiny/319_sharpedo
# 320 wailmer
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 320 run function pokemonfishing:spawn_pokemon/pokemon_shiny/320_wailmer
# 321 wailord
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 321 run function pokemonfishing:spawn_pokemon/pokemon_shiny/321_wailord
# 370 luvdisc
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 370 run function pokemonfishing:spawn_pokemon/pokemon_shiny/370_luvdisc
# 393 piplip
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 393 run function pokemonfishing:spawn_pokemon/pokemon_shiny/393_piplup
# 501 oshawott
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 501 run function pokemonfishing:spawn_pokemon/pokemon_shiny/501_oshawott
# 550 basculin blue stripe
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 550 if data entity @s {Item:{tag:{PokemonFishing:{fish_stripes:"blue"}}}} run function pokemonfishing:spawn_pokemon/pokemon_shiny/550_basculin_blue_stripe
# 550 basculin red stripe
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 550 if data entity @s {Item:{tag:{PokemonFishing:{fish_stripes:"red"}}}} run function pokemonfishing:spawn_pokemon/pokemon_shiny/550_basculin_red_stripe
# 656 froakie
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 656 run function pokemonfishing:spawn_pokemon/pokemon_shiny/656_froakie
# 728 popplio
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 728 run function pokemonfishing:spawn_pokemon/pokemon_shiny/728_popplio
# 781 dhelmise
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 781 run function pokemonfishing:spawn_pokemon/pokemon_shiny/781_dhelmise
# 816 sobble
execute if score #pokemonfishing:pokemon.id pokemonfishing.temp matches 816 run function pokemonfishing:spawn_pokemon/pokemon_shiny/816_sobble

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny horsea level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seadra level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny goldeen level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny seaking level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny staryu level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny magikarp level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny gyarados level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dratini level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dragonair level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny mudkip level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lotad level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny lombre level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny carvanha level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sharpedo level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailmer level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny wailord level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny luvdisc level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny piplup level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny oshawott level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny psyduck level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=blue level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny basculin striped=red level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny golduck level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwag level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny poliwhirl level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny froakie level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny popplio level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacool level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny tentacruel level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny dhelmise level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny squirtle level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny sobble level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny shellder level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny krabby level=100

View File

@ -0,0 +1,100 @@
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 1 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=1
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 2 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=2
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 3 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=3
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 4 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=4
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 5 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=5
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 6 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=6
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 7 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=7
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 8 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=8
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 9 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=9
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 10 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=10
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 11 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=11
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 12 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=12
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 13 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=13
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 14 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=14
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 15 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=15
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 16 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=16
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 17 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=17
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 18 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=18
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 19 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=19
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 20 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=20
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 21 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=21
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 22 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=22
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 23 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=23
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 24 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=24
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 25 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=25
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 26 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=26
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 27 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=27
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 28 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=28
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 29 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=29
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 30 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=30
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 31 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=31
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 32 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=32
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 33 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=33
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 34 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=34
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 35 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=35
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 36 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=36
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 37 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=37
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 38 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=38
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 39 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=39
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 40 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=40
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 41 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=41
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 42 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=42
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 43 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=43
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 44 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=44
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 45 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=45
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 46 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=46
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 47 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=47
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 48 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=48
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 49 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=49
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 50 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=50
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 51 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=51
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 52 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=52
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 53 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=53
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 54 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=54
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 55 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=55
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 56 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=56
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 57 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=57
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 58 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=58
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 59 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=59
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 60 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=60
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 61 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=61
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 62 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=62
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 63 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=63
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 64 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=64
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 65 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=65
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 66 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=66
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 67 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=67
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 68 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=68
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 69 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=69
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 70 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=70
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 71 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=71
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 72 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=72
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 73 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=73
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 74 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=74
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 75 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=75
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 76 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=76
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 77 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=77
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 78 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=78
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 79 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=79
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 80 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=80
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 81 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=81
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 82 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=82
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 83 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=83
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 84 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=84
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 85 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=85
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 86 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=86
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 87 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=87
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 88 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=88
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 89 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=89
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 90 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=90
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 91 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=91
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 92 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=92
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 93 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=93
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 94 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=94
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 95 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=95
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 96 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=96
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 97 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=97
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 98 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=98
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 99 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=99
execute if score #pokemonfishing:pokemon.level pokemonfishing.temp matches 100 store success score #pokemonfishing:pokemon.spawned pokemonfishing.temp run pokespawn shiny kingler level=100

View File

@ -0,0 +1,6 @@
# check if logging admin commands is enabled
execute store result score #pokemonfishing:gamerule.log_enabled pokemonfishing.temp run gamerule sendCommandFeedback
# if enabled, turn it off then queue it to turn back on in the next tick
execute if score #pokemonfishing:gamerule.log_enabled pokemonfishing.temp matches 1.. run gamerule sendCommandFeedback false
execute if score #pokemonfishing:gamerule.log_enabled pokemonfishing.temp matches 1.. run schedule function pokemonfishing:utility/feedback/show_feedback 1t

View File

@ -0,0 +1,13 @@
# generate random number
scoreboard players operation #pokemonfishing:rng.value pokemonfishing.temp *= #pokemonfishing:rng.multiplier pokemonfishing.data
scoreboard players operation #pokemonfishing:rng.value pokemonfishing.temp += #pokemonfishing:rng.increment pokemonfishing.data
# swap bits
scoreboard players operation #pokemonfishing:rng.bit_swap pokemonfishing.temp = #pokemonfishing:rng.value pokemonfishing.temp
scoreboard players operation #pokemonfishing:rng.bit_swap pokemonfishing.temp /= #pokemonfishing:65536 pokemonfishing.data
scoreboard players operation #pokemonfishing:rng.value pokemonfishing.temp *= #pokemonfishing:65536 pokemonfishing.data
scoreboard players operation #pokemonfishing:rng.value pokemonfishing.temp += #pokemonfishing:rng.bit_swap pokemonfishing.temp
# return output
scoreboard players operation #pokemonfishing:rng.output pokemonfishing.temp = #pokemonfishing:rng.value pokemonfishing.temp
execute if score #pokemonfishing:rng.input pokemonfishing.temp matches 1.. run scoreboard players operation #pokemonfishing:rng.output pokemonfishing.temp %= #pokemonfishing:rng.input pokemonfishing.temp

View File

@ -0,0 +1,39 @@
# reset
scoreboard players set #pokemonfishing:rng.output pokemonfishing.temp 0
# randomize using predicates (50%)
execute if predicate pokemonfishing:rng/50 run scoreboard players set #pokemonfishing:rng.output pokemonfishing.temp -2147483648
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 1073741824
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 536870912
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 268435456
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 134217728
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 67108864
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 33554432
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 16777216
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 8388608
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 4194304
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 2097152
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 1048576
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 524288
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 262144
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 131072
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 65536
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 32768
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 16384
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 8192
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 4096
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 2048
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 1024
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 512
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 256
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 128
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 64
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 32
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 16
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 8
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 4
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 2
execute if predicate pokemonfishing:rng/50 run scoreboard players add #pokemonfishing:rng.output pokemonfishing.temp 1
# output
execute if score #pokemonfishing:rng.input pokemonfishing.temp matches 1.. run scoreboard players operation #pokemonfishing:rng.output pokemonfishing.temp %= #pokemonfishing:rng.input pokemonfishing.temp

View File

@ -0,0 +1,72 @@
{
"type": "minecraft:fishing",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:kelp",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:seagrass",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:lily_pad",
"weight": 17
},
{
"type": "minecraft:item",
"name": "minecraft:stick",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": 10.0,
"function": "minecraft:set_count"
}
],
"name": "minecraft:ink_sac"
},
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:location_check",
"predicate": {
"biome": "minecraft:jungle"
}
},
{
"condition": "minecraft:location_check",
"predicate": {
"biome": "minecraft:sparse_jungle"
}
},
{
"condition": "minecraft:location_check",
"predicate": {
"biome": "minecraft:bamboo_jungle"
}
}
]
}
],
"name": "minecraft:bamboo",
"weight": 10
}
],
"rolls": 1.0
}
]
}

View File

@ -0,0 +1,39 @@
{
"type": "minecraft:fishing",
"pools": [
{
"rolls": 1.0,
"entries": [
{
"type": "minecraft:loot_table",
"name": "pokemonfishing:gameplay/fishing/pokemon_rarity/very_common",
"weight": 500,
"quality": -4
},
{
"type": "minecraft:loot_table",
"name": "pokemonfishing:gameplay/fishing/pokemon_rarity/common",
"weight": 250,
"quality": -2
},
{
"type": "minecraft:loot_table",
"name": "pokemonfishing:gameplay/fishing/pokemon_rarity/uncommon",
"weight": 50
},
{
"type": "minecraft:loot_table",
"name": "pokemonfishing:gameplay/fishing/pokemon_rarity/rare",
"weight": 10,
"quality": 4
},
{
"type": "minecraft:loot_table",
"name": "pokemonfishing:gameplay/fishing/pokemon_rarity/ultra_rare",
"weight": 2,
"quality": 4
}
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More