aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rule/BaseRule/CharacterCard.py
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-06-28 11:33:07 +0800
committer简律纯 <i@jyunko.cn>2024-06-28 11:33:07 +0800
commit2827c09958aa6778e4499d34f5949d6f5677f2c6 (patch)
treef24a313500def2e24ebba91ec5ab41a99ff2f35d /hrc/rule/BaseRule/CharacterCard.py
parent0f74df0e709672118f06cec1c6fdd02ccfa31e63 (diff)
downloadHydroRollCore-2827c09958aa6778e4499d34f5949d6f5677f2c6.tar.gz
HydroRollCore-2827c09958aa6778e4499d34f5949d6f5677f2c6.zip
refactor: hrc.rules - > hrc.rule
Diffstat (limited to 'hrc/rule/BaseRule/CharacterCard.py')
-rw-r--r--hrc/rule/BaseRule/CharacterCard.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/hrc/rule/BaseRule/CharacterCard.py b/hrc/rule/BaseRule/CharacterCard.py
new file mode 100644
index 0000000..6d09e5a
--- /dev/null
+++ b/hrc/rule/BaseRule/CharacterCard.py
@@ -0,0 +1,22 @@
+import dataclasses
+from dataclasses import dataclass
+from typing import Literal, Optional, Union
+
+
+@dataclass
+class Custom(object):
+ """Docstring for Custom."""
+ property: type
+
+
+class Attribute(Custom):
+ ...
+
+
+class Skill(Custom):
+ ...
+
+
+class Information(Custom):
+ ...
+