1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

63
data-asia/SV/SV8a/032.ts Normal file
View File

@ -0,0 +1,63 @@
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