1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "アリゲイツ",
'zh-tw': "藍鱷",
th: "อัลลิเกต"
},
illustrator: "Jerky",
rarity: "Common",
category: "Pokemon",
dexId: [159],
hp: 90,
types: ["Water"],
description: {
ja: "キバは 抜けても 次から 次に 生えてくる。いつも 口の中には 48本の キバが そろっている。",
'zh-tw': "即使牙齒掉了也會不斷重新長出來。 嘴裡總是長滿著48顆牙齒。",
th: "แม้เขี้ยวจะหลุดไป ก็จะงอกขึ้นมาใหม่เรื่อย ๆ ในปากจึงมีเขี้ยวครบ 48 ซี่เสมอ"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "ぎゃくふんしゃ",
'zh-tw': "逆向噴射",
th: "พ่นน้ำสวนทาง"
},
damage: 30,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card