1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

64
data-asia/SV/SV4a/314.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ヨクバリス",
'zh-tw': "藏飽栗鼠",
id: "Greedent"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
dexId: [820],
hp: 120,
types: ["Colorless"],
description: {
ja: "体の 約2倍の 長さの 尻尾で 木から 落とした 木の実を ごっそり 包んで 持ち去るぞ。",
'zh-tw': "會用約有身體2倍長的尾巴把樹上掉下來的樹果 全都裹起來帶走。",
id: "Greedent menyimpan buah beri yang terjatuh dari pohon di ekornya yang panjangnya sekitar 2 kali lipat dari tubuhnya dan membawa pergi beri tersebut."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かみつく",
'zh-tw': "咬住",
id: "Menggigit"
},
damage: 50
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "きょうかまえば",
'zh-tw': "強擊門牙",
id: "Gigi Diperkuat"
},
damage: "80+",
effect: {
ja: "このポケモンに「ポケモンのどうぐ」がついているなら、80ダメージ追加。",
'zh-tw': "若這隻寶可夢附有「寶可夢道具」卡則增加80點傷害。",
id: "Jika Pokémon ini mengenakan Pokémon Tool, kerusakan yang diberikan bertambah sejumlah 80."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card