Skip to content

Commit

Permalink
#1634 Added new MDT templates/types to allow for importing of certain…
Browse files Browse the repository at this point in the history
… dungeon's mappings
  • Loading branch information
Wotuu committed May 1, 2023
1 parent 7c88f75 commit dfbdd88
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/Logic/MDT/Entity/MDTMapPOI.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,31 @@ class MDTMapPOI implements Arrayable
{
public const TEMPLATE_MAP_LINK_PIN = 'MapLinkPinTemplate';
public const TEMPLATE_DEATH_RELEASE_PIN = 'DeathReleasePinTemplate';
// Ny'alotha spires
public const TEMPLATE_VIGNETTE_PIN = 'VignettePinTemplate';

public const ALL_TEMPLATES = [
self::TEMPLATE_MAP_LINK_PIN,
self::TEMPLATE_DEATH_RELEASE_PIN,
self::TEMPLATE_VIGNETTE_PIN,
];

public const TYPE_MAP_LINK = 'mapLink';
public const TYPE_GRAVEYARD = 'graveyard';
public const TYPE_GENERAL_NOTE = 'generalNote';
public const TYPE_ZOOM = 'zoom';
public const TYPE_IRON_DOCKS_IRON_STAR = 'ironDocksIronStar';
public const TYPE_NYALOTHA_SPIRE = 'nyalothaSpire';
public const TYPE_THE_UNDERROT_SKIP = 'tuSkip';

public const ALL_TYPES = [
self::TYPE_MAP_LINK,
self::TYPE_GRAVEYARD,
self::TYPE_GENERAL_NOTE,
self::TYPE_ZOOM,
self::TYPE_IRON_DOCKS_IRON_STAR,
self::TYPE_NYALOTHA_SPIRE,
self::TYPE_THE_UNDERROT_SKIP,
];

private int $subLevel;
Expand Down

0 comments on commit dfbdd88

Please sign in to comment.