mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
97 lines
1.5 KiB
TypeScript
97 lines
1.5 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/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",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/59/low",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Drizzile",
|
||
fr: "Arrozard",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Akira Komayama",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Silent Shot",
|
||
fr: "Coup Feutré",
|
||
},
|
||
text: {
|
||
en: "Discard a random card from your opponent’s 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 opponent’s 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
|