1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

93 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Delibird",
fr: "Cadoizo",
de: "Botogel"
},
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é",
de: "Schneepräsent"
},
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.",
de: "Ziehe eine Karte für jede -Energie, die an allen deinen Pokémon angelegt ist."
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Hail",
fr: "Grêle",
de: "Hagelsturm"
},
effect: {
en: "This attack does 10 damage to each of your opponents Pokémon. (Dont 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.)",
de: "Dieser Angriff fügt jedem Pokémon deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
description: {
en: "It nests at the edge of sharp cliffs. It spends all day carrying food to its awaiting chicks."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card