Created
November 29, 2018 18:18
-
-
Save lorecrafting/c6b144d91687ee2d7381ae8eb012a9c2 to your computer and use it in GitHub Desktop.
Ex_venture redux store snapshot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
roomInfo: { | |
zone: { | |
name: 'Bandit Hideout', | |
id: 1 | |
}, | |
y: 1, | |
x: 4, | |
shops: [], | |
players: [], | |
npcs: [ | |
{ | |
status_line: '{npc}Bran{/npc} ({quest}!{/quest}) is here.', | |
name: 'Bran', | |
id: 1 | |
} | |
], | |
name: 'Entrance', | |
map_layer: 1, | |
items: [ | |
{ | |
name: 'Short Sword', | |
id: 1 | |
}, | |
{ | |
name: 'Short Sword', | |
id: 1 | |
}, | |
{ | |
name: 'Leather Armor', | |
id: 2 | |
}, | |
{ | |
name: 'Elven armor', | |
id: 3 | |
} | |
], | |
id: 1, | |
exits: [ | |
{ | |
room_id: 2, | |
direction: 'west' | |
}, | |
{ | |
room_id: 8, | |
direction: 'east' | |
} | |
], | |
ecology: 'default', | |
description: 'A large square room with rough hewn walls. ' | |
}, | |
zoneMap: '{"map":"Bandit Hideout\\n\\n \\n {map:default}[ ]{/map:default} - {map:default}[ ]{/map:default} - {map:default}[X]{/map:default} -\\n | \\n {map:default}[ ]{/map:default} \\n | \\n - {map:default}[ ]{/map:default} - {map:default}[ ]{/map:default}"}', | |
characterInfo: '{"name":"asdfasd","level":2,"class":{"name":"Fighter"}}', | |
characterVitals: '{"willpower":11,"vitality":11,"strength":12,"skill_points":55,"max_skill_points":55,"max_health_points":56,"max_endurance_points":55,"intelligence":11,"health_points":56,"experience_towards_level":564,"endurance_points":55,"awareness":11,"agility":11}', | |
characterSkills: [ | |
{ | |
points: 1, | |
name: 'Slash', | |
key: '57ff5fb4-07cf-4a10-b5c8-109ce7d29c9b', | |
cooldown: 3000, | |
command: 'slash' | |
}, | |
{ | |
points: 1, | |
name: 'Heal', | |
key: 'ef10fd4f-75c2-48c7-b87e-e8b8e931b15c', | |
cooldown: 3000, | |
command: 'heal' | |
}, | |
{ | |
key: 'placeholder-2' | |
}, | |
{ | |
key: 'placeholder-3' | |
}, | |
{ | |
key: 'placeholder-4' | |
}, | |
{ | |
key: 'placeholder-5' | |
}, | |
{ | |
key: 'placeholder-6' | |
}, | |
{ | |
key: 'placeholder-7' | |
}, | |
{ | |
key: 'placeholder-8' | |
}, | |
{ | |
key: 'placeholder-9' | |
}, | |
{ | |
key: 'placeholder-10' | |
}, | |
{ | |
key: 'placeholder-11' | |
}, | |
{ | |
key: 'placeholder-12' | |
} | |
], | |
characterPrompt: { | |
hp: { | |
current: '56', | |
max: '56' | |
}, | |
sp: { | |
current: '55', | |
max: '55' | |
}, | |
ep: { | |
current: '55', | |
max: '55' | |
}, | |
xp: '564' | |
}, | |
eventStream: [ | |
{ | |
sent_at: '2018-11-29T05:33:00.417625Z', | |
message: '\nExVenture v0.27.0\nWelcome to the {white}MUD{/white}\n' | |
}, | |
{ | |
sent_at: '2018-11-29T05:33:00.424176Z', | |
message: '\nWelcome, asdfasd!\n\nThanks for checking out the game!\n\n' | |
}, | |
{ | |
sent_at: '2018-11-29T05:33:00.425232Z', | |
message: '\n{command send=\'Sign In\'}[Press enter to continue]{/command}\n' | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment