> cat /wizhelp/wizcoding

========================================================================
                    Wizard Coding Tutorial
========================================================================

Learn to create PKWAR content step by step.

TUTORIAL SERIES:
  wizcoding1 - Your First Room
  wizcoding2 - Adding Objects
  wizcoding3 - Creating NPCs
  wizcoding4 - Room Connections
  wizcoding5 - Special Effects
  wizcoding6 - Testing & Debug

QUICK START CHECKLIST:
  1. home - Create your workroom
  2. cd - Go to your directory
  3. mkdir myproject - Create project folder
  4. ed myproject/test.py - Start coding!

ESSENTIAL IMPORTS:
```python
from lib.models.entity import Room, Exit, DescriptionItem
from lib.models.enums import ExitType
from lib.models.objects import Weapon, Armor, Consumable
```

FILE STRUCTURE:
  /lib/wizrooms/<yourname>/
    ├── workroom.py      (auto-created)
    ├── myproject/       (your areas)
    │   ├── entrance.py
    │   ├── items.py
    │   └── npcs.py
    └── debug.log        (error messages)

TESTING WORKFLOW:
  1. Write code with ed
  2. Save with wq
  3. Test with goto
  4. Check debug.log for errors
  5. Iterate and improve

Type wizhelp wizcoding#</> for each tutorial.

========================================================================    

> _