mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-14 05:45:10 +00:00
feat: Add sv10 - Destined Rivals (#751)
This commit is contained in:
51
data/Scarlet & Violet/Destined Rivals/071.ts
Normal file
51
data/Scarlet & Violet/Destined Rivals/071.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ethan's Pichu",
|
||||
fr: "Pichu de Luth",
|
||||
de: "Klarins Pichu",
|
||||
it: "Pichu di Armonio",
|
||||
es: "Pichu de Eco",
|
||||
pt: "Pichu do Ethan",
|
||||
'es-mx': "Pichu de Ethan"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Zapping Draw",
|
||||
fr: "Pioche Électrocutante",
|
||||
de: "Kurzschlusszug",
|
||||
it: "Pesca Fulminante",
|
||||
es: "Robo Aturdidor",
|
||||
pt: "Compra Eletrizante",
|
||||
'es-mx': "Robochispazo"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
de: "Ziehe 1 Karte.",
|
||||
it: "Pesca una carta.",
|
||||
es: "Roba 1 carta.",
|
||||
pt: "Compre uma carta.",
|
||||
'es-mx': "Roba 1 carta."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user