mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 03:49:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
61
data/Scarlet & Violet/Stellar Crown/103.ts
Normal file
61
data/Scarlet & Violet/Stellar Crown/103.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Meltan",
|
||||
fr: "Meltan",
|
||||
es: "Meltan",
|
||||
it: "Meltan",
|
||||
pt: "Meltan",
|
||||
de: "Meltan"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Knickknack Carrying",
|
||||
fr: "Trimballe Bricoles",
|
||||
es: "Transporte de Chatarra",
|
||||
it: "Trasporto di Cianfrusaglie",
|
||||
pt: "Carregando Tranqueira",
|
||||
de: "Klimbimtransport"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a Pokémon Tool card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck une carte Outil Pokémon, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja 1 carta de Herramienta Pokémon, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo una carta Oggetto Pokémon, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por uma carta de Ferramenta Pokémon no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach 1 Pokémon-Ausrüstung, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user