Created
April 14, 2017 21:04
-
-
Save malte-laukoetter/6bff485f795e93cddee34dc07a854493 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
actions { | |
pixelmon_throw= { | |
items = [ | |
{ | |
item = PokeBall | |
needLevel = 0 | |
xp = 1 | |
}, | |
{ | |
item = MasterBall | |
needLevel = 5 | |
xp = 3 | |
} | |
] | |
} | |
pixelmon_evolve = { | |
items = [ | |
{ | |
item = Raichu | |
needLevel = 0 | |
xp = 3 | |
}, | |
{ | |
item = Golbat | |
needLevel = 5 | |
xp = 0 | |
} | |
] | |
} | |
pixelmon_catch = { | |
items = [ | |
{ | |
item = Pikachu | |
needLevel = 0 | |
xp = 3 | |
}, | |
{ | |
item = Zubat | |
needLevel = 5 | |
xp = 10 | |
} | |
] | |
} | |
pixelmon_levelup = { | |
items = [ | |
{ | |
item = Pikachu | |
needLevel = 0 | |
xp = 3 | |
}, | |
{ | |
item = Zubat | |
needLevel = 5 | |
xp = 10 | |
} | |
] | |
} | |
} | |
description="A simple pixelmon job!" | |
id=pixy | |
name=PixelmonJob |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment