mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-10 02:57:51 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
83 lines
1.2 KiB
TypeScript
83 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sinistea",
|
||
fr: "Théffroi",
|
||
es: "Sinistea",
|
||
it: "Sinistea",
|
||
pt: "Sinistea",
|
||
de: "Fatalitee"
|
||
},
|
||
|
||
illustrator: "Saya Tsuruta",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 30,
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Teatime",
|
||
fr: "Thérémonie",
|
||
es: "Hora del Té",
|
||
it: "Ora del Tè",
|
||
pt: "Hora do Chá",
|
||
de: "Teatime"
|
||
},
|
||
effect: {
|
||
en: "Each player draws 2 cards.",
|
||
fr: "Chaque joueur pioche 2 cartes.",
|
||
es: "Cada jugador roba 2 cartas.",
|
||
it: "Ciascun giocatore pesca due carte.",
|
||
pt: "Cada jogador compra 2 cartas.",
|
||
de: "Jeder Spieler zieht 2 Karten."
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "This Pokémon is said to have been born when a lonely spirit possessed a cold, leftover cup of tea."
|
||
},
|
||
|
||
dexId: [854]
|
||
}
|
||
|
||
export default card
|