*/
private void prepareCorpses() {
final StendhalRPZone zone = SingletonRepository.getRPWorld().getZone("-6_kanmararn_city");
// Now we create the corpse of the second NPC
final Corpse tom = new Corpse("youngsoldiernpc", 5, 47);
// he died first
tom.setStage(4);
tom.setName("Tom");
tom.setKiller("a Dwarven patrol");
// Add our new Ex-NPC to the game world
zone.add(tom);
// Add a refiller to automatically fill the corpse of unlucky Tom
final CorpseRefiller tomRefiller = new CorpseRefiller(tom, "leather legs",
"You see torn leather legs that are heavily covered with blood.");
tomRefiller.start();
// Now we create the corpse of the third NPC
final Corpse charles = new Corpse("youngsoldiernpc", 94, 5);
// he died second
charles.setStage(3);
charles.setName("Charles");
charles.setKiller("a Dwarven patrol");
// Add our new Ex-NPC to the game world
zone.add(charles);
// Add a refiller to automatically fill the corpse of unlucky Charles
final CorpseRefiller charlesRefiller = new CorpseRefiller(charles, "note",
"You read: \"IOU 250 money. (signed) McPegleg\"");
charlesRefiller.start();
// Now we create the corpse of the fourth NPC
final Corpse peter = new Corpse("youngsoldiernpc", 11, 63);
// he died recently
peter.setStage(2);
peter.setName("Peter");
peter.setKiller("a Dwarven patrol");
// Add our new Ex-NPC to the game world
zone.add(peter);
// Add a refiller to automatically fill the corpse of unlucky Peter
final CorpseRefiller peterRefiller = new CorpseRefiller(
peter,