1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

43
data-asia/S/S5a/011.ts Normal file
View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪瑙水母",
th: "เมโนคุราเกะ"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "身體的99%是水分。剩下的1%之中包含了用來製造毒素的器官。",
th: "ร่างกาย 99 เปอร์เซ็นต์เป็นน้ำ อีก 1 เปอร์เซ็นต์ที่เหลือเป็นอวัยวะสร้างสารพิษ"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "重摑",
th: "ตบแรง"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card