From 3e335190cf71ecb413be484c95f714738928601a Mon Sep 17 00:00:00 2001 From: Alexis <35.alexis.pele@gmail.com> Date: Fri, 12 Apr 2024 16:43:04 +0200 Subject: [PATCH] Added some events / characters --- src/data/Characters.ts | 28 ++++++++++++++++++++++++++-- src/data/Events.ts | 10 +++++++++- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/src/data/Characters.ts b/src/data/Characters.ts index 54d52aa..7ca243f 100644 --- a/src/data/Characters.ts +++ b/src/data/Characters.ts @@ -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 } + } ] diff --git a/src/data/Events.ts b/src/data/Events.ts index d35ae41..045d908 100644 --- a/src/data/Events.ts +++ b/src/data/Events.ts @@ -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 } ]