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

48
data-asia/S/S12/006.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "圓絲蛛",
th: "อิโตมารุ",
ja: "イトマル"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "牙齒的毒性並不強烈,但用來削弱那些掛在蛛網上 無法動彈的獵物是綽綽有餘。",
th: "พิษที่เขี้ยวไม่ร้ายแรงเท่าไหร่ แต่ก็เพียงพอให้เหยื่อที่มาเกาะรังอ่อนแรงลง",
ja: "キバの 毒は さほど 強くないが 巣に かかって 動けない 獲物を 弱らせるには 充分。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蟲咬",
th: "แมลงกัด",
ja: "むしくい"
},
damage: 30,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [167]
}
export default card