about summary refs log tree commit diff stats
path: root/data/maps/icarus/rooms/Welcome Spine (Reverse).txtpb
blob: 76051410f455e32e60fab691415137fd4e825aa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: "Welcome Spine (Reverse)"
panels {
  name: "FATHER"
  path: "Panels/Room_1/father"
  clue: "father"
  answer: "parent"
  symbols: GENDER
}
panels {
  name: "TERMITE"
  path: "Panels/Room_1/bat"
  clue: "termite"
  answer: "colony"
  symbols: PLANET
}
panels {
  name: "SISTER"
  path: "Panels/Room_1/sister"
  clue: "sister"
  answer: "sibling"
  symbols: GENDER
}
>/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.fourisland.frigidearth; import java.awt.Color; import java.awt.Point; /** * * @author hatkirby */ public abstract class Mob { public int x; public int y; public int health; public boolean hostile; public Mob(int x, int y) { this.x = x; this.y = y; } public Point getPosition() { return new Point(x,y); } public void moveInDirection(Direction dir) { Point to = dir.to(getPosition()); x = to.x; y = to.y; } public abstract char getDisplayCharacter(); public abstract Color getDisplayColor(); public abstract String getName(); public abstract String getBattleMessage(); public abstract int getAttackPower(); public abstract int getBaseExperience(); }