-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 测试全通过 * 漏了CardDefs.xml * flake8 * game_action and targeted_action * dbf * 上古之神的低语 * 英雄皮肤技能 * 卡拉赞之夜 * 添加了: `Moat_Lurker/沟渠潜伏者`, `Ivory Knight/象牙骑士`, `Prince Malchezaar/玛克扎尔王子`, `Silverware Golem/镀银魔像` * 详细的修改信息 1. Moat_Lurker, save play target object forever / 沟渠潜伏者, 将会永久存储Target对象 2. Ivory Knight, modify discover action, callback will trigger after choice / 象牙骑士, 修改了发现动作,回调方法将会在选择后触发 3. Prince Malchezaar, add game start action and deck event trigger / 玛克扎尔王子, 增加游戏开始动作以及卡组事件触发 4. Silverware Golem, summon a new minion instead of itself / 镀银魔像, 召回一个新随从而不是其自身 * 龙争虎斗加基森 * Rewrite kazakus. Impl Card description for kazakus potions and jade golem * 代码格式化 * Jade Golem card description / 青玉魔像卡牌描述 * Add / 增加深渊魔物 * 部分卡片效果变更, 提升测试稳定性 * 泰兰德英雄技能错误 * 移除部分中文注释 * add collectible args for tests/implemented.py * 卡片描述中受法强影响 * Standard format * 勇闯安戈洛: 所有中立卡牌. 实现了进化, 上回合打出元素 * 勇闯安戈洛: 德鲁伊, 猎人, 法师. 实现了任务, 套牌之外, 额外的回合 * 修复沉默Bug * 恢复部分卡片修改 * github action * fix tox * upload coverage * change badges name * fix #467 * fix #462 * fix some review bug * 勇闯安戈洛全卡 --------- Co-authored-by: He Hao <[email protected]>
- Loading branch information
Showing
165 changed files
with
172,523 additions
and
5,074 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Build | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.10'] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
python -m pip install . | ||
- name: Test with tox | ||
run: tox | ||
- uses: codecov/codecov-action@v3 | ||
env: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
__pycache__ | ||
CardDefs.xml | ||
build | ||
fireplace.egg-info | ||
coverage.xml | ||
|
||
*.pyc | ||
.tox | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include fireplace/cards/CardDefs.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.