1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

56 lines
949 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Tangrowth"
},
illustrator: "LINNE",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
id: "Hasil penelitian terbaru menunjukkan bahwa 2 lengan Tangrowth yang dapat dipanjangkan dengan sesukanya ini sebenarnya kumpulan jalar yang disatukan."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Tubuh Hutan"
},
effect: {
id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30."
}
}],
attacks: [{
name: {
id: "Menyelungkupi"
},
effect: {
id: "Kerusakan akibat serangan ini berkurang sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
},
damage: "150-",
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card