1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09: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/SV5a/004.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "イトマル",
'zh-tw': "圓絲蛛",
th: "อิโตมารุ"
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
dexId: [167],
hp: 60,
types: ["Grass"],
description: {
ja: "丈夫な 糸を より合わせ 魚ポケモンを 捕らえる 網を こしらえる 漁師も いるぞ。",
'zh-tw': "也有漁夫會將堅韌的絲編織起來,製作成可以 捕捉魚寶可夢的網。",
th: "มีชาวประมงบางคนฟั่นใยที่ทนทานของมัน เพื่อทำแหจับโปเกมอนปลา"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "むしくい",
'zh-tw': "蟲咬",
th: "แมลงกัด"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card