mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-02 16:39:18 +00:00
feat: Add sv10 - Destined Rivals (#751)
This commit is contained in:
67
data/Scarlet & Violet/Destined Rivals/098.ts
Normal file
67
data/Scarlet & Violet/Destined Rivals/098.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Probopass",
|
||||
fr: "Tarinorme",
|
||||
de: "Voluminas",
|
||||
it: "Probopass",
|
||||
es: "Probopass",
|
||||
pt: "Probopass",
|
||||
'es-mx': "Probopass"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Power Gem",
|
||||
fr: "Rayon Gemme",
|
||||
de: "Juwelenkraft",
|
||||
it: "Gemmoforza",
|
||||
es: "Joya de Luz",
|
||||
pt: "Gema Poderosa",
|
||||
'es-mx': "Joya de Luz"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mountain Drop",
|
||||
fr: "Montagne Écrasante",
|
||||
de: "Gebirgssturz",
|
||||
it: "Smottamento",
|
||||
es: "Caída Montaña Abajo",
|
||||
pt: "Queda da Montanha",
|
||||
'es-mx': "Caída Montañosa"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If a Stadium is in play, this attack does 70 more damage.",
|
||||
fr: "Si un Stade est en jeu, cette attaque inflige 70 dégâts supplémentaires.",
|
||||
de: "Wenn eine Stadionkarte im Spiel ist, fügt diese Attacke 70 Schadenspunkte mehr zu.",
|
||||
it: "Se c'è in gioco una carta Stadio, questo attacco infligge 70 danni in più.",
|
||||
es: "Si hay un Estadio en juego, este ataque hace 70 puntos de daño más.",
|
||||
pt: "Se um Estádio estiver em jogo, este ataque causará 70 pontos de dano a mais.",
|
||||
'es-mx': "Si hay un Estadio en juego, este ataque hace 70 puntos de daño más."
|
||||
},
|
||||
|
||||
damage: "70+"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user