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

101 lines
1.9 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: "sm3-72",
localId: 72,
// Card informations
name: {
en: "Sawk",
fr: "Karaclée",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 539,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/72/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/72/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/72/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/72/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 49,
name: "Shigenori Negishi"
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Quick Guard",
fr: "Prévention",
},
text: {
en: "Prevent all damage done to this Pokémon by attacks from Basic Pokémon during your opponent's next turn. This Pokémon can't use Quick Guard during your next turn.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base pendant le prochain tour de votre adversaire. Ce Pokémon ne peut pas utiliser Prévention pendant votre prochain tour.",
},
},{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Brick Break",
fr: "Casse-Brique",
},
text: {
en: "This attack's damage isn't affected by Resistance or any effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card