mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
48
data/Pokémon TCG Pocket/Space-Time Smackdown/156.ts
Normal file
48
data/Pokémon TCG Pocket/Space-Time Smackdown/156.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tangrowth"
|
||||
},
|
||||
|
||||
illustrator: "Saboteri",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tangela"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Tangrowth has two arms that it can extend as it<br />pleases. Recent research has shown that these<br />arms are, in fact, bundles of vines."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mega Drain"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Grass", "Grass", "Grass", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user