1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +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.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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-SM197",
localId: "SM197",
// Card informations
name: {
fr: "Amphinobi-GX",
},
hp: 230,
type: [
Type.WATER,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/sm/det1/SM197/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/sm/det1/SM197/high.png",
},
},
evolveFrom: {
fr: "Croâporal",
},
tags: [
Tag.GX,
],
illustrator: {
id: 196,
name: "MPC Film"
},
abilities: [{
id: -1,
type: AbilityType.TALENT,
name: {
fr: "Maître Évasif",
},
text: {
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre dernière carte en main, vous pouvez le placer sur votre Banc. Dans ce cas, piochez 3 cartes.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
fr: "Tranche-Brume",
},
text: {
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 130
},{
cost: [
Type.WATER
],
name: {
fr: "Brume Obscure-GX",
},
text: {
fr: "Placez lun des Pokémon de Banc de votre adversaire et toutes les cartes qui lui sont attachées dans la main de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Détective Pikachu",
code: "det1"
}
}
export default card