mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
96 lines
1.5 KiB
TypeScript
96 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: "ex13-1",
|
||
localId: 1,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Armaldo δ",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 348,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/1/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/1/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Anorith",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Delta Edge",
|
||
},
|
||
text: {
|
||
en: "If you have any Supporter cards in play, this attack's base damage is 20 instead of 70.",
|
||
},
|
||
damage: 70
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Fossil Charge",
|
||
},
|
||
text: {
|
||
en: "You may discard a Claw Fossil, Mysterious Fossil, Root Fossil, or Holon Fossil from your hand. If you do, choose 1 of your opponent's Benched Pokémon and do 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Holon Phantoms",
|
||
code: "ex13"
|
||
}
|
||
}
|
||
|
||
export default card
|