-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(filetree): rename package's namespace as
hrc
- Loading branch information
1 parent
2e5b7e8
commit a2477b2
Showing
28 changed files
with
81 additions
and
18 deletions.
There are no files selected for viewing
Binary file not shown.
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
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,2 @@ | ||
from .LibCore import * | ||
from . import rules |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 1 addition & 6 deletions
7
hydro_roll_core/rules/BaseRule/JudgeRule.py → hrc/rules/BaseRule/JudgeRule.py
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
2 changes: 1 addition & 1 deletion
2
hydro_roll_core/rules/BaseRule/__init__.py → hrc/rules/BaseRule/__init__.py
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
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 @@ | ||
from . import BaseRule |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Empty file.
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
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
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,69 @@ | ||
__rule_book__ = "BASIC ROLEPLAYING" | ||
|
||
# General Rule Pack Standard(GRPSv1) | ||
|
||
# 规则书剖析 | ||
|
||
# 共有的大类 | ||
# ============================ | ||
# judge role - 判定规则 | ||
# - 事件判定规则 | ||
# character card - 人物卡(属性) | ||
# playing time* - * | ||
|
||
|
||
# 可选的大类 | ||
# ---------------------------- | ||
# settings - 背景设定 | ||
# custom rule - 自定义规则 | ||
# - 特殊胜利手段(意外死亡、看月亮看死的等) | ||
# expansion rule - 拓展规则 | ||
# - coc 中的伤害价值、调整 | ||
# - 装备中的盾牌 | ||
# - 药水、符文等各种各样时尚小垃圾 | ||
|
||
# 不同的大类(举例) | ||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
# | ||
|
||
|
||
# 规则包剖析 | ||
|
||
# 根据细类区分 | ||
|
||
# 词条 - Wiki | ||
# 查询条目 - Query | ||
# 规定算法 - Algorithm | ||
|
||
# 游戏时长 - Duration | ||
# 战斗轮、追逐轮、行动轮 | ||
# 回合 | ||
# 幕间 | ||
# 战役 | ||
# 模组 | ||
|
||
# 判定规则 | ||
# - 属性|判定 规则 | ||
# - 技能判定规则 | ||
# - 自定义类判定规则 | ||
|
||
# 人物卡 | ||
# - 属性列表* | ||
# - 技能列表* | ||
# - 人物塑造 | ||
# - 姓名、年龄、种族、阵营 | ||
|
||
|
||
# ============================================== | ||
|
||
# MyRule | ||
from hrc.rules.BaseRule import JudgeRule | ||
|
||
class JudgeAttr(JudgeRule.Attribute): | ||
"""来自判定规则 - 属性判定 | ||
属性判定规则(模式)""" | ||
|
||
|
||
class JudgeCustom(JudgeRule.Custom): | ||
... |
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