mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Triumphant Light set (#670)
This commit is contained in:
44
data/Pokémon TCG Pocket/Triumphant Light/036.ts
Normal file
44
data/Pokémon TCG Pocket/Triumphant Light/036.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Triumphant Light"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sudowoodo"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "Although it always pretends to be a tree,<br />its composition appears more similar to<br />rock than to vegetation."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fighting Headbutt"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon <strong>ex</strong>, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user