1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

49
data-asia/SV/SV5a/019.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ヘイガニ",
'zh-tw': "龍蝦小兵",
th: "เฮกานิ"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [341],
hp: 80,
types: ["Water"],
description: {
ja: "水質が 悪くても 平気なので ほかの 水ポケモンと エサの 奪い合いがなく どんどん 増えた。",
'zh-tw': "即使水質惡劣也不以為意,因此 不會和其他水寶可夢爭奪食物, 使得牠們的數量不斷增加。",
th: "แม้ว่าคุณภาพน้ำจะไม่ดีก็ไม่มีปัญหา จึงไม่ต้องแย่งอาหารกับโปเกมอนน้ำตัวอื่น ๆ ทำให้จำนวนของมันเพิ่มขึ้นเรื่อย ๆ"
},
stage: "Basic",
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
ja: "はさむ",
'zh-tw': "夾住",
th: "หนีบ"
},
damage: 60
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card