diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/README.md" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/README.md" new file mode 100644 index 0000000..90eb1e5 --- /dev/null +++ "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/README.md" @@ -0,0 +1,70 @@ +# 🚂 烟跑跑 - 绿皮火车禁烟大作战 + +## 🎮 游戏简介 + +### 创作背景 +这是一个源于真实生活的游戏。开发者在一次绿皮火车旅行中,被二手烟困扰,突发奇想:**"如果有个游戏能让大家体验劝导吸烟者的过程,会不会很有趣?"**于是,这款充满中国特色的像素风游戏诞生了。 + +### 玩法目标 +- **核心任务**:在有限时间内,引导吸烟者到指定区域 +- **挑战要素**:乘客耐心有限,烟雾会扩散,时间紧迫 +- **最终目标**:让整节车厢保持空气清新,稳定乘客情绪 + +### 设计理念 +- **寓教于乐**:用轻松方式传递公共场所禁烟意识 +- **文化共鸣**:还原中国绿皮火车的独特氛围 +- **策略思考**:不是简单驱赶,而是巧妙引导,体现人文关怀 + +## 🎯 操作说明 + +### 如何开始 +1. **在线游玩**:直接打开浏览器访问游戏链接即可。游戏链接:http://117.72.49.116:9000/ +2. **本地运行**: + ```bash + python -m http.server 8000 + # 然后在浏览器访问 http://localhost:8000 + ``` + +### 控制方式 +- **移动**:方向键控制角色移动 +- **交互**:靠近吸烟者,`Q`键引导吸烟者到车厢外吸烟;靠近乘客,`A`键安抚乘客情绪 +- **策略**:观察玩家耐力值、乘客耐心值、烟雾扩散位置,优先劝导吸烟者离开车厢,注意安抚乘客情绪 + +### 游戏流程 +1. **观察阶段**:查看车厢布局,识别吸烟者位置 +2. **规划路线**:制定最有效的劝导顺序 +3. **执行行动**:快速移动,巧妙引导 + +## ⚡ 技术特色 + +### 关键实现方式 +- **路径寻优**:BFS算法实现角色智能移动 +- **状态管理**:乘客、烟民、玩家状态机 +- **碰撞检测**:像素级精确碰撞判定 + +### 难点攻克 +- **AI平衡**:让吸烟者行为既真实又不至于太难 +- **像素艺术**:确保符合绿皮火车主题且不失观赏性 +- **音效设计**:让游戏更生动,更符合真实场景 + +### MoonBit使用亮点 +- **类型安全**:充分利用MoonBit的强类型系统,减少运行时错误 +- **函数式编程**:使用不可变数据结构,简化状态管理 +- **模块化设计**:清晰的包结构,便于维护和扩展 +- **WebAssembly编译**:一键编译到WASM,性能接近原生 +- **AI辅助开发**:结合Moon Agent提升开发效率 + +### 技术栈 +- **语言**:MoonBit → WebAssembly +- **图形**:Canvas 2D + 像素艺术 +- **音频**:Canvas Audio API 音效 + +## 🥛 团队信息 +- **团队名称**:43003 +- **成员名单**:Li Yizhe +- **联系方式**:1362800827@qq.com +--- + +*这不是一个简单的游戏,这是程序员对二手烟的温柔抗议* 😄 + +**立即体验**:打开浏览器,加入这场别开生面的"禁烟战争"! \ No newline at end of file diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/index.html" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/index.html" new file mode 100644 index 0000000..f9cac6f --- /dev/null +++ "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/index.html" @@ -0,0 +1,22 @@ + + + + + + My Game + + + + + + + + + \ No newline at end of file diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Blue.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Blue.png" new file mode 100644 index 0000000..3a85422 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Blue.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Brown.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Brown.png" new file mode 100644 index 0000000..4925f71 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Brown.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Gray.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Gray.png" new file mode 100644 index 0000000..07d6792 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Gray.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Green.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Green.png" new file mode 100644 index 0000000..c95d78d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Green.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Pink.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Pink.png" new file mode 100644 index 0000000..d313606 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Pink.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Purple.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Purple.png" new file mode 100644 index 0000000..b64b504 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Purple.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Yellow.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Yellow.png" new file mode 100644 index 0000000..6f90ecf Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Background/Yellow.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 1 (36x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 1 (36x30).png" new file mode 100644 index 0000000..a3e336d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 1 (36x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 2 (36x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 2 (36x30).png" new file mode 100644 index 0000000..23c3f35 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Hit 2 (36x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Idle (36x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Idle (36x30).png" new file mode 100644 index 0000000..8c47491 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Idle (36x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Run (36x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Run (36x30).png" new file mode 100644 index 0000000..a7b656d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Run (36x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Walk (36x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Walk (36x30).png" new file mode 100644 index 0000000..4b0d7b2 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/AngryPig/Walk (36x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling In (46x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling In (46x30).png" new file mode 100644 index 0000000..51b9f9d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling In (46x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling Out (46x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling Out (46x30).png" new file mode 100644 index 0000000..ce41470 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Ceiling Out (46x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Flying (46x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Flying (46x30).png" new file mode 100644 index 0000000..7dd4f9c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Flying (46x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Hit (46x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Hit (46x30).png" new file mode 100644 index 0000000..4601ac0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Hit (46x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Idle (46x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Idle (46x30).png" new file mode 100644 index 0000000..594aa27 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bat/Idle (46x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Attack (36x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Attack (36x34).png" new file mode 100644 index 0000000..af535a0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Attack (36x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet Pieces.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet Pieces.png" new file mode 100644 index 0000000..8f08e81 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet Pieces.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet.png" new file mode 100644 index 0000000..dd39950 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Bullet.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Hit (36x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Hit (36x34).png" new file mode 100644 index 0000000..0321fc8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Hit (36x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Idle (36x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Idle (36x34).png" new file mode 100644 index 0000000..3ecd1e9 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bee/Idle (36x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Flying (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Flying (32x32).png" new file mode 100644 index 0000000..51faeeb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Flying (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Hit (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Hit (32x32).png" new file mode 100644 index 0000000..add8492 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/BlueBird/Hit (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Fall.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Fall.png" new file mode 100644 index 0000000..6c0eedd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Fall.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Hit (34x44).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Hit (34x44).png" new file mode 100644 index 0000000..11dbeb1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Hit (34x44).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Idle (34x44).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Idle (34x44).png" new file mode 100644 index 0000000..70bdb2d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Idle (34x44).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Jump.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Jump.png" new file mode 100644 index 0000000..a1cd5bb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Jump.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Run (34x44).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Run (34x44).png" new file mode 100644 index 0000000..3297ddb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Bunny/Run (34x44).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Attack (84x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Attack (84x38).png" new file mode 100644 index 0000000..07e6268 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Attack (84x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Hit (84x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Hit (84x38).png" new file mode 100644 index 0000000..f372209 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Hit (84x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Idle (84x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Idle (84x38).png" new file mode 100644 index 0000000..f62a7ba Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Idle (84x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Run (84x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Run (84x38).png" new file mode 100644 index 0000000..63b90ab Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chameleon/Run (84x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Hit (32x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Hit (32x34).png" new file mode 100644 index 0000000..e07013f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Hit (32x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Idle (32x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Idle (32x34).png" new file mode 100644 index 0000000..90ed02e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Idle (32x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Run (32x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Run (32x34).png" new file mode 100644 index 0000000..dc06bfa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Chicken/Run (32x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Fall (36x36).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Fall (36x36).png" new file mode 100644 index 0000000..885f737 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Fall (36x36).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Hit (36x36).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Hit (36x36).png" new file mode 100644 index 0000000..e547173 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Hit (36x36).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Idle (36x36).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Idle (36x36).png" new file mode 100644 index 0000000..26f4825 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Idle (36x36).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump (36x36).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump (36x36).png" new file mode 100644 index 0000000..6238604 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump (36x36).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump Anticipation (36x36).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump Anticipation (36x36).png" new file mode 100644 index 0000000..e64b08e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Duck/Jump Anticipation (36x36).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Fall (40x48).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Fall (40x48).png" new file mode 100644 index 0000000..5741f72 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Fall (40x48).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Ground (40x48).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Ground (40x48).png" new file mode 100644 index 0000000..8eeed1e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Ground (40x48).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Hit (40x48).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Hit (40x48).png" new file mode 100644 index 0000000..4f86d5e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Hit (40x48).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Idle (40x48).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Idle (40x48).png" new file mode 100644 index 0000000..81737fa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/FatBird/Idle (40x48).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Appear (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Appear (44x30).png" new file mode 100644 index 0000000..cc2c536 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Appear (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Desappear (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Desappear (44x30).png" new file mode 100644 index 0000000..1b44ac7 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Desappear (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Gost Particles (48x16).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Gost Particles (48x16).png" new file mode 100644 index 0000000..62cf582 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Gost Particles (48x16).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Hit (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Hit (44x30).png" new file mode 100644 index 0000000..9e02c3c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Hit (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Idle (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Idle (44x30).png" new file mode 100644 index 0000000..38783b0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Ghost/Idle (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Hit.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Hit.png" new file mode 100644 index 0000000..44b8dbc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Hit.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Idle (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Idle (32x32).png" new file mode 100644 index 0000000..b1d643b Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Idle (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Run (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Run (32x32).png" new file mode 100644 index 0000000..4b14218 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Mushroom/Run (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Attack (44x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Attack (44x42).png" new file mode 100644 index 0000000..efa3ca4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Attack (44x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet Pieces.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet Pieces.png" new file mode 100644 index 0000000..569c32c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet Pieces.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet.png" new file mode 100644 index 0000000..531ddf3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Bullet.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Hit (44x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Hit (44x42).png" new file mode 100644 index 0000000..5a76995 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Hit (44x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Idle (44x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Idle (44x42).png" new file mode 100644 index 0000000..64cc352 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Plant/Idle (44x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Hit (30x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Hit (30x38).png" new file mode 100644 index 0000000..0566de4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Hit (30x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 1 (30x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 1 (30x38).png" new file mode 100644 index 0000000..9e52e00 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 1 (30x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 2 (30x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 2 (30x38).png" new file mode 100644 index 0000000..a56b50c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Idle 2 (30x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Leafs.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Leafs.png" new file mode 100644 index 0000000..a7a4615 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Leafs.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Run (30x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Run (30x38).png" new file mode 100644 index 0000000..01ea032 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Radish/Run (30x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit (52x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit (52x34).png" new file mode 100644 index 0000000..ca10759 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit (52x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit Wall (52x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit Wall (52x34).png" new file mode 100644 index 0000000..89e539a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Hit Wall (52x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Idle (52x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Idle (52x34).png" new file mode 100644 index 0000000..9977aa3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Idle (52x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Run (52x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Run (52x34).png" new file mode 100644 index 0000000..c82b195 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rino/Run (52x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Hit.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Hit.png" new file mode 100644 index 0000000..99c7c8a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Hit.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Idle (38x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Idle (38x34).png" new file mode 100644 index 0000000..3ed0f89 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Idle (38x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Run (38x34).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Run (38x34).png" new file mode 100644 index 0000000..6d8998c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock1_Run (38x34).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Hit (32x28).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Hit (32x28).png" new file mode 100644 index 0000000..454adfa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Hit (32x28).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Idle (32x28).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Idle (32x28).png" new file mode 100644 index 0000000..72e74cf Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Idle (32x28).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Run (32x28).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Run (32x28).png" new file mode 100644 index 0000000..518d555 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock2_Run (32x28).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Hit (22x18).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Hit (22x18).png" new file mode 100644 index 0000000..01c930a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Hit (22x18).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Idle (22x18).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Idle (22x18).png" new file mode 100644 index 0000000..4498a70 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Idle (22x18).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Run (22x18).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Run (22x18).png" new file mode 100644 index 0000000..dcf9b92 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Rocks/Rock3_Run (22x18).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit (52x54).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit (52x54).png" new file mode 100644 index 0000000..2f65038 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit (52x54).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 1 (52x54).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 1 (52x54).png" new file mode 100644 index 0000000..e386211 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 1 (52x54).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 2 (52x54).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 2 (52x54).png" new file mode 100644 index 0000000..f53924f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Hit Wall 2 (52x54).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 1 (52x54).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 1 (52x54).png" new file mode 100644 index 0000000..ef03c0f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 1 (52x54).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 2 (52x54).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 2 (52x54).png" new file mode 100644 index 0000000..1793851 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Idle 2 (52x54).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Orange Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Orange Particle.png" new file mode 100644 index 0000000..3abe6e9 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Orange Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Red Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Red Particle.png" new file mode 100644 index 0000000..1068e50 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Skull/Red Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Hit (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Hit (44x30).png" new file mode 100644 index 0000000..731f77c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Hit (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Idle-Run (44x30).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Idle-Run (44x30).png" new file mode 100644 index 0000000..aa905ee Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Idle-Run (44x30).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Particles (62x16).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Particles (62x16).png" new file mode 100644 index 0000000..ac630b1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Slime/Particles (62x16).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Hit (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Hit (38x24).png" new file mode 100644 index 0000000..9233ef8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Hit (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Idle (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Idle (38x24).png" new file mode 100644 index 0000000..65c49c2 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Idle (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Idle (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Idle (38x24).png" new file mode 100644 index 0000000..960a8fd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Idle (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Top Hit (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Top Hit (38x24).png" new file mode 100644 index 0000000..8a21291 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Top Hit (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Wall Hit (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Wall Hit (38x24).png" new file mode 100644 index 0000000..2de1401 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Shell Wall Hit (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Snail without shell.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Snail without shell.png" new file mode 100644 index 0000000..f913860 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Snail without shell.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Walk (38x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Walk (38x24).png" new file mode 100644 index 0000000..12d4fdc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Snail/Walk (38x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Attack (64x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Attack (64x32).png" new file mode 100644 index 0000000..822e74c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Attack (64x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet Pieces.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet Pieces.png" new file mode 100644 index 0000000..c221a2d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet Pieces.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet.png" new file mode 100644 index 0000000..405802f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Bullet.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Hit (64x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Hit (64x32).png" new file mode 100644 index 0000000..97ab464 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Hit (64x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Idle (64x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Idle (64x32).png" new file mode 100644 index 0000000..537015d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Idle (64x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Run (64x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Run (64x32).png" new file mode 100644 index 0000000..1616593 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Trunk/Run (64x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Hit (44x26).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Hit (44x26).png" new file mode 100644 index 0000000..6a092ec Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Hit (44x26).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 1 (44x26).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 1 (44x26).png" new file mode 100644 index 0000000..15b099f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 1 (44x26).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 2 (44x26).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 2 (44x26).png" new file mode 100644 index 0000000..01ccd68 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Idle 2 (44x26).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes in (44x26).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes in (44x26).png" new file mode 100644 index 0000000..26b653d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes in (44x26).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes out (44x26).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes out (44x26).png" new file mode 100644 index 0000000..1a9747b Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Enemies/Turtle/Spikes out (44x26).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Break.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Break.png" new file mode 100644 index 0000000..a90d611 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Break.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Hit (28x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Hit (28x24).png" new file mode 100644 index 0000000..dabdddd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Hit (28x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Idle.png" new file mode 100644 index 0000000..998aa4f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box1/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Break.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Break.png" new file mode 100644 index 0000000..0a254e9 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Break.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Hit (28x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Hit (28x24).png" new file mode 100644 index 0000000..e69597e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Hit (28x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Idle.png" new file mode 100644 index 0000000..a2d6657 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box2/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Break.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Break.png" new file mode 100644 index 0000000..6fc1a13 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Break.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Hit (28x24).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Hit (28x24).png" new file mode 100644 index 0000000..71f4adf Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Hit (28x24).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Idle.png" new file mode 100644 index 0000000..bd262d5 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Boxes/Box3/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Idle)(64x64).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Idle)(64x64).png" new file mode 100644 index 0000000..2d9be55 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Idle)(64x64).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Out) (64x64).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Out) (64x64).png" new file mode 100644 index 0000000..fb55836 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (Flag Out) (64x64).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (No Flag).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (No Flag).png" new file mode 100644 index 0000000..82cb0a3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Checkpoint/Checkpoint (No Flag).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Idle).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Idle).png" new file mode 100644 index 0000000..6e67748 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Idle).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Pressed) (64x64).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Pressed) (64x64).png" new file mode 100644 index 0000000..8f5f732 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/End/End (Pressed) (64x64).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Idle).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Idle).png" new file mode 100644 index 0000000..39c04ce Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Idle).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Moving) (64x64).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Moving) (64x64).png" new file mode 100644 index 0000000..98df5ee Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Checkpoints/Start/Start (Moving) (64x64).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Apple.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Apple.png" new file mode 100644 index 0000000..7736b46 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Apple.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Bananas.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Bananas.png" new file mode 100644 index 0000000..3473ed3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Bananas.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Cherries.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Cherries.png" new file mode 100644 index 0000000..d9297c3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Cherries.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Collected.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Collected.png" new file mode 100644 index 0000000..44c3f63 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Collected.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Kiwi.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Kiwi.png" new file mode 100644 index 0000000..c251801 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Kiwi.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Melon.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Melon.png" new file mode 100644 index 0000000..1ca39fa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Melon.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Orange.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Orange.png" new file mode 100644 index 0000000..a6e1d75 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Orange.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Pineapple.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Pineapple.png" new file mode 100644 index 0000000..2542384 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Pineapple.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Strawberry.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Strawberry.png" new file mode 100644 index 0000000..d105fc7 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Items/Fruits/Strawberry.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Appearing (96x96).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Appearing (96x96).png" new file mode 100644 index 0000000..93899e1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Appearing (96x96).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Desappearing (96x96).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Desappearing (96x96).png" new file mode 100644 index 0000000..5153049 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Desappearing (96x96).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Double Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Double Jump (32x32).png" new file mode 100644 index 0000000..9ea2709 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Double Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Fall (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Fall (32x32).png" new file mode 100644 index 0000000..b6b9400 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Fall (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Hit (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Hit (32x32).png" new file mode 100644 index 0000000..461446a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Hit (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Idle (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Idle (32x32).png" new file mode 100644 index 0000000..d3ecedb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Idle (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Jump (32x32).png" new file mode 100644 index 0000000..5d30a0a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Run (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Run (32x32).png" new file mode 100644 index 0000000..a06b359 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Run (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Wall Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Wall Jump (32x32).png" new file mode 100644 index 0000000..25e00a4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Mask Dude/Wall Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Double Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Double Jump (32x32).png" new file mode 100644 index 0000000..7715a90 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Double Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Fall (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Fall (32x32).png" new file mode 100644 index 0000000..3b9715f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Fall (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Hit (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Hit (32x32).png" new file mode 100644 index 0000000..413c24b Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Hit (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Idle (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Idle (32x32).png" new file mode 100644 index 0000000..4cbc070 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Idle (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Jump (32x32).png" new file mode 100644 index 0000000..20b6dfe Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Run (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Run (32x32).png" new file mode 100644 index 0000000..cf7599c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Run (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Wall Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Wall Jump (32x32).png" new file mode 100644 index 0000000..477542d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Ninja Frog/Wall Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Double Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Double Jump (32x32).png" new file mode 100644 index 0000000..c47eeef Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Double Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Fall (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Fall (32x32).png" new file mode 100644 index 0000000..8990b87 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Fall (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Hit (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Hit (32x32).png" new file mode 100644 index 0000000..5d6d068 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Hit (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Idle (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Idle (32x32).png" new file mode 100644 index 0000000..620ff92 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Idle (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Jump (32x32).png" new file mode 100644 index 0000000..d7f69d4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Run (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Run (32x32).png" new file mode 100644 index 0000000..a5d5b9c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Run (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Wall Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Wall Jump (32x32).png" new file mode 100644 index 0000000..d9f1c6f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Pink Man/Wall Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Double Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Double Jump (32x32).png" new file mode 100644 index 0000000..aa31082 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Double Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Fall (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Fall (32x32).png" new file mode 100644 index 0000000..4af21e6 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Fall (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Hit (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Hit (32x32).png" new file mode 100644 index 0000000..5036795 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Hit (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Idle (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Idle (32x32).png" new file mode 100644 index 0000000..d5b2e58 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Idle (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Jump (32x32).png" new file mode 100644 index 0000000..8417760 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Run (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Run (32x32).png" new file mode 100644 index 0000000..de4d53e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Run (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Wall Jump (32x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Wall Jump (32x32).png" new file mode 100644 index 0000000..8458b29 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Main Characters/Virtual Guy/Wall Jump (32x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Achievements.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Achievements.png" new file mode 100644 index 0000000..e51d536 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Achievements.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Back.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Back.png" new file mode 100644 index 0000000..fc58bf1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Back.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Close.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Close.png" new file mode 100644 index 0000000..6a1a302 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Close.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Leaderboard.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Leaderboard.png" new file mode 100644 index 0000000..706aad4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Leaderboard.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Levels.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Levels.png" new file mode 100644 index 0000000..11ba8d1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Levels.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Next.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Next.png" new file mode 100644 index 0000000..a342507 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Next.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Play.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Play.png" new file mode 100644 index 0000000..04f3791 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Play.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Previous.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Previous.png" new file mode 100644 index 0000000..fc0a461 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Previous.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Restart.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Restart.png" new file mode 100644 index 0000000..b12b24d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Restart.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Settings.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Settings.png" new file mode 100644 index 0000000..dd71367 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Settings.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Volume.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Volume.png" new file mode 100644 index 0000000..e3f8eba Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/Volume.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/VolumeOff.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/VolumeOff.png" new file mode 100644 index 0000000..04bda69 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Buttons/VolumeOff.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/01.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/01.png" new file mode 100644 index 0000000..b086798 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/01.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/02.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/02.png" new file mode 100644 index 0000000..4f1b3bb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/02.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/03.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/03.png" new file mode 100644 index 0000000..384d565 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/03.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/04.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/04.png" new file mode 100644 index 0000000..455cf13 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/04.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/05.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/05.png" new file mode 100644 index 0000000..9d77410 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/05.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/06.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/06.png" new file mode 100644 index 0000000..3452f66 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/06.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/07.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/07.png" new file mode 100644 index 0000000..8107e63 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/07.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/08.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/08.png" new file mode 100644 index 0000000..219534e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/08.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/09.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/09.png" new file mode 100644 index 0000000..3abfa09 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/09.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/10.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/10.png" new file mode 100644 index 0000000..d6efe1b Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/10.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/11.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/11.png" new file mode 100644 index 0000000..5d650f5 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/11.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/12.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/12.png" new file mode 100644 index 0000000..e5583ba Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/12.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/13.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/13.png" new file mode 100644 index 0000000..ae31ed0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/13.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/14.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/14.png" new file mode 100644 index 0000000..adc69ff Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/14.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/15.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/15.png" new file mode 100644 index 0000000..e0db40a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/15.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/16.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/16.png" new file mode 100644 index 0000000..bba7bbb Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/16.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/17.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/17.png" new file mode 100644 index 0000000..c7804ce Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/17.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/18.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/18.png" new file mode 100644 index 0000000..544be9c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/18.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/19.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/19.png" new file mode 100644 index 0000000..b6bb42d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/19.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/20.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/20.png" new file mode 100644 index 0000000..76e4e8a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/20.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/21.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/21.png" new file mode 100644 index 0000000..0135aaf Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/21.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/22.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/22.png" new file mode 100644 index 0000000..5c75954 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/22.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/23.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/23.png" new file mode 100644 index 0000000..8d4cfcd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/23.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/24.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/24.png" new file mode 100644 index 0000000..bb2af54 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/24.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/25.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/25.png" new file mode 100644 index 0000000..d86fa21 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/25.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/26.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/26.png" new file mode 100644 index 0000000..adbbacd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/26.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/27.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/27.png" new file mode 100644 index 0000000..d008cd3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/27.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/28.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/28.png" new file mode 100644 index 0000000..4ed3991 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/28.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/29.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/29.png" new file mode 100644 index 0000000..bfdb0c7 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/29.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/30.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/30.png" new file mode 100644 index 0000000..3112564 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/30.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/31.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/31.png" new file mode 100644 index 0000000..f2ad13a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/31.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/32.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/32.png" new file mode 100644 index 0000000..5116597 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/32.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/33.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/33.png" new file mode 100644 index 0000000..ad2b247 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/33.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/34.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/34.png" new file mode 100644 index 0000000..0180840 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/34.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/35.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/35.png" new file mode 100644 index 0000000..c0628a9 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/35.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/36.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/36.png" new file mode 100644 index 0000000..75c8ead Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/36.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/37.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/37.png" new file mode 100644 index 0000000..72bd7fc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/37.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/38.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/38.png" new file mode 100644 index 0000000..dc6bb78 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/38.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/39.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/39.png" new file mode 100644 index 0000000..1a10f34 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/39.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/40.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/40.png" new file mode 100644 index 0000000..d6f6fd8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/40.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/41.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/41.png" new file mode 100644 index 0000000..a46ae02 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/41.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/42.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/42.png" new file mode 100644 index 0000000..2a0bc19 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/42.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/43.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/43.png" new file mode 100644 index 0000000..ab9d734 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/43.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/44.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/44.png" new file mode 100644 index 0000000..8d94ce3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/44.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/45.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/45.png" new file mode 100644 index 0000000..13d2437 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/45.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/46.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/46.png" new file mode 100644 index 0000000..887e7fa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/46.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/47.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/47.png" new file mode 100644 index 0000000..2b518fd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/47.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/48.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/48.png" new file mode 100644 index 0000000..6aeccca Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/48.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/49.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/49.png" new file mode 100644 index 0000000..268eb29 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/49.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/50.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/50.png" new file mode 100644 index 0000000..c4f54f0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Levels/50.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (Black) (8x10).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (Black) (8x10).png" new file mode 100644 index 0000000..8ac8c48 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (Black) (8x10).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (White) (8x10).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (White) (8x10).png" new file mode 100644 index 0000000..22df13e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Menu/Text/Text (White) (8x10).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Confetti (16x16).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Confetti (16x16).png" new file mode 100644 index 0000000..47af153 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Confetti (16x16).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Dust Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Dust Particle.png" new file mode 100644 index 0000000..b2ade47 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Dust Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Shadow.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Shadow.png" new file mode 100644 index 0000000..668f325 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Shadow.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Transition.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Transition.png" new file mode 100644 index 0000000..2d2dd60 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Other/Transition.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Terrain/Terrain (16x16).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Terrain/Terrain (16x16).png" new file mode 100644 index 0000000..6674ca1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Terrain/Terrain (16x16).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Hit (18x18).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Hit (18x18).png" new file mode 100644 index 0000000..49a1e68 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Hit (18x18).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Idle (18x18).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Idle (18x18).png" new file mode 100644 index 0000000..7685537 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Arrow/Idle (18x18).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitSide (22x22).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitSide (22x22).png" new file mode 100644 index 0000000..7f57a9e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitSide (22x22).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitTop (22x22).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitTop (22x22).png" new file mode 100644 index 0000000..e42a963 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/HitTop (22x22).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Idle.png" new file mode 100644 index 0000000..68bb59c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 1 (22x22).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 1 (22x22).png" new file mode 100644 index 0000000..502961f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 1 (22x22).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 2 (22x22).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 2 (22x22).png" new file mode 100644 index 0000000..778f893 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Blocks/Part 2 (22x22).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/Off.png" new file mode 100644 index 0000000..819a0a1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/On (32x10).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/On (32x10).png" new file mode 100644 index 0000000..06e58cc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Falling Platforms/On (32x10).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/Off.png" new file mode 100644 index 0000000..4801084 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/On (24x8).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/On (24x8).png" new file mode 100644 index 0000000..c362a03 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fan/On (24x8).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Hit (16x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Hit (16x32).png" new file mode 100644 index 0000000..20e3720 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Hit (16x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Off.png" new file mode 100644 index 0000000..63a5bc2 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/On (16x32).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/On (16x32).png" new file mode 100644 index 0000000..f6a0adc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Fire/On (16x32).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown Off.png" new file mode 100644 index 0000000..a0e8f40 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown On (32x8).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown On (32x8).png" new file mode 100644 index 0000000..a66da57 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Brown On (32x8).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Chain.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Chain.png" new file mode 100644 index 0000000..1487176 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Chain.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey Off.png" new file mode 100644 index 0000000..4cb5d73 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey On (32x8).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey On (32x8).png" new file mode 100644 index 0000000..9e31937 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Platforms/Grey On (32x8).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Blink (42x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Blink (42x42).png" new file mode 100644 index 0000000..e4bf751 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Blink (42x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Bottom Hit (42x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Bottom Hit (42x42).png" new file mode 100644 index 0000000..3d4b806 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Bottom Hit (42x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Idle.png" new file mode 100644 index 0000000..5d45206 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Left Hit (42x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Left Hit (42x42).png" new file mode 100644 index 0000000..2bb018a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Left Hit (42x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Right Hit (42x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Right Hit (42x42).png" new file mode 100644 index 0000000..ca28747 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Right Hit (42x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Top Hit (42x42).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Top Hit (42x42).png" new file mode 100644 index 0000000..f29927a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Rock Head/Top Hit (42x42).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Ice Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Ice Particle.png" new file mode 100644 index 0000000..06ea6c6 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Ice Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Mud Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Mud Particle.png" new file mode 100644 index 0000000..8c5cd07 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Mud Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Mud Ice (16x6).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Mud Ice (16x6).png" new file mode 100644 index 0000000..cc942e1 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Mud Ice (16x6).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Particle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Particle.png" new file mode 100644 index 0000000..2e126c3 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Sand Mud Ice/Sand Particle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Chain.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Chain.png" new file mode 100644 index 0000000..d7416c4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Chain.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Off.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Off.png" new file mode 100644 index 0000000..1a3c128 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/Off.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/On (38x38).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/On (38x38).png" new file mode 100644 index 0000000..9f3a811 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Saw/On (38x38).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Blink (54x52).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Blink (54x52).png" new file mode 100644 index 0000000..1c7f5c8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Blink (54x52).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Bottom Hit (54x52).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Bottom Hit (54x52).png" new file mode 100644 index 0000000..38bdc11 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Bottom Hit (54x52).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Idle.png" new file mode 100644 index 0000000..92363c4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Left Hit (54x52).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Left Hit (54x52).png" new file mode 100644 index 0000000..13f70ae Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Left Hit (54x52).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Right Hit (54x52).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Right Hit (54x52).png" new file mode 100644 index 0000000..9060f96 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Right Hit (54x52).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Top Hit (54x52).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Top Hit (54x52).png" new file mode 100644 index 0000000..ae1e54e Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spike Head/Top Hit (54x52).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Chain.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Chain.png" new file mode 100644 index 0000000..af1d3b8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Chain.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Spiked Ball.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Spiked Ball.png" new file mode 100644 index 0000000..c25f971 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spiked Ball/Spiked Ball.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spikes/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spikes/Idle.png" new file mode 100644 index 0000000..133f586 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Spikes/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Idle.png" new file mode 100644 index 0000000..c7d7f84 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Jump (28x28).png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Jump (28x28).png" new file mode 100644 index 0000000..89c8d6f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/pixel_adventure/Traps/Trampoline/Jump (28x28).png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/bgm_1.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/bgm_1.wav" new file mode 100644 index 0000000..18c8e13 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/bgm_1.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/doushixiaoshi.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/doushixiaoshi.wav" new file mode 100644 index 0000000..75d06c7 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/doushixiaoshi.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/mashangdaozhanle.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/mashangdaozhanle.wav" new file mode 100644 index 0000000..744ec5f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/mashangdaozhanle.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/shangche.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/shangche.wav" new file mode 100644 index 0000000..ff317fd Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/shangche.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/xiache.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/xiache.wav" new file mode 100644 index 0000000..d6dc5a7 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/xiache.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/zhejiuchuqu.wav" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/zhejiuchuqu.wav" new file mode 100644 index 0000000..571f583 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/audio/zhejiuchuqu.wav" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Coder.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Coder.png" new file mode 100644 index 0000000..e963384 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Coder.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Rekinder.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Rekinder.png" new file mode 100644 index 0000000..16c0230 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Rekinder.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Smoker.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Smoker.png" new file mode 100644 index 0000000..46049c4 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/Smoker.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Idle.png" new file mode 100644 index 0000000..d4080fa Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Walk.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Walk.png" new file mode 100644 index 0000000..02cb708 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Coder_Walk.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Idle.png" new file mode 100644 index 0000000..936f986 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Walk.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Walk.png" new file mode 100644 index 0000000..e686842 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Rekinder_Walk.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Idle.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Idle.png" new file mode 100644 index 0000000..d60bf97 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Idle.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Walk.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Walk.png" new file mode 100644 index 0000000..ae4ae6f Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/characters/anim/Smoker_Walk.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/Result_Panel.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/Result_Panel.png" new file mode 100644 index 0000000..b3451dc Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/Result_Panel.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/passenger_bubble.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/passenger_bubble.png" new file mode 100644 index 0000000..e2376d0 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/passenger_bubble.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/player_bubble.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/player_bubble.png" new file mode 100644 index 0000000..ce55b53 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/player_bubble.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/text_bubble.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/text_bubble.png" new file mode 100644 index 0000000..fc7367a Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/text_bubble.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ugly_smoke.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ugly_smoke.png" new file mode 100644 index 0000000..838962b Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ugly_smoke.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ui_kaishi.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ui_kaishi.png" new file mode 100644 index 0000000..58dbbd6 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/envitems/ui_kaishi.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/example_map.json" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/example_map.json" new file mode 100644 index 0000000..00ef334 --- /dev/null +++ "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/example_map.json" @@ -0,0 +1,461 @@ +{ + "tileSize": 16, + "mapWidth": 35, + "mapHeight": 27, + "layers": [ + { + "name": "MaskDude", + "tiles": [ + { "id": "0", "x": 5, "y": 22 }, + { "id": "1", "x": 6, "y": 22 }, + { "id": "2", "x": 5, "y": 23 }, + { "id": "3", "x": 6, "y": 23 } + ], + "collider": false + }, + { + "name": "Apple", + "tiles": [ + { "id": "17", "x": 12, "y": 22 }, + { "id": "18", "x": 13, "y": 22 }, + { "id": "19", "x": 12, "y": 23 }, + { "id": "20", "x": 13, "y": 23 }, + { "id": "17", "x": 22, "y": 22 }, + { "id": "18", "x": 23, "y": 22 }, + { "id": "19", "x": 22, "y": 23 }, + { "id": "20", "x": 23, "y": 23 }, + { "id": "17", "x": 27, "y": 7 }, + { "id": "18", "x": 28, "y": 7 }, + { "id": "19", "x": 27, "y": 8 }, + { "id": "20", "x": 28, "y": 8 }, + { "id": "17", "x": 15, "y": 12 }, + { "id": "18", "x": 16, "y": 12 }, + { "id": "19", "x": 15, "y": 13 }, + { "id": "20", "x": 16, "y": 13 }, + { "id": "17", "x": 25, "y": 16 }, + { "id": "18", "x": 26, "y": 16 }, + { "id": "19", "x": 25, "y": 17 }, + { "id": "20", "x": 26, "y": 17 } + ], + "collider": false + }, + { + "name": "Flag", + "tiles": [ + { "id": "22", "x": 5, "y": 7 }, + { "id": "23", "x": 6, "y": 7 }, + { "id": "25", "x": 5, "y": 8 }, + { "id": "26", "x": 6, "y": 8 }, + { "id": "28", "x": 5, "y": 9 }, + { "id": "21", "x": 6, "y": 9 } + ], + "collider": false + }, + { + "name": "Ground", + "tiles": [ + { "id": "11", "x": 0, "y": 4 }, + { "id": "10", "x": 2, "y": 4 }, + { "id": "11", "x": 0, "y": 5 }, + { "id": "10", "x": 2, "y": 5 }, + { "id": "11", "x": 0, "y": 6 }, + { "id": "10", "x": 2, "y": 6 }, + { "id": "11", "x": 0, "y": 7 }, + { "id": "10", "x": 2, "y": 7 }, + { "id": "11", "x": 0, "y": 8 }, + { "id": "10", "x": 2, "y": 8 }, + { "id": "11", "x": 0, "y": 9 }, + { "id": "11", "x": 0, "y": 10 }, + { "id": "11", "x": 0, "y": 11 }, + { "id": "11", "x": 0, "y": 12 }, + { "id": "11", "x": 0, "y": 13 }, + { "id": "10", "x": 2, "y": 13 }, + { "id": "11", "x": 0, "y": 14 }, + { "id": "10", "x": 2, "y": 14 }, + { "id": "11", "x": 0, "y": 15 }, + { "id": "10", "x": 2, "y": 15 }, + { "id": "11", "x": 0, "y": 16 }, + { "id": "10", "x": 2, "y": 16 }, + { "id": "11", "x": 0, "y": 17 }, + { "id": "10", "x": 2, "y": 17 }, + { "id": "11", "x": 0, "y": 18 }, + { "id": "10", "x": 2, "y": 18 }, + { "id": "11", "x": 0, "y": 19 }, + { "id": "10", "x": 2, "y": 19 }, + { "id": "11", "x": 0, "y": 20 }, + { "id": "10", "x": 2, "y": 20 }, + { "id": "11", "x": 0, "y": 21 }, + { "id": "10", "x": 2, "y": 21 }, + { "id": "11", "x": 0, "y": 22 }, + { "id": "10", "x": 2, "y": 22 }, + { "id": "13", "x": 1, "y": 4 }, + { "id": "13", "x": 1, "y": 5 }, + { "id": "13", "x": 1, "y": 6 }, + { "id": "13", "x": 1, "y": 7 }, + { "id": "13", "x": 1, "y": 8 }, + { "id": "13", "x": 1, "y": 9 }, + { "id": "13", "x": 1, "y": 10 }, + { "id": "13", "x": 1, "y": 11 }, + { "id": "13", "x": 1, "y": 12 }, + { "id": "13", "x": 1, "y": 13 }, + { "id": "13", "x": 1, "y": 14 }, + { "id": "13", "x": 1, "y": 15 }, + { "id": "13", "x": 1, "y": 16 }, + { "id": "13", "x": 1, "y": 17 }, + { "id": "13", "x": 1, "y": 18 }, + { "id": "13", "x": 1, "y": 19 }, + { "id": "13", "x": 1, "y": 20 }, + { "id": "13", "x": 1, "y": 21 }, + { "id": "13", "x": 1, "y": 22 }, + { "id": "11", "x": 0, "y": 23 }, + { "id": "13", "x": 1, "y": 23 }, + { "id": "10", "x": 2, "y": 23 }, + { "id": "13", "x": 2, "y": 24 }, + { "id": "9", "x": 3, "y": 24 }, + { "id": "9", "x": 4, "y": 24 }, + { "id": "9", "x": 5, "y": 24 }, + { "id": "9", "x": 6, "y": 24 }, + { "id": "9", "x": 7, "y": 24 }, + { "id": "9", "x": 8, "y": 24 }, + { "id": "9", "x": 9, "y": 24 }, + { "id": "9", "x": 10, "y": 24 }, + { "id": "9", "x": 11, "y": 24 }, + { "id": "9", "x": 12, "y": 24 }, + { "id": "9", "x": 13, "y": 24 }, + { "id": "9", "x": 14, "y": 24 }, + { "id": "9", "x": 15, "y": 24 }, + { "id": "9", "x": 16, "y": 24 }, + { "id": "9", "x": 17, "y": 24 }, + { "id": "9", "x": 18, "y": 24 }, + { "id": "9", "x": 19, "y": 24 }, + { "id": "9", "x": 20, "y": 24 }, + { "id": "9", "x": 21, "y": 24 }, + { "id": "9", "x": 22, "y": 24 }, + { "id": "9", "x": 23, "y": 24 }, + { "id": "9", "x": 24, "y": 24 }, + { "id": "9", "x": 25, "y": 24 }, + { "id": "9", "x": 26, "y": 24 }, + { "id": "9", "x": 27, "y": 24 }, + { "id": "9", "x": 28, "y": 24 }, + { "id": "9", "x": 29, "y": 24 }, + { "id": "9", "x": 30, "y": 24 }, + { "id": "11", "x": 0, "y": 24 }, + { "id": "13", "x": 1, "y": 24 }, + { "id": "11", "x": 0, "y": 25 }, + { "id": "14", "x": 0, "y": 26 }, + { "id": "8", "x": 1, "y": 26 }, + { "id": "8", "x": 2, "y": 26 }, + { "id": "8", "x": 3, "y": 26 }, + { "id": "8", "x": 4, "y": 26 }, + { "id": "8", "x": 5, "y": 26 }, + { "id": "8", "x": 6, "y": 26 }, + { "id": "8", "x": 7, "y": 26 }, + { "id": "8", "x": 8, "y": 26 }, + { "id": "8", "x": 9, "y": 26 }, + { "id": "8", "x": 10, "y": 26 }, + { "id": "8", "x": 11, "y": 26 }, + { "id": "8", "x": 12, "y": 26 }, + { "id": "8", "x": 13, "y": 26 }, + { "id": "8", "x": 14, "y": 26 }, + { "id": "8", "x": 15, "y": 26 }, + { "id": "8", "x": 16, "y": 26 }, + { "id": "8", "x": 17, "y": 26 }, + { "id": "8", "x": 18, "y": 26 }, + { "id": "8", "x": 19, "y": 26 }, + { "id": "8", "x": 20, "y": 26 }, + { "id": "8", "x": 21, "y": 26 }, + { "id": "8", "x": 22, "y": 26 }, + { "id": "8", "x": 23, "y": 26 }, + { "id": "8", "x": 24, "y": 26 }, + { "id": "8", "x": 25, "y": 26 }, + { "id": "8", "x": 26, "y": 26 }, + { "id": "8", "x": 27, "y": 26 }, + { "id": "8", "x": 28, "y": 26 }, + { "id": "8", "x": 29, "y": 26 }, + { "id": "8", "x": 30, "y": 26 }, + { "id": "13", "x": 1, "y": 25 }, + { "id": "13", "x": 2, "y": 25 }, + { "id": "13", "x": 3, "y": 25 }, + { "id": "13", "x": 4, "y": 25 }, + { "id": "13", "x": 5, "y": 25 }, + { "id": "13", "x": 6, "y": 25 }, + { "id": "13", "x": 7, "y": 25 }, + { "id": "13", "x": 8, "y": 25 }, + { "id": "13", "x": 9, "y": 25 }, + { "id": "13", "x": 10, "y": 25 }, + { "id": "13", "x": 11, "y": 25 }, + { "id": "13", "x": 12, "y": 25 }, + { "id": "13", "x": 13, "y": 25 }, + { "id": "13", "x": 14, "y": 25 }, + { "id": "13", "x": 15, "y": 25 }, + { "id": "13", "x": 16, "y": 25 }, + { "id": "13", "x": 17, "y": 25 }, + { "id": "13", "x": 18, "y": 25 }, + { "id": "13", "x": 19, "y": 25 }, + { "id": "13", "x": 20, "y": 25 }, + { "id": "13", "x": 21, "y": 25 }, + { "id": "13", "x": 22, "y": 25 }, + { "id": "13", "x": 23, "y": 25 }, + { "id": "13", "x": 24, "y": 25 }, + { "id": "13", "x": 25, "y": 25 }, + { "id": "13", "x": 26, "y": 25 }, + { "id": "13", "x": 27, "y": 25 }, + { "id": "13", "x": 28, "y": 25 }, + { "id": "13", "x": 29, "y": 25 }, + { "id": "13", "x": 30, "y": 25 }, + { "id": "11", "x": 32, "y": 4 }, + { "id": "10", "x": 34, "y": 4 }, + { "id": "11", "x": 32, "y": 5 }, + { "id": "10", "x": 34, "y": 5 }, + { "id": "11", "x": 32, "y": 6 }, + { "id": "10", "x": 34, "y": 6 }, + { "id": "11", "x": 32, "y": 7 }, + { "id": "10", "x": 34, "y": 7 }, + { "id": "10", "x": 34, "y": 8 }, + { "id": "10", "x": 34, "y": 9 }, + { "id": "10", "x": 34, "y": 10 }, + { "id": "10", "x": 34, "y": 11 }, + { "id": "11", "x": 32, "y": 12 }, + { "id": "10", "x": 34, "y": 12 }, + { "id": "11", "x": 32, "y": 13 }, + { "id": "10", "x": 34, "y": 13 }, + { "id": "11", "x": 32, "y": 14 }, + { "id": "10", "x": 34, "y": 14 }, + { "id": "11", "x": 32, "y": 15 }, + { "id": "10", "x": 34, "y": 15 }, + { "id": "11", "x": 32, "y": 16 }, + { "id": "10", "x": 34, "y": 16 }, + { "id": "11", "x": 32, "y": 17 }, + { "id": "10", "x": 34, "y": 17 }, + { "id": "11", "x": 32, "y": 18 }, + { "id": "10", "x": 34, "y": 18 }, + { "id": "11", "x": 32, "y": 19 }, + { "id": "10", "x": 34, "y": 19 }, + { "id": "11", "x": 32, "y": 20 }, + { "id": "10", "x": 34, "y": 20 }, + { "id": "11", "x": 32, "y": 21 }, + { "id": "10", "x": 34, "y": 21 }, + { "id": "11", "x": 32, "y": 22 }, + { "id": "10", "x": 34, "y": 22 }, + { "id": "11", "x": 32, "y": 23 }, + { "id": "10", "x": 34, "y": 23 }, + { "id": "9", "x": 31, "y": 24 }, + { "id": "13", "x": 32, "y": 24 }, + { "id": "10", "x": 34, "y": 24 }, + { "id": "13", "x": 31, "y": 25 }, + { "id": "8", "x": 31, "y": 26 }, + { "id": "13", "x": 32, "y": 25 }, + { "id": "8", "x": 32, "y": 26 }, + { "id": "10", "x": 34, "y": 25 }, + { "id": "8", "x": 33, "y": 26 }, + { "id": "12", "x": 34, "y": 26 }, + { "id": "13", "x": 33, "y": 4 }, + { "id": "13", "x": 33, "y": 5 }, + { "id": "13", "x": 33, "y": 6 }, + { "id": "13", "x": 33, "y": 7 }, + { "id": "13", "x": 33, "y": 8 }, + { "id": "13", "x": 33, "y": 9 }, + { "id": "13", "x": 33, "y": 10 }, + { "id": "13", "x": 33, "y": 11 }, + { "id": "13", "x": 33, "y": 12 }, + { "id": "13", "x": 33, "y": 13 }, + { "id": "13", "x": 33, "y": 14 }, + { "id": "13", "x": 33, "y": 15 }, + { "id": "13", "x": 33, "y": 16 }, + { "id": "13", "x": 33, "y": 17 }, + { "id": "13", "x": 33, "y": 18 }, + { "id": "13", "x": 33, "y": 19 }, + { "id": "13", "x": 33, "y": 20 }, + { "id": "13", "x": 33, "y": 21 }, + { "id": "13", "x": 33, "y": 22 }, + { "id": "13", "x": 33, "y": 23 }, + { "id": "13", "x": 33, "y": 24 }, + { "id": "13", "x": 33, "y": 25 }, + { "id": "9", "x": 2, "y": 0 }, + { "id": "9", "x": 3, "y": 0 }, + { "id": "9", "x": 4, "y": 0 }, + { "id": "9", "x": 5, "y": 0 }, + { "id": "9", "x": 6, "y": 0 }, + { "id": "9", "x": 7, "y": 0 }, + { "id": "9", "x": 8, "y": 0 }, + { "id": "9", "x": 9, "y": 0 }, + { "id": "9", "x": 10, "y": 0 }, + { "id": "9", "x": 11, "y": 0 }, + { "id": "9", "x": 12, "y": 0 }, + { "id": "9", "x": 13, "y": 0 }, + { "id": "9", "x": 14, "y": 0 }, + { "id": "9", "x": 15, "y": 0 }, + { "id": "9", "x": 16, "y": 0 }, + { "id": "9", "x": 17, "y": 0 }, + { "id": "9", "x": 18, "y": 0 }, + { "id": "9", "x": 19, "y": 0 }, + { "id": "9", "x": 20, "y": 0 }, + { "id": "9", "x": 21, "y": 0 }, + { "id": "9", "x": 22, "y": 0 }, + { "id": "9", "x": 23, "y": 0 }, + { "id": "9", "x": 24, "y": 0 }, + { "id": "9", "x": 25, "y": 0 }, + { "id": "9", "x": 26, "y": 0 }, + { "id": "9", "x": 27, "y": 0 }, + { "id": "9", "x": 28, "y": 0 }, + { "id": "9", "x": 29, "y": 0 }, + { "id": "9", "x": 30, "y": 0 }, + { "id": "9", "x": 31, "y": 0 }, + { "id": "9", "x": 32, "y": 0 }, + { "id": "15", "x": 0, "y": 0 }, + { "id": "9", "x": 1, "y": 0 }, + { "id": "9", "x": 33, "y": 0 }, + { "id": "16", "x": 34, "y": 0 }, + { "id": "11", "x": 0, "y": 1 }, + { "id": "11", "x": 0, "y": 2 }, + { "id": "11", "x": 0, "y": 3 }, + { "id": "13", "x": 1, "y": 2 }, + { "id": "13", "x": 1, "y": 3 }, + { "id": "13", "x": 2, "y": 2 }, + { "id": "10", "x": 2, "y": 3 }, + { "id": "8", "x": 3, "y": 2 }, + { "id": "8", "x": 4, "y": 2 }, + { "id": "8", "x": 5, "y": 2 }, + { "id": "8", "x": 6, "y": 2 }, + { "id": "8", "x": 7, "y": 2 }, + { "id": "8", "x": 8, "y": 2 }, + { "id": "8", "x": 9, "y": 2 }, + { "id": "8", "x": 10, "y": 2 }, + { "id": "8", "x": 11, "y": 2 }, + { "id": "8", "x": 12, "y": 2 }, + { "id": "8", "x": 13, "y": 2 }, + { "id": "8", "x": 14, "y": 2 }, + { "id": "8", "x": 15, "y": 2 }, + { "id": "8", "x": 16, "y": 2 }, + { "id": "8", "x": 17, "y": 2 }, + { "id": "8", "x": 18, "y": 2 }, + { "id": "8", "x": 19, "y": 2 }, + { "id": "8", "x": 20, "y": 2 }, + { "id": "8", "x": 21, "y": 2 }, + { "id": "8", "x": 22, "y": 2 }, + { "id": "8", "x": 23, "y": 2 }, + { "id": "8", "x": 24, "y": 2 }, + { "id": "8", "x": 25, "y": 2 }, + { "id": "8", "x": 26, "y": 2 }, + { "id": "8", "x": 27, "y": 2 }, + { "id": "8", "x": 28, "y": 2 }, + { "id": "8", "x": 29, "y": 2 }, + { "id": "8", "x": 30, "y": 2 }, + { "id": "8", "x": 31, "y": 2 }, + { "id": "13", "x": 32, "y": 2 }, + { "id": "11", "x": 32, "y": 3 }, + { "id": "10", "x": 34, "y": 1 }, + { "id": "13", "x": 33, "y": 2 }, + { "id": "10", "x": 34, "y": 2 }, + { "id": "13", "x": 33, "y": 3 }, + { "id": "10", "x": 34, "y": 3 }, + { "id": "13", "x": 1, "y": 1 }, + { "id": "13", "x": 2, "y": 1 }, + { "id": "13", "x": 3, "y": 1 }, + { "id": "13", "x": 4, "y": 1 }, + { "id": "13", "x": 5, "y": 1 }, + { "id": "13", "x": 6, "y": 1 }, + { "id": "13", "x": 7, "y": 1 }, + { "id": "13", "x": 8, "y": 1 }, + { "id": "13", "x": 9, "y": 1 }, + { "id": "13", "x": 10, "y": 1 }, + { "id": "13", "x": 11, "y": 1 }, + { "id": "13", "x": 12, "y": 1 }, + { "id": "13", "x": 13, "y": 1 }, + { "id": "13", "x": 14, "y": 1 }, + { "id": "13", "x": 15, "y": 1 }, + { "id": "13", "x": 16, "y": 1 }, + { "id": "13", "x": 17, "y": 1 }, + { "id": "13", "x": 18, "y": 1 }, + { "id": "13", "x": 19, "y": 1 }, + { "id": "13", "x": 20, "y": 1 }, + { "id": "13", "x": 21, "y": 1 }, + { "id": "13", "x": 22, "y": 1 }, + { "id": "13", "x": 23, "y": 1 }, + { "id": "13", "x": 24, "y": 1 }, + { "id": "13", "x": 25, "y": 1 }, + { "id": "13", "x": 26, "y": 1 }, + { "id": "13", "x": 27, "y": 1 }, + { "id": "13", "x": 28, "y": 1 }, + { "id": "13", "x": 29, "y": 1 }, + { "id": "13", "x": 30, "y": 1 }, + { "id": "13", "x": 31, "y": 1 }, + { "id": "13", "x": 32, "y": 1 }, + { "id": "13", "x": 33, "y": 1 }, + { "id": "16", "x": 27, "y": 18 }, + { "id": "12", "x": 27, "y": 19 }, + { "id": "9", "x": 25, "y": 18 }, + { "id": "9", "x": 26, "y": 18 }, + { "id": "8", "x": 25, "y": 19 }, + { "id": "8", "x": 26, "y": 19 }, + { "id": "9", "x": 17, "y": 14 }, + { "id": "8", "x": 17, "y": 15 }, + { "id": "9", "x": 16, "y": 14 }, + { "id": "8", "x": 16, "y": 15 }, + { "id": "10", "x": 2, "y": 12 }, + { "id": "10", "x": 2, "y": 9 }, + { "id": "13", "x": 2, "y": 10 }, + { "id": "13", "x": 2, "y": 11 }, + { "id": "9", "x": 3, "y": 10 }, + { "id": "8", "x": 3, "y": 11 }, + { "id": "9", "x": 4, "y": 10 }, + { "id": "8", "x": 4, "y": 11 }, + { "id": "9", "x": 5, "y": 10 }, + { "id": "8", "x": 5, "y": 11 }, + { "id": "9", "x": 6, "y": 10 }, + { "id": "8", "x": 6, "y": 11 }, + { "id": "9", "x": 7, "y": 10 }, + { "id": "8", "x": 7, "y": 11 }, + { "id": "9", "x": 15, "y": 14 }, + { "id": "8", "x": 15, "y": 15 }, + { "id": "11", "x": 32, "y": 8 }, + { "id": "13", "x": 32, "y": 9 }, + { "id": "13", "x": 32, "y": 10 }, + { "id": "11", "x": 32, "y": 11 }, + { "id": "9", "x": 31, "y": 9 }, + { "id": "8", "x": 31, "y": 10 }, + { "id": "9", "x": 30, "y": 9 }, + { "id": "8", "x": 30, "y": 10 }, + { "id": "9", "x": 29, "y": 9 }, + { "id": "8", "x": 29, "y": 10 }, + { "id": "9", "x": 28, "y": 9 }, + { "id": "8", "x": 28, "y": 10 }, + { "id": "15", "x": 26, "y": 9 }, + { "id": "9", "x": 27, "y": 9 }, + { "id": "14", "x": 26, "y": 10 }, + { "id": "8", "x": 27, "y": 10 }, + { "id": "9", "x": 18, "y": 14 }, + { "id": "8", "x": 18, "y": 15 }, + { "id": "9", "x": 19, "y": 14 }, + { "id": "8", "x": 19, "y": 15 }, + { "id": "15", "x": 13, "y": 14 }, + { "id": "9", "x": 14, "y": 14 }, + { "id": "14", "x": 13, "y": 15 }, + { "id": "8", "x": 14, "y": 15 }, + { "id": "9", "x": 8, "y": 10 }, + { "id": "16", "x": 9, "y": 10 }, + { "id": "8", "x": 8, "y": 11 }, + { "id": "12", "x": 9, "y": 11 }, + { "id": "9", "x": 20, "y": 14 }, + { "id": "8", "x": 20, "y": 15 }, + { "id": "8", "x": 24, "y": 19 }, + { "id": "9", "x": 24, "y": 18 }, + { "id": "9", "x": 21, "y": 14 }, + { "id": "9", "x": 22, "y": 14 }, + { "id": "16", "x": 23, "y": 14 }, + { "id": "8", "x": 21, "y": 15 }, + { "id": "13", "x": 22, "y": 15 }, + { "id": "10", "x": 23, "y": 15 }, + { "id": "11", "x": 22, "y": 16 }, + { "id": "10", "x": 23, "y": 16 }, + { "id": "11", "x": 22, "y": 17 }, + { "id": "10", "x": 23, "y": 17 }, + { "id": "11", "x": 22, "y": 18 }, + { "id": "13", "x": 23, "y": 18 }, + { "id": "14", "x": 22, "y": 19 }, + { "id": "8", "x": 23, "y": 19 } + ], + "collider": false + } + ] +} \ No newline at end of file diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/map.json" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/map.json" new file mode 100644 index 0000000..7ccbb1a --- /dev/null +++ "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/map.json" @@ -0,0 +1,529 @@ +{ + "tileSize": 16, + "mapWidth": 50, + "mapHeight": 22, + "layers": [ + { + "name": "Ground", + "tiles": [ + { "id": "3", "x": 1, "y": 0 }, + { "id": "3", "x": 2, "y": 0 }, + { "id": "3", "x": 3, "y": 0 }, + { "id": "3", "x": 4, "y": 0 }, + { "id": "3", "x": 5, "y": 0 }, + { "id": "3", "x": 6, "y": 0 }, + { "id": "3", "x": 7, "y": 0 }, + { "id": "3", "x": 8, "y": 0 }, + { "id": "3", "x": 9, "y": 0 }, + { "id": "3", "x": 10, "y": 0 }, + { "id": "3", "x": 11, "y": 0 }, + { "id": "3", "x": 12, "y": 0 }, + { "id": "3", "x": 13, "y": 0 }, + { "id": "3", "x": 14, "y": 0 }, + { "id": "3", "x": 15, "y": 0 }, + { "id": "3", "x": 16, "y": 0 }, + { "id": "3", "x": 17, "y": 0 }, + { "id": "3", "x": 18, "y": 0 }, + { "id": "3", "x": 19, "y": 0 }, + { "id": "3", "x": 20, "y": 0 }, + { "id": "3", "x": 21, "y": 0 }, + { "id": "3", "x": 22, "y": 0 }, + { "id": "3", "x": 23, "y": 0 }, + { "id": "3", "x": 24, "y": 0 }, + { "id": "3", "x": 25, "y": 0 }, + { "id": "3", "x": 26, "y": 0 }, + { "id": "3", "x": 27, "y": 0 }, + { "id": "3", "x": 28, "y": 0 }, + { "id": "3", "x": 29, "y": 0 }, + { "id": "3", "x": 30, "y": 0 }, + { "id": "3", "x": 31, "y": 0 }, + { "id": "3", "x": 32, "y": 0 }, + { "id": "3", "x": 33, "y": 0 }, + { "id": "3", "x": 34, "y": 0 }, + { "id": "3", "x": 35, "y": 0 }, + { "id": "3", "x": 36, "y": 0 }, + { "id": "3", "x": 37, "y": 0 }, + { "id": "3", "x": 38, "y": 0 }, + { "id": "3", "x": 39, "y": 0 }, + { "id": "3", "x": 40, "y": 0 }, + { "id": "3", "x": 41, "y": 0 }, + { "id": "3", "x": 42, "y": 0 }, + { "id": "3", "x": 43, "y": 0 }, + { "id": "3", "x": 44, "y": 0 }, + { "id": "3", "x": 45, "y": 0 }, + { "id": "3", "x": 46, "y": 0 }, + { "id": "3", "x": 47, "y": 0 }, + { "id": "3", "x": 48, "y": 0 }, + { "id": "4", "x": 1, "y": 21 }, + { "id": "4", "x": 2, "y": 21 }, + { "id": "4", "x": 3, "y": 21 }, + { "id": "4", "x": 4, "y": 21 }, + { "id": "4", "x": 5, "y": 21 }, + { "id": "4", "x": 6, "y": 21 }, + { "id": "4", "x": 7, "y": 21 }, + { "id": "4", "x": 8, "y": 21 }, + { "id": "4", "x": 9, "y": 21 }, + { "id": "4", "x": 10, "y": 21 }, + { "id": "4", "x": 11, "y": 21 }, + { "id": "4", "x": 12, "y": 21 }, + { "id": "4", "x": 13, "y": 21 }, + { "id": "4", "x": 14, "y": 21 }, + { "id": "4", "x": 15, "y": 21 }, + { "id": "4", "x": 16, "y": 21 }, + { "id": "4", "x": 17, "y": 21 }, + { "id": "4", "x": 18, "y": 21 }, + { "id": "4", "x": 19, "y": 21 }, + { "id": "4", "x": 20, "y": 21 }, + { "id": "4", "x": 21, "y": 21 }, + { "id": "4", "x": 22, "y": 21 }, + { "id": "4", "x": 23, "y": 21 }, + { "id": "4", "x": 24, "y": 21 }, + { "id": "4", "x": 25, "y": 21 }, + { "id": "4", "x": 26, "y": 21 }, + { "id": "4", "x": 27, "y": 21 }, + { "id": "4", "x": 28, "y": 21 }, + { "id": "4", "x": 29, "y": 21 }, + { "id": "4", "x": 30, "y": 21 }, + { "id": "4", "x": 31, "y": 21 }, + { "id": "4", "x": 32, "y": 21 }, + { "id": "4", "x": 33, "y": 21 }, + { "id": "4", "x": 34, "y": 21 }, + { "id": "4", "x": 35, "y": 21 }, + { "id": "4", "x": 36, "y": 21 }, + { "id": "4", "x": 37, "y": 21 }, + { "id": "4", "x": 38, "y": 21 }, + { "id": "4", "x": 39, "y": 21 }, + { "id": "4", "x": 40, "y": 21 }, + { "id": "4", "x": 41, "y": 21 }, + { "id": "4", "x": 42, "y": 21 }, + { "id": "4", "x": 43, "y": 21 }, + { "id": "4", "x": 44, "y": 21 }, + { "id": "4", "x": 45, "y": 21 }, + { "id": "4", "x": 46, "y": 21 }, + { "id": "4", "x": 47, "y": 21 }, + { "id": "4", "x": 48, "y": 21 }, + { "id": "5", "x": 0, "y": 1 }, + { "id": "5", "x": 0, "y": 2 }, + { "id": "5", "x": 0, "y": 3 }, + { "id": "5", "x": 0, "y": 4 }, + { "id": "5", "x": 0, "y": 5 }, + { "id": "5", "x": 0, "y": 6 }, + { "id": "5", "x": 0, "y": 7 }, + { "id": "5", "x": 0, "y": 8 }, + { "id": "5", "x": 0, "y": 13 }, + { "id": "5", "x": 0, "y": 14 }, + { "id": "5", "x": 0, "y": 15 }, + { "id": "5", "x": 0, "y": 16 }, + { "id": "5", "x": 0, "y": 17 }, + { "id": "5", "x": 0, "y": 18 }, + { "id": "5", "x": 0, "y": 19 }, + { "id": "5", "x": 0, "y": 20 }, + { "id": "6", "x": 49, "y": 1 }, + { "id": "6", "x": 49, "y": 2 }, + { "id": "6", "x": 49, "y": 3 }, + { "id": "6", "x": 49, "y": 4 }, + { "id": "6", "x": 49, "y": 5 }, + { "id": "6", "x": 49, "y": 6 }, + { "id": "6", "x": 49, "y": 7 }, + { "id": "6", "x": 49, "y": 8 }, + { "id": "6", "x": 49, "y": 13 }, + { "id": "6", "x": 49, "y": 14 }, + { "id": "6", "x": 49, "y": 15 }, + { "id": "6", "x": 49, "y": 16 }, + { "id": "6", "x": 49, "y": 17 }, + { "id": "6", "x": 49, "y": 18 }, + { "id": "6", "x": 49, "y": 19 }, + { "id": "6", "x": 49, "y": 20 }, + { "id": "7", "x": 0, "y": 0 }, + { "id": "8", "x": 49, "y": 0 }, + { "id": "9", "x": 49, "y": 21 }, + { "id": "10", "x": 0, "y": 21 }, + { "id": "11", "x": 6, "y": 1 }, + { "id": "11", "x": 6, "y": 2 }, + { "id": "11", "x": 6, "y": 4 }, + { "id": "11", "x": 6, "y": 5 }, + { "id": "11", "x": 6, "y": 7 }, + { "id": "11", "x": 6, "y": 8 }, + { "id": "11", "x": 7, "y": 1 }, + { "id": "11", "x": 7, "y": 2 }, + { "id": "11", "x": 7, "y": 4 }, + { "id": "11", "x": 7, "y": 5 }, + { "id": "11", "x": 7, "y": 7 }, + { "id": "11", "x": 7, "y": 8 }, + { "id": "11", "x": 18, "y": 1 }, + { "id": "11", "x": 18, "y": 2 }, + { "id": "11", "x": 18, "y": 4 }, + { "id": "11", "x": 18, "y": 5 }, + { "id": "11", "x": 18, "y": 7 }, + { "id": "11", "x": 18, "y": 8 }, + { "id": "11", "x": 19, "y": 1 }, + { "id": "11", "x": 19, "y": 2 }, + { "id": "11", "x": 19, "y": 4 }, + { "id": "11", "x": 19, "y": 5 }, + { "id": "11", "x": 19, "y": 7 }, + { "id": "11", "x": 19, "y": 8 }, + { "id": "11", "x": 30, "y": 1 }, + { "id": "11", "x": 30, "y": 2 }, + { "id": "11", "x": 30, "y": 4 }, + { "id": "11", "x": 30, "y": 5 }, + { "id": "11", "x": 30, "y": 7 }, + { "id": "11", "x": 30, "y": 8 }, + { "id": "11", "x": 31, "y": 1 }, + { "id": "11", "x": 31, "y": 2 }, + { "id": "11", "x": 31, "y": 4 }, + { "id": "11", "x": 31, "y": 5 }, + { "id": "11", "x": 31, "y": 7 }, + { "id": "11", "x": 31, "y": 8 }, + { "id": "11", "x": 42, "y": 1 }, + { "id": "11", "x": 42, "y": 2 }, + { "id": "11", "x": 42, "y": 4 }, + { "id": "11", "x": 42, "y": 5 }, + { "id": "11", "x": 42, "y": 7 }, + { "id": "11", "x": 42, "y": 8 }, + { "id": "11", "x": 43, "y": 1 }, + { "id": "11", "x": 43, "y": 2 }, + { "id": "11", "x": 43, "y": 4 }, + { "id": "11", "x": 43, "y": 5 }, + { "id": "11", "x": 43, "y": 7 }, + { "id": "11", "x": 43, "y": 8 }, + { "id": "11", "x": 6, "y": 13 }, + { "id": "11", "x": 6, "y": 14 }, + { "id": "11", "x": 6, "y": 16 }, + { "id": "11", "x": 6, "y": 17 }, + { "id": "11", "x": 6, "y": 19 }, + { "id": "11", "x": 6, "y": 20 }, + { "id": "11", "x": 7, "y": 13 }, + { "id": "11", "x": 7, "y": 14 }, + { "id": "11", "x": 7, "y": 16 }, + { "id": "11", "x": 7, "y": 17 }, + { "id": "11", "x": 7, "y": 19 }, + { "id": "11", "x": 7, "y": 20 }, + { "id": "11", "x": 18, "y": 13 }, + { "id": "11", "x": 18, "y": 14 }, + { "id": "11", "x": 18, "y": 16 }, + { "id": "11", "x": 18, "y": 17 }, + { "id": "11", "x": 18, "y": 19 }, + { "id": "11", "x": 18, "y": 20 }, + { "id": "11", "x": 19, "y": 13 }, + { "id": "11", "x": 19, "y": 14 }, + { "id": "11", "x": 19, "y": 16 }, + { "id": "11", "x": 19, "y": 17 }, + { "id": "11", "x": 19, "y": 19 }, + { "id": "11", "x": 19, "y": 20 }, + { "id": "11", "x": 30, "y": 13 }, + { "id": "11", "x": 30, "y": 14 }, + { "id": "11", "x": 30, "y": 16 }, + { "id": "11", "x": 30, "y": 17 }, + { "id": "11", "x": 30, "y": 19 }, + { "id": "11", "x": 30, "y": 20 }, + { "id": "11", "x": 31, "y": 13 }, + { "id": "11", "x": 31, "y": 14 }, + { "id": "11", "x": 31, "y": 16 }, + { "id": "11", "x": 31, "y": 17 }, + { "id": "11", "x": 31, "y": 19 }, + { "id": "11", "x": 31, "y": 20 }, + { "id": "11", "x": 42, "y": 13 }, + { "id": "11", "x": 42, "y": 14 }, + { "id": "11", "x": 42, "y": 16 }, + { "id": "11", "x": 42, "y": 17 }, + { "id": "11", "x": 42, "y": 19 }, + { "id": "11", "x": 42, "y": 20 }, + { "id": "11", "x": 43, "y": 13 }, + { "id": "11", "x": 43, "y": 14 }, + { "id": "11", "x": 43, "y": 16 }, + { "id": "11", "x": 43, "y": 17 }, + { "id": "11", "x": 43, "y": 19 }, + { "id": "11", "x": 43, "y": 20 }, + { "id": "12", "x": 6, "y": 3 }, + { "id": "12", "x": 7, "y": 3 }, + { "id": "12", "x": 6, "y": 6 }, + { "id": "12", "x": 7, "y": 6 }, + { "id": "12", "x": 18, "y": 3 }, + { "id": "12", "x": 19, "y": 3 }, + { "id": "12", "x": 18, "y": 6 }, + { "id": "12", "x": 19, "y": 6 }, + { "id": "12", "x": 30, "y": 3 }, + { "id": "12", "x": 31, "y": 3 }, + { "id": "12", "x": 30, "y": 6 }, + { "id": "12", "x": 31, "y": 6 }, + { "id": "12", "x": 42, "y": 3 }, + { "id": "12", "x": 43, "y": 3 }, + { "id": "12", "x": 42, "y": 6 }, + { "id": "12", "x": 43, "y": 6 }, + { "id": "12", "x": 7, "y": 15 }, + { "id": "12", "x": 6, "y": 18 }, + { "id": "12", "x": 7, "y": 18 }, + { "id": "12", "x": 18, "y": 15 }, + { "id": "12", "x": 19, "y": 15 }, + { "id": "12", "x": 18, "y": 18 }, + { "id": "12", "x": 19, "y": 18 }, + { "id": "12", "x": 30, "y": 15 }, + { "id": "12", "x": 31, "y": 15 }, + { "id": "12", "x": 30, "y": 18 }, + { "id": "12", "x": 31, "y": 18 }, + { "id": "12", "x": 42, "y": 15 }, + { "id": "12", "x": 43, "y": 15 }, + { "id": "12", "x": 42, "y": 18 }, + { "id": "12", "x": 43, "y": 18 }, + { "id": "13", "x": 4, "y": 3 }, + { "id": "13", "x": 5, "y": 3 }, + { "id": "13", "x": 8, "y": 3 }, + { "id": "13", "x": 9, "y": 3 }, + { "id": "13", "x": 4, "y": 6 }, + { "id": "13", "x": 5, "y": 6 }, + { "id": "13", "x": 8, "y": 6 }, + { "id": "13", "x": 9, "y": 6 }, + { "id": "13", "x": 16, "y": 3 }, + { "id": "13", "x": 17, "y": 3 }, + { "id": "13", "x": 20, "y": 3 }, + { "id": "13", "x": 21, "y": 3 }, + { "id": "13", "x": 16, "y": 6 }, + { "id": "13", "x": 17, "y": 6 }, + { "id": "13", "x": 20, "y": 6 }, + { "id": "13", "x": 21, "y": 6 }, + { "id": "13", "x": 28, "y": 3 }, + { "id": "13", "x": 29, "y": 3 }, + { "id": "13", "x": 32, "y": 3 }, + { "id": "13", "x": 33, "y": 3 }, + { "id": "13", "x": 28, "y": 6 }, + { "id": "13", "x": 29, "y": 6 }, + { "id": "13", "x": 32, "y": 6 }, + { "id": "13", "x": 33, "y": 6 }, + { "id": "13", "x": 40, "y": 3 }, + { "id": "13", "x": 41, "y": 3 }, + { "id": "13", "x": 44, "y": 3 }, + { "id": "13", "x": 45, "y": 3 }, + { "id": "13", "x": 40, "y": 6 }, + { "id": "13", "x": 41, "y": 6 }, + { "id": "13", "x": 44, "y": 6 }, + { "id": "13", "x": 45, "y": 6 }, + { "id": "12", "x": 6, "y": 15 }, + { "id": "13", "x": 4, "y": 15 }, + { "id": "13", "x": 5, "y": 15 }, + { "id": "13", "x": 8, "y": 15 }, + { "id": "13", "x": 9, "y": 15 }, + { "id": "13", "x": 4, "y": 18 }, + { "id": "13", "x": 5, "y": 18 }, + { "id": "13", "x": 8, "y": 18 }, + { "id": "13", "x": 9, "y": 18 }, + { "id": "13", "x": 16, "y": 15 }, + { "id": "13", "x": 17, "y": 15 }, + { "id": "13", "x": 16, "y": 18 }, + { "id": "13", "x": 17, "y": 18 }, + { "id": "13", "x": 20, "y": 15 }, + { "id": "13", "x": 21, "y": 15 }, + { "id": "13", "x": 20, "y": 18 }, + { "id": "13", "x": 21, "y": 18 }, + { "id": "13", "x": 28, "y": 15 }, + { "id": "13", "x": 29, "y": 15 }, + { "id": "13", "x": 28, "y": 18 }, + { "id": "13", "x": 29, "y": 18 }, + { "id": "13", "x": 32, "y": 15 }, + { "id": "13", "x": 33, "y": 15 }, + { "id": "13", "x": 32, "y": 18 }, + { "id": "13", "x": 33, "y": 18 }, + { "id": "13", "x": 40, "y": 15 }, + { "id": "13", "x": 41, "y": 15 }, + { "id": "13", "x": 40, "y": 18 }, + { "id": "13", "x": 41, "y": 18 }, + { "id": "13", "x": 44, "y": 15 }, + { "id": "13", "x": 45, "y": 15 }, + { "id": "13", "x": 44, "y": 18 }, + { "id": "13", "x": 45, "y": 18 }, + { "id": "14", "x": 4, "y": 1 }, + { "id": "14", "x": 16, "y": 1 }, + { "id": "14", "x": 28, "y": 1 }, + { "id": "14", "x": 40, "y": 1 }, + { "id": "14", "x": 4, "y": 4 }, + { "id": "14", "x": 16, "y": 4 }, + { "id": "14", "x": 28, "y": 4 }, + { "id": "14", "x": 40, "y": 4 }, + { "id": "14", "x": 4, "y": 7 }, + { "id": "14", "x": 16, "y": 7 }, + { "id": "14", "x": 28, "y": 7 }, + { "id": "14", "x": 40, "y": 7 }, + { "id": "14", "x": 4, "y": 13 }, + { "id": "14", "x": 16, "y": 13 }, + { "id": "14", "x": 28, "y": 13 }, + { "id": "14", "x": 40, "y": 13 }, + { "id": "14", "x": 4, "y": 16 }, + { "id": "14", "x": 16, "y": 16 }, + { "id": "14", "x": 28, "y": 16 }, + { "id": "14", "x": 40, "y": 16 }, + { "id": "14", "x": 4, "y": 19 }, + { "id": "14", "x": 16, "y": 19 }, + { "id": "14", "x": 28, "y": 19 }, + { "id": "14", "x": 40, "y": 19 }, + { "id": "15", "x": 5, "y": 1 }, + { "id": "15", "x": 17, "y": 1 }, + { "id": "15", "x": 29, "y": 1 }, + { "id": "15", "x": 41, "y": 1 }, + { "id": "15", "x": 5, "y": 4 }, + { "id": "15", "x": 17, "y": 4 }, + { "id": "15", "x": 29, "y": 4 }, + { "id": "15", "x": 41, "y": 4 }, + { "id": "15", "x": 5, "y": 7 }, + { "id": "15", "x": 17, "y": 7 }, + { "id": "15", "x": 29, "y": 7 }, + { "id": "15", "x": 41, "y": 7 }, + { "id": "15", "x": 5, "y": 13 }, + { "id": "15", "x": 17, "y": 13 }, + { "id": "15", "x": 29, "y": 13 }, + { "id": "15", "x": 41, "y": 13 }, + { "id": "15", "x": 5, "y": 16 }, + { "id": "15", "x": 17, "y": 16 }, + { "id": "15", "x": 29, "y": 16 }, + { "id": "15", "x": 41, "y": 16 }, + { "id": "15", "x": 5, "y": 19 }, + { "id": "15", "x": 17, "y": 19 }, + { "id": "15", "x": 29, "y": 19 }, + { "id": "15", "x": 41, "y": 19 }, + { "id": "16", "x": 4, "y": 2 }, + { "id": "16", "x": 16, "y": 2 }, + { "id": "16", "x": 28, "y": 2 }, + { "id": "16", "x": 40, "y": 2 }, + { "id": "16", "x": 4, "y": 5 }, + { "id": "16", "x": 16, "y": 5 }, + { "id": "16", "x": 28, "y": 5 }, + { "id": "16", "x": 40, "y": 5 }, + { "id": "16", "x": 4, "y": 8 }, + { "id": "16", "x": 16, "y": 8 }, + { "id": "16", "x": 28, "y": 8 }, + { "id": "16", "x": 40, "y": 8 }, + { "id": "16", "x": 4, "y": 14 }, + { "id": "16", "x": 16, "y": 14 }, + { "id": "16", "x": 28, "y": 14 }, + { "id": "16", "x": 40, "y": 14 }, + { "id": "16", "x": 4, "y": 17 }, + { "id": "16", "x": 16, "y": 17 }, + { "id": "16", "x": 28, "y": 17 }, + { "id": "16", "x": 40, "y": 17 }, + { "id": "16", "x": 4, "y": 20 }, + { "id": "16", "x": 16, "y": 20 }, + { "id": "16", "x": 28, "y": 20 }, + { "id": "16", "x": 40, "y": 20 }, + { "id": "17", "x": 5, "y": 2 }, + { "id": "17", "x": 17, "y": 2 }, + { "id": "17", "x": 29, "y": 2 }, + { "id": "17", "x": 41, "y": 2 }, + { "id": "17", "x": 5, "y": 5 }, + { "id": "17", "x": 17, "y": 5 }, + { "id": "17", "x": 29, "y": 5 }, + { "id": "17", "x": 41, "y": 5 }, + { "id": "17", "x": 5, "y": 8 }, + { "id": "17", "x": 17, "y": 8 }, + { "id": "17", "x": 29, "y": 8 }, + { "id": "17", "x": 41, "y": 8 }, + { "id": "17", "x": 5, "y": 14 }, + { "id": "17", "x": 17, "y": 14 }, + { "id": "17", "x": 29, "y": 14 }, + { "id": "17", "x": 41, "y": 14 }, + { "id": "17", "x": 5, "y": 17 }, + { "id": "17", "x": 17, "y": 17 }, + { "id": "17", "x": 29, "y": 17 }, + { "id": "17", "x": 41, "y": 17 }, + { "id": "17", "x": 5, "y": 20 }, + { "id": "17", "x": 17, "y": 20 }, + { "id": "17", "x": 29, "y": 20 }, + { "id": "17", "x": 41, "y": 20 }, + { "id": "18", "x": 8, "y": 1 }, + { "id": "18", "x": 20, "y": 1 }, + { "id": "18", "x": 32, "y": 1 }, + { "id": "18", "x": 44, "y": 1 }, + { "id": "18", "x": 8, "y": 4 }, + { "id": "18", "x": 20, "y": 4 }, + { "id": "18", "x": 32, "y": 4 }, + { "id": "18", "x": 44, "y": 4 }, + { "id": "18", "x": 8, "y": 7 }, + { "id": "18", "x": 20, "y": 7 }, + { "id": "18", "x": 32, "y": 7 }, + { "id": "18", "x": 44, "y": 7 }, + { "id": "18", "x": 8, "y": 13 }, + { "id": "18", "x": 20, "y": 13 }, + { "id": "18", "x": 32, "y": 13 }, + { "id": "18", "x": 44, "y": 13 }, + { "id": "18", "x": 8, "y": 16 }, + { "id": "18", "x": 20, "y": 16 }, + { "id": "18", "x": 32, "y": 16 }, + { "id": "18", "x": 44, "y": 16 }, + { "id": "18", "x": 8, "y": 19 }, + { "id": "18", "x": 20, "y": 19 }, + { "id": "18", "x": 32, "y": 19 }, + { "id": "18", "x": 44, "y": 19 }, + { "id": "19", "x": 9, "y": 1 }, + { "id": "19", "x": 21, "y": 1 }, + { "id": "19", "x": 33, "y": 1 }, + { "id": "19", "x": 45, "y": 1 }, + { "id": "19", "x": 9, "y": 4 }, + { "id": "19", "x": 21, "y": 4 }, + { "id": "19", "x": 33, "y": 4 }, + { "id": "19", "x": 45, "y": 4 }, + { "id": "19", "x": 9, "y": 7 }, + { "id": "19", "x": 21, "y": 7 }, + { "id": "19", "x": 33, "y": 7 }, + { "id": "19", "x": 45, "y": 7 }, + { "id": "19", "x": 9, "y": 13 }, + { "id": "19", "x": 21, "y": 13 }, + { "id": "19", "x": 33, "y": 13 }, + { "id": "19", "x": 45, "y": 13 }, + { "id": "19", "x": 9, "y": 16 }, + { "id": "19", "x": 21, "y": 16 }, + { "id": "19", "x": 33, "y": 16 }, + { "id": "19", "x": 45, "y": 16 }, + { "id": "19", "x": 9, "y": 19 }, + { "id": "19", "x": 21, "y": 19 }, + { "id": "19", "x": 33, "y": 19 }, + { "id": "19", "x": 45, "y": 19 }, + { "id": "20", "x": 8, "y": 2 }, + { "id": "20", "x": 20, "y": 2 }, + { "id": "20", "x": 32, "y": 2 }, + { "id": "20", "x": 44, "y": 2 }, + { "id": "20", "x": 8, "y": 5 }, + { "id": "20", "x": 20, "y": 5 }, + { "id": "20", "x": 32, "y": 5 }, + { "id": "20", "x": 44, "y": 5 }, + { "id": "20", "x": 8, "y": 8 }, + { "id": "20", "x": 20, "y": 8 }, + { "id": "20", "x": 32, "y": 8 }, + { "id": "20", "x": 44, "y": 8 }, + { "id": "20", "x": 8, "y": 14 }, + { "id": "20", "x": 20, "y": 14 }, + { "id": "20", "x": 32, "y": 14 }, + { "id": "20", "x": 44, "y": 14 }, + { "id": "20", "x": 8, "y": 17 }, + { "id": "20", "x": 20, "y": 17 }, + { "id": "20", "x": 32, "y": 17 }, + { "id": "20", "x": 44, "y": 17 }, + { "id": "20", "x": 8, "y": 20 }, + { "id": "20", "x": 20, "y": 20 }, + { "id": "20", "x": 32, "y": 20 }, + { "id": "20", "x": 44, "y": 20 }, + { "id": "21", "x": 9, "y": 2 }, + { "id": "21", "x": 21, "y": 2 }, + { "id": "21", "x": 33, "y": 2 }, + { "id": "21", "x": 45, "y": 2 }, + { "id": "21", "x": 9, "y": 5 }, + { "id": "21", "x": 21, "y": 5 }, + { "id": "21", "x": 33, "y": 5 }, + { "id": "21", "x": 45, "y": 5 }, + { "id": "21", "x": 9, "y": 8 }, + { "id": "21", "x": 21, "y": 8 }, + { "id": "21", "x": 33, "y": 8 }, + { "id": "21", "x": 45, "y": 8 }, + { "id": "21", "x": 9, "y": 14 }, + { "id": "21", "x": 21, "y": 14 }, + { "id": "21", "x": 33, "y": 14 }, + { "id": "21", "x": 45, "y": 14 }, + { "id": "21", "x": 9, "y": 17 }, + { "id": "21", "x": 21, "y": 17 }, + { "id": "21", "x": 33, "y": 17 }, + { "id": "21", "x": 45, "y": 17 }, + { "id": "21", "x": 9, "y": 20 }, + { "id": "21", "x": 21, "y": 20 }, + { "id": "21", "x": 33, "y": 20 }, + { "id": "21", "x": 45, "y": 20 } + ], + "collider": false + } + ] +} diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_design.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_design.png" new file mode 100644 index 0000000..39b4203 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_design.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_floor.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_floor.png" new file mode 100644 index 0000000..61c088d Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_floor.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei-3.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei-3.png" new file mode 100644 index 0000000..b9ee1d9 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei-3.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_4.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_4.png" new file mode 100644 index 0000000..2b6f446 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_4.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_5.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_5.png" new file mode 100644 index 0000000..60052d8 Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/smoketrain_nei_5.png" differ diff --git "a/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/spritesheet.png" "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/spritesheet.png" new file mode 100644 index 0000000..b7f7d7c Binary files /dev/null and "b/teams/1324405-43003-\347\203\237\350\267\221\350\267\221/artifact/resources/map/spritesheet.png" differ