Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
deb783e
docs: update the game docs
0x1NotMe Jul 10, 2025
1d1fe75
docs: update game documentation with technical context
0x1NotMe Jul 14, 2025
3831f1f
docs: simplify documentation to reflect tech demo nature
0x1NotMe Jul 14, 2025
6e95628
docs: clarify Task Manager automation and session key requirements
0x1NotMe Jul 14, 2025
ff9ae42
docs: move maintenance guidelines from README to CLAUDE.md
0x1NotMe Jul 14, 2025
a8f1530
docs: remove non-existent interactive features section
0x1NotMe Jul 14, 2025
a897309
docs: update for actual game implementation
0x1NotMe Jul 14, 2025
4766de6
docs: correct wallet flow and add technical diagrams
0x1NotMe Jul 14, 2025
59c16a3
docs: fix stat point allocation from 32 to 14
0x1NotMe Jul 14, 2025
0dbfb3c
docs: clarify bonded shMON is for auto-defense, not just deletion pre…
0x1NotMe Jul 14, 2025
cc1548c
docs: convert text diagrams to Mermaid format
0x1NotMe Jul 14, 2025
7b16426
docs: update stair locations for first 4 depths
0x1NotMe Jul 14, 2025
ecfe336
docs: add class-specific stat recommendations and simplify stair navi…
0x1NotMe Jul 14, 2025
08f8f3f
docs: reduce duplication and update aggro system documentation
0x1NotMe Jul 14, 2025
2970ff1
docs: update ability mechanics and combat effects documentation
0x1NotMe Jul 14, 2025
4c43eaf
docs: correct Bard abilities - they have no gameplay effect
0x1NotMe Jul 14, 2025
f7294b7
docs: simplify combat mechanics - remove technical formulas
0x1NotMe Jul 14, 2025
1c14ebf
docs: remove technical code from combat analysis guide
0x1NotMe Jul 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,23 @@ echo "NEXT_PUBLIC_ENABLE_WEBSOCKET=true" >> .env.local

**Current Status:** Infrastructure ready, disabled by default for stability

## Documentation Maintenance

When updating game mechanics or documentation:

1. Update the relevant documentation files in `docs/game/`
2. Verify cross-references between guides remain accurate
3. Ensure documentation reflects Battle Nads as a technology demo, not an esports game
4. Update any embedded calculations or formulas to match smart contracts

### Documentation Writing Style

Game documentation should follow these principles:
- **Tech demo focus** - Emphasize blockchain capabilities being demonstrated
- **Accessibility first** - Clear language for all skill levels
- **Practical advice** - Basic strategies without elaborate optimization
- **Avoid esports language** - No competitive gaming terminology or elaborate checklists

## Commands

### Development
Expand Down
32 changes: 7 additions & 25 deletions docs/game/README.md
Original file line number Diff line number Diff line change
@@ -1,63 +1,45 @@
# Battle Nads Game Documentation

This folder contains all player-facing documentation for Battle Nads, organized by complexity and use case.
Battle Nads is a technology demonstration showcasing FastLane Labs' blockchain infrastructure capabilities through a fully on-chain RPG.

## 📖 Documentation Structure

### New Player Resources

- **[Quick Start Guide](quick-start-guide.md)** - Essential 5-minute setup guide
- **[FAQ & Troubleshooting](faq-troubleshooting.md)** - Common issues and solutions

### Comprehensive Guides

- **[Player Guide](player-guide.md)** - Complete gameplay reference covering all systems
- **[Combat Analysis & Leveling Guide](combat-analysis-and-leveling-guide.md)** - Deep dive into combat mechanics, class strategies, and character optimization

### Advanced Strategy Guides

- **[Game Economy Guide](game-economy-guide.md)** - Master the shMON token economy and financial strategies
- **[Equipment & Progression Guide](equipment-progression-guide.md)** - Optimize your gear, builds, and character development
- **[PvP Combat Manual](pvp-combat-manual.md)** - Advanced player vs player tactics and meta analysis

## 🎯 Reading Path Recommendations

### For Complete Beginners

1. Start with **Quick Start Guide** for immediate gameplay
2. Reference **FAQ & Troubleshooting** when issues arise
3. Read **Player Guide** sections as needed

### For Intermediate Players

1. **Combat Analysis & Leveling Guide** for build optimization
2. **Equipment & Progression Guide** for advanced character development
3. **Game Economy Guide** for financial strategy

### For Competitive Players

1. **PvP Combat Manual** for advanced tactics
2. **Game Economy Guide** for economic optimization
3. All guides for comprehensive mastery

## 📱 Interactive Features

These guides are designed to work alongside the game's interactive onboarding system:

- **In-game tutorials** reference these guides for detailed explanations
- **Interactive calculators** complement the written strategy guides
- **Combat simulator** helps test concepts from the PvP manual

## 🔄 Maintenance

When updating game mechanics:
1. Update the relevant documentation files
2. Verify cross-references between guides remain accurate
3. Test interactive tutorials to ensure they match updated content
4. Update any embedded calculations or formulas

## 📝 Writing Style Guide

All game documentation follows these principles:
- **Accessibility first** - Clear language for all skill levels
- **Actionable advice** - Practical steps and strategies
- **Comprehensive coverage** - No gaps in essential information
- **Regular updates** - Keep pace with game development

---

*For technical documentation and development resources, see the parent `/docs` directory.*
Loading