mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
61
data/Scarlet & Violet/SVP Black Star Promos/024.ts
Normal file
61
data/Scarlet & Violet/SVP Black Star Promos/024.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Growlithe",
|
||||
fr: "Caninos",
|
||||
es: "Growlithe",
|
||||
it: "Growlithe",
|
||||
pt: "Growlithe",
|
||||
de: "Fukano"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Stoke",
|
||||
fr: "Attisement",
|
||||
es: "Atizador",
|
||||
it: "Attizzatoio",
|
||||
pt: "Carregar",
|
||||
de: "Anheizen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Basic Fire Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Fire de base, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Fire Básica y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia base Fire e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Fire Básica no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 2 Basis-Fire-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Fire Claws",
|
||||
fr: "Griffes Enflammées",
|
||||
es: "Garras de Fuego",
|
||||
it: "Artigli Infuocati",
|
||||
pt: "Garras de Fogo",
|
||||
de: "Feuerkrallen"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user