mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-12 21:05:10 +00:00
feat: Add sv10 - Destined Rivals (#751)
This commit is contained in:
53
data/Scarlet & Violet/Destined Rivals/114.ts
Normal file
53
data/Scarlet & Violet/Destined Rivals/114.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Team Rocket's Nidoran♀",
|
||||
fr: "Nidoran♀ de la Team Rocket",
|
||||
de: "Team Rockets Nidoran♀",
|
||||
it: "Nidoran♀ del Team Rocket",
|
||||
es: "Nidoran♀ del Team Rocket",
|
||||
pt: "Nidoran♀ da Equipe Rocket",
|
||||
'es-mx': "Nidoran♀ del Equipo Rocket"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Surprise Attack",
|
||||
fr: "Attaque Surprise",
|
||||
de: "Überraschungsangriff",
|
||||
it: "Attacco a Sorpresa",
|
||||
es: "Ataque Sorpresa",
|
||||
pt: "Ataque Surpresa",
|
||||
'es-mx': "Ataque Sorpresa"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
||||
'es-mx': "Lanza 1 moneda. Si sale cruz, este ataque no hace nada."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user