1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Sword & Shield/Darkness Ablaze/68.ts
2021-05-26 20:35:35 +02:00

74 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Wigglytuff",
fr: "Grodoudou"
},
illustrator: "Lee HyunJung",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Jigglypuff",
fr: "Rondoudou"
},
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Sleep Pulse",
fr: "Pouls Dodo"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Double Smash",
fr: "Double Broiement"
},
effect: {
en: "Flip 2 coins. This attack does 90 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 90 dégâts pour chaque côté face."
},
damage: "90×",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
}
export default card