1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

89 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Exploud",
fr: "Brouhabam",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
295,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Loudred",
fr: "Ramboum",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Erasing Sound",
fr: "Son effaçant",
},
effect: {
en: "Each of your Pokémon has no Weakness.",
fr: "Aucun de vos Pokémon ne possède de Faiblesse.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Knock Back",
fr: "Engloutir",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "+30"
},
],
retreat: 2,
}
export default card