mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
61
data/Sword & Shield/Silver Tempest/045.ts
Normal file
61
data/Sword & Shield/Silver Tempest/045.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Phione",
|
||||
fr: "Phione",
|
||||
es: "Phione",
|
||||
it: "Phione",
|
||||
pt: "Phione",
|
||||
de: "Phione"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Sea Feast",
|
||||
fr: "Festin Océanique",
|
||||
es: "Festín Marino",
|
||||
it: "Festa del Mare",
|
||||
pt: "Banquete Marinho",
|
||||
de: "Meeresschmaus"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 3 Basic Water Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 3 Pokémon Water de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 3 Pokémon Water Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a tre Pokémon Base Water e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 3 Pokémon Water Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 3 Basis-Water-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Wave Splash",
|
||||
fr: "Grosse Vague",
|
||||
es: "Chapoteo Ondulante",
|
||||
it: "Schizzi d'Onda",
|
||||
pt: "Onda Borrifante",
|
||||
de: "Wellenplatscher"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user