1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39: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

104
cards/xy/xy3/67.ts Normal file
View File

@ -0,0 +1,104 @@
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: "xy3-67",
localId: 67,
// Card informations
name: {
en: "Scrafty",
fr: "Baggaïd",
},
hp: 90,
type: [
Type.DARKNESS,
],
dexId: 560,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy3/67/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/67/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy3/67/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/67/high.png",
},
},
evolveFrom: {
en: "Scraggy",
fr: "Baggiguane",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 28,
name: "match"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Low Kick",
fr: "Balayage",
},
damage: 30
},{
cost: [
Type.DARKNESS,
Type.DARKNESS
],
name: {
en: "Machine Gun Headbutt",
fr: "Mitraille-Tête",
},
text: {
en: "Flip 3 coins. This attack does 50 damage times the number of heads. This Pokémon is now Confused.",
fr: "Lancez 3 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face. Ce Pokémon est maintenant Confus.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Furious Fists",
code: "xy3"
}
}
export default card