mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-21 19:33:28 -07:00
finish rename
This commit is contained in:
@@ -9,12 +9,12 @@ from .items import item_table, item_names, copy_ability_table, animal_friend_tab
|
|||||||
trap_item_table, copy_ability_access_table, star_item_weights, total_filler_weights, animal_friend_spawn_table,\
|
trap_item_table, copy_ability_access_table, star_item_weights, total_filler_weights, animal_friend_spawn_table,\
|
||||||
lookup_item_to_id
|
lookup_item_to_id
|
||||||
from .locations import location_table, KDL3Location, level_consumables, consumable_locations, star_locations
|
from .locations import location_table, KDL3Location, level_consumables, consumable_locations, star_locations
|
||||||
from .Names.AnimalFriendSpawns import animal_friend_spawns
|
from .names.animal_friend_spawns import animal_friend_spawns
|
||||||
from .Names.EnemyAbilities import vanilla_enemies, enemy_mapping, enemy_restrictive
|
from .names.enemy_abilities import vanilla_enemies, enemy_mapping, enemy_restrictive
|
||||||
from .regions import create_levels, default_levels
|
from .regions import create_levels, default_levels
|
||||||
from .options import KDL3Options, kdl3_option_groups
|
from .options import KDL3Options, kdl3_option_groups
|
||||||
from .presets import kdl3_options_presets
|
from .presets import kdl3_options_presets
|
||||||
from .Names import LocationName
|
from .names import location_name
|
||||||
from .room import KDL3Room
|
from .room import KDL3Room
|
||||||
from .rules import set_rules
|
from .rules import set_rules
|
||||||
from .rom import KDL3ProcedurePatch, get_base_rom_path, patch_rom, KDL3JHASH, KDL3UHASH
|
from .rom import KDL3ProcedurePatch, get_base_rom_path, patch_rom, KDL3JHASH, KDL3UHASH
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import typing
|
import typing
|
||||||
from BaseClasses import Location, Region
|
from BaseClasses import Location, Region
|
||||||
from .Names import LocationName
|
from .names import location_name
|
||||||
|
|
||||||
if typing.TYPE_CHECKING:
|
if typing.TYPE_CHECKING:
|
||||||
from .room import KDL3Room
|
from .room import KDL3Room
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ from typing import List
|
|||||||
from BaseClasses import OptionGroup
|
from BaseClasses import OptionGroup
|
||||||
from Options import DeathLinkMixin, Choice, Toggle, OptionDict, Range, PlandoBosses, DefaultOnToggle, \
|
from Options import DeathLinkMixin, Choice, Toggle, OptionDict, Range, PlandoBosses, DefaultOnToggle, \
|
||||||
PerGameCommonOptions
|
PerGameCommonOptions
|
||||||
from .Names import LocationName
|
from .names import location_name
|
||||||
|
|
||||||
|
|
||||||
class RemoteItems(DefaultOnToggle):
|
class RemoteItems(DefaultOnToggle):
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ from typing import TYPE_CHECKING, List, Dict, Optional, Union, Callable
|
|||||||
from BaseClasses import Region, CollectionState
|
from BaseClasses import Region, CollectionState
|
||||||
from worlds.generic.Rules import add_item_rule
|
from worlds.generic.Rules import add_item_rule
|
||||||
from .locations import KDL3Location
|
from .locations import KDL3Location
|
||||||
from .Names import LocationName
|
from .names import location_name
|
||||||
from .options import BossShuffle
|
from .options import BossShuffle
|
||||||
from .room import KDL3Room
|
from .room import KDL3Room
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from worlds.generic.Rules import set_rule, add_rule
|
from worlds.generic.Rules import set_rule, add_rule
|
||||||
from .Names import LocationName, EnemyAbilities
|
from .names import location_name, enemy_abilities
|
||||||
from .locations import location_table
|
from .locations import location_table
|
||||||
from .options import GoalSpeed
|
from .options import GoalSpeed
|
||||||
import typing
|
import typing
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
from . import KDL3TestBase
|
from . import KDL3TestBase
|
||||||
from worlds.generic import PlandoConnection
|
from worlds.generic import PlandoConnection
|
||||||
from ..Names import LocationName
|
from ..names import location_name
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user