mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
88
cards/sm/smp/SM207.ts
Normal file
88
cards/sm/smp/SM207.ts
Normal file
@ -0,0 +1,88 @@
|
||||
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: "smp-SM207",
|
||||
localId: "SM207",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Sudowoodo",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 185,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/smp/SM207/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/smp/SM207/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Low Kick",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Territorial Strike",
|
||||
},
|
||||
text: {
|
||||
en: "If you don't have a Stadium card in play, this attack does nothing.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "SM Black Star Promos",
|
||||
code: "smp"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user