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

77 lines
1.1 KiB
TypeScript
Raw 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Loudred",
fr: "Ramboum",
de: "Krakeelo"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
294,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Whismur",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Cracking Punch",
fr: "Super voix",
de: "Cracking Voice"
},
effect: {
en: "Flip a coin. If heads, each Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, chaque Pokémon Défenseur est maintenant Confus.",
de: "Flip a coin. If heads, each Defending Pokémon is now Confused."
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Light Punch",
fr: "Poing léger",
de: "Light Punch"
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card