1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

72 lines
1.6 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Inteleon",
fr: "Lézargus",
es: "Inteleon",
it: "Inteleon",
pt: "Inteleon",
de: "Intelleon"
},
illustrator: "NC Empire",
rarity: "Rare",
category: "Pokemon",
hp: 150,
types: ["Water"],
evolveFrom: {
en: "Drizzile",
fr: "Arrozard"
},
abilities: [{
type: "Ability",
name: {
en: "Quick Shooting",
fr: "Tir Rapide",
es: "Disparo Rápido",
it: "Tiro Istantaneo",
pt: "Gatilho Rápido",
de: "Schnellschütze"
},
effect: {
en: "Once during your turn, you may put 2 damage counters on 1 of your opponents Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez placer 2 marqueurs de dégâts sur lun des Pokémon de votre adversaire.",
es: "Una vez durante tu turno, puedes poner 2 contadores de daño en 1 de los Pokémon de tu rival.",
it: "Una sola volta durante il tuo turno, puoi mettere due segnalini danno su uno dei Pokémon del tuo avversario.",
pt: "Uma vez durante o seu turno, você poderá colocar 2 contadores de dano em 1 dos Pokémon do seu oponente.",
de: "Einmal während deines Zuges kannst du 2 Schadensmarken auf 1 Pokémon deines Gegners legen."
}
}],
attacks: [{
name: {
en: "Waterfall",
fr: "Cascade",
es: "Cascada",
it: "Cascata",
pt: "Cachoeira",
de: "Kaskade"
},
damage: 70,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card