mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
44
data/Pokémon TCG Pocket/Space-Time Smackdown/132.ts
Normal file
44
data/Pokémon TCG Pocket/Space-Time Smackdown/132.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Starly"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "They flock around mountains and fields, chasing<br />after bug Pokémon. Their singing is noisy and<br />annoying."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pluck"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user