Table of Contents

Demo Npc1 Mob - Code References

Entity Overview

DemoNpc1 is a demo/test NPC used for testing purposes in Remixed Dungeon. It appears in quest demo configurations.

Java Classes

This entity is spawned through JSON configuration, not as a Java class. The mob is created through the mob factory system.

JSON Configuration

This entity is defined in quest demo configuration files:

Example configuration from QuestDemo1.json:

{
  "kind": "DemoNpc1",
  "x": 5,
  "y": 10,
  "aiState": "Passive"
}

String Resources

String resources for DemoNpc1 (if they exist) would be in:

<string name="Demo1_Name">[Name]</string>
<string name="Demo1_Info">[Description]</string>

Note: This is a demo entity and may not have actual string resources in the game.

Lua Scripts

This entity is not implemented in Lua. It is spawned through JSON configuration.

Sprite Reference

Usage in Code

Notes

This is a test/demo entity used for development and testing purposes. It is not part of the main game content and may be used for testing mob behaviors, quest mechanics, or other game systems.