v0.7.5: some polish work on sewer snakes
This commit is contained in:
parent
c741b82f10
commit
4a92607020
Binary file not shown.
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 282 B |
|
@ -42,10 +42,10 @@ public class Bestiary {
|
||||||
|
|
||||||
// Sewers
|
// Sewers
|
||||||
case 1: default:
|
case 1: default:
|
||||||
//6x rat, 2x snake
|
//3x rat, 1x snake
|
||||||
return new ArrayList<>(Arrays.asList(
|
return new ArrayList<>(Arrays.asList(
|
||||||
Rat.class, Rat.class, Rat.class, Rat.class,
|
Rat.class, Rat.class, Rat.class,
|
||||||
Snake.class, Snake.class));
|
Snake.class));
|
||||||
case 2:
|
case 2:
|
||||||
//2x rat, 1x snake, 2x gnoll
|
//2x rat, 1x snake, 2x gnoll
|
||||||
return new ArrayList<>(Arrays.asList(Rat.class, Rat.class,
|
return new ArrayList<>(Arrays.asList(Rat.class, Rat.class,
|
||||||
|
@ -214,6 +214,8 @@ public class Bestiary {
|
||||||
Class<? extends Mob> cl = rotation.get(i);
|
Class<? extends Mob> cl = rotation.get(i);
|
||||||
if (cl == Rat.class) {
|
if (cl == Rat.class) {
|
||||||
cl = Albino.class;
|
cl = Albino.class;
|
||||||
|
} else if (cl == Slime.class) {
|
||||||
|
cl = CausticSlime.class;
|
||||||
} else if (cl == Thief.class) {
|
} else if (cl == Thief.class) {
|
||||||
cl = Bandit.class;
|
cl = Bandit.class;
|
||||||
} else if (cl == Brute.class) {
|
} else if (cl == Brute.class) {
|
||||||
|
|
|
@ -561,7 +561,7 @@ actors.mobs.slime.name=slime
|
||||||
actors.mobs.slime.desc=TODO
|
actors.mobs.slime.desc=TODO
|
||||||
|
|
||||||
actors.mobs.snake.name=sewer snake
|
actors.mobs.snake.name=sewer snake
|
||||||
actors.mobs.snake.desc=TODO
|
actors.mobs.snake.desc=These oversized serpents are capable of quickly slithering around blows, making them quite hard to hit. Magical attacks or surprise attacks are capable of catching them off-guard however.\n\nYou can perform a surprise attack by attacking while out of the snake's vision. One way is to let a snake chase you through a doorway and then _strike just as it moves into the door._
|
||||||
|
|
||||||
actors.mobs.spinner.name=cave spinner
|
actors.mobs.spinner.name=cave spinner
|
||||||
actors.mobs.spinner.desc=These greenish furry cave spiders try to avoid direct combat, preferring to wait in the distance while their victim, entangled in the spinner's excreted cobweb, slowly dies from their poisonous bite.
|
actors.mobs.spinner.desc=These greenish furry cave spiders try to avoid direct combat, preferring to wait in the distance while their victim, entangled in the spinner's excreted cobweb, slowly dies from their poisonous bite.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user