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:

View File

@@ -39,7 +39,7 @@ class AvatarLoadMixin:
from src.classes.calendar import MonthStamp
from src.classes.cultivation import Realm, CultivationProgress
from src.classes.age import Age
from src.classes.hp_and_mp import HP
from src.classes.hp import HP
from src.classes.technique import techniques_by_id
from src.classes.item import items_by_id
from src.classes.weapon import weapons_by_id

View File

@@ -1,5 +1,5 @@
import pytest
from src.classes.hp_and_mp import HP
from src.classes.hp import HP
from src.classes.cultivation import Realm
from src.utils.distance import chebyshev_distance, manhattan_distance, euclidean_distance
from src.utils.id_generator import get_avatar_id