mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
feat: Implement Character Tutorial
This commit is contained in:
12
game_server/resource/configdb/general_activity.py
Normal file
12
game_server/resource/configdb/general_activity.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from dataclasses import dataclass
|
||||
from game_server.resource.base_resource import BaseResource
|
||||
from game_server.resource.decorators import GameResource
|
||||
|
||||
@dataclass
|
||||
@GameResource("resources/ExcelOutputAsset/GeneralActivity.json")
|
||||
class GeneralActivityData(BaseResource):
|
||||
AcitivityID: int
|
||||
Series: int
|
||||
|
||||
def get_index(self) -> str:
|
||||
return str(self.AcitivityID)
|
||||
@@ -0,0 +1,12 @@
|
||||
from dataclasses import dataclass
|
||||
from game_server.resource.base_resource import BaseResource
|
||||
from game_server.resource.decorators import GameResource
|
||||
|
||||
@dataclass
|
||||
@GameResource("resources/ExcelOutputAsset/GeneralActivityStageGroup.json")
|
||||
class GeneralActivityStageGroupData(BaseResource):
|
||||
AcitivityID: int
|
||||
StageGroupID: int
|
||||
|
||||
def get_index(self) -> str:
|
||||
return str(self.AcitivityID)
|
||||
Reference in New Issue
Block a user