mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
994 B
TypeScript
49 lines
994 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "カラナクシ",
|
||
'zh-tw': "無殼海兔",
|
||
'zh-cn': "無殼海兔"
|
||
},
|
||
|
||
illustrator: "Shinya Komatsu",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [422],
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "磯辺で 見かけることが 多い。 ある程度の 時間であれば 陸上でも 活動できる。",
|
||
'zh-tw': "經常能在岩岸發現牠的身影。 即使是在陸地上,也有辦法 活動上一定程度的時間。",
|
||
'zh-cn': "經常能在岩岸發現牠的身影。 即使是在陸地上,也有辦法 活動上一定程度的時間。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "うちみず",
|
||
'zh-tw': "潑灑清水",
|
||
'zh-cn': "潑灑清水"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |