1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

62 lines
1.0 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Inteleon V",
fr: "Lézargus V"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Water",
],
name: {
en: "Snipe Shot",
fr: "Tir de Précision"
},
effect: {
en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 40 dégâts à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Aqua Report",
fr: "Bilan Aquatique"
},
effect: {
en: "Your opponent reveals their hand.",
fr: "Votre adversaire dévoile sa main."
},
damage: 130,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
hp: 200,
types: ["Water"]
}
export default card