mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
115 lines
1.7 KiB
TypeScript
115 lines
1.7 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: "ex11-8",
|
||
localId: 8,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Latias δ",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 380,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex11/8/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex11/8/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 1,
|
||
name: "Ryo Ueda"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 830,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Delta Aura",
|
||
},
|
||
text: {
|
||
en: "If you have Latios or Latios ex in play, the attack cost of Latias's Extra Crush is now Lightning Metal Colorless.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Spiral Drain",
|
||
},
|
||
text: {
|
||
en: "Remove 2 damage counters from Latias.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.METAL,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Extra Crush",
|
||
},
|
||
text: {
|
||
en: "If your opponent has no Pokémon-ex in play, this attack does nothing.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.COLORLESS,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-30"
|
||
},{
|
||
type: Type.FIGHTING,
|
||
value: "-30"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Delta Species",
|
||
code: "ex11"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|