Added some events / characters
This commit is contained in:
@@ -1,11 +1,21 @@
|
||||
import type { Character } from '@/models/Characters'
|
||||
|
||||
export const charactersList: Character[] = [
|
||||
// Player characters
|
||||
/**
|
||||
* Player characters
|
||||
*/
|
||||
// "Les Milles Cages"
|
||||
{ name: 'Sulvan Trois-Barbes', birth: { day: 20, month: 3, year: 3169 } },
|
||||
{ name: 'Vascylly', birth: { day: 3, month: 5, year: 3181 } },
|
||||
{ name: 'Tara Belyus', birth: { day: 14, month: 9, year: 3186 } },
|
||||
// "Les Cloches de Cantane"
|
||||
{ name: 'Malik', birth: { day: 22, month: 8, year: 3181 } },
|
||||
{ name: 'Elie', birth: { day: 5, month: 6, year: 3192 } },
|
||||
{ name: 'Clayron', birth: { day: 3, month: 5, year: 3178 } },
|
||||
|
||||
/**
|
||||
* NPC
|
||||
*/
|
||||
// Counts of the Alliance
|
||||
{ name: 'Alfrid de Lagarde', birth: { day: 29, month: 7, year: 3193 } },
|
||||
{ name: 'Alaric de Lagarde', birth: { day: 23, month: 8, year: 3192 } },
|
||||
@@ -42,5 +52,19 @@ export const charactersList: Character[] = [
|
||||
{ name: 'Anastael Simon', birth: { day: 32, month: 2, year: 3166 } },
|
||||
{ name: 'Grestain', birth: { day: 9, month: 2, year: 3162 } },
|
||||
{ name: 'Lucien Malanth', birth: { day: 31, month: 4, year: 3167 } },
|
||||
{ name: 'Tivian Rodhus', birth: { day: 13, month: 3, year: 3157 } }
|
||||
{ name: 'Tivian Rodhus', birth: { day: 13, month: 3, year: 3157 } },
|
||||
|
||||
// "Les Cloches de Cantane"
|
||||
{
|
||||
name: 'Bénédicte Vaht',
|
||||
description: "Moine d'Ikami ayant entrepris la construction du Pilier Blanc de Cantane",
|
||||
birth: { day: 28, month: 6, year: 3139 }
|
||||
},
|
||||
{
|
||||
name: 'Taleb Vaht',
|
||||
description:
|
||||
"Fils de Bénédicte, il s'est engagé auprès des Étincelles comme alchimiste artificier.",
|
||||
birth: { day: 9, month: 1, year: 3180 },
|
||||
death: { day: 28, month: 7, year: 3209 }
|
||||
}
|
||||
]
|
||||
|
||||
@@ -76,7 +76,7 @@ export const regularEvents: CalendarEvent[] = [
|
||||
},
|
||||
{
|
||||
title: '1ère disparation à Cantane',
|
||||
description: 'Première victime de la série de disparitions qui affecte Cantane',
|
||||
description: "Taleb Vaht décède dans une grotte à la suite d'une attaque d'ischiels enragées.",
|
||||
date: { day: 28, month: 7, year: 3209 },
|
||||
category: 'mort',
|
||||
hidden: true
|
||||
@@ -108,5 +108,13 @@ export const regularEvents: CalendarEvent[] = [
|
||||
date: { day: 22, month: 8, year: 3209 },
|
||||
category: 'mort',
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
title: 'Grande Banque Minérale de Cantane',
|
||||
description:
|
||||
'Les artisans et mineurs de Rougefer se réunissent à Cantane pour vendre le fruit de leur dur labeur.',
|
||||
date: { day: 23, month: 8, year: 3209 },
|
||||
category: 'inauguration',
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user