mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
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 |