Paste #72665: Minos

Date: 2020/07/21 08:42:15 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


entering_minos:
    type: world
    events:
        on player enters necro:
        - narrate "You seem to hear something moving beneath."
        - wait 3
        - spawn blackguard_entity <player.location.within[5]>

blackguard_entity:
    type: entity
    entity_type: zombie
    has_ai: true
    equipment: blackguard_boots|blackguard_leggings|blackguard_chestplate|blackguard_helmet
    health: 20
    item_in_hand: blackguard_sword1
    item_in_offhand: blackguard_sword1

blackguard_sword1:
    type: item
    material: iron_sword
    display_name: Runic Spathos
    lore:
    - this sword emits a greenish gloom
    - and bears an unknown sigil.
    enchantments:
    - DAMAGE_ALL: 4

blackguard_chestplate:
    type: item
    material: leather_chestplate
    display_name: <BLACK>Runic Chestplate
    color: BLACK
    lore:
    - the material seems
    - oddly familiar.
    enchantments:
    - PROTECTION_ENVIRONMENTAL: 4

blackguard_boots:
    type: item
    material: leather_boots
    display_name: <BLACK>Runic Boots
    color: BLACK
    lore:
    - the material seems
    - oddly familiar.
    enchantments:
    - PROTECTION_ENVIRONMENTAL: 4

blackguard_leggings:
    type: item
    material: leather_leggings
    display_name: <BLACK>Runic Leggings
    color: BLACK
    lore:
    - the material seems
    - oddly familiar.
    enchantments:
    - PROTECTION_ENVIRONMENTAL: 4

blackguard_helmet:
    type: item
    material: leather_helmet
    display_name: <BLACK>Runic Helmet
    color: BLACK
    lore:
    - the material seems
    - oddly familiar.
    enchantments:
    - PROTECTION_ENVIRONMENTAL: 4