mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 10:19:18 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
50
data/Scarlet & Violet/Stellar Crown/013.ts
Normal file
50
data/Scarlet & Violet/Stellar Crown/013.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dipplin",
|
||||
fr: "Pomdramour",
|
||||
es: "Dipplin",
|
||||
it: "Dipplin",
|
||||
pt: "Dipplin",
|
||||
de: "Sirapfel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Coated Attack",
|
||||
fr: "Attaque Enrobée",
|
||||
es: "Ataque Confitado",
|
||||
it: "Attacco Glassato",
|
||||
pt: "Ataque Revestido",
|
||||
de: "Kandierte Attacke"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.",
|
||||
es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon Básicos.",
|
||||
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base.",
|
||||
pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos.",
|
||||
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon zugefügt wird."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user