mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
26 lines
597 B
Java
Executable File
26 lines
597 B
Java
Executable File
package script.creature_spawner;
|
|
|
|
public class tatooine_medium extends script.creature_spawner.base_newbie_creature_spawner
|
|
{
|
|
public static final boolean SPAWNER_DISABLED = false;
|
|
public int maxPop = 4;
|
|
public boolean newbie = true;
|
|
|
|
public tatooine_medium()
|
|
{
|
|
}
|
|
public String pickCreature() throws InterruptedException
|
|
{
|
|
switch (rand(1,3))
|
|
{
|
|
case 1:
|
|
return "rockmite";
|
|
case 2:
|
|
return "mound_mite";
|
|
case 3:
|
|
return "worrt";
|
|
}
|
|
return "worrt";
|
|
}
|
|
}
|