mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Prismatic Evolutions (#637)
This commit is contained in:
50
data/Scarlet & Violet/Prismatic Evolutions/089.ts
Normal file
50
data/Scarlet & Violet/Prismatic Evolutions/089.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Prismatic Evolutions"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hawlucha",
|
||||
fr: "Brutalibré",
|
||||
es: "Hawlucha",
|
||||
pt: "Hawlucha",
|
||||
it: "Hawlucha",
|
||||
de: "Resladero"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rising Tackle",
|
||||
fr: "Tacle Montant",
|
||||
es: "Placaje Ascendente",
|
||||
pt: "Investida Crescente",
|
||||
it: "Azione Ascendente",
|
||||
de: "Vorschnellender Tackle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 50 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex, cette attaque inflige 50 dégâts supplémentaires.",
|
||||
es: "Si el Pokémon Activo de tu rival es un Pokémon ex, este ataque hace 50 puntos de daño más.",
|
||||
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex, este ataque causará 50 pontos de dano a mais.",
|
||||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex, questo attacco infligge 50 danni in più.",
|
||||
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex ist, fügt diese Attacke 50 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "10+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user