1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00
Florian Bouillon 2f5f52b51c
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations

Signed-off-by: Avior <github@avior.me>

* refactor: Done Trainer kits

Signed-off-by: Avior <github@avior.me>
2021-11-16 12:44:58 +01:00

26 lines
398 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Black & White'
const dv1: Set = {
id: "dv1",
name: {
en: "Dragon Vault",
fr: "Coffre des Dragons",
it: "Tesoro dei Draghi",
de: "Drachengruft",
es: "Tesoro de Dragones" // NOTE: only went in the TCGO
},
serie: serie,
tcgOnline: "DRV",
cardCount: {
official: 20
},
releaseDate: "2012-10-05"
}
export default dv1