1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

54
data-asia/SV/SV7/022.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "原蓋海龜",
'zh-cn': "原蓋海龜",
ja: "プロトーガ"
},
illustrator: "takashi shiraishi",
category: "Pokemon",
hp: 100,
types: ["Water"],
description: {
'zh-tw': "曾經棲息在古代的海洋裡。 雖然只能爬行,但是為了 尋找獵物也會到陸地上來。",
'zh-cn': "曾經棲息在古代的海洋裡。 雖然只能爬行,但是為了 尋找獵物也會到陸地上來。",
ja: "古代の 海に 棲んでいた。 這いずることしか できないが 獲物のために 陸にも 上がる。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "飛濺迴轉",
'zh-cn': "飛濺迴轉",
ja: "スプラッシュターン"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
'zh-cn': "將這隻寶可夢與備戰寶可夢互換。",
ja: "このポケモンをベンチポケモンと入れ替える。"
},
damage: 70,
cost: ["Water", "Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Common",
dexId: [564]
}
export default card