mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
100 lines
1.3 KiB
TypeScript
100 lines
1.3 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: "ex13-2",
|
||
localId: 2,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Cradily δ",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 346,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/2/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/2/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Lileep",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Harsh Fluid",
|
||
},
|
||
text: {
|
||
en: "Put 5 damage counters on the Defending Pokémon at the end of your opponent's next turn.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Poison Tentacles",
|
||
},
|
||
text: {
|
||
en: "The Defending Pokémon is now Poisoned.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Holon Phantoms",
|
||
code: "ex13"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|