1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/033.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: "Croconaw",
th: "อัลลิเกต",
'zh-tw': "藍鱷",
'zh-cn': "藍鱷"
},
illustrator: "Jerky",
rarity: "None",
category: "Pokemon",
dexId: [159],
hp: 90,
types: ["Water"],
description: {
ja: "キバは 抜けても 次から 次に 生えてくる。いつも 口の中には 48本の キバが そろっている。",
id: "Meskipun copot, taring Croconaw akan terus-menerus tumbuh. Di dalam mulutnya, selalu ada 48 taring lengkap.",
th: "แม้เขี้ยวจะหลุดไป ก็จะงอกขึ้นมาใหม่เรื่อย ๆ ในปากจึงมีเขี้ยวครบ 48 ซี่เสมอ",
'zh-tw': "即使牙齒掉了也會 不斷重新長出來。 嘴裡總是長滿著48顆牙齒。",
'zh-cn': "即使牙齒掉了也會 不斷重新長出來。 嘴裡總是長滿著48顆牙齒。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "ぎゃくふんしゃ",
id: "Dorongan Balik",
th: "พ่นน้ำสวนทาง",
'zh-tw': "逆向噴射",
'zh-cn': "逆向噴射"
},
damage: 30,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
id: "Tukar Pokémon ini dengan Pokémon Cadangan.",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
'zh-cn': "將這隻寶可夢與備戰寶可夢互換。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card