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

84 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: "det1-17",
localId: 17,
// Card informations
name: {
en: "Ditto",
fr: "Métamorph",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 132,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/det1/17/low.png",
fr: "https://assets.tcgdex.net/fr/sm/det1/17/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/det1/17/high.png",
fr: "https://assets.tcgdex.net/fr/sm/det1/17/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Copy Anything",
fr: "Copie Tout",
},
text: {
en: "Choose 1 of your opponent's Pokémon's attacks and use it as this attack. If this Pokémon doesn't have the necessary Energy to use that attack, this attack does nothing.",
fr: "Choisissez lune des attaques des Pokémon de votre adversaire et utilisez-la en tant que cette attaque. Si ce Pokémon na pas lÉnergie nécessaire pour utiliser cette attaque, cette attaque ne fait rien.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Detective Pikachu",
code: "det1"
}
}
export default card