1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

49
data-asia/SV/SV3/061.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "イワンコ",
'zh-tw': "岩狗狗",
th: "อิวังโค"
},
illustrator: "Jerky",
rarity: "Common",
category: "Pokemon",
dexId: [744],
hp: 60,
types: ["Fighting"],
description: {
ja: "小さいころは よく 懐く。 育つと 気性が 荒くなるが 主への 恩は 忘れない。",
'zh-tw': "年幼時期非常容易親近。雖然長大後脾氣會變得粗暴,卻絕不會忘記主人的恩情。",
th: "ตอนยังเล็กค่อนข้างเชื่อง พอโตแล้วดุร้ายขึ้น แต่ไม่ลืมบุญคุณเจ้าของ"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "かみつく",
'zh-tw': "咬住",
th: "กัดติด"
},
damage: 20
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card