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

102
cards/ex/ex12/26.ts Normal file
View File

@ -0,0 +1,102 @@
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: "ex12-26",
localId: 26,
// Card informations
name: {
en: "Spinda",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 327,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex12/26/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex12/26/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 114,
name: "Motofumi Fujiwara"
},
abilities: [{
id: 769,
type: AbilityType.POKEBODY,
name: {
en: "Pattern Distraction",
},
text: {
en: "As long as Spinda is your Active Pokémon, whenever your opponent's Basic Pokémon tries to attack, your opponent flips a coin. If tails, that attack does nothing. You can't use more than 1 Pattern Distraction Poké-Body each turn.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Whimsy Draw",
},
text: {
en: "Flip a coin until you get tails. For each heads, draw 2 cards.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Double-edge",
},
text: {
en: "Flip a coin. If tails, Spinda does 10 damage to itself.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Legend Maker",
code: "ex12"
}
}
export default card