mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 06:12:10 +00:00
90 lines
2.4 KiB
TypeScript
90 lines
2.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Guardians Rising'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Delibird",
|
||
fr: "Cadoizo",
|
||
es: "Delibird",
|
||
it: "Delibird",
|
||
pt: "Delibird",
|
||
de: "Botogel"
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
225,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "All the Presents",
|
||
fr: "Nombreux Cadeaux",
|
||
es: "Regalos por Doquier",
|
||
it: "Regali a Volontà",
|
||
pt: "Regado de Presentes",
|
||
de: "Geschenkeflut"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin until you get tails. For each heads, you may search your deck for a card and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Lancez une pièce jusqu’à ce que vous obteniez un côté pile. Pour chaque côté face, vous pouvez chercher une carte dans votre deck puis l’ajouter à votre main. Mélangez ensuite votre deck.",
|
||
es: "Lanza 1 moneda hasta que salga cruz. Por cada cara, puedes buscar en tu baraja 1 carta y ponerla en tu mano. Después, baraja las cartas de tu baraja.",
|
||
it: "Lancia una moneta finché non esce croce. Ogni volta che esce testa, puoi cercare nel tuo mazzo una carta e aggiungerla a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Jogue 1 moeda até sair coroa. Para cada cara, você poderá procurar por 1 carta no seu baralho e colocá-la na sua mão. Em seguida, embaralhe o seu baralho.",
|
||
de: "Wirf so lang 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Du kannst pro Kopf dein Deck nach 1 Karte durchsuchen und sie auf deine Hand nehmen. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Surprise Attack",
|
||
fr: "Attaque Surprise",
|
||
es: "Ataque Sorpresa",
|
||
it: "Attacco a Sorpresa",
|
||
pt: "Ataque Surpresa",
|
||
de: "Überraschungsangriff"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing.",
|
||
fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.",
|
||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
|
||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|