1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

105
cards/sm/sma/SV40.ts Normal file
View File

@ -0,0 +1,105 @@
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: "sma-SV40",
localId: "SV40",
// Card informations
name: {
en: "Garchomp",
fr: "Carchacrok",
},
hp: 150,
type: [
Type.DRAGON,
],
dexId: 445,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sma/SV40/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV40/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sma/SV40/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV40/high.png",
},
},
evolveFrom: {
en: "Gabite",
fr: "Carmache",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Quick Dive",
fr: "Plongeon Rapide",
},
text: {
en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 50 dégâts à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Royal Blades",
fr: "Lames Royales",
},
text: {
en: "If you played Cynthia from your hand during this turn, this attack does 100 more damage.",
fr: "Si vous avez joué Cynthia de votre main pendant ce tour, cette attaque inflige 100 dégâts supplémentaires.",
},
damage: 100
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Shiny Vault",
code: "sma"
}
}
export default card