1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon e35a91ad4f fix: some cards are now fixed
Signed-off-by: Avior <git@avior.me>
2025-05-04 02:01:43 +02:00

56 lines
969 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Buizel",
de: "Bamelin"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Trainer",
set: Set,
dexId: [
418,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
effect: {
en: "If Buizel has less Energy attached to it than the Defending Pokémon, this attack does 10 damage plus 10 more damage.",
},
attacks: [{
name: {
en: 'Splash About',
de: "Herumspritzen"
},
damage: "10+",
effect: {
en: 'If buizel has less Energy attached to it than the Defending Pokémon, this attack does 10 damage plus 10 more damage.',
de: "Wenn an das Verteidigende Pokémon mehr Energie angelegt ist als an Bamelin, fügt dieser Angriff 10 Schadenspunkte plus 10 weitere Schadenspunkte zu."
},
cost: ["Water"]
}]
}
export default card