mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
61
data-asia/SV/SV3s/123.ts
Normal file
61
data-asia/SV/SV3s/123.ts
Normal file
@ -0,0 +1,61 @@
|
||||
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
|
Reference in New Issue
Block a user