1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 13:01:57 +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

99
cards/xy/xy7/29.ts Normal file
View File

@@ -0,0 +1,99 @@
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: "xy7-29",
localId: 29,
// Card informations
name: {
en: "Rotom",
fr: "Motisma",
},
hp: 70,
type: [
Type.LIGHTNING,
],
dexId: 479,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy7/29/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy7/29/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/29/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Electro Ball",
fr: "Boule Élek",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Electric Mischief",
fr: "Espièglerie Électrique",
},
text: {
en: "Flip 3 coins. For each heads, choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into his or her deck.",
fr: "Lancez 3 pièces. Pour chaque côté face, choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Ancient Origins",
code: "xy7"
}
}
export default card