feat(content): migrate ItemType, seed Räuberabzeichen/Grenzwacht/turn-ins, zero direct monster rewards
This commit is contained in:
25
apps/api/src/database/seeds/reputation-content.ts
Normal file
25
apps/api/src/database/seeds/reputation-content.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export const BORDER_GUARD_FACTION_ID = '80000000-0000-4000-8000-000000000001';
|
||||
|
||||
export interface SeedReputationFaction {
|
||||
id: string;
|
||||
key: string;
|
||||
name: string;
|
||||
description: string;
|
||||
regionKey: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
// Only Grenzwacht is seeded and usable in Slice 0.6.5 (spec §8). Dämmerjäger
|
||||
// ('dusk-hunters') and Letzte Wacht ('last-watch') are future-region keys,
|
||||
// intentionally not seeded yet.
|
||||
export const REPUTATION_FACTIONS: SeedReputationFaction[] = [
|
||||
{
|
||||
id: BORDER_GUARD_FACTION_ID,
|
||||
key: 'border-guard',
|
||||
name: 'Grenzwacht',
|
||||
description:
|
||||
'Die letzten organisierten Wächter der Aschenfelder, die verbliebene Handelsrouten und Außenposten schützen.',
|
||||
regionKey: 'ashen-fields',
|
||||
enabled: true,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user