[ogs-changes] dist/java/ogs/creatures Undead.java,NONE,1.1 Human.java,1.2,NONE
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-04 20:22:56
|
Update of /cvsroot/ogs/dist/java/ogs/creatures
In directory sc8-pr-cvs1:/tmp/cvs-serv9450/java/ogs/creatures
Added Files:
Undead.java
Removed Files:
Human.java
Log Message:
See ChangeLog files (Apr 3-4) for details.
--- NEW FILE: Undead.java ---
/*
* Undead.java -- class declaration for undead creatures
* Copyright (C) 2003 Eric Lemings <ele...@us...>
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA
*
* RCS: $Id: Undead.java,v 1.1 2003/04/04 20:22:53 elemings Exp $
*/
package ogs.creatures;
import ogs.core.Creature;
/**
* A creature that is, technically speaking, dead. The word "undead" is
* something of a misnomer. It suggests that an undead creature is "not
* dead". Just the opposite. An undead creature is a creature that
* lingers on after death within the world of the living. In this
* respect, undead creatures are often created from other creatures.
* Many classes of undead creatures can be implemented as templates.
* Undead creatures have a special connection with negative energy.
* Consequently, undead creatures can be turned, rebuked, or destroyed
* with positive energy..
*/
public class Undead extends Creature {
}
--- Human.java DELETED ---
|