1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 20:32:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

105 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "np-32",
localId: 32,
// Card informations
name: {
en: "Articuno ex",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 144,
image: {
low: {
en: "https://assets.tcgdex.net/en/pop/np/32/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pop/np/32/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 16,
name: "Nakaoka"
},
abilities: [{
id: 1108,
type: AbilityType.POKEBODY,
name: {
en: "Synchronized Lift",
},
text: {
en: "As long as you have Zapdos ex and Moltres ex in play, the Retreat Cost for Articuno ex is 0.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Ice Gift",
},
text: {
en: "You may move a Water Energy card attached to Articuno ex to 1 of your Pokémon.",
},
damage: 10
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Freezing Wing",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
},
damage: 50
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Nintendo Black Star Promos",
code: "np"
}
}
export default card