mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
101 lines
1.8 KiB
TypeScript
101 lines
1.8 KiB
TypeScript
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: "sm10-103",
|
||
localId: 103,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Landorus",
|
||
fr: "Démétéros",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 645,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/103/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/103/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/103/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/103/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 80,
|
||
name: "Hasuno"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Linear Attack",
|
||
fr: "Attaque Linéaire",
|
||
},
|
||
text: {
|
||
en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Power Cyclone",
|
||
fr: "Cyclone d’Énergie",
|
||
},
|
||
text: {
|
||
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||
fr: "Déplacez une Énergie de ce Pokémon vers l’un de vos Pokémon de Banc.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unbroken Bonds",
|
||
code: "sm10"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|