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

61 lines
981 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Ferrothorn"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 140,
types: ["Metal"],
description: {
id: "Ferrothorn memiliki duri yang lebih keras dari baja. Pokémon ini bergerak merayapi dinding batu dengan menusukkan duri di tentakelnya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Tubuh Keras"
},
effect: {
id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30."
}
}],
attacks: [{
name: {
id: "Spinning Needle"
},
effect: {
id: "Pada giliran sendiri berikutnya, kerusakan akibat Spinning Needle Pokémon ini bertambah sejumlah 100."
},
damage: 50,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card