🚀 主要機能: • Everything is Box哲学による革新的アーキテクチャ • WebAssemblyブラウザー対応プレイグラウンド • アーティスト協同制作デモ - 複数Boxインスタンス実証 • 視覚的デバッグシステム - DebugBox完全統合 • static box Mainパターン - メモリ安全設計 ⚡ 言語機能: • NOT/AND/OR/除算演算子完全実装 • ジェネリクス/テンプレートシステム • 非同期処理(nowait/await) • try/catchエラーハンドリング • Canvas統合グラフィックス 🎨 ブラウザー体験: • 9種類のインタラクティブデモ • リアルタイムコード実行 • WebCanvas/WebConsole/WebDisplay • モバイル対応完了 🤖 Built with Claude Code collaboration Ready for public release!
41 lines
1015 B
Plaintext
41 lines
1015 B
Plaintext
// Test file for player.nyash
|
|
include "text_adventure/player.nyash"
|
|
|
|
print("🎮 Testing Player Module...")
|
|
|
|
// Test 1: Player creation
|
|
print("\n=== Test 1: Player Creation ===")
|
|
player = startGame("TestHero")
|
|
print(player.status())
|
|
|
|
// Test 2: Taking items
|
|
print("\n=== Test 2: Taking Items ===")
|
|
result1 = player.take("Health Potion")
|
|
print(result1)
|
|
|
|
result2 = player.take("Old Key")
|
|
print(result2)
|
|
|
|
print("\nInventory after taking items:")
|
|
print(player.inventory())
|
|
|
|
// Test 3: Using items
|
|
print("\n=== Test 3: Using Items ===")
|
|
print("Health before using potion: " + player.health)
|
|
|
|
player.health = 50 // Reduce health to test healing
|
|
print("Health reduced to: " + player.health)
|
|
|
|
useResult = player.use("Health Potion")
|
|
print(useResult)
|
|
print("Health after using potion: " + player.health)
|
|
|
|
// Test 4: Player status
|
|
print("\n=== Test 4: Player Status ===")
|
|
print(player.status())
|
|
|
|
// Test 5: Help system
|
|
print("\n=== Test 5: Help System ===")
|
|
print(player.help())
|
|
|
|
print("\n✅ Player module test completed!") |