1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

72 lines
912 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 7'
const card: Card = {
name: {
en: "Delibird",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
225,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Present",
},
effect: {
en: "Flip a coin. If heads, search your deck for any 1 card and put it into your hand. Shuffle your deck afterward.",
},
},
{
cost: [
"Water",
],
name: {
en: "Ice Ball",
},
damage: 20,
},
],
weaknesses: [
{
type: "Metal",
value: "+20"
},
],
description: {
en: "It carries food rolled up in its tail. It has the habit of sharing food with people lost in mountains."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card