mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
50
data/Scarlet & Violet/Stellar Crown/090.ts
Normal file
50
data/Scarlet & Violet/Stellar Crown/090.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Koraidon",
|
||||
fr: "Koraidon",
|
||||
es: "Koraidon",
|
||||
it: "Koraidon",
|
||||
pt: "Koraidon",
|
||||
de: "Koraidon"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Resolute Fang",
|
||||
fr: "Croc Résolu",
|
||||
es: "Colmillo Resuelto",
|
||||
it: "Zanna Risoluta",
|
||||
pt: "Presas Resolutas",
|
||||
de: "Resolute Fänge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex, cette attaque inflige 70 dégâts supplémentaires.",
|
||||
es: "Si el Pokémon Activo de tu rival es un Pokémon ex, este ataque hace 70 puntos de daño más.",
|
||||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex, questo attacco infligge 70 danni in più.",
|
||||
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex, este ataque causará 70 pontos de dano a mais.",
|
||||
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex ist, fügt diese Attacke 70 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "50+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user