final int newatk = LOW_ATK;
final int newHP = HIGH_HP;
creature.setName(creaturename);
creature.setDescription(creature.describe() + " It has been magically enchanted, with its normal attack power converted into longer life.");
creature.setAtk(newatk);
creature.initHP(newHP);
sandbox.add(creature, x, y );
}