mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 12:59:18 +00:00
feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)
This commit is contained in:
52
data/Trainer kits/DP trainer Kit (Manaphy)/1.ts
Normal file
52
data/Trainer kits/DP trainer Kit (Manaphy)/1.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../DP trainer Kit (Manaphy)'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [418],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Buizel"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Splash About"
|
||||
},
|
||||
effect: {
|
||||
en: "If Buizel has less Energy attached to it than the Defending Pokémon, this attack does 10 damage plus 10 more damage."
|
||||
},
|
||||
damage: "10+"
|
||||
}
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "10+"
|
||||
}
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It has a flotation that is like an inflatable collar. It floats on water with its head out."
|
||||
},
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user