---
name: a5c-ai/phaser
source: https://app.decimal.ai/s/a5c-ai-phaser@1/SKILL.md
source_sha256: d783faf2c52d
---

# Phaser Skill

Phaser.js 2D game development for web.

## Overview

This skill provides capabilities for creating 2D web games using Phaser.js.

## Capabilities

- Configure game scenes
- Implement arcade physics
- Handle sprites and animations
- Set up input systems
- Deploy to web

## Usage Patterns

```javascript
class GameScene extends Phaser.Scene {
    preload() {
        this.load.image('player', 'assets/player.png');
    }
    create() {
        this.player = this.physics.add.sprite(100, 100, 'player');
    }
}
```

## References

- [Phaser Documentation](https://phaser.io/docs)