mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 08:21:59 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
47
data/Scarlet & Violet/Paldean Fates/033.ts
Normal file
47
data/Scarlet & Violet/Paldean Fates/033.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Swoobat",
|
||||
fr: "Rhinolove",
|
||||
es: "Swoobat",
|
||||
it: "Swoobat",
|
||||
pt: "Swoobat"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Attraction Wave",
|
||||
fr: "Onde Attirante",
|
||||
es: "Onda Atracción",
|
||||
it: "Fascinonda",
|
||||
pt: "Onda de Atração"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused. Put 6 damage counters instead of 3 on that Pokémon for this Special Condition.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Placez 6 marqueurs de dégâts au lieu de 3 sur ce Pokémon-là pour cet État Spécial.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido. Pon 6 contadores de daño en vez de 3 en ese Pokémon por esta Condición Especial.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso. Metti sei segnalini danno invece di tre su quel Pokémon per effetto di questa condizione speciale.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso. Coloque 6 contadores de dano ao invés de 3 naquele Pokémon para esta Condição Especial."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user