1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

58
data-asia/SV/SVLN/004.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SVLN"
const card: Card = {
set: Set,
name: {
ja: "マリルリ"
},
illustrator: "Orca",
category: "Pokemon",
dexId: [184],
hp: 120,
types: ["Psychic"],
description: {
ja: "じっと 耳を すますと 激しい 流れの 川の 中に なにが いるのか 聞き分けられる。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "きらきらシャボン"
},
effect: {
ja: "自分の場に「テラスタル」のポケモンがいるなら、このポケモンが「すてみタックル」を使うためのエネルギーは、エネルギー1個になる。"
}
}],
attacks: [{
cost: ["Psychic", "Psychic", "Psychic", "Psychic"],
name: {
ja: "すてみタックル"
},
damage: 230,
effect: {
ja: "このポケモンにも50ダメージ。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
rarity: "None"
}
export default card