1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

53
data-asia/S/S9/006.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "草苗龜",
ja: "ナエトル"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "用全身進行光合作用,製造氧氣。當口渴的時候, 頭上的葉子就會枯萎。",
ja: "全身で 光合成を して 酸素を 作る。 のどが 渇くと 頭の 葉っぱが しおれてしまう。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住",
ja: "かみつく"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
'zh-tw': "魯莽頭擊",
ja: "とびだしヘッド"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [387]
}
export default card