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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Delibird",
fr: "Cadoizo",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
225,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Snowy Present",
fr: "Cadeau enneigé",
},
effect: {
en: "Draw a card for each Water Energy attached to all of your Pokémon.",
fr: "Piochez une carte pour chaque carte Énergie Water attachée à lensemble de vos Pokémon.",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Hail",
fr: "Grêle",
},
effect: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card