1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon a0087a4aa3
Updated Sword Shield 1 set
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-08 17:56:42 +01:00

100 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "swsh1-59",
localId: 59,
// Card informations
name: {
en: "Inteleon",
fr: "Lézargus",
},
hp: 160,
type: [
Type.WATER,
],
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh1/59/low.png",
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/59/low.png",
}
},
evolveFrom: {
en: "Drizzile",
fr: "Arrozard",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 22,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Silent Shot",
fr: "Coup Feutré",
},
text: {
en: "Discard a random card from your opponents hand.",
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
},
damage: 40
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Hydro Snipe",
fr: "Hydro-Frappe",
},
text: {
en: "You may put an Energy attached to your opponents Active Pokémon into their hand.",
fr: "Vous pouvez ajouter à la main de votre adversaire une Énergie attachée à son Pokémon Actif.",
},
damage: 100
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Sword & Shield",
code: "swsh1"
}
}
export default card