1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "タタッコ",
'zh-tw': "拳拳蛸",
th: "ทาทักโกะ"
},
illustrator: "Kedamahadaitai Yawarakai",
rarity: "Common",
category: "Pokemon",
dexId: [852],
hp: 70,
types: ["Fighting"],
description: {
ja: "3歳児 くらいの 賢さ。 触手は よくちぎれるが 再生するので 気にしない。",
'zh-tw': "智商大致相當於3歲的兒童。雖然觸手經常斷掉,但因為 能再生,所以牠並不在意。",
th: "สมองเท่ากับเด็กอายุ 3 ปี หนวดมักจะขาดบ่อย ๆ แต่ก็ไม่ต้องห่วงเพราะงอกใหม่ได้"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "フェイント",
'zh-tw': "佯攻",
th: "หลอก"
},
damage: 20,
effect: {
ja: "このワザのダメージは抵抗力を計算しない。",
'zh-tw': "這個招式的傷害不計算抵抗力。",
th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card