mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
42 lines
612 B
TypeScript
42 lines
612 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "カラナクシ"
|
||
},
|
||
|
||
illustrator: "Shinya Komatsu",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [422],
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "磯辺で 見かけることが 多い。 ある程度の 時間であれば 陸上でも 活動できる。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "うちみず"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |