├── .gitignore ├── .readthedocs.yaml ├── Makefile ├── docs ├── .static │ ├── c01 │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── c02 │ │ └── Special_Summer_Monster_1.jpg │ ├── c03 │ │ ├── 1.png │ │ └── 2.png │ ├── c05 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 2019_1.png │ │ ├── 2019_2.png │ │ ├── 2019_3.png │ │ ├── 2019_4.png │ │ ├── 2020_1.jpg │ │ ├── 2020_2.jpg │ │ ├── 2020_3.jpg │ │ ├── 2020_4.jpg │ │ ├── 3.png │ │ └── 4.png │ ├── c06 │ │ ├── 2017_1.jpg │ │ └── 2017_2.png │ ├── c07 │ │ ├── Altergeist_1.jpeg │ │ ├── Altergeist_2.jpeg │ │ ├── Altergeist_3.jpeg │ │ ├── Altergeist_4.jpeg │ │ ├── Altergeist_5.png │ │ ├── Altergeist_6.png │ │ └── Altergeist_7.png │ ├── css │ │ └── custom.css │ ├── epub_cover.png │ ├── favicon.ico │ ├── js │ │ └── custom.js │ ├── logo.webp │ └── pdf_cover.png ├── .templates │ └── footer.html ├── c01 │ ├── TCG规则修订:不再按照触发顺序排列连锁.rst │ ├── 大师规则(2017)变更点.rst │ └── 大师规则(2020年4月版)变更点.rst ├── c02 │ ├── 优先权.rst │ ├── 卡片·效果的发动.rst │ ├── 基本用语.rst │ ├── 怪兽的效果分类.rst │ ├── 特殊召唤怪兽、召唤限制和苏生限制.rst │ ├── 进入连锁·不入连锁的特殊召唤.rst │ └── 连锁基础.rst ├── c03 │ ├── 卡片的抗性.rst │ ├── 只能有○○存在.rst │ ├── 复制.rst │ ├── 战斗阶段流程.rst │ ├── 攻守计算.rst │ ├── 无效.rst │ ├── 特定效果的处理方法.rst │ ├── 装备卡.rst │ ├── 誓约.rst │ ├── 诱发类效果.rst │ └── 里侧·一时除外.rst ├── c04 │ ├── 不能使用.rst │ ├── 冰剑龙 幻冰龙.rst │ ├── 灰流丽·星尘龙.rst │ ├── 王家长眠之谷.rst │ └── 饼蛙.rst ├── c05 │ ├── 2018年游戏王OCG规则检定测试.rst │ ├── 2019年游戏王OCG规则检定测试.rst │ ├── 2020年游戏王OCG规则检定测试.rst │ ├── 2021年游戏王OCG规则检定测试.rst │ ├── 规则测试2017.rst │ └── 规则测试2020.rst ├── chapters │ ├── p01_rule_revision.rst │ ├── p02_ocg_rule_base.rst │ ├── p03_ocg_rule_more.rst │ ├── p04_ocg_card_rule.rst │ └── p05_ocg_rule_test.rst ├── conf.py ├── index.rst ├── pdf_index.rst └── 前言.rst ├── make.bat ├── readme.md ├── requirements.txt ├── script.py └── valid_card_urls.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by venv; see https://docs.python.org/3/library/venv.html 2 | * 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/Makefile -------------------------------------------------------------------------------- /docs/.static/c01/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/1.jpg -------------------------------------------------------------------------------- /docs/.static/c01/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/10.jpg -------------------------------------------------------------------------------- /docs/.static/c01/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/2.jpg -------------------------------------------------------------------------------- /docs/.static/c01/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/3.png -------------------------------------------------------------------------------- /docs/.static/c01/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/4.png -------------------------------------------------------------------------------- /docs/.static/c01/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/5.png -------------------------------------------------------------------------------- /docs/.static/c01/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/6.png -------------------------------------------------------------------------------- /docs/.static/c01/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/7.jpg -------------------------------------------------------------------------------- /docs/.static/c01/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/8.jpg -------------------------------------------------------------------------------- /docs/.static/c01/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c01/9.jpg -------------------------------------------------------------------------------- /docs/.static/c02/Special_Summer_Monster_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c02/Special_Summer_Monster_1.jpg -------------------------------------------------------------------------------- /docs/.static/c03/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c03/1.png -------------------------------------------------------------------------------- /docs/.static/c03/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c03/2.png -------------------------------------------------------------------------------- /docs/.static/c05/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/1.png -------------------------------------------------------------------------------- /docs/.static/c05/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2.png -------------------------------------------------------------------------------- /docs/.static/c05/2019_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2019_1.png -------------------------------------------------------------------------------- /docs/.static/c05/2019_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2019_2.png -------------------------------------------------------------------------------- /docs/.static/c05/2019_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2019_3.png -------------------------------------------------------------------------------- /docs/.static/c05/2019_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2019_4.png -------------------------------------------------------------------------------- /docs/.static/c05/2020_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2020_1.jpg -------------------------------------------------------------------------------- /docs/.static/c05/2020_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2020_2.jpg -------------------------------------------------------------------------------- /docs/.static/c05/2020_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2020_3.jpg -------------------------------------------------------------------------------- /docs/.static/c05/2020_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/2020_4.jpg -------------------------------------------------------------------------------- /docs/.static/c05/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/3.png -------------------------------------------------------------------------------- /docs/.static/c05/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c05/4.png -------------------------------------------------------------------------------- /docs/.static/c06/2017_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c06/2017_1.jpg -------------------------------------------------------------------------------- /docs/.static/c06/2017_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c06/2017_2.png -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_1.jpeg -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_2.jpeg -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_3.jpeg -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_4.jpeg -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_5.png -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_6.png -------------------------------------------------------------------------------- /docs/.static/c07/Altergeist_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/c07/Altergeist_7.png -------------------------------------------------------------------------------- /docs/.static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/css/custom.css -------------------------------------------------------------------------------- /docs/.static/epub_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/epub_cover.png -------------------------------------------------------------------------------- /docs/.static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/favicon.ico -------------------------------------------------------------------------------- /docs/.static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/js/custom.js -------------------------------------------------------------------------------- /docs/.static/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/logo.webp -------------------------------------------------------------------------------- /docs/.static/pdf_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.static/pdf_cover.png -------------------------------------------------------------------------------- /docs/.templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/.templates/footer.html -------------------------------------------------------------------------------- /docs/c01/TCG规则修订:不再按照触发顺序排列连锁.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c01/TCG规则修订:不再按照触发顺序排列连锁.rst -------------------------------------------------------------------------------- /docs/c01/大师规则(2017)变更点.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c01/大师规则(2017)变更点.rst -------------------------------------------------------------------------------- /docs/c01/大师规则(2020年4月版)变更点.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c01/大师规则(2020年4月版)变更点.rst -------------------------------------------------------------------------------- /docs/c02/优先权.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/优先权.rst -------------------------------------------------------------------------------- /docs/c02/卡片·效果的发动.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/卡片·效果的发动.rst -------------------------------------------------------------------------------- /docs/c02/基本用语.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/基本用语.rst -------------------------------------------------------------------------------- /docs/c02/怪兽的效果分类.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/怪兽的效果分类.rst -------------------------------------------------------------------------------- /docs/c02/特殊召唤怪兽、召唤限制和苏生限制.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/特殊召唤怪兽、召唤限制和苏生限制.rst -------------------------------------------------------------------------------- /docs/c02/进入连锁·不入连锁的特殊召唤.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/进入连锁·不入连锁的特殊召唤.rst -------------------------------------------------------------------------------- /docs/c02/连锁基础.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c02/连锁基础.rst -------------------------------------------------------------------------------- /docs/c03/卡片的抗性.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/卡片的抗性.rst -------------------------------------------------------------------------------- /docs/c03/只能有○○存在.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/只能有○○存在.rst -------------------------------------------------------------------------------- /docs/c03/复制.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/复制.rst -------------------------------------------------------------------------------- /docs/c03/战斗阶段流程.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/战斗阶段流程.rst -------------------------------------------------------------------------------- /docs/c03/攻守计算.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/攻守计算.rst -------------------------------------------------------------------------------- /docs/c03/无效.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/无效.rst -------------------------------------------------------------------------------- /docs/c03/特定效果的处理方法.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/特定效果的处理方法.rst -------------------------------------------------------------------------------- /docs/c03/装备卡.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/装备卡.rst -------------------------------------------------------------------------------- /docs/c03/誓约.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/誓约.rst -------------------------------------------------------------------------------- /docs/c03/诱发类效果.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/诱发类效果.rst -------------------------------------------------------------------------------- /docs/c03/里侧·一时除外.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c03/里侧·一时除外.rst -------------------------------------------------------------------------------- /docs/c04/不能使用.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c04/不能使用.rst -------------------------------------------------------------------------------- /docs/c04/冰剑龙 幻冰龙.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c04/冰剑龙 幻冰龙.rst -------------------------------------------------------------------------------- /docs/c04/灰流丽·星尘龙.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c04/灰流丽·星尘龙.rst -------------------------------------------------------------------------------- /docs/c04/王家长眠之谷.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c04/王家长眠之谷.rst -------------------------------------------------------------------------------- /docs/c04/饼蛙.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c04/饼蛙.rst -------------------------------------------------------------------------------- /docs/c05/2018年游戏王OCG规则检定测试.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/2018年游戏王OCG规则检定测试.rst -------------------------------------------------------------------------------- /docs/c05/2019年游戏王OCG规则检定测试.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/2019年游戏王OCG规则检定测试.rst -------------------------------------------------------------------------------- /docs/c05/2020年游戏王OCG规则检定测试.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/2020年游戏王OCG规则检定测试.rst -------------------------------------------------------------------------------- /docs/c05/2021年游戏王OCG规则检定测试.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/2021年游戏王OCG规则检定测试.rst -------------------------------------------------------------------------------- /docs/c05/规则测试2017.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/规则测试2017.rst -------------------------------------------------------------------------------- /docs/c05/规则测试2020.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/c05/规则测试2020.rst -------------------------------------------------------------------------------- /docs/chapters/p01_rule_revision.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/chapters/p01_rule_revision.rst -------------------------------------------------------------------------------- /docs/chapters/p02_ocg_rule_base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/chapters/p02_ocg_rule_base.rst -------------------------------------------------------------------------------- /docs/chapters/p03_ocg_rule_more.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/chapters/p03_ocg_rule_more.rst -------------------------------------------------------------------------------- /docs/chapters/p04_ocg_card_rule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/chapters/p04_ocg_card_rule.rst -------------------------------------------------------------------------------- /docs/chapters/p05_ocg_rule_test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/chapters/p05_ocg_rule_test.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/pdf_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/pdf_index.rst -------------------------------------------------------------------------------- /docs/前言.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/docs/前言.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/make.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | 这是1个关于游戏王规则调整的文档项目。 2 | 3 | [点击这里](https://ocg-rule.readthedocs.io)阅读。 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/script.py -------------------------------------------------------------------------------- /valid_card_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucays/OCG-Rule-documentation/HEAD/valid_card_urls.txt --------------------------------------------------------------------------------