mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)
This commit is contained in:
69
data/Trainer kits/DP trainer Kit (Lucario)/7.ts
Normal file
69
data/Trainer kits/DP trainer Kit (Lucario)/7.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../DP trainer Kit (Lucario)'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [396],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Starly"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Gust"
|
||||
},
|
||||
damage: 10
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage."
|
||||
},
|
||||
damage: "10+"
|
||||
}
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "10+"
|
||||
}
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
}
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "They flock in great numbers. Though small, they flap their wings with great power."
|
||||
},
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user