aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/hrc/rule/BaseRule
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-01-04 22:38:23 +0800
committerHsiangNianian <i@jyunko.cn>2025-01-04 22:38:23 +0800
commitc990518cb533a793399e44edbb4bc036342c7175 (patch)
tree8e2bd0f833b803a73dea7d88e7c294cf3d078d4d /src/hrc/rule/BaseRule
parentbc57c1410c08323ba37114082d0fe609fafc2c5d (diff)
downloadHydroRollCore-c990518cb533a793399e44edbb4bc036342c7175.tar.gz
HydroRollCore-c990518cb533a793399e44edbb4bc036342c7175.zip
feat(core): Initialize core components and configuration modelsHEADmain
Diffstat (limited to 'src/hrc/rule/BaseRule')
-rw-r--r--src/hrc/rule/BaseRule/CharacterCard.py17
-rw-r--r--src/hrc/rule/BaseRule/CustomRule.py0
-rw-r--r--src/hrc/rule/BaseRule/Wiki.py0
-rw-r--r--src/hrc/rule/BaseRule/__init__.py3
4 files changed, 20 insertions, 0 deletions
diff --git a/src/hrc/rule/BaseRule/CharacterCard.py b/src/hrc/rule/BaseRule/CharacterCard.py
new file mode 100644
index 0000000..2baea48
--- /dev/null
+++ b/src/hrc/rule/BaseRule/CharacterCard.py
@@ -0,0 +1,17 @@
+from dataclasses import dataclass
+
+
+@dataclass
+class Custom(object):
+ """Docstring for Custom."""
+
+ property: type
+
+
+class Attribute(Custom): ...
+
+
+class Skill(Custom): ...
+
+
+class Information(Custom): ...
diff --git a/src/hrc/rule/BaseRule/CustomRule.py b/src/hrc/rule/BaseRule/CustomRule.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/hrc/rule/BaseRule/CustomRule.py
diff --git a/src/hrc/rule/BaseRule/Wiki.py b/src/hrc/rule/BaseRule/Wiki.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/hrc/rule/BaseRule/Wiki.py
diff --git a/src/hrc/rule/BaseRule/__init__.py b/src/hrc/rule/BaseRule/__init__.py
new file mode 100644
index 0000000..fdde86c
--- /dev/null
+++ b/src/hrc/rule/BaseRule/__init__.py
@@ -0,0 +1,3 @@
+from . import CharacterCard # noqa: F401
+from . import CustomRule # noqa: F401
+from . import Wiki # noqa: F401