Funko POP! Details
Name | Paul Atreides |
Number | #1026 |
Character | Paul Atreides |
Franchise | Dune |
Release Date | 2021 |
Category | Movies |
Movie Collection | Dune (2021) |
Logo | |
Size | Standard 4 inch POP! |
Vinyl Figure or Bobble-Head | Vinyl Figure |
Media Franchise | Dune |
Estimated Value (USD) | $56.00 |
Price Trend | |
Momentum Value | 4 days |
My Rating
Sign in to save, rate or review
Purchases through links support ongoing operation of this site
Reviews by members Post
Write a comment.
Recent Ratings
Gunnar8419
01 June 2024
CollectorOfEverything
11 May 2024
MrMysteryBats
09 April 2024
PopMan
12 January 2024
GreenArrow
28 December 2023
Moon-knight
28 December 2023
Universal Product Code (UPC)
Fun Fact
The Paul Atreides Funko POP! Figure (number 1026) from the Dune movie franchise was so popular that it sold out within minutes of its release in 2024!
Funko POP! Paul Atreides #1026
Movies Category
Description
Calling all Dune devotees and Funko Pop collectors! Brace yourselves for the arrival of the extraordinary Paul Atreides Funko POP! Figure. Numbered 1026 in the illustrious Funko POP! series, this reverential creation pays homage to the legendary sci-fi movie, Dune, released in 2021. Prepare to embark on an interstellar journey as you secure this prized possession for your collection.Standing at the iconic POP! size, Paul Atreides captures the essence of the enigmatic protagonist from one of the most anticipated films of the decade. Meticulously crafted by Funko, this figure is a testament to their unrivaled attention to detail. With striking features that perfectly mirror the on-screen portrayal, this collectible embodies the daring spirit and unyielding determination of Paul Atreides. Inspired by the compelling narrative and visionary world of Dune, this Funko POP! Figure is an absolute must-have for fans, offering an everlasting connection to the cinematic masterpiece. Don't miss your chance to own a piece of Dune history - pre-order your Paul Atreides Funko POP! Figure today!
Price data
Based on recent eBay sales data, this POP! figure has an estimated market value of $56.00. The typical price range spans from $22.68 to $50.00. This suggests a high-end collectible status. This value is derived from verified sales data over the past 3 months, providing a reliable indicator of current market conditions
Dimensions
Standard 4 inch
Standing at around 4 inches tall on average, these collectibles define the essence of Pop! culture. From iconic characters to fan favorites, they are packaged to delight fans worldwide.
POP! Size Guide
Movie Details
Dune
Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.
Release Date: 15 September 2021
Vote Average: 7.8
Sales Trend
`; tooltipContent += `
${row.desc}
`; // Limit width to 160px and allow text to wrap tooltipContent += `
$ ${row.sold.toFixed(2)}
`; tooltipContent += ``; // Link to eBay tooltipContent += `
`; return [new Date(row.date), row.sold, tooltipContent]; }); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn("date", "Date"); data.addColumn("number", "Price"); data.addColumn({ type: "string", role: "tooltip", p: { html: true } }); data.addColumn("number", "Scatter"); // Sort the data chronologically chartData.sort((a, b) => a[0] - b[0]); chartData.forEach((row, index) => { if (index > 0) { // Add a point just before the current point to create the step data.addRow([new Date(row[0].getTime() - 1), chartData[index - 1][1], null, null]); } // Add the current point data.addRow([row[0], row[1], row[2], row[1]]); }); // Calculate min and max values var values = chartData.map(row => row[1]); var minValue = Math.min(...values); var maxValue = Math.max(...values); var valueRange = maxValue - minValue; // Calculate adjusted min and max for y-axis with increased buffer var bufferFactor = 0.3; var adjustedMin = 0; // Always start at 0 var adjustedMax = maxValue + valueRange * bufferFactor; // Check if the data is more than 200% away from 0 if (minValue > adjustedMax * 2) { adjustedMin = minValue - valueRange * bufferFactor; } var options = { chartArea: { width: "80%", height: "80%" }, hAxis: { textStyle: { color: "#9d02fc", fontSize: 16, bold: true }, titleTextStyle: { color: "#9d02fc", fontSize: 20, bold: true }, format: "MMM ''yy", gridlines: { color: "#fff" }, }, vAxis: { textStyle: { color: "#9d02fc", fontSize: 16, bold: true }, titleTextStyle: { color: "#9d02fc", fontSize: 20, bold: true }, gridlines: { color: "#e6beff" }, format: "$#,###", viewWindow: { min: adjustedMin, max: adjustedMax } }, tooltip: { trigger: "none" }, // Disable default tooltips legend: { position: "none" }, series: { 0: { type: "area", lineWidth: 2, color: "red", areaOpacity: 0.1, lineDashStyle: [4, 4], enableInteractivity: false }, 1: { type: "scatter", pointSize: 19, pointShape: { type: "star", sides: 5, dent: 0.5 }, color: "#f4c20d" } }, interpolateNulls: false, connectSteps: true, trendlines: { 0: { color: "#9d02fc", lineWidth: 5, opacity: 0.5, type: "linear" } } }; var chart = new google.visualization.ComboChart(document.getElementById("chart_div")); google.visualization.events.addListener(chart, 'ready', function() { const trendPercentage = getTrendPercentage(); const trendElement = document.getElementById('trendPercentage'); trendElement.innerHTML = trendPercentage + '%'; addTrendIndicator(trendPercentage); }); chart.draw(data, options); // Add custom event listener for point selection google.visualization.events.addListener(chart, "select", function() { var selection = chart.getSelection(); if (selection.length > 0) { var row = selection[0].row; var tooltipContent = data.getValue(row, 2); // Get the HTML tooltip content var chartArea = chart.getChartLayoutInterface().getChartAreaBoundingBox(); var x = chart.getChartLayoutInterface().getXLocation(data.getValue(row, 0)); var y = chart.getChartLayoutInterface().getYLocation(data.getValue(row, 1)); showCustomTooltip(tooltipContent, x + chartArea.left, y + chartArea.top); } }); } function showCustomTooltip(content, x, y) { console.log(x, y); // Remove any existing tooltip var existingTooltip = document.querySelector('.custom-tooltip'); if (existingTooltip) { existingTooltip.remove(); } var tooltip = document.createElement("div"); tooltip.className = 'custom-tooltip'; // Add a class for easy selection tooltip.innerHTML = content; tooltip.style.position = "absolute"; tooltip.style.background = "white"; tooltip.style.border = "1px solid #ccc"; tooltip.style.padding = "10px"; tooltip.style.zIndex = "10"; tooltip.style.left = (x + 60) + "px"; tooltip.style.top = y + "px"; tooltip.style.transform = "translate(-50%, -100%)"; var backdrop = document.getElementById("chart_div"); backdrop.appendChild(tooltip); function closeTooltip() { if (tooltip && tooltip.parentNode) { tooltip.parentNode.removeChild(tooltip); } document.removeEventListener("click", handleClick); } function handleClick(event) { if (!tooltip.contains(event.target)) { closeTooltip(); } } setTimeout(() => { document.addEventListener("click", handleClick); }, 100); }