Skip to content

Instantly share code, notes, and snippets.

@Brahyt
Created November 8, 2019 19:18
Show Gist options
  • Select an option

  • Save Brahyt/31f8505dce669b1542aa334ca6cdf7da to your computer and use it in GitHub Desktop.

Select an option

Save Brahyt/31f8505dce669b1542aa334ca6cdf7da to your computer and use it in GitHub Desktop.
fasef
const STORE = {
characters: [
{
id: 1,
name: 'opha kit',
race: 'Human',
class: 'Arcane',
sub_class: 'Wizard',
xp: 3,
hand_size: 6,
health: 5,
equip_pack: {
arcane: 5,
martial: 1,
devotion: 1,
deception: 1
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 2,
name: 'weeddo krone',
race: 'Elf',
class: 'Arcane',
sub_class: 'Wizard',
xp: 3,
hand_size: 6,
health: 5,
equip_pack: {
arcane: 5,
martial: 1,
devotion: 1,
deception: 1
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 3,
name: 'Plateeque Fux',
race: 'Half-Elf',
class: 'Arcane',
sub_class: 'Wizard',
xp: 3,
hand_size: 6,
health: 5,
equip_pack: {
arcane: 5,
martial: 1,
devotion: 1,
deception: 1
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 4,
name: 'heeps tooker',
race: 'Half-Orc',
class: 'Arcane',
sub_class: 'Wizard',
xp: 3,
hand_size: 6,
health: 5,
equip_pack: {
arcane: 5,
martial: 1,
devotion: 1,
deception: 1
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 5,
name: 'gree pruck',
race: 'Human',
class: 'Martial',
sub_class: 'Fighter',
xp: 3,
hand_size: 6,
health: 5,
equip_pack: {
arcane: 1,
martial: 5,
devotion: 2,
deception: 1
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 6,
name: 'Evan Plank',
race: 'Sun Elf',
class: 'Deception',
sub_class: 'Rogue',
xp: 2,
hand_size: 7,
health: 3,
equip_pack: {
arcane: 2,
martial: 1,
devotion: 1,
deception: 5
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
{
id: 7,
name: 'Creedo Sunwall',
race: 'Human',
class: 'Devotion',
sub_class: 'Cleric',
xp: 2,
hand_size: 7,
health: 3,
equip_pack: {
arcane: 2,
martial: 1,
devotion: 1,
deception: 5
},
feature1_id: 1,
feature2_id: 2,
feature3_id: 3,
feature4_id: 4,
feature5_id: 5,
feature6_id: 6
},
],
party: [
{
name: 'awesome party',
player_ids: [
1,
2,
3,
4
]
},
{
name: 'Meat Grinders!',
player_ids: [
2,
7,
4,
5
]
}
],
features: [
{
id: 1,
title: 'Acolyte',
description: 'Once per game, during your turn: Exchange 2 of any iton for 1 devotion icon.',
cost: 'Background'
},
{
id: 2,
title: 'Criminal',
description: 'Once per game, during your turn: Discard one card for 1 gold.',
cost: 'Background'
},
{
id: 3,
title: 'Entertainer',
description: 'Once per game, during your turn: Discard a card and you may permanently ignore a Requires X Play/Purchase/Class on one card',
cost: 'Background'
},
{
id: 4,
title: 'Folk Hero',
description: 'Once per game, during your turn Exchange 2HP for 1 Gold.',
cost: 'Background'
},
{
id: 5,
title: 'Guild Artisan',
description: 'Once per game, during your turn: Exchange 2 any icon for 1 deception icon',
cost: 'Background'
},
{
id: 6,
title: 'Hermit',
description: 'Once per game, during your turn: Exchange 1 gold to draw one card.',
cost: 'Background'
},
{
id: 7,
title: 'Noble',
description: 'Once per game, during your turn: Exchange 1 gold for 1 HP.',
cost: 'Background'
},
{
id: 8,
title: 'Outlander',
description: 'Once per game, during your turn: Discard one card for 1 HP.',
cost: 'Background'
},
{
id: 9,
title: 'Sage',
description: 'Once per game, during your turn: Exchange 2 any icon for 1 arcane icon',
cost: 'Background'
}
]
}
export {
STORE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment