1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

114 lines
1.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Emerald'
const card: Card = {
name: {
en: "Exploud",
fr: "Brouhabam",
de: "Krawumms"
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
295,
],
hp: 120,
types: [
"Colorless",
],
evolveFrom: {
en: "Loudred",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Collect",
fr: "Collectionner",
de: "Collect"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
de: "Draw 3 cards."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
fr: "Plaquage",
de: "Body Slam"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Voice",
fr: "Mégaphone",
de: "Hyper Voice"
},
damage: 50,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mega Throw",
fr: "Méga lancer",
de: "Mega Throw"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 60 damage plus 40 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 60 dégâts plus 40 dégâts supplémentaires.",
de: "If the Defending Pokémon is Pokémon-ex, this attack does 60 damage plus 40 more damage."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card