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

63 lines
2.0 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ワニノコ",
id: "Totodile",
th: "วานิโนโกะ",
'zh-tw': "小鋸鱷",
'zh-cn': "小鋸鱷"
},
illustrator: "MINAMINAMI Take",
rarity: "None",
category: "Pokemon",
dexId: [158],
hp: 70,
types: ["Water"],
description: {
ja: "小さいながらも 暴れん坊。 目の前で 動くものが あれば とにかく かみついてくる。",
id: "Meskipun kecil, Totodile itu perusuh. Jika ada sesuatu yang bergerak di hadapannya, ia akan langsung menggigitnya.",
th: "แม้ตัวจะเล็ก แต่ก็เป็นจอมเกเร หากมีอะไรเคลื่อนไหวอยู่ตรงหน้า มันก็จะเข้าไปกัดไว้ก่อนเลย",
'zh-tw': "個子雖小但是個性粗暴。 只要眼前有東西在動, 就會先上去咬一口再說。",
'zh-cn': "個子雖小但是個性粗暴。 只要眼前有東西在動, 就會先上去咬一口再說。"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "かじりつく",
id: "Menggerogoti Erat-erat",
th: "กัด",
'zh-tw': "咬緊",
'zh-cn': "咬緊"
},
damage: 10,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card