remove mp

This commit is contained in:
bridge
2025-12-22 00:30:09 +08:00
parent abd349084d
commit 6e380f1161
6 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ from src.classes.event import Event
from src.classes.cultivation import Realm
from src.classes.story_teller import StoryTeller
from src.classes.tribulation import TribulationSelector
from src.classes.hp_and_mp import HP_MAX_BY_REALM
from src.classes.hp import HP_MAX_BY_REALM
from src.classes.effect import _merge_effects
# —— 配置:哪些"出发境界"会生成突破小故事global var——

View File

@@ -30,7 +30,7 @@ from src.classes.item import Item
from src.classes.weapon import Weapon
from src.classes.auxiliary import Auxiliary
from src.classes.magic_stone import MagicStone
from src.classes.hp_and_mp import HP, HP_MAX_BY_REALM
from src.classes.hp import HP, HP_MAX_BY_REALM
from src.classes.relation import Relation
from src.classes.sect import Sect
from src.classes.appearance import Appearance, get_random_appearance

View File

@@ -11,7 +11,7 @@ if TYPE_CHECKING:
from src.classes.avatar.core import Avatar
from src.classes.effect import _merge_effects, _evaluate_conditional_effect
from src.classes.hp_and_mp import HP_MAX_BY_REALM
from src.classes.hp import HP_MAX_BY_REALM
class EffectsMixin: