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

98 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: "ex4-2",
localId: 2,
// Card informations
name: {
en: "Team Aqua's Crawdaunt",
},
hp: 80,
type: [
Type.WATER,
Type.DARKNESS,
],
dexId: 342,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex4/2/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex4/2/high.png",
},
},
evolveFrom: {},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 16,
name: "Nakaoka"
},
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Aqua Reverse",
},
text: {
en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon that has Team Magma in its name and switch it with 1 of the Defending Pokémon. Your opponent chooses which Defending Pokémon to switch.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Deep Impact",
},
text: {
en: "If the Defending Pokémon already has any damage counters on it, the Defending Pokémon is now Confused.",
},
damage: 40
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Team Magma vs Team Aqua",
code: "ex4"
}
}
export default card