mirror of
https://bitbucket.org/theswgsource/dsrc-1.2.git
synced 2026-07-14 00:01:32 -04:00
25 lines
594 B
Java
Executable File
25 lines
594 B
Java
Executable File
package script.creature_spawner;
|
|
|
|
public class naboo_hard extends script.creature_spawner.base_newbie_creature_spawner
|
|
{
|
|
public static final boolean SPAWNER_DISABLED = false;
|
|
public int maxPop = 3;
|
|
|
|
public naboo_hard()
|
|
{
|
|
}
|
|
public String pickCreature() throws InterruptedException
|
|
{
|
|
switch (rand(1, 3))
|
|
{
|
|
case 1:
|
|
return "nuna";
|
|
case 2:
|
|
return "rabid_shaupaut";
|
|
case 3:
|
|
return "narglatch_cub";
|
|
}
|
|
return "narglatch_cub";
|
|
}
|
|
}
|