1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

68 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Team Up'
const card: Card = {
name: {
en: "Dratini",
fr: "Minidraco",
es: "Dratini",
it: "Dratini",
pt: "Dratini",
de: "Dratini"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
147,
],
hp: 60,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Dragon Rage",
fr: "Draco-Rage",
es: "Furia Dragón",
it: "Ira di Drago",
pt: "Ira do Dragão",
de: "Drachenwut"
},
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
fr: "Lancez 2 pièces. Si vous obtenez au moins un côté pile, cette attaque ne fait rien.",
es: "Lanza 2 monedas. Si sale cruz en alguna de ellas, este ataque no hace nada.",
it: "Lancia due volte una moneta. Se esce almeno una volta croce, questo attacco non ha effetto.",
pt: "Jogue 2 moedas. Se qualquer uma delas sair coroa, este ataque não fará nada.",
de: "Wirf 2 Münzen. Wenn eine oder beide Münzen Zahl zeigen, hat diese Attacke keine Auswirkungen."
},
damage: 60,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card