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

91 lines
2.0 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: "sm12-14",
localId: 14,
// Card informations
name: {
en: "Kricketune",
fr: "Mélokrik",
},
hp: 100,
type: [
Type.GRASS,
],
dexId: 402,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/14/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/14/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/14/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/14/high.png",
},
},
evolveFrom: {
en: "Kricketot",
fr: "Crikzik",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 50,
name: "Anesaki Dynamic"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Improvisational Performance",
fr: "Performance Improvisée",
},
text: {
en: "If you have exactly 1 card in your hand, this attack does 100 more damage. If you have exactly 3 cards in your hand, your opponent's Active Pokémon is now Confused. If you have exactly 6 cards in your hand, this attack does 30 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Sil vous reste exactement une carte en main, cette attaque inflige 100 dégâts supplémentaires. Sil vous reste exactement 3 cartes en main, le Pokémon Actif de votre adversaire est maintenant Confus. Sil vous reste exactement 6 cartes en main, cette attaque inflige 30 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card